Home
last modified time | relevance | path

Searched refs:SegOffset (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DMachO.h136 const char* checkSegAndOffsets(int32_t SegIndex, uint64_t SegOffset,
141 StringRef sectionName(int32_t SegIndex, uint64_t SegOffset);
142 uint64_t address(uint32_t SegIndex, uint64_t SegOffset);
154 const SectionInfo &findSection(int32_t SegIndex, uint64_t SegOffset);
420 const char *BindEntryCheckSegAndOffsets(int32_t SegIndex, uint64_t SegOffset,
423 return BindRebaseSectionTable->checkSegAndOffsets(SegIndex, SegOffset,
434 uint64_t SegOffset,
438 return BindRebaseSectionTable->checkSegAndOffsets(SegIndex, SegOffset,
450 StringRef BindRebaseSectionName(uint32_t SegIndex, uint64_t SegOffset) const { in BindRebaseSectionName() argument
451 return BindRebaseSectionTable->sectionName(SegIndex, SegOffset); in BindRebaseSectionName()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOLayoutBuilder.cpp151 uint64_t SegOffset = Offset; in layoutSegments() local
164 Sec->Offset = SegOffset + SegFileSize + PaddingSize; in layoutSegments()
172 Sec->Offset = SegOffset + SectOffset; in layoutSegments()
196 MLC.segment_command_data.fileoff = SegOffset; in layoutSegments()
205 MLC.segment_command_64_data.fileoff = SegOffset; in layoutSegments()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOObjectFile.cpp4047 uint64_t SegOffset, in checkSegAndOffsets() argument
4056 uint32_t Start = SegOffset + i * (PointerSize + Skip); in checkSegAndOffsets()
4090 int32_t SegIndex, uint64_t SegOffset) { in findSection() argument
4094 if (SI.OffsetInSegment > SegOffset) in findSection()
4096 if (SegOffset >= (SI.OffsetInSegment + SI.Size)) in findSection()
4106 uint64_t SegOffset) { in sectionName() argument
4107 return findSection(SegIndex, SegOffset).SectionName; in sectionName()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp356 uint64_t SegOffset = Addr - BaseAddr - SegmentAddr; in writeSection() local
357 assert(SegOffset <= 0xFFFFU); in writeSection()
358 DataSize = std::min(DataSize, 0x10000U - SegOffset); in writeSection()
359 writeData(0, SegOffset, Data.take_front(DataSize)); in writeSection()