Changeset 59746 in webkit for trunk/JavaScriptCore/runtime/JSGlobalData.h
- Timestamp:
- May 18, 2010, 11:04:18 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalData.h
r59676 r59746 171 171 #if ENABLE(JIT) 172 172 JITThunks jitStubs; 173 MacroAssemblerCodePtr get Thunk(ThunkGenerator generator)173 MacroAssemblerCodePtr getCTIStub(ThunkGenerator generator) 174 174 { 175 return jitStubs. specializedThunk(this, generator);175 return jitStubs.ctiStub(this, generator); 176 176 } 177 PassRefPtr<NativeExecutable> getHostFunction(NativeFunction function); 178 PassRefPtr<NativeExecutable> getHostFunction(NativeFunction function, ThunkGenerator generator); 177 179 #endif 178 180 TimeoutChecker timeoutChecker; 179 181 Terminator terminator; 180 182 Heap heap; 181 182 #if ENABLE(JIT)183 typedef HashMap<NativeFunction, RefPtr<NativeExecutable> > NativeExecutableMap;184 NativeExecutableMap m_nativeExecutableMap;185 PassRefPtr<NativeExecutable> getNativeExecutable(NativeFunction function);186 PassRefPtr<NativeExecutable> getNativeExecutable(NativeFunction function, ThunkGenerator generator);187 #endif188 183 189 184 JSValue exception;
Note:
See TracChangeset
for help on using the changeset viewer.