Changeset 81191 in webkit for trunk/Source/JavaScriptCore/jit/JITStubs.cpp
- Timestamp:
- Mar 15, 2011, 4:29:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITStubs.cpp
r80684 r81191 944 944 #define CHECK_FOR_EXCEPTION() \ 945 945 do { \ 946 if (UNLIKELY(stackFrame.globalData->exception .get())) \946 if (UNLIKELY(stackFrame.globalData->exception)) \ 947 947 VM_THROW_EXCEPTION(); \ 948 948 } while (0) 949 949 #define CHECK_FOR_EXCEPTION_AT_END() \ 950 950 do { \ 951 if (UNLIKELY(stackFrame.globalData->exception .get())) \951 if (UNLIKELY(stackFrame.globalData->exception)) \ 952 952 VM_THROW_EXCEPTION_AT_END(); \ 953 953 } while (0) 954 954 #define CHECK_FOR_EXCEPTION_VOID() \ 955 955 do { \ 956 if (UNLIKELY(stackFrame.globalData->exception .get())) { \956 if (UNLIKELY(stackFrame.globalData->exception)) { \ 957 957 VM_THROW_EXCEPTION_AT_END(); \ 958 958 return; \ … … 3473 3473 STUB_INIT_STACK_FRAME(stackFrame); 3474 3474 JSGlobalData* globalData = stackFrame.globalData; 3475 ExceptionHandler handler = jitThrow(globalData, stackFrame.callFrame, globalData->exception .get(), globalData->exceptionLocation);3475 ExceptionHandler handler = jitThrow(globalData, stackFrame.callFrame, globalData->exception, globalData->exceptionLocation); 3476 3476 STUB_SET_RETURN_ADDRESS(handler.catchRoutine); 3477 3477 return handler.callFrame;
Note:
See TracChangeset
for help on using the changeset viewer.