Home
last modified time | relevance | path

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

/external/llvm/lib/MC/
DMCObjectWriter.cpp50 const MCSection &SecB = *FB.getParent(); in isSymbolRefDifferenceFullyResolvedImpl() local
52 return &SecA == &SecB; in isSymbolRefDifferenceFullyResolvedImpl()
DMCExpr.cpp483 const MCSection &SecB = *SB.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.cpp657 const MCSection &SecB = *FB.getParent(); 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.cpp660 const MCSection &SecB = SymB.getSection(); in recordRelocation() local
661 if (&SecB != &FixupSection) { in recordRelocation()
/external/swiftshader/third_party/LLVM/lib/MC/
DMCObjectWriter.cpp77 const MCSection &SecB = FB.getParent()->getSection(); in IsSymbolRefDifferenceFullyResolvedImpl() local
79 return &SecA == &SecB; in IsSymbolRefDifferenceFullyResolvedImpl()
DMCExpr.cpp329 const MCSectionData &SecB = *BD.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.cpp576 const MCSection &SecB = FB.getParent()->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.h190 SectionRef SecB = Obj.getAnyRelocationSection(RelInfo); in processSubtractRelocation() local
191 bool IsCode = SecB.isText(); in processSubtractRelocation()
193 findOrEmitSection(Obj, SecB, IsCode, ObjSectionToID); in processSubtractRelocation()
197 Addend += SecB.getAddress(); in processSubtractRelocation()