Changeset 122208 in webkit for trunk/Source/JavaScriptCore/jit/JITStubRoutine.h
- Timestamp:
- Jul 10, 2012, 2:36:13 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITStubRoutine.h
r122166 r122208 131 131 static bool passesFilter(uintptr_t address) 132 132 { 133 if (!canPerformRangeFilter()) 134 return true; 133 if (!canPerformRangeFilter()) { 134 // Just check that the address doesn't use any special values that would make 135 // our hashtables upset. 136 return address >= jitAllocationGranule && address != std::numeric_limits<uintptr_t>::max(); 137 } 135 138 136 139 if (address - filteringStartAddress() >= filteringExtentSize())
Note:
See TracChangeset
for help on using the changeset viewer.