/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/ |
H A D | ObjectContainerMachOFileset.h | 72 Entry(uint64_t vmaddr, uint64_t fileoff, std::string id) in Entry() 73 : vmaddr(vmaddr), fileoff(fileoff), id(id) {} in Entry() 75 uint64_t fileoff; member
|
H A D | ObjectContainerMachOFileset.cpp | 163 entries.emplace_back(entry.vmaddr + slide, entry.fileoff, in ParseFileset() 233 const lldb::offset_t entry_offset = entry.fileoff + file_offset; in GetModuleSpecifications() 287 return ObjectFile::FindPlugin(module_sp, file, m_offset + entry->fileoff, in GetObjectFile() 288 m_data.GetByteSize() - entry->fileoff, data_sp, in GetObjectFile()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
H A D | MachOLayoutBuilder.cpp | 196 MLC.segment_command_data.fileoff = SegOffset; in layoutSegments() 205 MLC.segment_command_64_data.fileoff = SegOffset; in layoutSegments() 324 MLC->segment_command_data.fileoff = StartOfLinkEdit; in layoutTail() 330 MLC->segment_command_64_data.fileoff = StartOfLinkEdit; in layoutTail()
|
H A D | MachOWriter.cpp | 413 return MLC.segment_command_data.fileoff; in getSegmentFileOffset() 415 return MLC.segment_command_64_data.fileoff; in getSegmentFileOffset()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | MachODumper.cpp | 312 uint64_t fileoff; member 380 Segment.fileoff = SC.fileoff; in getSegment() 394 Segment.fileoff = SC.fileoff; in getSegment() 936 W.printNumber("fileoff", MOSegment.fileoff); in printMachOSegment()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | MachOBuilder.h | 365 Seg.fileoff = Offset; 371 Sec->addr = SegVMAddr + Sec->offset - Seg.fileoff; 374 size_t SegContentSize = Offset - Seg.fileoff;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MachO.h | 544 uint32_t fileoff; 558 uint64_t fileoff; 903 uint64_t fileoff; 1202 sys::swapByteOrder(seg.fileoff); in swapStruct() 1215 sys::swapByteOrder(seg.fileoff); in swapStruct() 1435 sys::swapByteOrder(C.fileoff); in swapStruct() 550 uint32_t fileoff; global() member 564 uint64_t fileoff; global() member 905 uint64_t fileoff; global() member
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | MachOYAML.cpp | 532 IO.mapRequired("fileoff", LoadCommand.fileoff); in mapping() 545 IO.mapRequired("fileoff", LoadCommand.fileoff); in mapping() 630 IO.mapRequired("fileoff", LoadCommand.fileoff); in mapping()
|
H A D | MachOEmitter.cpp | 303 uint64_t segOff = is64Bit ? LC.Data.segment_command_64_data.fileoff in writeSectionData() 304 : LC.Data.segment_command_data.fileoff; in writeSectionData()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_procmaps_mac.cpp | 294 : sc->fileoff; in NextSegmentLoad()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-size/ |
H A D | llvm-size.cpp | 219 outs() << " (vmaddr 0x" << format("%" PRIx64, Seg.vmaddr) << " fileoff " in printDarwinSectionSizes() 220 << Seg.fileoff << ")"; in printDarwinSectionSizes() 246 outs() << " (vmaddr 0x" << format("%" PRIx32, Seg.vmaddr) << " fileoff " in printDarwinSectionSizes() 247 << Seg.fileoff << ")"; in printDarwinSectionSizes()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | DebuggerSupportPlugin.cpp |
|
/freebsd/contrib/llvm-project/lldb/tools/compact-unwind/ |
H A D | compact-unwind-dumper.c | 150 segment_offset = seg.fileoff; in scan_macho_load_commands() 164 segment_offset = seg.fileoff; in scan_macho_load_commands()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | MachOObjectFile.cpp | 321 s.flags != MachO::S_THREAD_LOCAL_ZEROFILL && S.fileoff == 0 && in parseSegmentLoadCommand() 388 if (S.fileoff > FileSize) in parseSegmentLoadCommand() 392 uint64_t BigSize = S.fileoff; in parseSegmentLoadCommand() 2088 Segment.fileoff, Segment.fileoff + Segment.filesize)); in getSegmentContents() 2102 Obj.getData().slice(Segment.fileoff, Segment.fileoff + Segment.filesize)); in getSegmentContents()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/ |
H A D | llvm-nm.cpp | 1247 if (Seg.fileoff == 0 && Seg.filesize != 0) { in dumpSymbolsFromDLInfoMachO() 1253 if (Seg.fileoff == 0 && Seg.filesize != 0) { in dumpSymbolsFromDLInfoMachO() 1964 MachOObjectFile::createMachOObjectFile(Buf, 0, 0, Entry.fileoff); in dumpSymbolsNameFromMachOFilesetEntry()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 8539 uint64_t vmsize, uint64_t fileoff, in PrintSegmentCommand() argument 8569 outs() << " fileoff " << fileoff; in PrintSegmentCommand() 8570 if (fileoff > object_size) in PrintSegmentCommand() 8575 if (fileoff + filesize > object_size) in PrintSegmentCommand() 10100 SLC.vmsize, SLC.fileoff, SLC.filesize, SLC.maxprot, in PrintLoadCommands() 10113 SLC_64.vmaddr, SLC_64.vmsize, SLC_64.fileoff, in PrintLoadCommands() 10281 if (Seg.fileoff == 0 && Seg.filesize != 0) { in printMachOExportsTrie() 10287 if (Seg.fileoff == 0 && Seg.filesize != 0) { in printMachOExportsTrie()
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | Writer.cpp | 240 c->fileoff = seg->fileOff; in writeTo()
|