Changeset 62612 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Jul 6, 2010, 6:35:56 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.h
r62551 r62612 359 359 360 360 bool functionRegisterForBytecodeOffset(unsigned bytecodeOffset, int& functionRegisterIndex); 361 #else 361 #endif 362 #if ENABLE(INTERPRETER) 362 363 unsigned bytecodeOffset(CallFrame*, Instruction* returnAddress) 363 364 { … … 417 418 unsigned lastJumpTarget() const { return m_jumpTargets.last(); } 418 419 419 #if !ENABLE(JIT)420 #if ENABLE(INTERPRETER) 420 421 void addPropertyAccessInstruction(unsigned propertyAccessInstruction) { m_propertyAccessInstructions.append(propertyAccessInstruction); } 421 422 void addGlobalResolveInstruction(unsigned globalResolveInstruction) { m_globalResolveInstructions.append(globalResolveInstruction); } 422 423 bool hasGlobalResolveInstructionAtBytecodeOffset(unsigned bytecodeOffset); 423 #else 424 #endif 425 #if ENABLE(JIT) 424 426 size_t numberOfStructureStubInfos() const { return m_structureStubInfos.size(); } 425 427 void addStructureStubInfo(const StructureStubInfo& stubInfo) { m_structureStubInfos.append(stubInfo); } … … 552 554 unsigned m_sourceOffset; 553 555 554 #if !ENABLE(JIT)556 #if ENABLE(INTERPRETER) 555 557 Vector<unsigned> m_propertyAccessInstructions; 556 558 Vector<unsigned> m_globalResolveInstructions; 557 #else 559 #endif 560 #if ENABLE(JIT) 558 561 Vector<StructureStubInfo> m_structureStubInfos; 559 562 Vector<GlobalResolveInfo> m_globalResolveInfos;
Note:
See TracChangeset
for help on using the changeset viewer.