• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/

Lines Matching defs:ConstExpr

232     if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) {
233 int64_t Value = ConstExpr->getValue();
254 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
255 if (ConstExpr) {
256 int64_t Value = ConstExpr->getValue();
268 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) {
269 int64_t Value = ConstExpr->getValue();
292 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) {
293 int64_t Value = ConstExpr->getValue();
315 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
316 if (ConstExpr) {
317 int64_t Value = ConstExpr->getValue();
328 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
329 if (!ConstExpr)
331 int64_t Value = ConstExpr->getValue();
340 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) {
341 int64_t Value = ConstExpr->getValue();
370 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
371 if (!ConstExpr)
373 int64_t Value = ConstExpr->getValue();
381 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
382 if (!ConstExpr)
384 uint64_t Value = ConstExpr->getValue();
395 else if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Expr))
397 MCOperand::createImm(static_cast<int32_t>(ConstExpr->getValue())));
468 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
470 MCOperand::createImm(static_cast<int32_t>(ConstExpr->getValue())));
492 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
493 Inst.addOperand(MCOperand::createImm(ConstExpr->getValue() & 0xffff));
500 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
501 Inst.addOperand(MCOperand::createImm(ConstExpr->getValue() >> 16));
523 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
524 Inst.addOperand(MCOperand::createImm(ConstExpr->getValue() >> 16));
531 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
532 Inst.addOperand(MCOperand::createImm(ConstExpr->getValue() & 0x1fffff));
869 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Op.getImm())) {
870 int64_t Value = ConstExpr->getValue();
1153 if (const MCConstantExpr *ConstExpr =
1155 Modifies = LPAC::modifiesOp(ConstExpr->getValue());