Lines Matching refs:Alu
1122 i->Min.Alu.op = op; in MIPSInstr_Alu()
1123 i->Min.Alu.dst = dst; in MIPSInstr_Alu()
1124 i->Min.Alu.srcL = srcL; in MIPSInstr_Alu()
1125 i->Min.Alu.srcR = srcR; in MIPSInstr_Alu()
1495 HReg r_srcL = i->Min.Alu.srcL; in ppMIPSInstr()
1496 MIPSRH *rh_srcR = i->Min.Alu.srcR; in ppMIPSInstr()
1498 vex_printf("%s ", showMIPSAluOp(i->Min.Alu.op, in ppMIPSInstr()
1500 ppHRegMIPS(i->Min.Alu.dst, mode64); in ppMIPSInstr()
1815 addHRegUse(u, HRmRead, i->Min.Alu.srcL); in getRegUsage_MIPSInstr()
1816 addRegUsage_MIPSRH(u, i->Min.Alu.srcR); in getRegUsage_MIPSInstr()
1817 addHRegUse(u, HRmWrite, i->Min.Alu.dst); in getRegUsage_MIPSInstr()
2029 mapReg(m, &i->Min.Alu.srcL); in mapRegs_MIPSInstr()
2030 mapRegs_MIPSRH(m, i->Min.Alu.srcR); in mapRegs_MIPSInstr()
2031 mapReg(m, &i->Min.Alu.dst); in mapRegs_MIPSInstr()
2186 if (i->Min.Alu.op != Malu_OR) in isMove_MIPSInstr()
2188 if (i->Min.Alu.srcR->tag != Mrh_Reg) in isMove_MIPSInstr()
2190 if (i->Min.Alu.srcR->Mrh.Reg.reg != i->Min.Alu.srcL) in isMove_MIPSInstr()
2192 *src = i->Min.Alu.srcL; in isMove_MIPSInstr()
2193 *dst = i->Min.Alu.dst; in isMove_MIPSInstr()
2738 MIPSRH *srcR = i->Min.Alu.srcR; in emit_MIPSInstr()
2740 UInt r_dst = iregNo(i->Min.Alu.dst, mode64); in emit_MIPSInstr()
2741 UInt r_srcL = iregNo(i->Min.Alu.srcL, mode64); in emit_MIPSInstr()
2744 switch (i->Min.Alu.op) { in emit_MIPSInstr()