Lines Matching refs:JalrInst

2127     MCInst JalrInst;  in processInstruction()  local
2129 JalrInst.setOpcode(IsCpRestoreSet ? Mips::JALRS_MM : Mips::JALR_MM); in processInstruction()
2131 JalrInst.setOpcode(Mips::JALR); in processInstruction()
2132 JalrInst.addOperand(MCOperand::createReg(Mips::RA)); in processInstruction()
2133 JalrInst.addOperand(MCOperand::createReg(Mips::T9)); in processInstruction()
2151 Inst = JalrInst; in processInstruction()
2704 MCInst JalrInst; in expandJalWithRegs() local
2705 JalrInst.setLoc(IDLoc); in expandJalWithRegs()
2712 JalrInst.setOpcode(Mips::JALRS16_MM); in expandJalWithRegs()
2713 JalrInst.addOperand(FirstRegOp); in expandJalWithRegs()
2715 JalrInst.setOpcode(hasMips32r6() ? Mips::JALRC16_MMR6 : Mips::JALR16_MM); in expandJalWithRegs()
2716 JalrInst.addOperand(FirstRegOp); in expandJalWithRegs()
2718 JalrInst.setOpcode(Mips::JALR); in expandJalWithRegs()
2719 JalrInst.addOperand(MCOperand::createReg(Mips::RA)); in expandJalWithRegs()
2720 JalrInst.addOperand(FirstRegOp); in expandJalWithRegs()
2725 JalrInst.setOpcode(Mips::JALRS_MM); in expandJalWithRegs()
2727 JalrInst.setOpcode(inMicroMipsMode() ? Mips::JALR_MM : Mips::JALR); in expandJalWithRegs()
2728 JalrInst.addOperand(FirstRegOp); in expandJalWithRegs()
2730 JalrInst.addOperand(SecondRegOp); in expandJalWithRegs()
2732 Out.emitInstruction(JalrInst, *STI); in expandJalWithRegs()
2736 const MCInstrDesc &MCID = MII.get(JalrInst.getOpcode()); in expandJalWithRegs()
2738 TOut.emitEmptyDelaySlot(hasShortDelaySlot(JalrInst), IDLoc, in expandJalWithRegs()