Changeset 181250 in webkit for trunk/Source/JavaScriptCore/jit/JITThunks.h
- Timestamp:
- Mar 8, 2015, 4:58:40 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITThunks.h
r177130 r181250 35 35 #include "ThunkGenerator.h" 36 36 #include "Weak.h" 37 #include "WeakHandleOwner.h" 37 38 #include "WeakInlines.h" 38 39 #include <wtf/HashMap.h> … … 45 46 class NativeExecutable; 46 47 47 class JITThunks {48 class JITThunks final : private WeakHandleOwner { 48 49 public: 49 50 JITThunks(); 50 ~JITThunks();51 virtual ~JITThunks(); 51 52 52 53 MacroAssemblerCodePtr ctiNativeCall(VM*); … … 65 66 typedef Mutex Lock; 66 67 typedef MutexLocker Locker; 68 69 void finalize(Handle<Unknown>, void* context) override; 67 70 68 71 typedef HashMap<ThunkGenerator, MacroAssemblerCodeRef> CTIStubMap;
Note:
See TracChangeset
for help on using the changeset viewer.