Searched refs:NumSections (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | DebuggerSupportPlugin.cpp | |
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MachObjectWriter.cpp | 222 StringRef Name, unsigned NumSections, uint64_t VMAddr, uint64_t VMSize, in writeSegmentLoadCommand() argument 236 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand() 255 W.write<uint32_t>(NumSections); in writeSegmentLoadCommand() 815 unsigned NumSections = Asm.end() - Asm.begin(); in writeObject() local 821 sizeof(MachO::segment_command_64) + NumSections * sizeof(MachO::section_64): in writeObject() 822 sizeof(MachO::segment_command) + NumSections * sizeof(MachO::section); in writeObject() 905 writeSegmentLoadCommand("", NumSections, 0, VMSize, SectionDataStart, in writeObject()
|
| H A D | ELFObjectWriter.cpp | 937 const unsigned NumSections = SectionTable.size(); in writeSectionHeaders() local 941 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0; in writeSectionHeaders() 1128 uint16_t NumSections = support::endian::byte_swap<uint16_t>( in writeObject() local 1148 Stream.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections), in writeObject()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | PublicsStream.cpp | 88 if (auto EC = Reader.readArray(SectionOffsets, Header->NumSections)) in reload()
|
| H A D | DbiStream.cpp | 271 size_t NumSections = StreamLen / sizeof(object::coff_section); in initializeSectionHeadersData() local 273 if (auto EC = Reader.readArray(SectionHeaders, NumSections)) in initializeSectionHeadersData()
|
| H A D | GSIStreamBuilder.cpp | 467 Header.NumSections = 0; in commitPublicsHashStream()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | ELF.h | 957 uintX_t NumSections = getHeader().e_shnum; in sections() local 958 if (NumSections == 0) in sections() 959 NumSections = First->sh_size; in sections() 961 if (NumSections > UINT64_MAX / sizeof(Elf_Shdr)) in sections() 964 Twine(NumSections) + ")"); in sections() 966 const uint64_t SectionTableSize = NumSections * sizeof(Elf_Shdr); in sections() 973 Twine::utohexstr(NumSections) + ")"); in sections() 978 return ArrayRef(First, NumSections); in sections()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | RawTypes.h | 272 support::ulittle32_t NumSections; member
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCMachObjectWriter.h | 273 void writeSegmentLoadCommand(StringRef Name, unsigned NumSections,
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | COFFObjectFile.cpp | 1090 int NumSections = in section_end() local 1092 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
|