Changeset 135466 in webkit for trunk/Source/JavaScriptCore/jit/JITDisassembler.cpp
- Timestamp:
- Nov 21, 2012, 7:47:23 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITDisassembler.cpp
r135457 r135466 93 93 CodeLocationLabel fromLocation = linkBuffer.locationOf(from); 94 94 CodeLocationLabel toLocation = linkBuffer.locationOf(to); 95 if (tryToDisassemble(fromLocation, bitwise_cast<uintptr_t>(toLocation.executableAddress()) - bitwise_cast<uintptr_t>(fromLocation.executableAddress()), " ", WTF::dataFile())) 96 return; 97 98 dataLog(" disassembly not available for range %p...%p\n", fromLocation.executableAddress(), toLocation.executableAddress()); 95 disassemble(fromLocation, bitwise_cast<uintptr_t>(toLocation.executableAddress()) - bitwise_cast<uintptr_t>(fromLocation.executableAddress()), " ", WTF::dataFile()); 99 96 } 100 97
Note:
See TracChangeset
for help on using the changeset viewer.