Changeset 290873 in webkit for trunk/Source/JavaScriptCore/assembler
- Timestamp:
- Mar 5, 2022, 10:59:01 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/JITOperationList.cpp
r286901 r290873 67 67 } 68 68 #endif 69 if constexpr ( ASSERT_ENABLED) {69 if constexpr (JIT_OPERATION_VALIDATION_ASSERT_ENABLED) { 70 70 for (const auto* current = begin; current != end; ++current) { 71 71 void* operation = removeCodePtrTag(current->operation); 72 72 if (operation) { 73 void* validator = removeCodePtrTag( current->operationWithValidation);73 void* validator = removeCodePtrTag(Options::useJITCage() ? current->operationWithValidation : current->operation); 74 74 validator = WTF::tagNativeCodePtrImpl<OperationPtrTag>(validator); 75 75 map.add(operation, validator);
Note:
See TracChangeset
for help on using the changeset viewer.