Home
last modified time | relevance | path

Searched refs:SecIndex (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DELFLinkGraphBuilder.h82 void setGraphSection(ELFSectionIndex SecIndex, Section &Sec) { in setGraphSection() argument
83 assert(!GraphSections.count(SecIndex) && "Duplicate section at index"); in setGraphSection()
84 GraphSections[SecIndex] = &Sec; in setGraphSection()
87 Section *getGraphSection(ELFSectionIndex SecIndex) { in getGraphSection() argument
88 auto I = GraphSections.find(SecIndex); in getGraphSection()
232 for (ELFSectionIndex SecIndex = 0; SecIndex != Sections.size(); ++SecIndex) { in graphifySections() local
234 auto &Sec = Sections[SecIndex]; in graphifySections()
245 dbgs() << " " << SecIndex << ": \"" << *Name in graphifySections()
255 dbgs() << " " << SecIndex << ": \"" << *Name in graphifySections()
263 dbgs() << " " << SecIndex << ": Creating section for \"" << *Name in graphifySections()
[all …]
DMachOLinkGraphBuilder.cpp128 auto SecIndex = Obj.getSectionIndex(SecRef.getRawDataRefImpl()); in createNormalizedSections() local
163 << ", align: " << NSec.Alignment << ", index: " << SecIndex in createNormalizedSections()
199 IndexToSection.insert(std::make_pair(SecIndex, std::move(NSec))); in createNormalizedSections()
402 auto SecIndex = KV.first; in graphifyRegularSymbols() local
423 NSec, std::move(SecIndexToSymbols[SecIndex]))) in graphifyRegularSymbols()
435 auto &SecNSymStack = SecIndexToSymbols[SecIndex]; in graphifyRegularSymbols()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
DObjDumper.cpp80 unsigned SecIndex; in getSectionRefsByNameOrIndex() local
82 if (!Section.getAsInteger(0, SecIndex)) in getSectionRefsByNameOrIndex()
83 SecIndices.emplace(SecIndex, false); in getSectionRefsByNameOrIndex()
88 SecIndex = Obj.isELF() ? 0 : 1; in getSectionRefsByNameOrIndex()
94 auto IndexIt = SecIndices.find(SecIndex); in getSectionRefsByNameOrIndex()
99 SecIndex++; in getSectionRefsByNameOrIndex()
DARMEHABIPrinter.h504 Optional<unsigned> SecIndex = in PrintExceptionTable() local
506 if (ErrorOr<StringRef> Name = FunctionAtAddress(Address, SecIndex)) in PrintExceptionTable()
577 Optional<unsigned> SecIndex = in PrintIndexTable() local
579 if (ErrorOr<StringRef> Name = FunctionAtAddress(Address, SecIndex)) in PrintIndexTable()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
DELFObjectWriter.cpp1141 uint32_t SecIndex = SectionIndexMap.lookup(Member); in writeObject() local
1142 write(SecIndex); in writeObject()