summaryrefslogtreecommitdiff
path: root/src/comp.c
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-07-15 12:15:22 +0200
committerAndrea Corallo <akrl@sdf.org>2020-07-15 22:40:30 +0200
commit82169a3d97014c3eae5e7bad4aabb9220dd26b3b (patch)
tree3931482d0887bde48ac78f885df628c928deec65 /src/comp.c
parent4c46f8bac0ad3ee89ada767a6dd651411c1319a5 (diff)
downloademacs-82169a3d97014c3eae5e7bad4aabb9220dd26b3b.tar.gz
emacs-82169a3d97014c3eae5e7bad4aabb9220dd26b3b.tar.bz2
emacs-82169a3d97014c3eae5e7bad4aabb9220dd26b3b.zip
* Fix bug#42360
* src/comp.c (compile_function): Allocate function frame as array if non local exits are present to retain correct Elisp semantic. (emit_limple_call_ref): Directly use the frame array for ref calls to have GCC spills into it before calling.
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c47
1 files changed, 41 insertions, 6 deletions
diff --git a/src/comp.c b/src/comp.c
index 8f7a48443cf..704bd4b6b35 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -1839,6 +1839,17 @@ emit_limple_call_ref (Lisp_Object insn, bool direct)
Lisp_Object callee = FIRST (insn);
EMACS_INT nargs = XFIXNUM (Flength (CDR (insn)));
+ if (!nargs)
+ return emit_call_ref (callee, 0, comp.frame[0], direct);
+
+ if (comp.func_has_non_local || !comp.func_speed)
+ {
+ /* FIXME: See bug#42360. */
+ Lisp_Object first_arg = SECOND (insn);
+ EMACS_INT first_slot = XFIXNUM (CALL1I (comp-mvar-slot, first_arg));
+ return emit_call_ref (callee, nargs, comp.frame[first_slot], direct);
+ }
+
gcc_jit_lvalue *tmp_arr =
gcc_jit_function_new_local (
comp.func,
@@ -3757,12 +3768,36 @@ compile_function (Lisp_Object func)
comp.func_speed = XFIXNUM (CALL1I (comp-func-speed, func));
comp.frame = SAFE_ALLOCA (frame_size * sizeof (*comp.frame));
- for (ptrdiff_t i = 0; i < frame_size; ++i)
- comp.frame[i] =
- gcc_jit_function_new_local (comp.func,
- NULL,
- comp.lisp_obj_type,
- format_string ("slot_%td", i));
+ if (comp.func_has_non_local || !comp.func_speed)
+ {
+ /* FIXME: See bug#42360. */
+ gcc_jit_lvalue *arr =
+ gcc_jit_function_new_local (
+ comp.func,
+ NULL,
+ gcc_jit_context_new_array_type (comp.ctxt,
+ NULL,
+ comp.lisp_obj_type,
+ frame_size),
+ "frame");
+
+ for (ptrdiff_t i = 0; i < frame_size; ++i)
+ comp.frame[i] =
+ gcc_jit_context_new_array_access (
+ comp.ctxt,
+ NULL,
+ gcc_jit_lvalue_as_rvalue (arr),
+ gcc_jit_context_new_rvalue_from_int (comp.ctxt,
+ comp.int_type,
+ i));
+ }
+ else
+ for (ptrdiff_t i = 0; i < frame_size; ++i)
+ comp.frame[i] =
+ gcc_jit_function_new_local (comp.func,
+ NULL,
+ comp.lisp_obj_type,
+ format_string ("slot_%td", i));
comp.scratch = NULL;