Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCObjectWriter.cpp50 const MCSection &SecA = SymA.getSection(); in isSymbolRefDifferenceFullyResolvedImpl() local
53 return &SecA == &SecB; in isSymbolRefDifferenceFullyResolvedImpl()
H A DMCExpr.cpp630 const MCSection &SecA = *FA->getParent(); in AttemptToFoldSymbolOffsetDifference() local
633 if ((&SecA != &SecB) && !Addrs) in AttemptToFoldSymbolOffsetDifference()
645 if (Addrs && (&SecA != &SecB)) in AttemptToFoldSymbolOffsetDifference()
646 Addend += (Addrs->lookup(&SecA) - Addrs->lookup(&SecB)); in AttemptToFoldSymbolOffsetDifference()
665 for (auto FI = FB->getIterator(), FE = SecA.end(); FI != FE; ++FI) { in AttemptToFoldSymbolOffsetDifference()
H A DMachObjectWriter.cpp690 const MCSection &SecA = SA.getSection(); in isSymbolRefDifferenceFullyResolvedImpl() local
709 if (!SA.isInSection() || &SecA != &SecB || in isSymbolRefDifferenceFullyResolvedImpl()
722 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){ in isSymbolRefDifferenceFullyResolvedImpl()
728 if (&SecA != &SecB) in isSymbolRefDifferenceFullyResolvedImpl()
H A DELFObjectWriter.cpp1476 const MCSectionELF *SecA = (SymA && SymA->isInSection()) in recordRelocation() local
1479 if (!checkRelocation(Ctx, Fixup.getLoc(), &FixupSection, SecA)) in recordRelocation()
1500 SecA ? cast<MCSymbolELF>(SecA->getBeginSymbol()) : nullptr; in recordRelocation()
H A DWasmObjectWriter.cpp569 const MCSection &SecA = SymA->getSection(); in recordRelocation() local
570 if (SecA.getKind().isText()) { in recordRelocation()
571 auto SecSymIt = SectionFunctions.find(&SecA); in recordRelocation()
576 SectionSymbol = SecA.getBeginSymbol(); in recordRelocation()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOX86_64.h214 SectionRef SecA = Obj.getAnyRelocationSection(RelInfo); in processSubtractRelocation() local
215 bool IsCode = SecA.isText(); in processSubtractRelocation()
217 findOrEmitSection(Obj, SecA, IsCode, ObjSectionToID); in processSubtractRelocation()
221 Addend -= SecA.getAddress(); in processSubtractRelocation()