Lines Matching refs:saveds
67 sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds, in sljit_emit_enter() argument
74 …CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, loca… in sljit_emit_enter()
75 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
80 size = 1 + (scratches > 7 ? (scratches - 7) : 0) + (saveds <= 3 ? saveds : 3); in sljit_emit_enter()
97 if (saveds > 2 || scratches > 7) in sljit_emit_enter()
99 if (saveds > 1 || scratches > 8) in sljit_emit_enter()
101 if (saveds > 0 || scratches > 9) in sljit_emit_enter()
140 …saveds = (2 + (scratches > 7 ? (scratches - 7) : 0) + (saveds <= 3 ? saveds : 3)) * sizeof(sljit_u… in sljit_emit_enter()
141 local_size = ((SLJIT_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_emit_enter()
187 sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds, in sljit_set_context() argument
191 …CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, loc… in sljit_set_context()
192 set_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
197 …saveds = (2 + (scratches > 7 ? (scratches - 7) : 0) + (saveds <= 3 ? saveds : 3)) * sizeof(sljit_u… in sljit_set_context()
198 compiler->local_size = ((SLJIT_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_set_context()
237 (compiler->saveds <= 3 ? compiler->saveds : 3); in sljit_emit_return()
250 if (compiler->saveds > 0 || compiler->scratches > 9) in sljit_emit_return()
252 if (compiler->saveds > 1 || compiler->scratches > 8) in sljit_emit_return()
254 if (compiler->saveds > 2 || compiler->scratches > 7) in sljit_emit_return()