Home
last modified time | relevance | path

Searched refs:segment_command_64 (Results 1 – 19 of 19) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.def49 HANDLE_LOAD_COMMAND(LC_SEGMENT_64, 0x00000019u, segment_command_64)
101 LOAD_COMMAND_STRUCT(segment_command_64)
H A DMachO.h549 struct segment_command_64 { struct
1062 inline void swapStruct(segment_command_64 &seg) { in swapStruct()
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryReader.cpp284 const segment_command_64 *seg = in readBinary()
285 reinterpret_cast<const segment_command_64*>(lc); in readBinary()
288 (lc + sizeof(segment_command_64)); in readBinary()
289 const unsigned lcSize = sizeof(segment_command_64) in readBinary()
H A DMachONormalizedFileBinaryWriter.cpp156 typedef llvm::MachO::segment_command_64 command;
263 (_is64 ? sizeof(segment_command_64) : sizeof(segment_command)); in MachOFileLayout()
387 (_is64 ? sizeof(segment_command_64) : sizeof(segment_command)); in loadCommandsSize()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOLayoutBuilder.cpp36 Size += sizeof(MachO::segment_command_64) + in computeSizeOfCmds()
201 sizeof(MachO::segment_command_64) + in layoutSegments()
282 MLC->segment_command_64_data.cmdsize = sizeof(MachO::segment_command_64); in layoutTail()
H A DMachOWriter.cpp194 sizeof(MachO::segment_command_64)); in writeLoadCommands()
195 Begin += sizeof(MachO::segment_command_64); in writeLoadCommands()
H A DMachOReader.cpp135 extractSections<MachO::section_64, MachO::segment_command_64>( in readLoadCommands()
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DTarget.h108 using segment_command = llvm::MachO::segment_command_64;
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp213 void mapLoadCommandData<MachO::segment_command_64>( in mapLoadCommandData()
500 void MappingTraits<MachO::segment_command_64>::mapping( in mapping()
501 IO &IO, MachO::segment_command_64 &LoadCommand) { in mapping()
H A DMachOEmitter.cpp141 size_t writeLoadCommandData<MachO::segment_command_64>( in writeLoadCommandData()
/freebsd-13.1/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c188 struct segment_command_64 seg; in scan_macho_load_commands()
189 memcpy(&seg, offset, sizeof(struct segment_command_64)); in scan_macho_load_commands()
195 offset += sizeof(struct segment_command_64); in scan_macho_load_commands()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp334 if (NextSegmentLoad<LC_SEGMENT_64, struct segment_command_64>( in Next()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp220 MachO::segment_command_64 Seg = MachO->getSegment64LoadCommand(Load); in printDarwinSectionSizes()
289 MachO::segment_command_64 Seg = MachO->getSegment64LoadCommand(Load); in printDarwinSegmentSizes()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp185 is64Bit() ? sizeof(MachO::segment_command_64): in writeSegmentLoadCommand()
770 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64): in writeObject()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h499 MachO::segment_command_64
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp323 MachO::segment_command_64 SLC = MachOObj->getSegment64LoadCommand(Command); in getSectionsAndSymbols()
666 MachO::segment_command_64 Seg = O->getSegment64LoadCommand(Load); in PrintIndirectSymbols()
1002 const MachO::segment_command_64 Seg = O->getSegment64LoadCommand(Load); in PrintRelocations()
1055 MachO::segment_command_64 SLC = O->getSegment64LoadCommand(Command); in PrintFunctionStarts()
3006 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load); in GuessCstringPointer()
3062 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load); in GuessIndirectSymbol()
3213 MachO::segment_command_64 Seg = info->O->getSegment64LoadCommand(Load); in GuessPointerPointer()
8565 expected_cmdsize += sizeof(struct MachO::segment_command_64); in PrintSegmentCommand()
10097 MachO::segment_command_64 SLC_64 = Obj->getSegment64LoadCommand(Command); in PrintLoadCommands()
10264 MachO::segment_command_64 Seg = Obj->getSegment64LoadCommand(Command); in printMachOExportsTrie()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp98 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) : in getSectionPtr()
1392 if ((Err = parseSegmentLoadCommand<MachO::segment_command_64, in MachOObjectFile()
4313 MachO::segment_command_64
4315 return getStruct<MachO::segment_command_64>(*this, L.Ptr); in getSegment64LoadCommand()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp375 MachO::segment_command_64 SC = Obj->getSegment64LoadCommand(L); in getSegment()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1143 MachO::segment_command_64 Seg = MachO.getSegment64LoadCommand(Command); in dumpSymbolsFromDLInfoMachO()