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