OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vex_state
(Results
1 - 15
of
15
) sorted by null
/external/valgrind/main/VEX/priv/
guest_ppc_helpers.c
213
UInt LibVEX_GuestPPC32_get_CR ( /*IN*/const VexGuestPPC32State*
vex_state
)
217
( (
vex_state
->guest_CR##_n##_321 & (7<<1)) \
218
| (
vex_state
->guest_CR##_n##_0 & 1) \
234
UInt LibVEX_GuestPPC64_get_CR ( /*IN*/const VexGuestPPC64State*
vex_state
)
238
( (
vex_state
->guest_CR##_n##_321 & (7<<1)) \
239
| (
vex_state
->guest_CR##_n##_0 & 1) \
255
/*OUT*/VexGuestPPC32State*
vex_state
)
262
vex_state
->guest_CR##_n##_0 = toUChar(t & 1); \
263
vex_state
->guest_CR##_n##_321 = toUChar(t & (7<<1)); \
282
/*OUT*/VexGuestPPC64State*
vex_state
)
[
all
...]
guest_mips_helpers.c
69
void LibVEX_GuestMIPS32_initialise( /*OUT*/ VexGuestMIPS32State *
vex_state
)
71
vex_state
->guest_r0 = 0; /* Hardwired to 0 */
72
vex_state
->guest_r1 = 0; /* Assembler temporary */
73
vex_state
->guest_r2 = 0; /* Values for function returns ... */
74
vex_state
->guest_r3 = 0; /* ...and expression evaluation */
75
vex_state
->guest_r4 = 0; /* Function arguments */
76
vex_state
->guest_r5 = 0;
77
vex_state
->guest_r6 = 0;
78
vex_state
->guest_r7 = 0;
79
vex_state
->guest_r8 = 0; /* Temporaries *
[
all
...]
guest_arm_helpers.c
897
/*OUT*/VexGuestARMState*
vex_state
)
905
vex_state
->guest_CC_OP = ARMG_CC_OP_COPY;
906
vex_state
->guest_CC_DEP1 = flags_native;
907
vex_state
->guest_CC_DEP2 = 0;
908
vex_state
->guest_CC_NDEP = 0;
913
UInt LibVEX_GuestARM_get_cpsr ( /*IN*/const VexGuestARMState*
vex_state
)
918
vex_state
->guest_CC_OP,
919
vex_state
->guest_CC_DEP1,
920
vex_state
->guest_CC_DEP2,
921
vex_state
->guest_CC_NDE
[
all
...]
guest_x86_helpers.c
716
UInt LibVEX_GuestX86_get_eflags ( /*IN*/const VexGuestX86State*
vex_state
)
719
vex_state
->guest_CC_OP,
720
vex_state
->guest_CC_DEP1,
721
vex_state
->guest_CC_DEP2,
722
vex_state
->guest_CC_NDEP
724
UInt dflag =
vex_state
->guest_DFLAG;
728
if (
vex_state
->guest_IDFLAG == 1)
730
if (
vex_state
->guest_ACFLAG == 1)
739
/*MOD*/VexGuestX86State*
vex_state
)
742
vex_state
->guest_CC_OP
[
all
...]
guest_amd64_helpers.c
[
all
...]
guest_arm64_helpers.c
[
all
...]
/external/valgrind/main/VEX/useful/
x87_to_vex_and_back.c
46
static void x87_to_vex ( /*IN*/UChar* x87_state, /*OUT*/UChar*
vex_state
)
50
Double* vexRegs = (Double*)(
vex_state
+ OFFB_F0);
51
UChar* vexTags = (UChar*)(
vex_state
+ OFFB_FTAG0);
71
*(UInt*)(
vex_state
+ OFFB_FTOP) = ftop;
80
static void vex_to_x87 ( /*IN*/UChar*
vex_state
, /*OUT*/UChar* x87_state )
84
Double* vexRegs = (Double*)(
vex_state
+ OFFB_F0);
85
UChar* vexTags = (UChar*)(
vex_state
+ OFFB_FTAG0);
87
UInt ftop = *(UInt*)(
vex_state
+ OFFB_FTOP);
115
static void printVexState ( UChar*
vex_state
);
124
UChar*
vex_state
)
154
UChar*
vex_state
= malloc(1000);
local
[
all
...]
/external/valgrind/main/VEX/pub/
libvex_guest_amd64.h
183
void LibVEX_GuestAMD64_initialise ( /*OUT*/VexGuestAMD64State*
vex_state
);
189
ULong LibVEX_GuestAMD64_get_rflags ( /*IN*/const VexGuestAMD64State*
vex_state
);
196
/*MOD*/VexGuestAMD64State*
vex_state
);
libvex_guest_x86.h
274
void LibVEX_GuestX86_initialise ( /*OUT*/VexGuestX86State*
vex_state
);
280
UInt LibVEX_GuestX86_get_eflags ( /*IN*/const VexGuestX86State*
vex_state
);
287
/*MOD*/VexGuestX86State*
vex_state
);
libvex_guest_ppc32.h
261
void LibVEX_GuestPPC32_initialise ( /*OUT*/VexGuestPPC32State*
vex_state
);
268
/*OUT*/VexGuestPPC32State*
vex_state
);
273
UInt LibVEX_GuestPPC32_get_CR ( /*IN*/const VexGuestPPC32State*
vex_state
);
280
/*OUT*/VexGuestPPC32State*
vex_state
);
285
UInt LibVEX_GuestPPC32_get_XER ( /*IN*/const VexGuestPPC32State*
vex_state
);
libvex_guest_ppc64.h
298
void LibVEX_GuestPPC64_initialise ( /*OUT*/VexGuestPPC64State*
vex_state
);
305
/*OUT*/VexGuestPPC64State*
vex_state
);
311
UInt LibVEX_GuestPPC64_get_CR ( /*IN*/const VexGuestPPC64State*
vex_state
);
319
/*OUT*/VexGuestPPC64State*
vex_state
);
325
UInt LibVEX_GuestPPC64_get_XER ( /*IN*/const VexGuestPPC64State*
vex_state
);
libvex_guest_arm.h
211
void LibVEX_GuestARM_initialise ( /*OUT*/VexGuestARMState*
vex_state
);
216
UInt LibVEX_GuestARM_get_cpsr ( /*IN*/const VexGuestARMState*
vex_state
);
libvex_guest_arm64.h
177
void LibVEX_GuestARM64_initialise ( /*OUT*/VexGuestARM64State*
vex_state
);
183
const VexGuestARM64State*
vex_state
);
libvex_guest_mips32.h
161
void LibVEX_GuestMIPS32_initialise ( /*OUT*/VexGuestMIPS32State*
vex_state
);
libvex_guest_mips64.h
160
void LibVEX_GuestMIPS64_initialise ( /*OUT*/VexGuestMIPS64State*
vex_state
);
Completed in 570 milliseconds