#define JIT_CLEANUP_THRESHOLD 100000
// This is the length of the trace we project initially.
-#define UOP_MAX_TRACE_LENGTH 800
+#define UOP_MAX_TRACE_LENGTH 1200
#define TRACE_STACK_SIZE 5
# Disable gc collection when tracing, otherwise the
# deallocators may be traced as well.
def setUp(self):
+ if os.environ.get('PYTHON_UOPS_OPTIMIZE') == '0':
+ self.skipTest("Line tracing behavior differs when JIT optimizer is disabled")
self.using_gc = gc.isenabled()
gc.disable()
self.addCleanup(sys.settrace, sys.gettrace())
self.assertEqual(self.tracer.results().counts, expected)
+ @unittest.skipIf(os.environ.get('PYTHON_UOPS_OPTIMIZE') == '0',
+ "Line counts differ when JIT optimizer is disabled")
def test_traced_func_loop(self):
self.tracer.runfunc(traced_func_loop, 2, 3)
self.assertEqual(self.tracer.results().counts, expected)
+ @unittest.skipIf(os.environ.get('PYTHON_UOPS_OPTIMIZE') == '0',
+ "Line counts differ when JIT optimizer is disabled")
def test_trace_func_generator(self):
self.tracer.runfunc(traced_func_calling_generator)
self.my_py_filename = fix_ext_py(__file__)
self.addCleanup(sys.settrace, sys.gettrace())
+ @unittest.skipIf(os.environ.get('PYTHON_UOPS_OPTIMIZE') == '0',
+ "Line counts differ when JIT optimizer is disabled")
def test_exec_counts(self):
self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
code = r'''traced_func_loop(2, 5)'''
--- /dev/null
+Fix JIT trace buffer overrun by increasing possible exit stubs.
+Patch by Donghee Na.
for (;;) {
target = INSTR_IP(instr, code);
- // Need space for _DEOPT
- max_length--;
-
+ // One for possible _DEOPT, one because _CHECK_VALIDITY itself might _DEOPT
+ max_length-=2;
uint32_t opcode = instr->op.code;
uint32_t oparg = instr->op.arg;
_Py_BloomFilter_Init(&dependencies);
_PyUOpInstruction buffer[UOP_MAX_TRACE_LENGTH];
OPT_STAT_INC(attempts);
+ char *env_var = Py_GETENV("PYTHON_UOPS_OPTIMIZE");
+ bool is_noopt = true;
+ if (env_var == NULL || *env_var == '\0' || *env_var > '0') {
+ is_noopt = false;
+ }
int length = translate_bytecode_to_trace(frame, instr, buffer, UOP_MAX_TRACE_LENGTH, &dependencies, progress_needed);
if (length <= 0) {
// Error or nothing translated
}
assert(length < UOP_MAX_TRACE_LENGTH);
OPT_STAT_INC(traces_created);
- char *env_var = Py_GETENV("PYTHON_UOPS_OPTIMIZE");
- if (env_var == NULL || *env_var == '\0' || *env_var > '0') {
+ if (!is_noopt) {
length = _Py_uop_analyze_and_optimize(frame, buffer,
length,
curr_stackentries, &dependencies);