Changeset 276005 in webkit for trunk/Source/JavaScriptCore/ftl/FTLCompile.cpp
- Timestamp:
- Apr 15, 2021, 12:03:38 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLCompile.cpp
r275626 r276005 155 155 unsigned entrypointIndex = pair.key; 156 156 Vector<FlushFormat> argumentFormats = state.graph.m_argumentFormats[entrypointIndex]; 157 state. jitCode->common.appendCatchEntrypoint(catchBytecodeIndex, state.finalizer->b3CodeLinkBuffer->locationOf<ExceptionHandlerPtrTag>(state.proc->code().entrypointLabel(entrypointIndex)), WTFMove(argumentFormats));158 } 159 state.jitCode->common.finalizeCatchEntrypoints( );157 state.graph.appendCatchEntrypoint(catchBytecodeIndex, state.finalizer->b3CodeLinkBuffer->locationOf<ExceptionHandlerPtrTag>(state.proc->code().entrypointLabel(entrypointIndex)), WTFMove(argumentFormats)); 158 } 159 state.jitCode->common.finalizeCatchEntrypoints(WTFMove(state.graph.m_catchEntrypoints)); 160 160 161 161 if (B3::Air::Disassembler* disassembler = state.proc->code().disassembler()) {
Note:
See TracChangeset
for help on using the changeset viewer.