Lines Matching refs:sljit_u8

31 	sljit_u8 *inst;  in emit_load_imm64()
33 inst = (sljit_u8*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_sw)); in emit_load_imm64()
42 static sljit_u8* generate_far_jump_code(struct sljit_jump *jump, sljit_u8 *code_ptr) in generate_far_jump_code()
77 static sljit_u8* generate_put_label_code(struct sljit_put_label *put_label, sljit_u8 *code_ptr, slj… in generate_put_label_code()
87 code_ptr = (sljit_u8*)put_label->addr - 2 - sizeof(sljit_uw); in generate_put_label_code()
93 code_ptr[0] = (sljit_u8)(code_ptr[0] & ~0x08); in generate_put_label_code()
117 code_ptr[0] = (sljit_u8)(code_ptr[0] & ~0x4); in generate_put_label_code()
119 code_ptr[2] = (sljit_u8)(code_ptr[2] & ~(0x7 << 3)); in generate_put_label_code()
121 code_ptr = (sljit_u8*)(put_label->addr - (2 + sizeof(sljit_uw)) + sizeof(sljit_s32)); in generate_put_label_code()
132 sljit_u8 *inst; in sljit_emit_enter()
157 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_enter()
167 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_enter()
179 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_enter()
248 inst = (sljit_u8*)ensure_buf(compiler, 1 + 2); in sljit_emit_enter()
268 inst = (sljit_u8*)ensure_buf(compiler, 1 + 5); in sljit_emit_enter()
306 sljit_u8 *inst; in sljit_emit_return()
316 inst = (sljit_u8*)ensure_buf(compiler, 1 + 5); in sljit_emit_return()
326 inst = (sljit_u8*)ensure_buf(compiler, 1 + 4); in sljit_emit_return()
335 inst = (sljit_u8*)ensure_buf(compiler, 1 + 7); in sljit_emit_return()
348 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_return()
359 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_return()
367 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1); in sljit_emit_return()
378 static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, slji… in emit_do_imm32()
380 sljit_u8 *inst; in emit_do_imm32()
383 inst = (sljit_u8*)ensure_buf(compiler, 1 + length); in emit_do_imm32()
393 static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_s32 size, in emit_x86_instruction()
399 sljit_u8 *inst; in emit_x86_instruction()
400 sljit_u8 *buf_ptr; in emit_x86_instruction()
401 sljit_u8 rex = 0; in emit_x86_instruction()
513 inst = (sljit_u8*)ensure_buf(compiler, 1 + inst_size); in emit_x86_instruction()
656 static sljit_u8 word_arg_regs[5] = { 0, SLJIT_R3, SLJIT_R1, SLJIT_R2, TMP_REG1 }; in call_with_args()
767 sljit_u8 *inst; in sljit_emit_fast_enter()
779 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1); in sljit_emit_fast_enter()
786 inst = (sljit_u8*)ensure_buf(compiler, 1 + 2); in sljit_emit_fast_enter()
804 sljit_u8 *inst; in emit_fast_return()
808 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + 1); in emit_fast_return()
815 inst = (sljit_u8*)ensure_buf(compiler, 1 + 2 + 1); in emit_fast_return()
831 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1); in emit_fast_return()
848 sljit_u8* inst; in emit_mov_int()