Home | History | Annotate | Download | only in MC

Lines Matching defs:Value

152 const MCConstantExpr *MCConstantExpr::Create(int64_t Value, MCContext &Ctx) {
153 return new (Ctx) MCConstantExpr(Value);
443 MCValue Value;
455 EvaluateAsRelocatableImpl(Value
457 // Record the current value.
458 Res = Value.getConstant();
460 return IsRelocatable && Value.isAbsolute();
646 MCValue Value;
648 if (!AUE->getSubExpr()->EvaluateAsRelocatableImpl(Value, Asm, Layout,
654 if (!Value.isAbsolute())
656 Res = MCValue::get(!Value.getConstant());
660 if (Value.getSymA() && !Value.getSymB())
662 Res = MCValue::get(Value.getSymB(), Value.getSymA(),
663 -Value.getConstant());
666 if (!Value.isAbsolute())
668 Res = MCValue::get(~Value.getConstant());
671 Res = Value;