Searched defs:code_ptr (Results 1 - 3 of 3) sorted by relevance

/vbox/src/recompiler/tcg/i386/
H A Dtcg-target.c99 static void patch_reloc(uint8_t *code_ptr, int type, argument
105 value -= (uintptr_t)code_ptr;
109 *(uint32_t *)code_ptr = value;
112 value -= (uintptr_t)code_ptr;
116 *(uint8_t *)code_ptr = value;
486 tcg_target_long pc = (tcg_target_long)s->code_ptr
489 tcg_target_long pc = (tcg_target_long)s->code_ptr + 5 + ~rm;
497 Assert(pc == (tcg_target_long)s->code_ptr);
800 val = l->u.value - (tcg_target_long)s->code_ptr;
827 tcg_out_reloc(s, s->code_ptr, R_386_PC
[all...]
/vbox/src/recompiler/tcg/
H A Dtcg.c84 static void patch_reloc(uint8_t *code_ptr, int type,
102 *s->code_ptr++ = v;
107 *(uint16_t *)s->code_ptr = v;
108 s->code_ptr += 2;
113 *(uint32_t *)s->code_ptr = v;
114 s->code_ptr += 4;
119 static void tcg_out_reloc(TCGContext *s, uint8_t *code_ptr, int type, argument
130 patch_reloc(code_ptr, type, l->u.value, addend);
135 r->ptr = code_ptr;
265 s->code_ptr
[all...]
H A Dtcg.h301 uint8_t *code_ptr; member in struct:TCGContext

Completed in 51 milliseconds