Lines Matching refs:saveds

69 	sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,  in sljit_emit_enter()  argument
76 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
77 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
99 if (saveds > 3) in sljit_emit_enter()
100 compiler->locals_offset += (saveds - 3) * sizeof(sljit_sw); in sljit_emit_enter()
105 size = 1 + (scratches > 9 ? (scratches - 9) : 0) + (saveds <= 3 ? saveds : 3); in sljit_emit_enter()
122 if (saveds > 2 || scratches > 9) in sljit_emit_enter()
124 if (saveds > 1 || scratches > 10) in sljit_emit_enter()
126 if (saveds > 0 || scratches > 11) in sljit_emit_enter()
170saveds = (2 + (scratches > 9 ? (scratches - 9) : 0) + (saveds <= 3 ? saveds : 3)) * sizeof(sljit_u… in sljit_emit_enter()
171 local_size = ((SLJIT_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_emit_enter()
248 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context() argument
252 …CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds… in sljit_set_context()
253 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
271 if (saveds > 3) in sljit_set_context()
272 compiler->locals_offset += (saveds - 3) * sizeof(sljit_sw); in sljit_set_context()
278saveds = (2 + (scratches > 9 ? (scratches - 9) : 0) + (saveds <= 3 ? saveds : 3)) * sizeof(sljit_u… in sljit_set_context()
279 compiler->local_size = ((SLJIT_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_set_context()
314 (compiler->saveds <= 3 ? compiler->saveds : 3); in sljit_emit_return()
324 if (compiler->saveds > 0 || compiler->scratches > 11) in sljit_emit_return()
326 if (compiler->saveds > 1 || compiler->scratches > 10) in sljit_emit_return()
328 if (compiler->saveds > 2 || compiler->scratches > 9) in sljit_emit_return()
915 …>scratches > 9 ? (compiler->scratches - 9) : 0) + (compiler->saveds <= 3 ? compiler->saveds : 3)) … in skip_frames_before_return()