Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:CE

729     const MCConstantExpr *CE = cast<MCConstantExpr>(Expr);
730 return CE->getValue() >= 0 && CE->getValue() <= 0xfff;
748 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr);
749 return CE != nullptr && CE->getValue() < 0 && -CE->getValue() <= 0xfff;
865 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
866 if (!CE) return false;
867 uint64_t Value = CE->getValue();
883 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
884 if (!CE) return false;
885 uint64_t Value = CE->getValue();
1137 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) {
1138 int64_t Val = CE->getValue();
1153 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Imm.Val)) {
1154 int64_t Val = CE->getValue();
1167 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
1168 Inst.addOperand(MCOperand::createImm(CE->getValue()));
1283 const MCConstantExpr *CE = cast<MCConstantExpr>(MCE);
1284 int64_t Val = -CE->getValue();
1612 const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
1613 uint64_t Value = CE->getValue();
1621 const MCConstantExpr *CE = cast<MCConstantExpr>(getImm());
1622 uint64_t Value = CE->getValue();
4535 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Op.getImm());
4536 if (!CE)
4538 if (CE->getValue() == ExpectedVal)