Changeset 61588 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Jun 21, 2010, 4:17:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.h
r61324 r61588 352 352 unsigned bytecodeOffset(CallFrame* callFrame, ReturnAddressPtr returnAddress) 353 353 { 354 reparseForExceptionInfoIfNecessary(callFrame); 354 if (!reparseForExceptionInfoIfNecessary(callFrame)) 355 return 0; 355 356 return binaryChop<CallReturnOffsetToBytecodeOffset, unsigned, getCallReturnOffset>(callReturnIndexVector().begin(), callReturnIndexVector().size(), getJITCode().offsetOf(returnAddress.value()))->bytecodeOffset; 356 357 } … … 522 523 #endif 523 524 524 void reparseForExceptionInfoIfNecessary(CallFrame*);525 bool reparseForExceptionInfoIfNecessary(CallFrame*) WARN_UNUSED_RETURN; 525 526 526 527 void createRareDataIfNecessary()
Note:
See TracChangeset
for help on using the changeset viewer.