Home | History | Annotate | Download | only in SystemZ

Lines Matching refs:LowOpcode

74   unsigned LowOpcode = getOpcodeForOffset(NewOpcode, LowOffsetOp.getImm());
75 assert(HighOpcode && LowOpcode && "Both offsets should be in range");
78 MI->setDesc(get(LowOpcode));
97 // MI is an RI-style pseudo instruction. Replace it with LowOpcode
99 // is a high GR32. ConvertHigh is true if LowOpcode takes a signed operand
101 // MI has the same kind of operand as LowOpcode, so needs to be converted
103 void SystemZInstrInfo::expandRIPseudo(MachineInstr *MI, unsigned LowOpcode,
108 MI->setDesc(get(IsHigh ? HighOpcode : LowOpcode));
115 // followed by HighOpcode or LowOpcode, depending on whether the target
117 void SystemZInstrInfo::expandRIEPseudo(MachineInstr *MI, unsigned LowOpcode,
130 MI->setDesc(get(DestIsHigh ? HighOpcode : LowOpcode));
135 // MI is an RXY-style pseudo instruction. Replace it with LowOpcode
138 void SystemZInstrInfo::expandRXYPseudo(MachineInstr *MI, unsigned LowOpcode,
141 unsigned Opcode = getOpcodeForOffset(isHighReg(Reg) ? HighOpcode : LowOpcode,
147 // of one GRX32 into another. Replace it with LowOpcode if both operands
149 void SystemZInstrInfo::expandZExtPseudo(MachineInstr *MI, unsigned LowOpcode,
153 LowOpcode, Size, MI->getOperand(1).isKill());