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

/external/valgrind/main/VEX/priv/
H A Dhost_mips_defs.c2392 static UChar fregNo(HReg r, Bool mode64) function
3665 UInt f_reg = fregNo(i->Min.FpLdSt.reg, mode64);
3699 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3700 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3711 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3712 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3723 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3724 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3735 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3736 UInt fr_src = fregNo(
[all...]
H A Dhost_ppc_defs.c3098 static UInt fregNo ( HReg fr ) function
4495 UInt fr_dst = fregNo(i->Pin.FpUnary.dst);
4496 UInt fr_src = fregNo(i->Pin.FpUnary.src);
4535 UInt fr_dst = fregNo(i->Pin.FpBinary.dst);
4536 UInt fr_srcL = fregNo(i->Pin.FpBinary.srcL);
4537 UInt fr_srcR = fregNo(i->Pin.FpBinary.srcR);
4570 UInt fr_dst = fregNo(i->Pin.FpMulAcc.dst);
4571 UInt fr_srcML = fregNo(i->Pin.FpMulAcc.srcML);
4572 UInt fr_srcMR = fregNo(i->Pin.FpMulAcc.srcMR);
4573 UInt fr_srcAcc = fregNo(
[all...]
H A Dhost_arm_defs.c2707 static inline UChar fregNo ( HReg r ) function
3538 UInt fD = fregNo(i->ARMin.VLdStS.fD);
3577 UInt dN = fregNo(i->ARMin.VAluS.argL);
3578 UInt dD = fregNo(i->ARMin.VAluS.dst);
3579 UInt dM = fregNo(i->ARMin.VAluS.argR);
3626 UInt fD = fregNo(i->ARMin.VUnaryS.dst);
3627 UInt fM = fregNo(i->ARMin.VUnaryS.src);
3675 UInt fD = fregNo(i->ARMin.VCMovS.dst);
3676 UInt fM = fregNo(i->ARMin.VCMovS.src);
3687 UInt fM = fregNo(
[all...]
H A Dhost_x86_defs.c1845 static UInt fregNo ( HReg r ) function
2977 p = do_fld_st(p, 0+fregNo(i->Xin.Fp64to32.src));
2987 p = do_fstp_st(p, 1+fregNo(i->Xin.Fp64to32.dst));
2998 p = do_fld_st(p, 0+fregNo(i->Xin.FpCMov.src));
2999 p = do_fstp_st(p, 1+fregNo(i->Xin.FpCMov.dst));
3024 p = do_fld_st(p, 0+fregNo(i->Xin.FpCmp.srcL));
3027 *p++ = toUChar(0xE8 + (7 & (1+fregNo(i->Xin.FpCmp.srcR))));
H A Dguest_arm_toIR.c844 static Int floatGuestRegOffset ( UInt fregNo )
850 vassert(fregNo < 32);
851 off = doubleGuestRegOffset(fregNo >> 1);
855 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) {
1404 static IRExpr *getFReg(UInt fregNo) argument
1406 vassert(fregNo < 32);
1408 return IRExpr_Get(floatGuestRegOffset(fregNo), ty);

Completed in 1105 milliseconds