Home
last modified time | relevance | path

Searched refs:SegIndex (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h137 const char* checkSegAndOffsets(int32_t SegIndex, uint64_t SegOffset,
141 StringRef segmentName(int32_t SegIndex);
142 StringRef sectionName(int32_t SegIndex, uint64_t SegOffset);
143 uint64_t address(uint32_t SegIndex, uint64_t SegOffset);
155 const SectionInfo &findSection(int32_t SegIndex, uint64_t SegOffset);
581 return BindRebaseSectionTable->checkSegAndOffsets(SegIndex, SegOffset,
591 const char *RebaseEntryCheckSegAndOffsets(int32_t SegIndex,
602 StringRef BindRebaseSegmentName(int32_t SegIndex) const { in BindRebaseSegmentName() argument
603 return BindRebaseSectionTable->segmentName(SegIndex); in BindRebaseSegmentName()
609 return BindRebaseSectionTable->sectionName(SegIndex, SegOffset); in BindRebaseSectionName()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp4387 const char * BindRebaseSegInfo::checkSegAndOffsets(int32_t SegIndex, in checkSegAndOffsets() argument
4392 if (SegIndex == -1) in checkSegAndOffsets()
4394 if (SegIndex >= MaxSegIndex) in checkSegAndOffsets()
4401 if (SI.SegmentIndex != SegIndex) in checkSegAndOffsets()
4420 StringRef BindRebaseSegInfo::segmentName(int32_t SegIndex) { in segmentName() argument
4422 if (SI.SegmentIndex == SegIndex) in segmentName()
4431 int32_t SegIndex, uint64_t SegOffset) { in findSection() argument
4433 if (SI.SegmentIndex != SegIndex) in findSection()
4446 StringRef BindRebaseSegInfo::sectionName(int32_t SegIndex, in sectionName() argument
4448 return findSection(SegIndex, SegOffset).SectionName; in sectionName()
[all …]