Searched defs:gst (Results 1 - 8 of 8) sorted by relevance

/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-amd64-darwin.c70 VexGuestAMD64State gst; member in struct:hacky_sigframe
134 VG_(memset)(&frame->gst, 0, sizeof(VexGuestAMD64State));
141 frame->gst = tst->arch.vex;
215 tst->arch.vex = frame->gst;
H A Dsigframe-x86-darwin.c73 VexGuestX86State gst; member in struct:hacky_sigframe
143 VG_(memset)(&frame->gst, 0, sizeof(VexGuestX86State));
150 frame->gst = tst->arch.vex;
221 tst->arch.vex = frame->gst;
/external/valgrind/main/VEX/priv/
H A Dguest_ppc_helpers.c126 void ppc32g_dirtyhelper_LVS ( VexGuestPPC32State* gst, argument
145 pU128_dst = (U128*)( ((UChar*)gst) + vD_off );
155 void ppc64g_dirtyhelper_LVS ( VexGuestPPC64State* gst, argument
180 pU128_dst = (U128*)( ((UChar*)gst) + vD_off );
H A Dguest_x86_helpers.c1547 void x86g_dirtyhelper_FINIT ( VexGuestX86State* gst )
1550 gst->guest_FTOP = 0;
1552 gst->guest_FPTAG[i] = 0; /* empty */
1553 gst->guest_FPREG[i] = 0; /* IEEE754 64-bit zero */
1555 gst->guest_FPROUND = (UInt)Irrm_NEAREST;
1556 gst->guest_FC3210 = 0;
1667 void x86g_dirtyhelper_FXSAVE ( VexGuestX86State* gst, HWord addr ) argument
1680 do_get_x87( gst, (UChar*)&tmp );
1681 mxcsr = x86g_create_mxcsr( gst->guest_SSEROUND );
1743 COPY_U128( xmm[0], gst
1758 x86g_dirtyhelper_FXRSTOR( VexGuestX86State* gst, HWord addr ) argument
1851 x86g_dirtyhelper_FSAVE( VexGuestX86State* gst, HWord addr ) argument
1858 x86g_dirtyhelper_FRSTOR( VexGuestX86State* gst, HWord addr ) argument
1865 x86g_dirtyhelper_FSTENV( VexGuestX86State* gst, HWord addr ) argument
1878 x86g_dirtyhelper_FLDENV( VexGuestX86State* gst, HWord addr ) argument
[all...]
H A Dguest_amd64_helpers.c1726 void amd64g_dirtyhelper_FXSAVE ( VexGuestAMD64State* gst, HWord addr ) argument
1748 do_get_x87( gst, (UChar*)&tmp );
1749 mxcsr = amd64g_create_mxcsr( gst->guest_SSEROUND );
1815 COPY_U128( xmm[0], gst->guest_YMM0 );
1816 COPY_U128( xmm[1], gst->guest_YMM1 );
1817 COPY_U128( xmm[2], gst->guest_YMM2 );
1818 COPY_U128( xmm[3], gst->guest_YMM3 );
1819 COPY_U128( xmm[4], gst->guest_YMM4 );
1820 COPY_U128( xmm[5], gst->guest_YMM5 );
1821 COPY_U128( xmm[6], gst
1838 amd64g_dirtyhelper_FXRSTOR( VexGuestAMD64State* gst, HWord addr ) argument
3320 amd64g_dirtyhelper_PCMPxSTRx( VexGuestAMD64State* gst, HWord opc4_and_imm, HWord gstOffL, HWord gstOffR, HWord edxIN, HWord eaxIN ) argument
3662 amd64g_dirtyhelper_AES( VexGuestAMD64State* gst, HWord opc4, HWord gstOffD, HWord gstOffL, HWord gstOffR ) argument
3725 amd64g_dirtyhelper_AESKEYGENASSIST( VexGuestAMD64State* gst, HWord imm8, HWord gstOffL, HWord gstOffR ) argument
[all...]
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-main.c409 VexGuestX86State* gst = (VexGuestX86State*)gst_vanilla; local
410 canonical->sysno = gst->guest_EAX;
411 canonical->arg1 = gst->guest_EBX;
412 canonical->arg2 = gst->guest_ECX;
413 canonical->arg3 = gst->guest_EDX;
414 canonical->arg4 = gst->guest_ESI;
415 canonical->arg5 = gst->guest_EDI;
416 canonical->arg6 = gst->guest_EBP;
421 VexGuestAMD64State* gst = (VexGuestAMD64State*)gst_vanilla;
422 canonical->sysno = gst
661 VexGuestX86State* gst = (VexGuestX86State*)gst_vanilla; local
805 VexGuestX86State* gst = (VexGuestX86State*)gst_vanilla; local
934 VexGuestX86State* gst = (VexGuestX86State*)gst_vanilla; local
[all...]
H A Dsyswrap-xen.c375 struct vki_xen_gnttab_setup_table *gst = local
378 (Addr)&gst->dom, sizeof(gst->dom));
380 (Addr)&gst->nr_frames, sizeof(gst->nr_frames));
1007 struct vki_xen_gnttab_setup_table *gst = local
1010 (Addr)&gst->status, sizeof(gst->status));
1012 (Addr)gst->frame_list.p,
1013 sizeof(*gst
[all...]
/external/valgrind/main/VEX/switchback/
H A Dswitchback.c86 VexGuestState gst; variable
90 /* i386: helper1 = &gst, helper2 = %EFLAGS */
91 /* amd64: helper1 = &gst, helper2 = %EFLAGS */
92 /* ppc32: helper1 = &gst, helper2 = %CR, helper3 = %XER */
93 /* arm64: helper1 = &gst, helper2 = 32x0:NZCV:28x0 */
289 sb_helper1 = (HWord)&gst;
290 sb_helper2 = LibVEX_GuestX86_get_eflags(&gst);
393 HWord arg0 = (HWord)&gst;
394 HWord arg1 = LibVEX_GuestARM64_get_nzcv(&gst);
418 Addr64 where_to_go = gst
[all...]

Completed in 208 milliseconds