Searched refs:GUEST_BASE (Results 1 - 8 of 8) sorted by relevance

/external/qemu/tcg/x86_64/
H A Dtcg-target.c658 if (GUEST_BASE == (int32_t)GUEST_BASE) {
660 offset = GUEST_BASE;
663 /* movq $GUEST_BASE, r0 */
665 tcg_out32(s, GUEST_BASE);
666 tcg_out32(s, GUEST_BASE >> 32);
840 if (GUEST_BASE == (int32_t)GUEST_BASE) {
842 offset = GUEST_BASE;
845 /* movq $GUEST_BASE, r
[all...]
/external/qemu/
H A Dcpu-all.h631 #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/i386/
H A Dtcg-target.c1233 int32_t offset = GUEST_BASE;
1240 an explicit zero-extension here, or (if GUEST_BASE == 0)
1243 if (offset != GUEST_BASE) {
1244 tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_RDI, GUEST_BASE);
1410 int32_t offset = GUEST_BASE;
1417 an explicit zero-extension here, or (if GUEST_BASE == 0)
1420 if (offset != GUEST_BASE) {
1421 tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_RDI, GUEST_BASE);
/external/qemu/tcg/ppc/
H A Dtcg-target.c40 #ifndef GUEST_BASE
41 #define GUEST_BASE 0 macro
656 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0;
855 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0;
936 if (GUEST_BASE) {
937 tcg_out_movi (s, TCG_TYPE_I32, TCG_GUEST_BASE_REG, GUEST_BASE);
/external/qemu/tcg/ppc64/
H A Dtcg-target.c39 #ifndef GUEST_BASE
40 #define GUEST_BASE 0 macro
695 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0;
823 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0;
902 if (GUEST_BASE) {
903 tcg_out_movi (s, TCG_TYPE_I64, TCG_GUEST_BASE_REG, GUEST_BASE);
/external/qemu/tcg/arm/
H A Dtcg-target.c1117 if (GUEST_BASE) {
1118 uint32_t offset = GUEST_BASE;
1357 if (GUEST_BASE) {
1358 uint32_t offset = GUEST_BASE;
/external/qemu/tcg/hppa/
H A Dtcg-target.c1088 (GUEST_BASE ? TCG_GUEST_BASE_REG : TCG_REG_R0), opc);
1213 /* There are no indexed stores, so if GUEST_BASE is set we must do the add
1215 if (GUEST_BASE != 0) {
1632 if (GUEST_BASE != 0) {
1633 tcg_out_movi(s, TCG_TYPE_PTR, TCG_GUEST_BASE_REG, GUEST_BASE);
/external/qemu/tcg/
H A Dtcg.c63 #error GUEST_BASE not supported on this host.

Completed in 137 milliseconds