Skip to content

Commit 71bd27b

Browse files
comment out debugging
1 parent f55129e commit 71bd27b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Python/ceval.c

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1201,19 +1201,19 @@ _PyTier2Interpreter(
12011201
next_uop->opcode != _PY_FRAME_KW &&
12021202
next_uop->opcode != _SAVE_RETURN_OFFSET &&
12031203
next_uop->opcode != _SAVE_RETURN_OFFSET) {
1204-
if (next_uop->opcode != _START_EXECUTOR) {
1205-
if (next_uop->format == UOP_FORMAT_TARGET) {
1206-
_Py_CODEUNIT *aim = _PyFrame_GetBytecode(frame) + next_uop->target;
1207-
printf(" aim=[%s]\n", _PyOpcode_OpName[aim->op.code]);
1208-
}
1209-
else if (next_uop->format == UOP_FORMAT_JUMP) {
1210-
_PyUOpInstruction *aim_uop = current_executor->trace + next_uop->jump_target;
1211-
if (aim_uop->format == UOP_FORMAT_TARGET) {
1212-
_Py_CODEUNIT *aim = _PyFrame_GetBytecode(frame) + aim_uop->target;
1213-
printf(" aim=[%s]\n", _PyOpcode_OpName[aim->op.code]);
1214-
}
1215-
}
1216-
}
1204+
// if (next_uop->opcode != _START_EXECUTOR) {
1205+
// if (next_uop->format == UOP_FORMAT_TARGET) {
1206+
// _Py_CODEUNIT *aim = _PyFrame_GetBytecode(frame) + next_uop->target;
1207+
// printf(" aim=[%s]\n", _PyOpcode_OpName[aim->op.code]);
1208+
// }
1209+
// else if (next_uop->format == UOP_FORMAT_JUMP) {
1210+
// _PyUOpInstruction *aim_uop = current_executor->trace + next_uop->jump_target;
1211+
// if (aim_uop->format == UOP_FORMAT_TARGET) {
1212+
// _Py_CODEUNIT *aim = _PyFrame_GetBytecode(frame) + aim_uop->target;
1213+
// printf(" aim=[%s]\n", _PyOpcode_OpName[aim->op.code]);
1214+
// }
1215+
// }
1216+
// }
12171217
dump_stack(frame, stack_pointer);
12181218
}
12191219
if (next_uop->opcode == _START_EXECUTOR) {

0 commit comments

Comments
 (0)