Lines Matching refs:saveds

254 	sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,  in sljit_emit_enter()  argument
265 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
266 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
338 if (saveds > 3) in sljit_emit_enter()
339 locals_offset += (saveds - 3) * SSIZE_OF(sw); in sljit_emit_enter()
343 size = 1 + (scratches > 9 ? (scratches - 9) : 0) + (saveds <= 3 ? saveds : 3); in sljit_emit_enter()
349 if (saveds > 2 || scratches > 9) in sljit_emit_enter()
351 if (saveds > 1 || scratches > 10) in sljit_emit_enter()
353 if (saveds > 0 || scratches > 11) in sljit_emit_enter()
502 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context() argument
511 …CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds… in sljit_set_context()
512 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
555 if (saveds > 3) in sljit_set_context()
556 locals_offset += (saveds - 3) * SSIZE_OF(sw); in sljit_set_context()
560 saveds = (2 + (scratches > 9 ? (scratches - 9) : 0) + (saveds <= 3 ? saveds : 3)) * SSIZE_OF(sw); in sljit_set_context()
564 saveds += args_size; in sljit_set_context()
567 compiler->local_size = ((locals_offset + local_size + saveds + 0xf) & ~0xf) - saveds; in sljit_set_context()
577 (compiler->saveds <= 3 ? compiler->saveds : 3)); in emit_stack_frame_release()
583 if (compiler->saveds > 0 || compiler->scratches > 11) in emit_stack_frame_release()
585 if (compiler->saveds > 1 || compiler->scratches > 10) in emit_stack_frame_release()
587 if (compiler->saveds > 2 || compiler->scratches > 9) in emit_stack_frame_release()
857 + (compiler->saveds <= 3 ? compiler->saveds : 3)) * SSIZE_OF(sw); in tail_call_with_args()
1056 if (compiler->saveds > 2 || compiler->scratches > 9) { in tail_call_with_args()
1060 if (compiler->saveds > 1 || compiler->scratches > 10) { in tail_call_with_args()
1064 if (compiler->saveds > 0 || compiler->scratches > 11) { in tail_call_with_args()
1420 + (compiler->saveds <= 3 ? compiler->saveds : 3)) * SSIZE_OF(sw); in skip_frames_before_return()