Changeset 63056 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.h
- Timestamp:
- Jul 10, 2010, 6:14:47 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.h
r62612 r63056 76 76 Opcode getOpcode(OpcodeID id) 77 77 { 78 #if HAVE(COMPUTED_GOTO)78 #if ENABLE(COMPUTED_GOTO_INTERPRETER) 79 79 return m_opcodeTable[id]; 80 80 #else … … 85 85 OpcodeID getOpcodeID(Opcode opcode) 86 86 { 87 #if HAVE(COMPUTED_GOTO)87 #if ENABLE(COMPUTED_GOTO_INTERPRETER) 88 88 ASSERT(isOpcode(opcode)); 89 89 return m_opcodeIDTable.get(opcode); … … 160 160 RegisterFile m_registerFile; 161 161 162 #if HAVE(COMPUTED_GOTO)162 #if ENABLE(COMPUTED_GOTO_INTERPRETER) 163 163 Opcode m_opcodeTable[numOpcodeIDs]; // Maps OpcodeID => Opcode for compiling 164 164 HashMap<Opcode, OpcodeID> m_opcodeIDTable; // Maps Opcode => OpcodeID for decompiling
Note:
See TracChangeset
for help on using the changeset viewer.