Home | History | Annotate | Download | only in priv

Lines Matching refs:vreg

1751 /* The given instruction reads the specified vreg exactly once, and
1752 that vreg is currently located at the given spill offset. If
1756 X86Instr* directReload_X86( X86Instr* i, HReg vreg, Short spill_off )
1760 /* Deal with form: src=RMI_Reg, dst=Reg where src == vreg
1767 && i->Xin.Alu32R.src->Xrmi.Reg.reg == vreg) {
1768 vassert(i->Xin.Alu32R.dst != vreg);
1776 /* Deal with form: src=RMI_Imm, dst=Reg where dst == vreg
1782 && i->Xin.Alu32R.dst == vreg) {
1795 && i->Xin.Push.src->Xrmi.Reg.reg == vreg) {
1801 /* Deal with form: CMov32(src=RM_Reg, dst) where vreg == src
1805 && i->Xin.CMov32.src->Xrm.Reg.reg == vreg) {
1806 vassert(i->Xin.CMov32.dst != vreg);
1814 /* Deal with form: Test32(imm,RM_Reg vreg) -> Test32(imm,amode) */
1817 && i->Xin.Test32.dst->Xrm.Reg.reg == vreg) {