Searched refs:LUi (Results 1 - 11 of 11) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.cpp83 // Replace a ADDiu & SLL pair with a LUi.
88 // LUi 0x444
104 Seq[0].Opc = LUi;
137 LUi = Mips::LUi;
142 LUi = Mips::LUi64;
H A DMipsAnalyzeImmediate.h52 /// ReplaceADDiuSLLWithLUi - Replace an ADDiu & SLL pair with a LUi.
60 unsigned ADDiu, ORi, SLL, LUi; member in class:llvm::MipsAnalyzeImmediate
H A DMipsInstructionSelector.cpp150 MachineInstr *Inst = B.buildInstr(Mips::LUi, {DestReg}, {})
163 MachineInstr *LUi = B.buildInstr(Mips::LUi, {LUiReg}, {}) local
167 if (!constrainSelectedInstRegOperands(*LUi, TII, TRI, RBI))
605 MachineInstr *LUi = BuildMI(MBB, I, I.getDebugLoc(), TII.get(Mips::LUi)) local
608 LUi->getOperand(1).setTargetFlags(MipsII::MO_ABS_HI);
609 if (!constrainSelectedInstRegOperands(*LUi, TII, TRI, RBI))
636 BuildMI(MBB, I, I.getDebugLoc(), TII.get(Mips::LUi))
H A DMipsMachineFunction.cpp102 BuildMI(MBB, I, DL, TII.get(Mips::LUi), V0)
117 BuildMI(MBB, I, DL, TII.get(Mips::LUi), V0)
H A DMipsMCInstLower.cpp216 OutMI.setOpcode(Mips::LUi);
H A DMipsSEISelDAGToDAG.cpp812 // The first instruction can be a LUi which is different from other
1072 Res = CurDAG->getMachineNode(Mips::LUi, DL, MVT::i32, HiVal);
1095 Res = CurDAG->getMachineNode(Mips::LUi, DL, MVT::i32, HiVal);
1160 // bits that's a negative number we can do better than LUi/ORi
1164 Res = CurDAG->getMachineNode(Mips::LUi, DL, MVT::i32, HiVal);
1172 HiRes = CurDAG->getMachineNode(Mips::LUi, DL, MVT::i32, HighestVal);
H A DMipsSEInstrInfo.cpp611 unsigned LUi = STI.isABI_N64() ? Mips::LUi64 : Mips::LUi; local
623 // The first instruction can be a LUi, which is different from other
628 if (Inst->Opc == LUi)
629 BuildMI(MBB, II, DL, get(LUi), Reg).addImm(SignExtend64<16>(Inst->ImmOpnd));
H A DMipsBranchExpansion.cpp464 // LUi and ADDiu instructions create 32-bit offset of the target basic
473 // we replace LUi and ADDiu with pseudo instructions
476 // instructions to LUi and ADDiu in the MC layer, we will create
724 BuildMI(MBB, I, DL, TII->get(Mips::LUi), Mips::V0)
H A DMipsFastISel.cpp381 emitInst(Mips::LUi, TmpReg).addImm(Hi);
384 emitInst(Mips::LUi, ResultReg).addImm(Hi);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsTargetStreamer.cpp323 emitRI(Mips::LUi, ATReg, HiOffset, IDLoc, STI);
359 emitRI(Mips::LUi, TmpReg, HiOffset, IDLoc, STI);
1134 TmpInst.setOpcode(Mips::LUi);
1226 emitRX(Mips::LUi, GPReg, MCOperand::createExpr(HiExpr), SMLoc(), &STI);
1243 emitRX(Mips::LUi, GPReg, MCOperand::createExpr(HiExpr), SMLoc(), &STI);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp2750 TOut.emitRI(Mips::LUi, TmpReg, 0xffff, IDLoc, STI);
2757 // Expand to an ORi instead of a LUi to avoid sign-extending into the
2768 TOut.emitRI(Mips::LUi, TmpReg, Bits31To16, IDLoc, STI);
2920 TOut.emitRX(Mips::LUi, DstReg, MCOperand::createExpr(CallHiExpr), IDLoc,
2965 TOut.emitRX(Mips::LUi, TmpReg, MCOperand::createExpr(CallHiExpr), IDLoc,
3083 TOut.emitRX(Mips::LUi, ATReg, MCOperand::createExpr(HighestExpr), IDLoc,
3110 TOut.emitRX(Mips::LUi, DstReg, MCOperand::createExpr(HighestExpr), IDLoc,
3112 TOut.emitRX(Mips::LUi, ATReg, MCOperand::createExpr(HiExpr), IDLoc, STI);
3133 TOut.emitRX(Mips::LUi, DstReg, MCOperand::createExpr(HighestExpr), IDLoc,
3178 TOut.emitRX(Mips::LUi, TmpRe
[all...]

Completed in 193 milliseconds