Lines Matching refs:OffsetVal
673 MCValue OffsetVal; in getOffsetAndDataFragment() local
674 if(!SymbolExpr->evaluateAsRelocatable(OffsetVal, nullptr, nullptr)) in getOffsetAndDataFragment()
678 if (OffsetVal.isAbsolute()) { in getOffsetAndDataFragment()
679 RelocOffset = OffsetVal.getConstant(); in getOffsetAndDataFragment()
691 if (OffsetVal.getSymB()) in getOffsetAndDataFragment()
696 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(*OffsetVal.getSymA()); in getOffsetAndDataFragment()
714 RelocOffset = SRE.getSymbol().getOffset() + OffsetVal.getConstant(); in getOffsetAndDataFragment()
747 MCValue OffsetVal; in emitRelocDirective() local
748 if (!Offset.evaluateAsRelocatable(OffsetVal, nullptr, nullptr)) in emitRelocDirective()
751 if (OffsetVal.isAbsolute()) { in emitRelocDirective()
752 if (OffsetVal.getConstant() < 0) in emitRelocDirective()
755 MCFixup::create(OffsetVal.getConstant(), Expr, Kind, Loc)); in emitRelocDirective()
758 if (OffsetVal.getSymB()) in emitRelocDirective()
762 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(*OffsetVal.getSymA()); in emitRelocDirective()
773 MCFixup::create(SymbolOffset + OffsetVal.getConstant(), in emitRelocDirective()