Lines Matching refs:CompoundInsn
199 MCInst *CompoundInsn = nullptr; in getCompoundInsn() local
208 return CompoundInsn; in getCompoundInsn()
213 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
214 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
216 CompoundInsn->addOperand(Rt); in getCompoundInsn()
217 CompoundInsn->addOperand(L.getOperand(1)); // Immediate in getCompoundInsn()
218 CompoundInsn->addOperand(R.getOperand(0)); // Jump target in getCompoundInsn()
226 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
227 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
228 CompoundInsn->addOperand(Rt); in getCompoundInsn()
229 CompoundInsn->addOperand(Rs); in getCompoundInsn()
230 CompoundInsn->addOperand(R.getOperand(0)); // Jump target. in getCompoundInsn()
240 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
241 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
242 CompoundInsn->addOperand(Rs); in getCompoundInsn()
243 CompoundInsn->addOperand(Rt); in getCompoundInsn()
244 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
253 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
254 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
255 CompoundInsn->addOperand(Rs); in getCompoundInsn()
256 CompoundInsn->addOperand(Rt); in getCompoundInsn()
257 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
266 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
267 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
268 CompoundInsn->addOperand(Rs); in getCompoundInsn()
269 CompoundInsn->addOperand(Rt); in getCompoundInsn()
270 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
284 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
285 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
286 CompoundInsn->addOperand(Rs); in getCompoundInsn()
287 CompoundInsn->addOperand(L.getOperand(2)); in getCompoundInsn()
288 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
302 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
303 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
304 CompoundInsn->addOperand(Rs); in getCompoundInsn()
305 CompoundInsn->addOperand(L.getOperand(2)); in getCompoundInsn()
306 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
313 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
314 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
315 CompoundInsn->addOperand(Rs); in getCompoundInsn()
316 CompoundInsn->addOperand(L.getOperand(2)); in getCompoundInsn()
317 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
324 CompoundInsn = Context.createMCInst(); in getCompoundInsn()
325 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
326 CompoundInsn->addOperand(Rs); in getCompoundInsn()
327 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
331 return CompoundInsn; in getCompoundInsn()
379 MCInst *CompoundInsn = getCompoundInsn(Context, *Inst, *JumpInst); in lookForCompound() local
380 if (CompoundInsn) { in lookForCompound()
383 << CompoundInsn->getOpcode() << "\n"); in lookForCompound()
384 J->setInst(CompoundInsn); in lookForCompound()