Home | History | Annotate | Download | only in priv

Lines Matching refs:fr_src

917 //   HReg fr_src = newVRegF(env);
927 // fr_src = mk_LoadR64toFPR( env, r_src ); // 1*I64 -> F64
929 // fr_src = mk_LoadRR32toFPR( env, r_src, r_src ); // 2*I32 -> F64
931 // addInstr(env, PPCInstr_FpLdFPSCR( fr_src ));
1007 HReg fr_src = newVRegF(env);
1038 fr_src = mk_LoadR64toFPR( env, r_tmp1 );
1040 fr_src = mk_LoadR64toFPR( env, r_src ); // 1*I64 -> F64
1046 fr_src = mk_LoadRR32toFPR( env, r_src, r_zero );
1048 fr_src = mk_LoadRR32toFPR( env, r_src, r_src ); // 2*I32 -> F64
1053 addInstr(env, PPCInstr_FpLdFPSCR( fr_src, dfp_rm ));
1948 HReg fr_src = iselDblExpr(env, e->Iex.Unop.arg);
1956 fr_src, am_addr ));
1972 HReg fr_src = iselFltExpr(env, e->Iex.Unop.arg);
1980 fr_src, am_addr ));
1992 HReg fr_src = iselDfp64Expr(env, e->Iex.Unop.arg);
2000 fr_src, am_addr ));
3182 HReg fr_src = iselDblExpr(env, e->Iex.Unop.arg);
3192 fr_src, am_addr0 ));
3207 HReg fr_src = iselDfp64Expr(env, e->Iex.Unop.arg);
3219 fr_src, am_addr0 ));
3643 HReg fr_src = iselDblExpr(env, e->Iex.Binop.arg2);
3645 addInstr(env, PPCInstr_FpUnary(fpop, fr_dst, fr_src));
3733 HReg fr_src = iselDblExpr(env, e->Iex.Unop.arg);
3734 addInstr(env, PPCInstr_FpUnary(fpop, fr_dst, fr_src));
3866 HReg fr_src = iselDfp64Expr(env, e->Iex.Unop.arg);
3868 addInstr(env, PPCInstr_Dfp64Unary(Pfp_DXEX, fr_dst, fr_src));
3882 HReg fr_src = iselDfp64Expr(env, e->Iex.Unop.arg);
3883 addInstr(env, PPCInstr_Dfp64Unary(Pfp_DCTDP, fr_dst, fr_src));
3938 HReg fr_src = newVRegF(env);
3941 fr_src = iselDfp64Expr(env, e->Iex.Binop.arg2);
3942 addInstr(env, PPCInstr_DfpRound(fr_dst, fr_src, r_rmc));
3958 HReg fr_src = iselDfp64Expr(env, e->Iex.Binop.arg2);
3960 addInstr(env, PPCInstr_Dfp64Unary(fpop, fr_dst, fr_src));
3971 HReg fr_src = iselDfp64Expr(env, e->Iex.Binop.arg1);
3974 addInstr(env, PPCInstr_DfpShift(fpop, fr_dst, fr_src, shift));
4706 HReg fr_src = iselDblExpr(env, stmt->Ist.Store.data);
4708 PPCInstr_FpLdSt(False/*store*/, 8, fr_src, am_addr));
4714 HReg fr_src = iselFltExpr(env, stmt->Ist.Store.data);
4716 PPCInstr_FpLdSt(False/*store*/, 4, fr_src, am_addr));
4780 HReg fr_src = iselDblExpr(env, stmt->Ist.Put.data);
4784 fr_src, am_addr ));
4788 HReg fr_src = iselDfp64Expr( env, stmt->Ist.Put.data );
4791 addInstr( env, PPCInstr_FpLdSt( False/*store*/, 8, fr_src, am_addr ) );
4874 HReg fr_src = iselDblExpr(env, stmt->Ist.WrTmp.data);
4875 addInstr(env, PPCInstr_FpUnary(Pfp_MOV, fr_dst, fr_src));
4880 HReg fr_src = iselFltExpr(env, stmt->Ist.WrTmp.data);
4881 addInstr(env, PPCInstr_FpUnary(Pfp_MOV, fr_dst, fr_src));
4892 HReg fr_src = iselDfp64Expr( env, stmt->Ist.WrTmp.data );
4893 addInstr( env, PPCInstr_Dfp64Unary( Pfp_MOV, fr_dst, fr_src ) );