Lines Matching refs:local_size

1229 	sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)  in sljit_emit_enter()  argument
1243 …ljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_emit_enter()
1244 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
1284 local_size = ((size + local_size + 0x7) & ~0x7) - size; in sljit_emit_enter()
1285 compiler->local_size = local_size; in sljit_emit_enter()
1387 if (local_size > 0) in sljit_emit_enter()
1388 …mpiler, SLJIT_SUB, ALLOW_IMM | ALLOW_DOUBLE_IMM, SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, local_size)); in sljit_emit_enter()
1395 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context() argument
1400 …jit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_set_context()
1401 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
1409 compiler->local_size = ((size + local_size + 0x7) & ~0x7) - size; in sljit_set_context()
1425 sljit_s32 local_size, fscratches, fsaveds, i, tmp; in emit_stack_frame_release() local
1432 local_size = compiler->local_size; in emit_stack_frame_release()
1437 if (local_size > 0) in emit_stack_frame_release()
1438 FAIL_IF(emit_add_sp(compiler, (sljit_uw)local_size)); in emit_stack_frame_release()
1449 local_size = GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1) & 0x7; in emit_stack_frame_release()
1491 if (local_size <= 0xfff) { in emit_stack_frame_release()
1492 if (local_size == 0) { in emit_stack_frame_release()
1500 …_IF(push_inst(compiler, LDR | 0x800000 | RN(SLJIT_SP) | RD(restored_reg) | (sljit_ins)local_size)); in emit_stack_frame_release()
1509 local_size += SSIZE_OF(sw); in emit_stack_frame_release()
1513 local_size += SSIZE_OF(sw); in emit_stack_frame_release()
1515 if (frame_size > local_size) in emit_stack_frame_release()
1516 …t(compiler, SUB | RD(SLJIT_SP) | RN(SLJIT_SP) | (1 << 25) | (sljit_ins)(frame_size - local_size))); in emit_stack_frame_release()
1517 else if (frame_size < local_size) in emit_stack_frame_release()
1518 FAIL_IF(emit_add_sp(compiler, (sljit_uw)(local_size - frame_size))); in emit_stack_frame_release()
1535 if (local_size > 0) in emit_stack_frame_release()
1536 FAIL_IF(emit_add_sp(compiler, (sljit_uw)local_size)); in emit_stack_frame_release()
2610 SLJIT_ASSERT(((compiler->local_size + size + SSIZE_OF(sw)) & 0x7) == 0); in sljit_emit_op_dst()
2613 …ompiler, WORD_SIZE | LOAD_DATA, dst_r, SLJIT_MEM1(SLJIT_SP), compiler->local_size + size, TMP_REG1… in sljit_emit_op_dst()