Changeset 58469 in webkit for trunk/JavaScriptCore/jit/JITOpcodes.cpp
- Timestamp:
- Apr 28, 2010, 8:57:16 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITOpcodes.cpp
r57955 r58469 401 401 402 402 trampolines->ctiVirtualCall = trampolineAt(finalCode, virtualCallBegin); 403 trampolines->ctiNativeCallThunk = trampolineAt(finalCode, nativeCallThunk);403 trampolines->ctiNativeCallThunk = adoptRef(new NativeExecutable(JITCode(JITCode::HostFunction(trampolineAt(finalCode, nativeCallThunk))))); 404 404 #if ENABLE(JIT_OPTIMIZE_PROPERTY_ACCESS) 405 405 trampolines->ctiStringLengthTrampoline = trampolineAt(finalCode, stringLengthBegin); … … 1938 1938 trampolines->ctiVirtualCallLink = trampolineAt(finalCode, virtualCallLinkBegin); 1939 1939 trampolines->ctiVirtualCall = trampolineAt(finalCode, virtualCallBegin); 1940 trampolines->ctiNativeCallThunk = trampolineAt(finalCode, nativeCallThunk);1940 trampolines->ctiNativeCallThunk = adoptRef(new NativeExecutable(JITCode(JITCode::HostFunction(trampolineAt(finalCode, nativeCallThunk))))); 1941 1941 #if ENABLE(JIT_OPTIMIZE_MOD) 1942 1942 trampolines->ctiSoftModulo = trampolineAt(finalCode, softModBegin);
Note:
See TracChangeset
for help on using the changeset viewer.