Searched defs:iregNo (Results 1 - 5 of 5) sorted by relevance
/external/valgrind/VEX/priv/ |
H A D | host_tilegx_defs.c | 1339 static UInt iregNo ( HReg r ) function 1354 rA = iregNo(am->GXam.IR.base); 1388 UInt rA = iregNo(am->GXam.IR.base); 1525 UInt condR = iregNo(i->GXin.MovCond.condR); 1526 UInt dst = iregNo(i->GXin.MovCond.dst); 1528 UInt srcL = iregNo(i->GXin.MovCond.srcL); 1532 p = mkMoveReg(p, dst, iregNo(srcR->GXrh.Reg.reg)); 1550 p = mkLoadImm(p, iregNo(i->GXin.LI.dst), i->GXin.LI.imm); 1556 UInt r_dst = iregNo(i->GXin.Alu.dst); 1557 UInt r_srcL = iregNo( [all...] |
H A D | host_mips_defs.c | 2037 inline static UInt iregNo(HReg r, Bool mode64) function 2176 rA = iregNo(am->Mam.IR.base, mode64); 2215 rA = iregNo(am->Mam.RR.base, mode64); 2216 rB = iregNo(am->Mam.RR.index, mode64); 2523 p = mkLoadImm(p, iregNo(i->Min.LI.dst, mode64), i->Min.LI.imm, mode64); 2529 UInt r_dst = iregNo(i->Min.Alu.dst, mode64); 2530 UInt r_srcL = iregNo(i->Min.Alu.srcL, mode64); 2531 UInt r_srcR = immR ? (-1) /*bogus */ : iregNo(srcR->Mrh.Reg.reg, 2638 UInt r_dst = iregNo(i->Min.Shft.dst, mode64); 2639 UInt r_srcL = iregNo( [all...] |
H A D | guest_mips_toIR.c | 97 static UInt integerGuestRegOffset(UInt iregNo) argument 104 switch (iregNo) { 174 switch (iregNo) { 1055 static IRExpr *getIReg(UInt iregNo) argument 1057 if (0 == iregNo) { 1061 vassert(iregNo < 32); 1062 return IRExpr_Get(integerGuestRegOffset(iregNo), ty);
|
H A D | 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 ) 568 llPutIReg( UInt iregNo, IRExpr* e ) argument 580 putIRegA( UInt iregNo, IRExpr* e, IRTemp guardT , IRJumpKind jk ) argument 619 putIRegT( UInt iregNo, IRExpr* e, IRTemp guardT ) argument [all...] |
H A D | guest_arm64_toIR.c | 1152 static Int offsetIReg64 ( UInt iregNo ) 1156 switch (iregNo) { 1193 static Int offsetIReg64orSP ( UInt iregNo ) 1195 return iregNo == 31 ? OFFB_XSP : offsetIReg64(iregNo); 1198 static const HChar* nameIReg64orZR ( UInt iregNo ) 1200 vassert(iregNo < 32); 1206 return names[iregNo]; 1209 static const HChar* nameIReg64orSP ( UInt iregNo ) 1211 if (iregNo 1233 putIReg64orSP( UInt iregNo, IRExpr* e ) argument 1239 putIReg64orZR( UInt iregNo, IRExpr* e ) argument 1286 putIReg32orSP( UInt iregNo, IRExpr* e ) argument 1292 putIReg32orZR( UInt iregNo, IRExpr* e ) argument 1320 putIRegOrZR( Bool is64, UInt iregNo, IRExpr* e ) argument [all...] |
Completed in 291 milliseconds