Lines Matching refs:local_size

255 	sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)  in sljit_emit_enter()  argument
265 …ljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_emit_enter()
266 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
368 local_size = ((locals_offset + local_size + size + 0xf) & ~0xf) - size; in sljit_emit_enter()
369 compiler->local_size = local_size; in sljit_emit_enter()
412 if (word_arg_count == 3 && local_size > 4 * 4096) in sljit_emit_enter()
413 r2_offset = local_size + args_size; in sljit_emit_enter()
450 SLJIT_ASSERT(r2_offset == -1 || local_size > 4 * 4096); in sljit_emit_enter()
452 if (local_size > 4096) { in sljit_emit_enter()
453 if (local_size <= 4 * 4096) { in sljit_emit_enter()
456 if (local_size > 2 * 4096) in sljit_emit_enter()
458 if (local_size > 3 * 4096) in sljit_emit_enter()
462 EMIT_MOV(compiler, SLJIT_R2, 0, SLJIT_IMM, local_size >> 12); in sljit_emit_enter()
473 local_size &= 0xfff; in sljit_emit_enter()
477 if (local_size > 0) { in sljit_emit_enter()
478 BINARY_IMM32(OR, 0, SLJIT_MEM1(SLJIT_SP), -local_size); in sljit_emit_enter()
479 BINARY_IMM32(SUB, local_size, SLJIT_SP, 0); in sljit_emit_enter()
487 SLJIT_ASSERT(local_size > 0); in sljit_emit_enter()
489 BINARY_IMM32(SUB, local_size, SLJIT_SP, 0); in sljit_emit_enter()
503 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context() argument
511 …jit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size)); in sljit_set_context()
512 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
567 compiler->local_size = ((locals_offset + local_size + saveds + 0xf) & ~0xf) - saveds; in sljit_set_context()
603 SLJIT_ASSERT(compiler->local_size > 0); in sljit_emit_return_void()
605 BINARY_IMM32(ADD, compiler->local_size, SLJIT_SP, 0); in sljit_emit_return_void()
904 offset = stack_size + compiler->local_size; in tail_call_with_args()
996 BINARY_IMM32(ADD, compiler->local_size, SLJIT_SP, 0); in tail_call_with_args()
1024 min_size = prev_stack_size + compiler->local_size; in tail_call_with_args()
1416 SLJIT_ASSERT(compiler->local_size > 0); in skip_frames_before_return()
1418 size = compiler->local_size; in skip_frames_before_return()