Changeset 38477 in webkit for trunk/JavaScriptCore/VM/Machine.h
- Timestamp:
- Nov 16, 2008, 8:25:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.h
r38473 r38477 52 52 class SamplingTool; 53 53 54 #if ENABLE( CTI)54 #if ENABLE(JIT) 55 55 56 56 #if USE(CTI_ARGUMENT) … … 169 169 SamplingTool* sampler() { return m_sampler; } 170 170 171 #if ENABLE( CTI)171 #if ENABLE(JIT) 172 172 173 173 static void SFX_CALL cti_timeout_check(CTI_ARGS); … … 277 277 AssemblerBuffer* assemblerBuffer() const { return m_assemblerBuffer.get(); } 278 278 279 #endif // ENABLE( CTI)279 #endif // ENABLE(JIT) 280 280 281 281 // Default number of ticks before a timeout check should be done. … … 323 323 bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op_construct) || opcode == getOpcode(op_call_eval); } 324 324 325 #if ENABLE( CTI)325 #if ENABLE(JIT) 326 326 static void throwStackOverflowPreviousFrame(CallFrame**, JSGlobalData*, void*& returnAddress); 327 327 … … 332 332 SamplingTool* m_sampler; 333 333 334 #if ENABLE( CTI)334 #if ENABLE(JIT) 335 335 void* m_ctiArrayLengthTrampoline; 336 336 void* m_ctiStringLengthTrampoline;
Note:
See TracChangeset
for help on using the changeset viewer.