Changeset 40846 in webkit for trunk/JavaScriptCore/bytecode/StructureStubInfo.h
- Timestamp:
- Feb 10, 2009, 8:57:08 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/StructureStubInfo.h
r39229 r40846 27 27 #define StructureStubInfo_h 28 28 29 #if ENABLE(JIT) 30 29 31 #include "Instruction.h" 32 #include "MacroAssembler.h" 30 33 #include "Opcode.h" 31 34 #include "Structure.h" … … 33 36 namespace JSC { 34 37 35 #if ENABLE(JIT)36 38 struct StructureStubInfo { 37 39 StructureStubInfo(OpcodeID opcodeID) 38 40 : opcodeID(opcodeID) 39 , stubRoutine(0)40 , callReturnLocation(0)41 , hotPathBegin(0)42 41 { 43 42 } … … 146 145 } u; 147 146 148 void*stubRoutine;149 void*callReturnLocation;150 void*hotPathBegin;147 MacroAssembler::CodeLocationLabel stubRoutine; 148 MacroAssembler::CodeLocationCall callReturnLocation; 149 MacroAssembler::CodeLocationLabel hotPathBegin; 151 150 }; 152 #endif153 151 154 152 } // namespace JSC 155 153 154 #endif 155 156 156 #endif // StructureStubInfo_h
Note:
See TracChangeset
for help on using the changeset viewer.