Lines Matching refs:saveds

1663 	sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,  in sljit_emit_enter()  argument
1670 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
1671 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
1677 if (saveds + scratches >= SLJIT_NUMBER_OF_REGISTERS) { in sljit_emit_enter()
1695 if (saveds == 0) { in sljit_emit_enter()
1699 FAIL_IF(push_inst(compiler, stmg(r14 - (sljit_gpr)saveds, r14, offset, r15))); in sljit_emit_enter()
1700 offset += (saveds + 1) * SSIZE_OF(sw); in sljit_emit_enter()
1702 } else if (saveds > saved_arg_count) { in sljit_emit_enter()
1703 if (saveds == saved_arg_count + 1) { in sljit_emit_enter()
1704 FAIL_IF(push_inst(compiler, stg(r14 - (sljit_gpr)saveds, offset, 0, r15))); in sljit_emit_enter()
1707 …FAIL_IF(push_inst(compiler, stmg(r14 - (sljit_gpr)saveds, r13 - (sljit_gpr)saved_arg_count, offset… in sljit_emit_enter()
1708 offset += (saveds - saved_arg_count) * SSIZE_OF(sw); in sljit_emit_enter()
1759 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context() argument
1763 …CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds… in sljit_set_context()
1764 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
1774 sljit_s32 saveds = compiler->saveds; in emit_stack_frame_release() local
1786 if (saveds + scratches >= SLJIT_NUMBER_OF_REGISTERS) { in emit_stack_frame_release()
1804 if (saveds == 0) { in emit_stack_frame_release()
1808 } else if (saveds == 1 && last_reg == r13) { in emit_stack_frame_release()
1812 FAIL_IF(push_inst(compiler, lmg(r14 - (sljit_gpr)saveds, last_reg, offset, r15))); in emit_stack_frame_release()
1813 offset += (saveds + 1) * SSIZE_OF(sw); in emit_stack_frame_release()
1815 } else if (saveds > kept_saveds_count) { in emit_stack_frame_release()
1816 if (saveds == kept_saveds_count + 1) { in emit_stack_frame_release()
1817 FAIL_IF(push_inst(compiler, lg(r14 - (sljit_gpr)saveds, offset, 0, r15))); in emit_stack_frame_release()
1820 …FAIL_IF(push_inst(compiler, lmg(r14 - (sljit_gpr)saveds, r13 - (sljit_gpr)kept_saveds_count, offse… in emit_stack_frame_release()
1821 offset += (saveds - kept_saveds_count) * SSIZE_OF(sw); in emit_stack_frame_release()
3167 …size = GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds - SLJIT_KEPT_SAVEDS_COUNT(co… in sljit_emit_op_dst()