Changeset 108020 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.h
- Timestamp:
- Feb 16, 2012, 8:10:00 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.h
r107980 r108020 171 171 { 172 172 ASSERT(m_initialized); 173 #if ENABLE(COMPUTED_GOTO_ INTERPRETER)173 #if ENABLE(COMPUTED_GOTO_CLASSIC_INTERPRETER) 174 174 return m_opcodeTable[id]; 175 175 #else … … 181 181 { 182 182 ASSERT(m_initialized); 183 #if ENABLE(COMPUTED_GOTO_ INTERPRETER)183 #if ENABLE(COMPUTED_GOTO_CLASSIC_INTERPRETER) 184 184 ASSERT(isOpcode(opcode)); 185 185 if (!m_enabled) … … 223 223 JSValue execute(CallFrameClosure&); 224 224 225 #if ENABLE( INTERPRETER)225 #if ENABLE(CLASSIC_INTERPRETER) 226 226 NEVER_INLINE bool resolve(CallFrame*, Instruction*, JSValue& exceptionValue); 227 227 NEVER_INLINE bool resolveSkip(CallFrame*, Instruction*, JSValue& exceptionValue); … … 237 237 void tryCachePutByID(CallFrame*, CodeBlock*, Instruction*, JSValue baseValue, const PutPropertySlot&); 238 238 void uncachePutByID(CodeBlock*, Instruction* vPC); 239 #endif // ENABLE( INTERPRETER)239 #endif // ENABLE(CLASSIC_INTERPRETER) 240 240 241 241 NEVER_INLINE bool unwindCallFrame(CallFrame*&, JSValue, unsigned& bytecodeOffset, CodeBlock*&); … … 260 260 RegisterFile m_registerFile; 261 261 262 #if ENABLE(COMPUTED_GOTO_ INTERPRETER)262 #if ENABLE(COMPUTED_GOTO_CLASSIC_INTERPRETER) 263 263 Opcode m_opcodeTable[numOpcodeIDs]; // Maps OpcodeID => Opcode for compiling 264 264 HashMap<Opcode, OpcodeID> m_opcodeIDTable; // Maps Opcode => OpcodeID for decompiling
Note:
See TracChangeset
for help on using the changeset viewer.