Lines Matching refs:ConstExpr
215 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) {
216 int64_t Value = ConstExpr->getValue();
237 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
238 if (ConstExpr) {
239 int64_t Value = ConstExpr->getValue();
251 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) {
252 int64_t Value = ConstExpr->getValue();
275 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) {
276 int64_t Value = ConstExpr->getValue();
298 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
299 if (ConstExpr) {
300 int64_t Value = ConstExpr->getValue();
311 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
312 if (!ConstExpr)
314 int64_t Value = ConstExpr->getValue();
323 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) {
324 int64_t Value = ConstExpr->getValue();
353 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
354 if (!ConstExpr)
356 int64_t Value = ConstExpr->getValue();
364 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value);
365 if (!ConstExpr)
367 uint64_t Value = ConstExpr->getValue();
378 else if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Expr))
380 MCOperand::createImm(static_cast<int32_t>(ConstExpr->getValue())));
451 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
453 MCOperand::createImm(static_cast<int32_t>(ConstExpr->getValue())));
474 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
475 Inst.addOperand(MCOperand::createImm(ConstExpr->getValue() & 0xffff));
482 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
483 Inst.addOperand(MCOperand::createImm(ConstExpr->getValue() >> 16));
504 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
505 Inst.addOperand(MCOperand::createImm(ConstExpr->getValue() >> 16));
512 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(getImm()))
513 Inst.addOperand(MCOperand::createImm(ConstExpr->getValue() & 0x1fffff));
822 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Op.getImm())) {
823 int64_t Value = ConstExpr->getValue();
1106 if (const MCConstantExpr *ConstExpr =
1108 Modifies = LPAC::modifiesOp(ConstExpr->getValue());