Searched refs:iregNo (Results 1 - 6 of 6) sorted by relevance

/external/valgrind/VEX/priv/
H A Dhost_tilegx_defs.c1339 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 Dhost_mips_defs.c2037 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,
2642 UInt r_dst = iregNo(i->Min.Shft.dst, mode64);
2643 UInt r_srcL = iregNo(
[all...]
H A Dguest_arm64_toIR.c1152 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...]
H A Dguest_tilegx_toIR.c85 static Int integerGuestRegOffset ( UInt iregNo )
87 return 8 * (iregNo);
178 static IRExpr *getIReg ( UInt iregNo )
181 if(!(iregNo < 56 || iregNo == 63 ||
182 (iregNo >= 70 && iregNo <= 73))) {
183 vex_printf("iregNo=%d\n", iregNo);
186 return IRExpr_Get(integerGuestRegOffset(iregNo), t
[all...]
H A Dguest_arm_toIR.c494 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 Dguest_mips_toIR.c97 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);

Completed in 214 milliseconds