Lines Matching refs:code_ptr
154 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code)
170 diff = (sljit_sw)target_addr - (sljit_sw)(code_ptr + 4);
175 code_ptr[-5] ^= (jump->flags & IS_CBZ) ? (0x1 << 24) : 0x1;
190 code_ptr[-5] -= (2 << 5);
191 code_ptr[-2] = code_ptr[0];
196 code_ptr[-5] -= (1 << 5);
198 code_ptr[-1] = code_ptr[0];
210 sljit_ins *code_ptr;
229 code_ptr = code;
239 *code_ptr = *buf_ptr++;
245 label->addr = (sljit_uw)code_ptr;
246 label->size = code_ptr - code;
250 jump->addr = (sljit_uw)(code_ptr - 4);
251 code_ptr -= detect_jump_type(jump, code_ptr, code);
255 const_->addr = (sljit_uw)code_ptr;
258 code_ptr ++;
266 label->addr = (sljit_uw)code_ptr;
267 label->size = code_ptr - code;
274 SLJIT_ASSERT(code_ptr - code <= (sljit_sw)compiler->size);
311 compiler->executable_size = (code_ptr - code) * sizeof(sljit_ins);
312 SLJIT_CACHE_FLUSH(code, code_ptr);