Lines Matching refs:local_size

68 	sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)  in sljit_emit_enter()  argument
74 …eck_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_emit_enter()
75 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
141 local_size = ((SLJIT_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_emit_enter()
144 local_size = SLJIT_LOCALS_OFFSET + ((local_size + 7) & ~7); in sljit_emit_enter()
163 local_size = SLJIT_LOCALS_OFFSET + ((local_size + 3) & ~3); in sljit_emit_enter()
166 compiler->local_size = local_size; in sljit_emit_enter()
168 if (local_size > 1024) { in sljit_emit_enter()
170 FAIL_IF(emit_do_imm(compiler, MOV_r_i32 + reg_map[SLJIT_R0], local_size)); in sljit_emit_enter()
172 local_size -= SLJIT_LOCALS_OFFSET; in sljit_emit_enter()
173 FAIL_IF(emit_do_imm(compiler, MOV_r_i32 + reg_map[SLJIT_R0], local_size)); in sljit_emit_enter()
181 SLJIT_ASSERT(local_size > 0); in sljit_emit_enter()
183 SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, local_size); in sljit_emit_enter()
188 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_set_context() argument
191 …ck_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_set_context()
192 set_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
198 compiler->local_size = ((SLJIT_LOCALS_OFFSET + saveds + local_size + 15) & ~15) - saveds; in sljit_set_context()
201 compiler->local_size = SLJIT_LOCALS_OFFSET + ((local_size + 7) & ~7); in sljit_set_context()
203 compiler->local_size = SLJIT_LOCALS_OFFSET + ((local_size + 3) & ~3); in sljit_set_context()
220 SLJIT_ASSERT(compiler->local_size > 0); in sljit_emit_return()
222 SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, compiler->local_size)); in sljit_emit_return()