Changeset 38425 in webkit for trunk/JavaScriptCore/VM/CodeBlock.h
- Timestamp:
- Nov 15, 2008, 12:34:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.h
r38420 r38425 80 80 81 81 struct StructureStubInfo { 82 StructureStubInfo(unsigned opcodeIndex)83 : opcodeIndex(opcodeIndex)82 StructureStubInfo(unsigned bytecodeIndex) 83 : bytecodeIndex(bytecodeIndex) 84 84 , stubRoutine(0) 85 85 , callReturnLocation(0) … … 88 88 } 89 89 90 unsigned opcodeIndex;90 unsigned bytecodeIndex; 91 91 void* stubRoutine; 92 92 void* callReturnLocation; … … 104 104 } 105 105 106 unsigned opcodeIndex;106 unsigned bytecodeIndex; 107 107 void* callReturnLocation; 108 108 void* hotPathBegin; … … 287 287 } 288 288 289 #if !defined(NDEBUG) || ENABLE_ OPCODE_SAMPLING289 #if !defined(NDEBUG) || ENABLE_BYTECODE_SAMPLING 290 290 void dump(ExecState*) const; 291 291 void printStructureIDs(const Instruction*) const; … … 365 365 SymbolTable symbolTable; 366 366 private: 367 #if !defined(NDEBUG) || ENABLE( OPCODE_SAMPLING)367 #if !defined(NDEBUG) || ENABLE(BYTECODE_SAMPLING) 368 368 void dump(ExecState*, const Vector<Instruction>::const_iterator& begin, Vector<Instruction>::const_iterator&) const; 369 369 #endif
Note:
See TracChangeset
for help on using the changeset viewer.