Home | History | Annotate | Download | only in priv

Lines Matching refs:vreg

1664 /* The given instruction reads the specified vreg exactly once, and
1665 that vreg is currently located at the given spill offset. If
1669 X86Instr* directReload_X86( X86Instr* i, HReg vreg, Short spill_off )
1673 /* Deal with form: src=RMI_Reg, dst=Reg where src == vreg
1680 && i->Xin.Alu32R.src->Xrmi.Reg.reg == vreg) {
1681 vassert(i->Xin.Alu32R.dst != vreg);
1689 /* Deal with form: src=RMI_Imm, dst=Reg where dst == vreg
1695 && i->Xin.Alu32R.dst == vreg) {
1708 && i->Xin.Push.src->Xrmi.Reg.reg == vreg) {
1714 /* Deal with form: CMov32(src=RM_Reg, dst) where vreg == src
1718 && i->Xin.CMov32.src->Xrm.Reg.reg == vreg) {
1719 vassert(i->Xin.CMov32.dst != vreg);
1727 /* Deal with form: Test32(imm,RM_Reg vreg) -> Test32(imm,amode) */
1730 && i->Xin.Test32.dst->Xrm.Reg.reg == vreg) {