Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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);
550 return BindRebaseSectionTable->checkSegAndOffsets(SegIndex, SegOffset,
560 const char *RebaseEntryCheckSegAndOffsets(int32_t SegIndex,
571 StringRef BindRebaseSegmentName(int32_t SegIndex) const { in BindRebaseSegmentName() argument
572 return BindRebaseSectionTable->segmentName(SegIndex); in BindRebaseSegmentName()
578 return BindRebaseSectionTable->sectionName(SegIndex, SegOffset); in BindRebaseSectionName()
[all …]
/llvm-project-15.0.7/llvm/lib/Object/
H A DMachOObjectFile.cpp4202 const char * BindRebaseSegInfo::checkSegAndOffsets(int32_t SegIndex, in checkSegAndOffsets() argument
4207 if (SegIndex == -1) in checkSegAndOffsets()
4209 if (SegIndex >= MaxSegIndex) in checkSegAndOffsets()
4216 if (SI.SegmentIndex != SegIndex) in checkSegAndOffsets()
4235 StringRef BindRebaseSegInfo::segmentName(int32_t SegIndex) { in segmentName() argument
4237 if (SI.SegmentIndex == SegIndex) in segmentName()
4246 int32_t SegIndex, uint64_t SegOffset) { in findSection() argument
4248 if (SI.SegmentIndex != SegIndex) in findSection()
4261 StringRef BindRebaseSegInfo::sectionName(int32_t SegIndex, in sectionName() argument
4263 return findSection(SegIndex, SegOffset).SectionName; in sectionName()
[all …]