Skip to content

Commit 1b27f36

Browse files
gh-129819: Allow tier2/JIT and tailcall (GH-129820)
1 parent 11bb08e commit 1b27f36

File tree

5 files changed

+3
-27
lines changed

5 files changed

+3
-27
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Allow building the JIT with the tailcall interpreter.

Python/ceval_macros.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ do { \
397397
stack_pointer = _PyFrame_GetStackPointer(frame); \
398398
if (next_instr == NULL) { \
399399
next_instr = frame->instr_ptr; \
400-
goto error; \
400+
JUMP_TO_LABEL(error); \
401401
} \
402402
DISPATCH(); \
403403
} while (0)

configure

-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

-13
Original file line numberDiff line numberDiff line change
@@ -7033,19 +7033,6 @@ fi
70337033
],
70347034
[AC_MSG_RESULT([no value specified])])
70357035

7036-
# Do not enable tail-calling interpreter if tier 2 is enabled.
7037-
AS_VAR_IF(
7038-
[tier2_flags],
7039-
[],
7040-
[
7041-
case "$ac_cv_tail_call" in yes*)
7042-
AC_DEFINE([Py_TAIL_CALL_INTERP], [1],
7043-
[Define if the C compiler supports efficient proper tail calls.])
7044-
esac
7045-
],
7046-
[]
7047-
)
7048-
70497036

70507037
case $ac_sys_system in
70517038
AIX*)

pyconfig.h.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,7 @@
17181718
/* The version of SunOS/Solaris as reported by `uname -r' without the dot. */
17191719
#undef Py_SUNOS_VERSION
17201720

1721-
/* Define if the C compiler supports efficient proper tail calls. */
1721+
/* Define if you want to use tail-calling interpreters in CPython. */
17221722
#undef Py_TAIL_CALL_INTERP
17231723

17241724
/* Define if you want to enable tracing references for debugging purpose */

0 commit comments

Comments
 (0)