Changeset 283288 in webkit for trunk/Source/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Sep 29, 2021, 5:47:41 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.cpp
r283229 r283288 270 270 sizeMarker = m_vm->jitSizeStatistics->markStart(id, *this); 271 271 } 272 273 #if ASSERT_ENABLED 274 if (opcodeID != op_catch) { 275 probeDebug([=] (Probe::Context& ctx) { 276 CodeBlock* codeBlock = ctx.fp<CallFrame*>()->codeBlock(); 277 auto* constantPool = ctx.gpr<void*>(s_constantsGPR); 278 RELEASE_ASSERT(codeBlock->baselineJITConstantPool() == constantPool); 279 auto* metadata = ctx.gpr<void*>(s_metadataGPR); 280 RELEASE_ASSERT(codeBlock->metadataTable() == metadata); 281 }); 282 } 283 #endif 272 284 273 285 if (UNLIKELY(m_compilation)) {
Note:
See TracChangeset
for help on using the changeset viewer.