Home
last modified time | relevance | path

Searched refs:segment_command_64 (Results 1 – 20 of 20) sorted by last modified time

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp388 MachO::segment_command_64 SC = Obj->getSegment64LoadCommand(L); in getSegment()
/freebsd/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp215 MachO::segment_command_64 Seg = MachO->getSegment64LoadCommand(Load); in printDarwinSectionSizes()
284 MachO::segment_command_64 Seg = MachO->getSegment64LoadCommand(Load); in printDarwinSegmentSizes()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp316 MachO::segment_command_64 SLC = MachOObj->getSegment64LoadCommand(Command); in getSectionsAndSymbols()
659 MachO::segment_command_64 Seg = O->getSegment64LoadCommand(Load); in PrintIndirectSymbols()
995 const MachO::segment_command_64 Seg = O->getSegment64LoadCommand(Load); in PrintRelocations()
1048 MachO::segment_command_64 SLC = O->getSegment64LoadCommand(Command); in PrintFunctionStarts()
1208 MachO::segment_command_64 SLC = O->getSegment64LoadCommand(Command); in GetSegmentNames()
3225 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load); in GuessCstringPointer()
3281 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load); in GuessIndirectSymbol()
3432 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load); in GuessPointerPointer()
8442 expected_cmdsize += sizeof(struct MachO::segment_command_64); in PrintSegmentCommand()
9998 MachO::segment_command_64 SLC_64 = Obj->getSegment64LoadCommand(Command); in PrintLoadCommands()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1252 MachO::segment_command_64 Seg = MachO.getSegment64LoadCommand(Command); in dumpSymbolsFromDLInfoMachO()
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DSignals.inc641 auto CmdSeg64 = (const struct segment_command_64 *)Cmd;
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp148 size_t writeLoadCommandData<MachO::segment_command_64>( in writeLoadCommandData()
H A DMachOYAML.cpp229 void mapLoadCommandData<MachO::segment_command_64>( in mapLoadCommandData()
540 void MappingTraits<MachO::segment_command_64>::mapping( in mapping()
541 IO &IO, MachO::segment_command_64 &LoadCommand) { in mapping()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOLayoutBuilder.cpp37 Size += sizeof(MachO::segment_command_64) + in computeSizeOfCmds()
202 sizeof(MachO::segment_command_64) + in layoutSegments()
329 MLC->segment_command_64_data.cmdsize = sizeof(MachO::segment_command_64); in layoutTail()
H A DMachOReader.cpp149 LoadCmd.Ptr + offsetof(MachO::segment_command_64, segname))) == in readLoadCommands()
154 extractSections<MachO::section_64, MachO::segment_command_64>( in readLoadCommands()
H A DMachOWriter.cpp175 sizeof(MachO::segment_command_64)); in writeLoadCommands()
176 Begin += sizeof(MachO::segment_command_64); in writeLoadCommands()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp102 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) : in getSectionPtr()
1412 if ((Err = parseSegmentLoadCommand<MachO::segment_command_64, in MachOObjectFile()
2116 Contents = ::getSegmentContents<MachO::segment_command_64>(*this, LoadCmd, in getSegmentContents()
2140 return ::getSegmentContents<MachO::segment_command_64>(*this, LoadCmd); in getSegmentContents()
3264 MachO::segment_command_64 SLC_64 = O->getSegment64LoadCommand(Command); in MachOAbstractFixupEntry()
4661 MachO::segment_command_64
4663 return getStruct<MachO::segment_command_64>(*this, L.Ptr); in getSegment64LoadCommand()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp187 is64Bit() ? sizeof(MachO::segment_command_64): in writeSegmentLoadCommand()
792 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64): in writeObject()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp1409 (NeedTextSegment + 1) * sizeof(MachO::segment_command_64) + in createObjCRuntimeObject()
1553 Hdr.ncmds * sizeof(MachO::segment_command_64) + in populateObjCRuntimeObject()
1568 MachO::segment_command_64 SegLC; in populateObjCRuntimeObject()
1572 SegLC.cmdsize = sizeof(MachO::segment_command_64) + in populateObjCRuntimeObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h657 MachO::segment_command_64
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.def49 HANDLE_LOAD_COMMAND(LC_SEGMENT_64, 0x00000019u, segment_command_64)
105 LOAD_COMMAND_STRUCT(segment_command_64)
H A DMachO.h552 struct segment_command_64 { struct
1197 inline void swapStruct(segment_command_64 &seg) { in swapStruct()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.cpp151 segment_command_64 segment; in ParseFileset()
152 data.CopyData(load_cmd_offset, sizeof(segment_command_64), &segment); in ParseFileset()
/freebsd/contrib/llvm-project/lld/MachO/
H A DTarget.h153 using segment_command = llvm::MachO::segment_command_64;
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp407 if (NextSegmentLoad<LC_SEGMENT_64, struct segment_command_64>( in Next()
/freebsd/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c145 struct segment_command_64 seg; in scan_macho_load_commands()
146 memcpy(&seg, offset, sizeof(struct segment_command_64)); in scan_macho_load_commands()
152 offset += sizeof(struct segment_command_64); in scan_macho_load_commands()