reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/Mips/MipsFastISel.cpp
 1979   if (Opcode == Instruction::AShr || Opcode == Instruction::LShr) {
 1979   if (Opcode == Instruction::AShr || Opcode == Instruction::LShr) {
 1985     bool IsZExt = Opcode == Instruction::LShr;
 1995     switch (Opcode) {
 1999       Opcode = Mips::SLL;
 2002       Opcode = Mips::SRA;
 2005       Opcode = Mips::SRL;
 2009     emitInst(Opcode, ResultReg).addReg(Op0Reg).addImm(ShiftVal);
 2018   switch (Opcode) {
 2022     Opcode = Mips::SLLV;
 2025     Opcode = Mips::SRAV;
 2028     Opcode = Mips::SRLV;
 2032   emitInst(Opcode, ResultReg).addReg(Op0Reg).addReg(Op1Reg);