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

/external/qemu/tcg/i386/
H A Dtcg-target.c53 static void patch_reloc(uint8_t *code_ptr, int type, argument
59 *(uint32_t *)code_ptr = value;
62 *(uint32_t *)code_ptr = value - (long)code_ptr;
314 val = l->u.value - (tcg_target_long)s->code_ptr;
339 tcg_out_reloc(s, s->code_ptr, R_386_PC32, label_index, -4);
340 s->code_ptr += 4;
420 tcg_out_label(s, label_next, (tcg_target_long)s->code_ptr);
505 label1_ptr = s->code_ptr;
506 s->code_ptr
[all...]
/external/qemu/tcg/x86_64/
H A Dtcg-target.c80 static void patch_reloc(uint8_t *code_ptr, int type, argument
88 *(uint32_t *)code_ptr = value;
93 *(uint32_t *)code_ptr = value;
96 value -= (long)code_ptr;
99 *(uint32_t *)code_ptr = value;
277 val = offset - ((tcg_target_long)s->code_ptr + 5 + (-rm - 1));
384 disp = target - s->code_ptr - 5;
385 if (disp == (target - s->code_ptr - 5)) {
472 val = l->u.value - (tcg_target_long)s->code_ptr;
497 tcg_out_reloc(s, s->code_ptr, R_386_PC3
[all...]
/external/v8/src/
H A Dplatform-macos.cc229 char* code_ptr = getsectdatafromheader_64( local
236 char* code_ptr = getsectdatafromheader(header, SEG_TEXT, SECT_TEXT, &size); local
238 if (code_ptr == NULL) continue;
240 const uintptr_t start = reinterpret_cast<uintptr_t>(code_ptr) + slide;
/external/qemu/tcg/
H A Dtcg.c65 static void patch_reloc(uint8_t *code_ptr, int type,
95 *s->code_ptr++ = v;
100 *(uint16_t *)s->code_ptr = v;
101 s->code_ptr += 2;
106 *(uint32_t *)s->code_ptr = v;
107 s->code_ptr += 4;
112 void tcg_out_reloc(TCGContext *s, uint8_t *code_ptr, int type, argument
123 patch_reloc(code_ptr, type, l->u.value, addend);
128 r->ptr = code_ptr;
255 s->code_ptr
[all...]
H A Dtcg.h289 uint8_t *code_ptr; member in struct:TCGContext
475 void tcg_out_reloc(TCGContext *s, uint8_t *code_ptr, int type,

Completed in 49 milliseconds