@@ -5462,33 +5462,33 @@ dummy_func(
54625462 }
54635463
54645464 tier2 op (_GUARD_IP__PUSH_FRAME , (ip /4 -- )) {
5465- _Py_CODEUNIT * target = frame -> instr_ptr + OFFSET_OF (_PUSH_FRAME );
5465+ _Py_CODEUNIT * target = frame -> instr_ptr + IP_OFFSET_OF (_PUSH_FRAME );
54665466 if (target != (_Py_CODEUNIT * )ip ) {
5467- frame -> instr_ptr += OFFSET_OF (_PUSH_FRAME );
5467+ frame -> instr_ptr += IP_OFFSET_OF (_PUSH_FRAME );
54685468 EXIT_IF (true);
54695469 }
54705470 }
54715471
54725472 tier2 op (_GUARD_IP_YIELD_VALUE , (ip /4 -- )) {
5473- _Py_CODEUNIT * target = frame -> instr_ptr + OFFSET_OF (YIELD_VALUE );
5473+ _Py_CODEUNIT * target = frame -> instr_ptr + IP_OFFSET_OF (YIELD_VALUE );
54745474 if (target != (_Py_CODEUNIT * )ip ) {
5475- frame -> instr_ptr += OFFSET_OF (YIELD_VALUE );
5475+ frame -> instr_ptr += IP_OFFSET_OF (YIELD_VALUE );
54765476 EXIT_IF (true);
54775477 }
54785478 }
54795479
54805480 tier2 op (_GUARD_IP_RETURN_VALUE , (ip /4 -- )) {
5481- _Py_CODEUNIT * target = frame -> instr_ptr + OFFSET_OF (RETURN_VALUE );
5481+ _Py_CODEUNIT * target = frame -> instr_ptr + IP_OFFSET_OF (RETURN_VALUE );
54825482 if (target != (_Py_CODEUNIT * )ip ) {
5483- frame -> instr_ptr += OFFSET_OF (RETURN_VALUE );
5483+ frame -> instr_ptr += IP_OFFSET_OF (RETURN_VALUE );
54845484 EXIT_IF (true);
54855485 }
54865486 }
54875487
54885488 tier2 op (_GUARD_IP_RETURN_GENERATOR , (ip /4 -- )) {
5489- _Py_CODEUNIT * target = frame -> instr_ptr + OFFSET_OF (RETURN_GENERATOR );
5489+ _Py_CODEUNIT * target = frame -> instr_ptr + IP_OFFSET_OF (RETURN_GENERATOR );
54905490 if (target != (_Py_CODEUNIT * )ip ) {
5491- frame -> instr_ptr += OFFSET_OF (RETURN_GENERATOR );
5491+ frame -> instr_ptr += IP_OFFSET_OF (RETURN_GENERATOR );
54925492 EXIT_IF (true);
54935493 }
54945494 }
@@ -5647,7 +5647,7 @@ dummy_func(
56475647 int full = !_PyJit_translate_single_bytecode_to_trace (tstate , frame , next_instr , stop_tracing );
56485648 if (full ) {
56495649 LEAVE_TRACING ();
5650- int err = bail_tracing_and_jit (tstate , frame );
5650+ int err = stop_tracing_and_jit (tstate , frame );
56515651 ERROR_IF (err < 0 );
56525652 DISPATCH_GOTO_NON_TRACING ();
56535653 }
@@ -5686,7 +5686,7 @@ dummy_func(
56865686 int opcode = next_instr -> op .code ;
56875687 _PyJit_translate_single_bytecode_to_trace (tstate , frame , NULL , true);
56885688 LEAVE_TRACING ();
5689- int err = bail_tracing_and_jit (tstate , frame );
5689+ int err = stop_tracing_and_jit (tstate , frame );
56905690 ERROR_IF (err < 0 );
56915691 DISPATCH_GOTO_NON_TRACING ();
56925692#else
0 commit comments