OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GUEST_BASE
(Results
1 - 4
of
4
) sorted by null
/external/qemu/tcg/i386/
tcg-target.c
443
#define
GUEST_BASE
0
591
tcg_out_modrm_offset(s, 0xb6 | P_EXT, data_reg, r0,
GUEST_BASE
);
595
tcg_out_modrm_offset(s, 0xbe | P_EXT, data_reg, r0,
GUEST_BASE
);
599
tcg_out_modrm_offset(s, 0xb7 | P_EXT, data_reg, r0,
GUEST_BASE
);
609
tcg_out_modrm_offset(s, 0xbf | P_EXT, data_reg, r0,
GUEST_BASE
);
622
tcg_out_modrm_offset(s, 0x8b, data_reg, r0,
GUEST_BASE
);
638
tcg_out_modrm_offset(s, 0x8b, data_reg, r0,
GUEST_BASE
);
639
tcg_out_modrm_offset(s, 0x8b, data_reg2, r0,
GUEST_BASE
+ 4);
641
tcg_out_modrm_offset(s, 0x8b, data_reg, r0,
GUEST_BASE
+ 4);
644
tcg_out_modrm_offset(s, 0x8b, data_reg2, r0,
GUEST_BASE
);
[
all
...]
/external/qemu/tcg/x86_64/
tcg-target.c
658
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
, r0 *
[
all
...]
/external/qemu/
cpu-all.h
628
extern unsigned long
guest_base
;
630
#define
GUEST_BASE
guest_base
632
#define
GUEST_BASE
0ul
636
#define g2h(x) ((void *)((unsigned long)(x) +
GUEST_BASE
))
638
unsigned long __ret = (unsigned long)(x) -
GUEST_BASE
; \
644
unsigned long __guest = (unsigned long)(x) -
GUEST_BASE
; \
/external/qemu/tcg/
tcg.c
62
#error
GUEST_BASE
not supported on this host.
[
all
...]
Completed in 215 milliseconds