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

/external/valgrind/main/VEX/priv/
H A Dhost_ppc_defs.c2919 static UInt fregNo ( HReg fr ) function
4306 UInt fr_dst = fregNo(i->Pin.FpUnary.dst);
4307 UInt fr_src = fregNo(i->Pin.FpUnary.src);
4346 UInt fr_dst = fregNo(i->Pin.FpBinary.dst);
4347 UInt fr_srcL = fregNo(i->Pin.FpBinary.srcL);
4348 UInt fr_srcR = fregNo(i->Pin.FpBinary.srcR);
4381 UInt fr_dst = fregNo(i->Pin.FpMulAcc.dst);
4382 UInt fr_srcML = fregNo(i->Pin.FpMulAcc.srcML);
4383 UInt fr_srcMR = fregNo(i->Pin.FpMulAcc.srcMR);
4384 UInt fr_srcAcc = fregNo(
[all...]
H A Dhost_mips_defs.c2278 static UChar fregNo(HReg r, Bool mode64) function
3502 UInt f_reg = fregNo(i->Min.FpLdSt.reg, mode64);
3560 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3561 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3572 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3573 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3584 UInt fr_dst = fregNo(i->Min.FpUnary.dst, mode64);
3585 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3597 UInt fr_src = fregNo(i->Min.FpUnary.src, mode64);
3602 UInt fr_dst = fregNo(
[all...]
H A Dhost_arm_defs.c2667 static inline UChar fregNo ( HReg r ) function
3398 UInt fD = fregNo(i->ARMin.VLdStS.fD);
3437 UInt dN = fregNo(i->ARMin.VAluS.argL);
3438 UInt dD = fregNo(i->ARMin.VAluS.dst);
3439 UInt dM = fregNo(i->ARMin.VAluS.argR);
3486 UInt fD = fregNo(i->ARMin.VUnaryS.dst);
3487 UInt fM = fregNo(i->ARMin.VUnaryS.src);
3535 UInt fD = fregNo(i->ARMin.VCMovS.dst);
3536 UInt fM = fregNo(i->ARMin.VCMovS.src);
3547 UInt fM = fregNo(
[all...]
H A Dhost_x86_defs.c1840 static UInt fregNo ( HReg r ) function
2944 p = do_fld_st(p, 0+fregNo(i->Xin.Fp64to32.src));
2954 p = do_fstp_st(p, 1+fregNo(i->Xin.Fp64to32.dst));
2965 p = do_fld_st(p, 0+fregNo(i->Xin.FpCMov.src));
2966 p = do_fstp_st(p, 1+fregNo(i->Xin.FpCMov.dst));
2991 p = do_fld_st(p, 0+fregNo(i->Xin.FpCmp.srcL));
2994 *p++ = toUChar(0xE8 + (7 & (1+fregNo(i->Xin.FpCmp.srcR))));
H A Dguest_arm_toIR.c800 static Int floatGuestRegOffset ( UInt fregNo )
806 vassert(fregNo < 32);
807 off = doubleGuestRegOffset(fregNo >> 1);
811 if (fregNo & 1)
818 static IRExpr* llGetFReg ( UInt fregNo )
820 vassert(fregNo < 32);
821 return IRExpr_Get( floatGuestRegOffset(fregNo), Ity_F32 );
825 static IRExpr* getFReg ( UInt fregNo ) {
826 return llGetFReg( fregNo );
830 static void llPutFReg ( UInt fregNo, IRExp argument
840 putFReg( UInt fregNo, IRExpr* e, IRTemp guardT ) argument
[all...]
H A Dguest_mips_toIR.c171 static UInt floatGuestRegOffset(UInt fregNo) argument
173 vassert(fregNo < 32);
175 switch (fregNo) {

Completed in 234 milliseconds