Home
last modified time | relevance | path

Searched refs:SecA (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/MC/
DMCObjectWriter.cpp49 const MCSection &SecA = SymA.getSection(); in isSymbolRefDifferenceFullyResolvedImpl() local
52 return &SecA == &SecB; in isSymbolRefDifferenceFullyResolvedImpl()
DMCExpr.cpp482 const MCSection &SecA = *SA.getFragment()->getParent(); in AttemptToFoldSymbolOffsetDifference() local
485 if ((&SecA != &SecB) && !Addrs) in AttemptToFoldSymbolOffsetDifference()
491 if (Addrs && (&SecA != &SecB)) in AttemptToFoldSymbolOffsetDifference()
492 Addend += (Addrs->lookup(&SecA) - Addrs->lookup(&SecB)); in AttemptToFoldSymbolOffsetDifference()
DMachObjectWriter.cpp656 const MCSection &SecA = SA.getSection(); in isSymbolRefDifferenceFullyResolvedImpl() local
675 if (!SA.isInSection() || &SecA != &SecB || in isSymbolRefDifferenceFullyResolvedImpl()
688 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){ in isSymbolRefDifferenceFullyResolvedImpl()
694 if (&SecA != &SecB) in isSymbolRefDifferenceFullyResolvedImpl()
DELFObjectWriter.cpp703 const MCSection *SecA = in recordRelocation() local
705 auto *ELFSec = cast_or_null<MCSectionELF>(SecA); in recordRelocation()
/external/swiftshader/third_party/LLVM/lib/MC/
DMCObjectWriter.cpp76 const MCSection &SecA = DataA.getSymbol().AliasedSymbol().getSection(); in IsSymbolRefDifferenceFullyResolvedImpl() local
79 return &SecA == &SecB; in IsSymbolRefDifferenceFullyResolvedImpl()
DMCExpr.cpp328 const MCSectionData &SecA = *AD.getFragment()->getParent(); in AttemptToFoldSymbolOffsetDifference() local
331 if ((&SecA != &SecB) && !Addrs) in AttemptToFoldSymbolOffsetDifference()
337 if (Addrs && (&SecA != &SecB)) in AttemptToFoldSymbolOffsetDifference()
338 Addend += (Addrs->lookup(&SecA) - Addrs->lookup(&SecB)); in AttemptToFoldSymbolOffsetDifference()
DMachObjectWriter.cpp575 const MCSection &SecA = SA.getSection(); in IsSymbolRefDifferenceFullyResolvedImpl() local
589 if (!SA.isTemporary() || !SA.isInSection() || &SecA != &SecB) in IsSymbolRefDifferenceFullyResolvedImpl()
600 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){ in IsSymbolRefDifferenceFullyResolvedImpl()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOX86_64.h216 SectionRef SecA = Obj.getAnyRelocationSection(RelInfo); in processSubtractRelocation() local
217 bool IsCode = SecA.isText(); in processSubtractRelocation()
219 findOrEmitSection(Obj, SecA, IsCode, ObjSectionToID); in processSubtractRelocation()
223 Addend -= SecA.getAddress(); in processSubtractRelocation()