Lines Matching refs:TmpInst
131 MCInst TmpInst; in emitR() local
132 TmpInst.setOpcode(Opcode); in emitR()
133 TmpInst.addOperand(MCOperand::createReg(Reg0)); in emitR()
134 TmpInst.setLoc(IDLoc); in emitR()
135 getStreamer().EmitInstruction(TmpInst, *STI); in emitR()
140 MCInst TmpInst; in emitRX() local
141 TmpInst.setOpcode(Opcode); in emitRX()
142 TmpInst.addOperand(MCOperand::createReg(Reg0)); in emitRX()
143 TmpInst.addOperand(Op1); in emitRX()
144 TmpInst.setLoc(IDLoc); in emitRX()
145 getStreamer().EmitInstruction(TmpInst, *STI); in emitRX()
160 MCInst TmpInst; in emitII() local
161 TmpInst.setOpcode(Opcode); in emitII()
162 TmpInst.addOperand(MCOperand::createImm(Imm1)); in emitII()
163 TmpInst.addOperand(MCOperand::createImm(Imm2)); in emitII()
164 TmpInst.setLoc(IDLoc); in emitII()
165 getStreamer().EmitInstruction(TmpInst, *STI); in emitII()
171 MCInst TmpInst; in emitRRX() local
172 TmpInst.setOpcode(Opcode); in emitRRX()
173 TmpInst.addOperand(MCOperand::createReg(Reg0)); in emitRRX()
174 TmpInst.addOperand(MCOperand::createReg(Reg1)); in emitRRX()
175 TmpInst.addOperand(Op2); in emitRRX()
176 TmpInst.setLoc(IDLoc); in emitRRX()
177 getStreamer().EmitInstruction(TmpInst, *STI); in emitRRX()
1016 MCInst TmpInst; in emitDirectiveCpLoad() local
1017 TmpInst.setOpcode(Mips::LUi); in emitDirectiveCpLoad()
1018 TmpInst.addOperand(MCOperand::createReg(Mips::GP)); in emitDirectiveCpLoad()
1024 TmpInst.addOperand(MCOperand::createExpr(HiSym)); in emitDirectiveCpLoad()
1025 getStreamer().EmitInstruction(TmpInst, STI); in emitDirectiveCpLoad()
1027 TmpInst.clear(); in emitDirectiveCpLoad()
1029 TmpInst.setOpcode(Mips::ADDiu); in emitDirectiveCpLoad()
1030 TmpInst.addOperand(MCOperand::createReg(Mips::GP)); in emitDirectiveCpLoad()
1031 TmpInst.addOperand(MCOperand::createReg(Mips::GP)); in emitDirectiveCpLoad()
1037 TmpInst.addOperand(MCOperand::createExpr(LoSym)); in emitDirectiveCpLoad()
1038 getStreamer().EmitInstruction(TmpInst, STI); in emitDirectiveCpLoad()
1040 TmpInst.clear(); in emitDirectiveCpLoad()
1042 TmpInst.setOpcode(Mips::ADDu); in emitDirectiveCpLoad()
1043 TmpInst.addOperand(MCOperand::createReg(Mips::GP)); in emitDirectiveCpLoad()
1044 TmpInst.addOperand(MCOperand::createReg(Mips::GP)); in emitDirectiveCpLoad()
1045 TmpInst.addOperand(MCOperand::createReg(RegNo)); in emitDirectiveCpLoad()
1046 getStreamer().EmitInstruction(TmpInst, STI); in emitDirectiveCpLoad()