Changeset 89885 in webkit for trunk/Source/JavaScriptCore/jit/JITWriteBarrier.h
- Timestamp:
- Jun 27, 2011, 6:32:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITWriteBarrier.h
r89630 r89885 69 69 } 70 70 71 void clear() { clear(0); } 72 71 73 protected: 72 74 JITWriteBarrierBase() … … 95 97 96 98 private: 99 void clear(void* clearedValue) 100 { 101 if (!m_location) 102 return; 103 if (m_location.executableAddress() != JITWriteBarrierFlag) 104 MacroAssembler::repatchPointer(m_location, clearedValue); 105 } 106 97 107 CodeLocationDataLabelPtr m_location; 98 108 };
Note:
See TracChangeset
for help on using the changeset viewer.