Home
last modified time | relevance | path

Searched refs:section_64 (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c227 struct section_64 sect; in scan_macho_load_commands()
228 memset(&sect, 0, sizeof(struct section_64)); in scan_macho_load_commands()
229 memcpy(&sect, offset, sizeof(struct section_64)); in scan_macho_load_commands()
242 struct section_64 sect; in scan_macho_load_commands()
243 memset(&sect, 0, sizeof(struct section_64)); in scan_macho_load_commands()
244 memcpy(&sect, offset, sizeof(struct section_64)); in scan_macho_load_commands()
255 struct section_64 sect; in scan_macho_load_commands()
256 memset(&sect, 0, sizeof(struct section_64)); in scan_macho_load_commands()
257 memcpy(&sect, offset, sizeof(struct section_64)); in scan_macho_load_commands()
268 offset += sizeof(struct section_64); in scan_macho_load_commands()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryReader.cpp288 const section_64 *sects = reinterpret_cast<const section_64*> in readBinary()
291 + sectionCount*sizeof(section_64); in readBinary()
296 const section_64 *sect = &sects[i]; in readBinary()
H A DMachONormalizedFileBinaryWriter.cpp157 typedef llvm::MachO::section_64 section;
262 const size_t sectsSize = (_is64 ? sizeof(section_64) : sizeof(section)); in MachOFileLayout()
384 const size_t sectionSize = (_is64 ? sizeof(section_64) : sizeof(section)); in loadCommandsSize()
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h299 template <> struct MappingTraits<MachO::section_64> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
300 static void mapping(IO &IO, MachO::section_64 &LoadCommand); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp102 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr()
176 MachO::section_64 Sect = O.getSection64(Sec); in getSectionFlags()
1349 MachO::section_64>( in MachOObjectFile()
1890 MachO::section_64 Sect = getSection64(Sec); in getSectionSize()
1916 MachO::section_64 Sect = getSection64(Sec); in getSectionContents()
1932 MachO::section_64 Sect = getSection64(Sec); in getSectionAlignment()
2024 MachO::section_64 Sect = getSection64(Sec); in section_rel_end()
4235 MachO::section_64 MachOObjectFile::getSection64(DataRefImpl DRI) const { in getSection64()
4237 return getStruct<MachO::section_64>(*this, Sections[DRI.d.a]); in getSection64()
4249 return getStruct<MachO::section_64>(*this, Sec); in getSection64()
[all …]
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMachObjectWriter.cpp188 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand()
255 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))); in writeSection()
754 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64): in writeObject()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DMachO.h495 MachO::section_64 getSection64(DataRefImpl DRI) const;
497 MachO::section_64 getSection64(const LoadCommandInfo &L,unsigned Index) const;
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cc78 NextSectionLoad<struct section_64>(module, data_, IsWritable()); in AddAddressRanges()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp448 void MappingTraits<MachO::section_64>::mapping(IO &IO, in mapping()
449 MachO::section_64 &Section) { in mapping()
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DMachO.h568 struct section_64 { struct
1074 inline void swapStruct(section_64 &sect) { in swapStruct()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp409 MachO::section_64 Sec = O->getSection64(Load, J); in PrintIndirectSymbols()
750 const MachO::section_64 Sec = O->getSection64(Load, J); in PrintRelocations()
1129 const MachO::section_64 Sec = O->getSection64(Ref); in DumpLiteralPointerSection()
1216 const MachO::section_64 Sec = O->getSection64(Ref); in DumpLiteralPointerSection()
1432 const MachO::section_64 Sec = O->getSection64(Ref); in DumpSectionContents()
2674 MachO::section_64 Sec = info->O->getSection64(Load, J); in GuessCstringPointer()
2730 MachO::section_64 Sec = info->O->getSection64(Load, J); in GuessIndirectSymbol()
2889 MachO::section_64 Sec = info->O->getSection64(Load, J); in GuessPointerPointer()
8131 expected_cmdsize *= sizeof(struct MachO::section_64); in PrintSegmentCommand()
9670 MachO::section_64 S_64 = Obj->getSection64(Command, j); in PrintLoadCommands()
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DMachODumper.cpp322 MachO::section_64 Sect = Obj->getSection64(Sec); in getSection()