Home
last modified time | relevance | path

Searched refs:fileoff (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.h72 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 DObjectContainerMachOFileset.cpp163 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 DMachOLayoutBuilder.cpp196 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 DMachOWriter.cpp413 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 DMachODumper.cpp312 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 DMachOBuilder.h365 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 DMachO.h544 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 DMachOYAML.cpp532 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 DMachOEmitter.cpp303 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 Dsanitizer_procmaps_mac.cpp294 : sc->fileoff; in NextSegmentLoad()
/freebsd/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp219 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 DDebuggerSupportPlugin.cpp
/freebsd/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c150 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 DMachOObjectFile.cpp321 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 Dllvm-nm.cpp1247 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 DMachODump.cpp8539 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 DWriter.cpp240 c->fileoff = seg->fileOff; in writeTo()