Changeset 103294 in webkit for trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.h
- Timestamp:
- Dec 19, 2011, 7:16:21 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.h
r102743 r103294 179 179 Call addExceptionCheck(Call functionCall, CodeOrigin codeOrigin) 180 180 { 181 move(TrustedImm32(m_exceptionChecks.size()), GPRInfo::nonPreservedNonReturnGPR); 181 182 #if USE(JSVALUE64) 182 183 Jump exceptionCheck = branchTestPtr(NonZero, AbsoluteAddress(&globalData()->exception)); … … 191 192 Call addFastExceptionCheck(Call functionCall, CodeOrigin codeOrigin) 192 193 { 194 move(TrustedImm32(m_exceptionChecks.size()), GPRInfo::nonPreservedNonReturnGPR); 193 195 Jump exceptionCheck = branchTestPtr(Zero, GPRInfo::returnValueGPR); 194 196 m_exceptionChecks.append(CallExceptionRecord(functionCall, exceptionCheck, codeOrigin));
Note:
See TracChangeset
for help on using the changeset viewer.