Changeset 242192 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDriver.cpp
- Timestamp:
- Feb 27, 2019, 10:25:23 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDriver.cpp
r238162 r242192 71 71 static CompilationResult compileImpl( 72 72 VM& vm, CodeBlock* codeBlock, CodeBlock* profiledDFGCodeBlock, CompilationMode mode, 73 unsigned osrEntryBytecodeIndex, const Operands< JSValue>& mustHandleValues,73 unsigned osrEntryBytecodeIndex, const Operands<Optional<JSValue>>& mustHandleValues, 74 74 Ref<DeferredCompilationCallback>&& callback) 75 75 { … … 117 117 #else // ENABLE(DFG_JIT) 118 118 static CompilationResult compileImpl( 119 VM&, CodeBlock*, CodeBlock*, CompilationMode, unsigned, const Operands< JSValue>&,119 VM&, CodeBlock*, CodeBlock*, CompilationMode, unsigned, const Operands<Optional<JSValue>>&, 120 120 Ref<DeferredCompilationCallback>&&) 121 121 { … … 126 126 CompilationResult compile( 127 127 VM& vm, CodeBlock* codeBlock, CodeBlock* profiledDFGCodeBlock, CompilationMode mode, 128 unsigned osrEntryBytecodeIndex, const Operands< JSValue>& mustHandleValues,128 unsigned osrEntryBytecodeIndex, const Operands<Optional<JSValue>>& mustHandleValues, 129 129 Ref<DeferredCompilationCallback>&& callback) 130 130 {
Note:
See TracChangeset
for help on using the changeset viewer.