Changeset 215634 in webkit for trunk/Source/JavaScriptCore/jit
- Timestamp:
- Apr 21, 2017, 1:31:39 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/ExecutableAllocator.h
r215623 r215634 82 82 extern JS_EXPORTDATA uintptr_t endOfFixedExecutableMemoryPool; 83 83 84 inline bool isJITPC(void* pc)85 {86 return reinterpret_cast<void*>(startOfFixedExecutableMemoryPool) <= pc87 && pc < reinterpret_cast<void*>(endOfFixedExecutableMemoryPool);88 }89 90 84 typedef void (*JITWriteSeparateHeapsFunction)(off_t, const void*, size_t); 91 85 extern JS_EXPORTDATA JITWriteSeparateHeapsFunction jitWriteSeparateHeapsFunction; … … 150 144 }; 151 145 152 #else153 inline bool isJITPC(void*) { return false; }154 146 #endif // ENABLE(JIT) && ENABLE(ASSEMBLER) 155 147 156 157 148 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.