Searched refs:GUEST_BASE (Results 1 – 8 of 8) sorted by relevance
/external/qemu/tcg/x86_64/ |
D | tcg-target.c | 658 if (GUEST_BASE == (int32_t)GUEST_BASE) { in tcg_out_qemu_ld() 660 offset = GUEST_BASE; in tcg_out_qemu_ld() 665 tcg_out32(s, GUEST_BASE); in tcg_out_qemu_ld() 666 tcg_out32(s, GUEST_BASE >> 32); in tcg_out_qemu_ld() 840 if (GUEST_BASE == (int32_t)GUEST_BASE) { in tcg_out_qemu_st() 842 offset = GUEST_BASE; in tcg_out_qemu_st() 847 tcg_out32(s, GUEST_BASE); in tcg_out_qemu_st() 848 tcg_out32(s, GUEST_BASE >> 32); in tcg_out_qemu_st()
|
/external/qemu/ |
D | cpu-all.h | 631 #define GUEST_BASE guest_base macro 634 #define GUEST_BASE 0ul macro 639 #define g2h(x) ((void *)((unsigned long)(x) + GUEST_BASE)) 645 unsigned long __guest = (unsigned long)(x) - GUEST_BASE; \ 651 unsigned long __ret = (unsigned long)(x) - GUEST_BASE; \
|
/external/qemu/tcg/ppc64/ |
D | tcg-target.c | 39 #ifndef GUEST_BASE 40 #define GUEST_BASE 0 macro 695 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0; in tcg_out_qemu_ld() 823 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0; in tcg_out_qemu_st() 902 if (GUEST_BASE) { in tcg_target_qemu_prologue() 903 tcg_out_movi (s, TCG_TYPE_I64, TCG_GUEST_BASE_REG, GUEST_BASE); in tcg_target_qemu_prologue()
|
/external/qemu/tcg/ppc/ |
D | tcg-target.c | 40 #ifndef GUEST_BASE 41 #define GUEST_BASE 0 macro 656 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0; in tcg_out_qemu_ld() 855 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0; in tcg_out_qemu_st() 936 if (GUEST_BASE) { in tcg_target_qemu_prologue() 937 tcg_out_movi (s, TCG_TYPE_I32, TCG_GUEST_BASE_REG, GUEST_BASE); in tcg_target_qemu_prologue()
|
/external/qemu/tcg/i386/ |
D | tcg-target.c | 1233 int32_t offset = GUEST_BASE; in tcg_out_qemu_ld() 1243 if (offset != GUEST_BASE) { in tcg_out_qemu_ld() 1244 tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_RDI, GUEST_BASE); in tcg_out_qemu_ld() 1410 int32_t offset = GUEST_BASE; in tcg_out_qemu_st() 1420 if (offset != GUEST_BASE) { in tcg_out_qemu_st() 1421 tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_RDI, GUEST_BASE); in tcg_out_qemu_st()
|
/external/qemu/tcg/hppa/ |
D | tcg-target.c | 1088 (GUEST_BASE ? TCG_GUEST_BASE_REG : TCG_REG_R0), opc); in tcg_out_qemu_ld() 1215 if (GUEST_BASE != 0) { in tcg_out_qemu_st() 1632 if (GUEST_BASE != 0) { in tcg_target_qemu_prologue() 1633 tcg_out_movi(s, TCG_TYPE_PTR, TCG_GUEST_BASE_REG, GUEST_BASE); in tcg_target_qemu_prologue()
|
/external/qemu/tcg/arm/ |
D | tcg-target.c | 1117 if (GUEST_BASE) { in tcg_out_qemu_ld() 1118 uint32_t offset = GUEST_BASE; in tcg_out_qemu_ld() 1357 if (GUEST_BASE) { in tcg_out_qemu_st() 1358 uint32_t offset = GUEST_BASE; in tcg_out_qemu_st()
|
/external/qemu/tcg/ |
D | tcg.c | 63 #error GUEST_BASE not supported on this host.
|