Changeset 127199 in webkit for trunk/Source/JavaScriptCore/jit/JITCode.h
- Timestamp:
- Aug 30, 2012, 3:21:48 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITCode.h
r120786 r127199 27 27 #define JITCode_h 28 28 29 #if ENABLE(JIT) 29 #if ENABLE(JIT) || ENABLE(LLINT) 30 30 #include "CallFrame.h" 31 31 #include "JSValue.h" … … 43 43 44 44 class JITCode { 45 #if ENABLE(JIT) 45 #if ENABLE(JIT) || ENABLE(LLINT) 46 46 typedef MacroAssemblerCodeRef CodeRef; 47 47 typedef MacroAssemblerCodePtr CodePtr; … … 78 78 } 79 79 80 #if ENABLE(JIT) 80 #if ENABLE(JIT) || ENABLE(LLINT) 81 81 JITCode() 82 82 : m_jitType(None) … … 128 128 } 129 129 130 #if ENABLE(JIT) 130 131 // Execute the code! 131 132 inline JSValue execute(RegisterFile* registerFile, CallFrame* callFrame, JSGlobalData* globalData) … … 134 135 return globalData->exception ? jsNull() : result; 135 136 } 137 #endif 136 138 137 139 void* start() const … … 183 185 CodeRef m_ref; 184 186 JITType m_jitType; 185 #endif // ENABLE(JIT) 187 #endif // ENABLE(JIT) || ENABLE(LLINT) 186 188 }; 187 189
Note:
See TracChangeset
for help on using the changeset viewer.