Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCObjectWriter.cpp48 const MCSection &SecA = SymA.getSection(); in isSymbolRefDifferenceFullyResolvedImpl() local
51 return &SecA == &SecB; in isSymbolRefDifferenceFullyResolvedImpl()
H A DMCExpr.cpp626 const MCSection &SecA = *FA->getParent(); in AttemptToFoldSymbolOffsetDifference() local
629 if ((&SecA != &SecB) && !Addrs) in AttemptToFoldSymbolOffsetDifference()
641 if (Addrs && (&SecA != &SecB)) in AttemptToFoldSymbolOffsetDifference()
642 Addend += (Addrs->lookup(&SecA) - Addrs->lookup(&SecB)); in AttemptToFoldSymbolOffsetDifference()
661 for (auto FI = FB->getIterator(), FE = SecA.end(); FI != FE; ++FI) { in AttemptToFoldSymbolOffsetDifference()
H A DMachObjectWriter.cpp689 const MCSection &SecA = SA.getSection(); in isSymbolRefDifferenceFullyResolvedImpl() local
708 if (!SA.isInSection() || &SecA != &SecB || in isSymbolRefDifferenceFullyResolvedImpl()
721 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){ in isSymbolRefDifferenceFullyResolvedImpl()
727 if (&SecA != &SecB) in isSymbolRefDifferenceFullyResolvedImpl()
H A DELFObjectWriter.cpp1467 const MCSectionELF *SecA = (SymA && SymA->isInSection()) in recordRelocation() local
1470 if (!checkRelocation(Ctx, Fixup.getLoc(), &FixupSection, SecA)) in recordRelocation()
1487 SecA ? cast<MCSymbolELF>(SecA->getBeginSymbol()) : nullptr; in recordRelocation()
H A DWasmObjectWriter.cpp514 const MCSection &SecA = SymA->getSection(); in recordRelocation() local
515 if (SecA.getKind().isText()) { in recordRelocation()
516 auto SecSymIt = SectionFunctions.find(&SecA); in recordRelocation()
521 SectionSymbol = SecA.getBeginSymbol(); in recordRelocation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOX86_64.h215 SectionRef SecA = Obj.getAnyRelocationSection(RelInfo); in processSubtractRelocation() local
216 bool IsCode = SecA.isText(); in processSubtractRelocation()
218 findOrEmitSection(Obj, SecA, IsCode, ObjSectionToID); in processSubtractRelocation()
222 Addend -= SecA.getAddress(); in processSubtractRelocation()