Home
last modified time | relevance | path

Searched refs:PageStarts (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h302 std::vector<uint16_t> &&PageStarts) in ChainedFixupsSegment()
304 PageStarts(PageStarts){}; in ChainedFixupsSegment()
309 std::vector<uint16_t> PageStarts; // page_start[] entries, host endianness member
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp3344 while (PageIndex < SegInfo.PageStarts.size() && in findNextPageWithFixups()
3345 SegInfo.PageStarts[PageIndex] == MachO::DYLD_CHAINED_PTR_START_NONE) in findNextPageWithFixups()
3347 return PageIndex < SegInfo.PageStarts.size(); in findNextPageWithFixups()
3352 PageOffset = Segments[InfoSegIndex].PageStarts[PageIndex]; in findNextPageWithFixups()
5119 std::vector<uint16_t> PageStarts; in getChainedFixupsSegments() local
5125 PageStarts.push_back(Start); in getChainedFixupsSegments()
5128 Segments.emplace_back(I, *OffOrErr, Seg, std::move(PageStarts)); in getChainedFixupsSegments()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1278 for (auto [Index, PageStart] : enumerate(Segment.PageStarts)) { in PrintChainedFixupsSegment()