Changeset 38839 in webkit for trunk/JavaScriptCore/interpreter
- Timestamp:
- Nov 29, 2008, 3:10:35 AM (17 years ago)
- Location:
- trunk/JavaScriptCore/interpreter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r38825 r38839 62 62 #endif 63 63 64 #if ENABLE(ASSEMBLER) 65 #include "AssemblerBuffer.h" 66 #endif 67 64 68 #if PLATFORM(DARWIN) 65 69 #include <mach/mach.h> … … 607 611 , m_ctiVirtualCallLink(0) 608 612 , m_ctiVirtualCall(0) 613 #endif 614 #if ENABLE(ASSEMBLER) 609 615 , m_assemblerBuffer(new AssemblerBuffer(1024 * 1024)) 610 616 #endif -
trunk/JavaScriptCore/interpreter/Interpreter.h
r38763 r38839 280 280 static JSObject* SFX_CALL cti_op_push_activation(CTI_ARGS); 281 281 282 #endif // ENABLE(JIT) 283 284 #if ENABLE(ASSEMBLER) 282 285 AssemblerBuffer* assemblerBuffer() const { return m_assemblerBuffer.get(); } 283 284 #endif // ENABLE(JIT) 286 #endif 285 287 286 288 // Default number of ticks before a timeout check should be done. … … 343 345 void* m_ctiVirtualCallLink; 344 346 void* m_ctiVirtualCall; 345 347 #endif 348 349 #if ENABLE(ASSEMBLER) 346 350 OwnPtr<AssemblerBuffer> m_assemblerBuffer; 347 351 #endif
Note:
See TracChangeset
for help on using the changeset viewer.