gcc_jit_context_new_param (comp.ctxt,
NULL,
comp.bool_type,
- "is_cons") };
+ "cert_cons") };
/* TODO: understand why after ipa-prop pass gcc is less keen on inlining
and as consequence can refuse to compile these. (see dhrystone.el)
Flag this and all the one involved in ipa-prop as
gcc_jit_context_new_param (comp.ctxt,
NULL,
comp.bool_type,
- "is_cons") };
+ "cert_cons") };
gcc_jit_function **f_ref = !i ? &comp.setcar : &comp.setcdr;
*f_ref = gcc_jit_context_new_function (comp.ctxt, NULL,
gcc_jit_context_new_param (comp.ctxt,
NULL,
comp.bool_type,
- "is_fixnum") };
+ "cert_fixnum") };
comp.func = func[i] =
gcc_jit_context_new_function (comp.ctxt, NULL,
GCC_JIT_FUNCTION_INTERNAL,
comp.block = entry_block;
- /* is_fixnum ||
+ /* cert_fixnum ||
((FIXNUMP (n) && XFIXNUM (n) != MOST_POSITIVE_FIXNUM
? (XFIXNUM (n) + 1)
: Fadd1 (n)) */
gcc_jit_context_new_param (comp.ctxt,
NULL,
comp.bool_type,
- "is_fixnum") };
+ "cert_fixnum") };
comp.func = comp.negate =
gcc_jit_context_new_function (comp.ctxt, NULL,
comp.block = entry_block;
- /* (is_fixnum || FIXNUMP (TOP)) && XFIXNUM (TOP) != MOST_NEGATIVE_FIXNUM
+ /* (cert_fixnum || FIXNUMP (TOP)) && XFIXNUM (TOP) != MOST_NEGATIVE_FIXNUM
? make_fixnum (- XFIXNUM (TOP)) : Fminus (1, &TOP)) */
gcc_jit_lvalue *n = gcc_jit_param_as_lvalue (param[0]);