Lines Matching refs:sljit_sw

29 static sljit_s32 emit_do_imm(struct sljit_compiler *compiler, sljit_u8 opcode, sljit_sw imm)  in emit_do_imm()
33 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + sizeof(sljit_sw)); in emit_do_imm()
35 INC_SIZE(1 + sizeof(sljit_sw)); in emit_do_imm()
41 static sljit_u8* generate_far_jump_code(struct sljit_jump *jump, sljit_u8 *code_ptr, sljit_sw execu… in generate_far_jump_code()
86 compiler->stack_tmp_size = 2 * sizeof(sljit_sw); in sljit_emit_enter()
90 compiler->stack_tmp_size = 3 * sizeof(sljit_sw); in sljit_emit_enter()
95 compiler->saveds_offset += ((scratches > (3 + 6)) ? 6 : (scratches - 3)) * sizeof(sljit_sw); in sljit_emit_enter()
100 compiler->locals_offset += (saveds - 3) * sizeof(sljit_sw); in sljit_emit_enter()
144 inst[3] = sizeof(sljit_sw) * (3 + 2); /* saveds >= 3 as well. */ in sljit_emit_enter()
150 inst[2] = sizeof(sljit_sw) * 2; in sljit_emit_enter()
156 inst[2] = sizeof(sljit_sw) * 3; in sljit_emit_enter()
162 inst[2] = sizeof(sljit_sw) * 4; in sljit_emit_enter()
176 …local_size = SLJIT_LOCALS_OFFSET + ((local_size + sizeof(sljit_sw) - 1) & ~(sizeof(sljit_sw) - 1)); in sljit_emit_enter()
223 SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, local_size + sizeof(sljit_sw))); in sljit_emit_enter()
228 TMP_REG1, 0, TMP_REG1, 0, SLJIT_IMM, sizeof(sljit_sw))); in sljit_emit_enter()
258 compiler->stack_tmp_size = 2 * sizeof(sljit_sw); in sljit_set_context()
262 compiler->stack_tmp_size = 3 * sizeof(sljit_sw); in sljit_set_context()
267 compiler->saveds_offset += ((scratches > (3 + 6)) ? 6 : (scratches - 3)) * sizeof(sljit_sw); in sljit_set_context()
272 compiler->locals_offset += (saveds - 3) * sizeof(sljit_sw); in sljit_set_context()
284 …->local_size = SLJIT_LOCALS_OFFSET + ((local_size + sizeof(sljit_sw) - 1) & ~(sizeof(sljit_sw) - 1… in sljit_set_context()
289 …_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw) in sljit_emit_return()
333 RET_I16(sizeof(sljit_sw)); in sljit_emit_return()
350 sljit_s32 a, sljit_sw imma, in emit_x86_instruction()
352 sljit_s32 b, sljit_sw immb) in emit_x86_instruction()
385 inst_size += sizeof(sljit_sw); in emit_x86_instruction()
391 inst_size += sizeof(sljit_sw); in emit_x86_instruction()
421 inst_size += sizeof(sljit_sw); in emit_x86_instruction()
486 buf_ptr += sizeof(sljit_sw); in emit_x86_instruction()
498 buf_ptr += sizeof(sljit_sw); in emit_x86_instruction()
537 stack_size += sizeof(sljit_sw); in c_fast_call_get_stack_size()
556 if (stack_size == sizeof(sljit_sw) && word_arg_count == 3) { in c_fast_call_with_args()
564 … EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), compiler->saveds_offset - sizeof(sljit_sw)); in c_fast_call_with_args()
589 stack_size += sizeof(sljit_sw); in c_fast_call_with_args()
593 stack_size += sizeof(sljit_sw); in c_fast_call_with_args()
642 stack_size += sizeof(sljit_sw); in cdecl_call_get_stack_size()
668 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_MEM1(SLJIT_SP), compiler->saveds_offset - sizeof(sljit_sw)); in cdecl_call_with_args()
693 stack_size += sizeof(sljit_sw); in cdecl_call_with_args()
773 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall()
837 …BUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw) in sljit_emit_fast_enter()
868 static sljit_s32 emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw) in emit_fast_return()