• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/

Lines Matching refs:CompoundInsn

198   MCInst *CompoundInsn = nullptr;
207 return CompoundInsn;
212 CompoundInsn = new (Context) MCInst;
213 CompoundInsn->setOpcode(compoundOpcode);
215 CompoundInsn->addOperand(Rt);
216 CompoundInsn->addOperand(L.getOperand(1)); // Immediate
217 CompoundInsn->addOperand(R.getOperand(0)); // Jump target
225 CompoundInsn = new (Context) MCInst;
226 CompoundInsn->setOpcode(compoundOpcode);
227 CompoundInsn->addOperand(Rt);
228 CompoundInsn->addOperand(Rs);
229 CompoundInsn->addOperand(R.getOperand(0)); // Jump target.
239 CompoundInsn = new (Context) MCInst;
240 CompoundInsn->setOpcode(compoundOpcode);
241 CompoundInsn->addOperand(Rs);
242 CompoundInsn->addOperand(Rt);
243 CompoundInsn->addOperand(R.getOperand(1));
252 CompoundInsn = new (Context) MCInst;
253 CompoundInsn->setOpcode(compoundOpcode);
254 CompoundInsn->addOperand(Rs);
255 CompoundInsn->addOperand(Rt);
256 CompoundInsn->addOperand(R.getOperand(1));
265 CompoundInsn = new (Context) MCInst;
266 CompoundInsn->setOpcode(compoundOpcode);
267 CompoundInsn->addOperand(Rs);
268 CompoundInsn->addOperand(Rt);
269 CompoundInsn->addOperand(R.getOperand(1));
283 CompoundInsn = new (Context) MCInst;
284 CompoundInsn->setOpcode(compoundOpcode);
285 CompoundInsn->addOperand(Rs);
286 CompoundInsn->addOperand(L.getOperand(2));
287 CompoundInsn->addOperand(R.getOperand(1));
301 CompoundInsn = new (Context) MCInst;
302 CompoundInsn->setOpcode(compoundOpcode);
303 CompoundInsn->addOperand(Rs);
304 CompoundInsn->addOperand(L.getOperand(2));
305 CompoundInsn->addOperand(R.getOperand(1));
312 CompoundInsn = new (Context) MCInst;
313 CompoundInsn->setOpcode(compoundOpcode);
314 CompoundInsn->addOperand(Rs);
315 CompoundInsn->addOperand(L.getOperand(2));
316 CompoundInsn->addOperand(R.getOperand(1));
323 CompoundInsn = new (Context) MCInst;
324 CompoundInsn->setOpcode(compoundOpcode);
325 CompoundInsn->addOperand(Rs);
326 CompoundInsn->addOperand(R.getOperand(1));
330 return CompoundInsn;
376 MCInst *CompoundInsn = getCompoundInsn(Context, *Inst, *JumpInst);
377 if (CompoundInsn) {
380 << CompoundInsn->getOpcode() << "\n");
381 J->setInst(CompoundInsn);