Lines Matching refs:OffsetVal
688 MCValue OffsetVal; in getOffsetAndDataFragment() local
689 if(!SymbolExpr->evaluateAsRelocatable(OffsetVal, nullptr, nullptr)) in getOffsetAndDataFragment()
693 if (OffsetVal.isAbsolute()) { in getOffsetAndDataFragment()
694 RelocOffset = OffsetVal.getConstant(); in getOffsetAndDataFragment()
706 if (OffsetVal.getSymB()) in getOffsetAndDataFragment()
711 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(*OffsetVal.getSymA()); in getOffsetAndDataFragment()
729 RelocOffset = SRE.getSymbol().getOffset() + OffsetVal.getConstant(); in getOffsetAndDataFragment()
762 MCValue OffsetVal; in emitRelocDirective() local
763 if (!Offset.evaluateAsRelocatable(OffsetVal, nullptr, nullptr)) in emitRelocDirective()
766 if (OffsetVal.isAbsolute()) { in emitRelocDirective()
767 if (OffsetVal.getConstant() < 0) in emitRelocDirective()
770 MCFixup::create(OffsetVal.getConstant(), Expr, Kind, Loc)); in emitRelocDirective()
773 if (OffsetVal.getSymB()) in emitRelocDirective()
777 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(*OffsetVal.getSymA()); in emitRelocDirective()
788 MCFixup::create(SymbolOffset + OffsetVal.getConstant(), in emitRelocDirective()