Searched refs:fregNo (Results 1 - 3 of 3) sorted by relevance

/external/valgrind/VEX/priv/
H A Dhost_mips_defs.c2047 inline static UInt fregNo(HReg r, Bool mode64) function
3365 UInt f_reg = fregNo(i->Min.FpLdSt.reg, mode64);
3399 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3400 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3411 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3412 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3423 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3424 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3435 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3436 UInt fr_src = fregNo(
[all...]
H A Dguest_arm_toIR.c844 static Int floatGuestRegOffset ( UInt fregNo )
850 vassert(fregNo < 32);
851 off = doubleGuestRegOffset(fregNo >> 1);
853 if (fregNo & 1)
862 static IRExpr* llGetFReg ( UInt fregNo )
864 vassert(fregNo < 32);
865 return IRExpr_Get( floatGuestRegOffset(fregNo), Ity_F32 );
869 static IRExpr* getFReg ( UInt fregNo ) {
870 return llGetFReg( fregNo );
874 static void llPutFReg ( UInt fregNo, IRExp argument
884 putFReg( UInt fregNo, IRExpr* e, IRTemp guardT ) argument
[all...]
H A Dguest_mips_toIR.c254 static UInt floatGuestRegOffset(UInt fregNo) argument
256 vassert(fregNo < 32);
259 switch (fregNo) {
329 switch (fregNo) {
1410 static IRExpr *getFReg(UInt fregNo) argument
1412 vassert(fregNo < 32);
1414 return IRExpr_Get(floatGuestRegOffset(fregNo), ty);

Completed in 209 milliseconds