Changeset 39039 in webkit for trunk/JavaScriptCore/interpreter
- Timestamp:
- Dec 5, 2008, 12:39:57 PM (16 years ago)
- Location:
- trunk/JavaScriptCore/interpreter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r39038 r39039 4408 4408 } 4409 4409 4410 void Interpreter::cti_timeout_check(CTI_ARGS) 4411 { 4412 CTI_STACK_HACK(); 4413 4414 if (ARG_globalData->interpreter->checkTimeout(ARG_callFrame->dynamicGlobalObject())) { 4410 int Interpreter::cti_timeout_check(CTI_ARGS) 4411 { 4412 CTI_STACK_HACK(); 4413 Interpreter* interpreter = ARG_globalData->interpreter; 4414 4415 if (interpreter->checkTimeout(ARG_callFrame->dynamicGlobalObject())) { 4415 4416 ARG_globalData->exception = createInterruptedExecutionException(ARG_globalData); 4416 4417 VM_THROW_EXCEPTION_AT_END(); 4417 4418 } 4419 4420 return interpreter->m_ticksUntilNextTimeoutCheck; 4418 4421 } 4419 4422 -
trunk/JavaScriptCore/interpreter/Interpreter.h
r38975 r39039 171 171 #if ENABLE(JIT) 172 172 173 static voidSFX_CALL cti_timeout_check(CTI_ARGS);173 static int SFX_CALL cti_timeout_check(CTI_ARGS); 174 174 static void SFX_CALL cti_register_file_check(CTI_ARGS); 175 175
Note:
See TracChangeset
for help on using the changeset viewer.