Lines Matching refs:CompoundInsn

205   MCInst *CompoundInsn = 0;  in getCompoundInsn()  local
214 return CompoundInsn; in getCompoundInsn()
219 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
220 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
222 CompoundInsn->addOperand(Rt); in getCompoundInsn()
223 CompoundInsn->addOperand(L.getOperand(1)); // Immediate in getCompoundInsn()
224 CompoundInsn->addOperand(R.getOperand(0)); // Jump target in getCompoundInsn()
232 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
233 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
234 CompoundInsn->addOperand(Rt); in getCompoundInsn()
235 CompoundInsn->addOperand(Rs); in getCompoundInsn()
236 CompoundInsn->addOperand(R.getOperand(0)); // Jump target. in getCompoundInsn()
246 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
247 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
248 CompoundInsn->addOperand(Rs); in getCompoundInsn()
249 CompoundInsn->addOperand(Rt); in getCompoundInsn()
250 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
259 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
260 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
261 CompoundInsn->addOperand(Rs); in getCompoundInsn()
262 CompoundInsn->addOperand(Rt); in getCompoundInsn()
263 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
272 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
273 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
274 CompoundInsn->addOperand(Rs); in getCompoundInsn()
275 CompoundInsn->addOperand(Rt); in getCompoundInsn()
276 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
290 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
291 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
292 CompoundInsn->addOperand(Rs); in getCompoundInsn()
294 CompoundInsn->addOperand(L.getOperand(2)); in getCompoundInsn()
295 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
309 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
310 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
311 CompoundInsn->addOperand(Rs); in getCompoundInsn()
313 CompoundInsn->addOperand(L.getOperand(2)); in getCompoundInsn()
314 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
321 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
322 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
323 CompoundInsn->addOperand(Rs); in getCompoundInsn()
324 CompoundInsn->addOperand(L.getOperand(2)); in getCompoundInsn()
325 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
332 CompoundInsn = new (Context) MCInst; in getCompoundInsn()
333 CompoundInsn->setOpcode(compoundOpcode); in getCompoundInsn()
334 CompoundInsn->addOperand(Rs); in getCompoundInsn()
335 CompoundInsn->addOperand(R.getOperand(1)); in getCompoundInsn()
339 return CompoundInsn; in getCompoundInsn()
389 MCInst *CompoundInsn = getCompoundInsn(Context, *Inst, *JumpInst); in lookForCompound() local
390 if (CompoundInsn) { in lookForCompound()
393 << CompoundInsn->getOpcode() << "\n"); in lookForCompound()
394 J->setInst(CompoundInsn); in lookForCompound()