Lines Matching refs:local_size

1132 	sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)  in sljit_emit_enter()  argument
1138 …eck_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_emit_enter()
1139 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
1156 local_size = ((size + local_size + 7) & ~7) - size; in sljit_emit_enter()
1157 compiler->local_size = local_size; in sljit_emit_enter()
1158 if (local_size > 0) { in sljit_emit_enter()
1159 if (local_size <= (127 << 2)) in sljit_emit_enter()
1160 FAIL_IF(push_inst16(compiler, SUB_SP | (local_size >> 2))); in sljit_emit_enter()
1162 FAIL_IF(emit_op_imm(compiler, SLJIT_SUB | ARG2_IMM, SLJIT_SP, SLJIT_SP, local_size)); in sljit_emit_enter()
1177 sljit_si fscratches, sljit_si fsaveds, sljit_si local_size) in sljit_set_context() argument
1182 …ck_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_set_context()
1183 set_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
1186 compiler->local_size = ((size + local_size + 7) & ~7) - size; in sljit_set_context()
1200 if (compiler->local_size > 0) { in sljit_emit_return()
1201 if (compiler->local_size <= (127 << 2)) in sljit_emit_return()
1202 FAIL_IF(push_inst16(compiler, ADD_SP | (compiler->local_size >> 2))); in sljit_emit_return()
1204 FAIL_IF(emit_op_imm(compiler, SLJIT_ADD | ARG2_IMM, SLJIT_SP, SLJIT_SP, compiler->local_size)); in sljit_emit_return()