HomeSort by relevance Sort by last modified time
    Searched refs:iregNo (Results 1 - 8 of 8) sorted by null

  /external/valgrind/main/VEX/priv/
host_arm64_defs.c     [all...]
host_mips_defs.c     [all...]
host_arm_defs.c     [all...]
guest_arm64_toIR.c 704 static Int offsetIReg64 ( UInt iregNo )
708 switch (iregNo) {
745 static Int offsetIReg64orSP ( UInt iregNo )
747 return iregNo == 31 ? OFFB_XSP : offsetIReg64(iregNo);
750 static const HChar* nameIReg64orZR ( UInt iregNo )
752 vassert(iregNo < 32);
758 return names[iregNo];
761 static const HChar* nameIReg64orSP ( UInt iregNo )
763 if (iregNo == 31)
    [all...]
host_x86_defs.c     [all...]
host_ppc_defs.c     [all...]
guest_arm_toIR.c 494 static Int integerGuestRegOffset ( UInt iregNo )
499 switch (iregNo) {
521 static IRExpr* llGetIReg ( UInt iregNo )
523 vassert(iregNo < 16);
524 return IRExpr_Get( integerGuestRegOffset(iregNo), Ity_I32 );
529 static IRExpr* getIRegA ( UInt iregNo )
533 vassert(iregNo < 16);
534 if (iregNo == 15) {
544 e = IRExpr_Get( integerGuestRegOffset(iregNo), Ity_I32 );
551 static IRExpr* getIRegT ( UInt iregNo )
    [all...]
guest_mips_toIR.c 97 static UInt integerGuestRegOffset(UInt iregNo)
104 switch (iregNo) {
174 switch (iregNo) {
1049 static IRExpr *getIReg(UInt iregNo)
1051 if (0 == iregNo) {
1055 vassert(iregNo < 32);
1056 return IRExpr_Get(integerGuestRegOffset(iregNo), ty);
    [all...]

Completed in 441 milliseconds