Changeset 197226 in webkit for trunk/Source/JavaScriptCore/jit/JITStubRoutine.h
- Timestamp:
- Feb 26, 2016, 6:10:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITStubRoutine.h
r190735 r197226 104 104 static bool canPerformRangeFilter() 105 105 { 106 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED)107 106 return true; 108 #else109 return false;110 #endif111 107 } 112 108 static uintptr_t filteringStartAddress() 113 109 { 114 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED)115 110 return startOfFixedExecutableMemoryPool; 116 #else117 UNREACHABLE_FOR_PLATFORM();118 return 0;119 #endif120 111 } 121 112 static size_t filteringExtentSize() 122 113 { 123 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED)124 114 return fixedExecutableMemoryPoolSize; 125 #else126 UNREACHABLE_FOR_PLATFORM();127 return 0;128 #endif129 115 } 130 116 static bool passesFilter(uintptr_t address)
Note:
See TracChangeset
for help on using the changeset viewer.