| /llvm-project-15.0.7/llvm/lib/Object/ |
| H A D | COFFImportFile.cpp | 185 const uint32_t NumberOfSections = 2; in createImportDescriptor() local 192 u16(NumberOfSections), in createImportDescriptor() 207 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() 325 const uint32_t NumberOfSections = 1; in createNullImportDescriptor() local 331 u16(NumberOfSections), in createNullImportDescriptor() 343 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() 349 (NumberOfSections * sizeof(coff_section))), in createNullImportDescriptor() 385 const uint32_t NumberOfSections = 2; in createNullThunk() local 392 u16(NumberOfSections), in createNullThunk() 497 const uint32_t NumberOfSections = 1; in createWeakExternal() local [all …]
|
| H A D | MachOUniversalWriter.cpp | 46 unsigned NumberOfSections = in calculateFileAlignment() local 49 P2CurrentAlignment = NumberOfSections ? 2 : P2MinAlignment; in calculateFileAlignment() 50 for (unsigned SI = 0; SI < NumberOfSections; ++SI) { in calculateFileAlignment()
|
| H A D | XCOFFObjectFile.cpp | 524 const uint16_t NumberOfSections = getNumberOfSections(); in getRelocationOffset() local 525 for (uint16_t I = 0; I < NumberOfSections; ++I) { in getRelocationOffset() 538 const uint16_t NumberOfSections = getNumberOfSections(); in getRelocationOffset() local 539 for (uint16_t I = 0; I < NumberOfSections; ++I) { in getRelocationOffset() 771 return is64Bit() ? fileHeader64()->NumberOfSections in getNumberOfSections() 772 : fileHeader32()->NumberOfSections; in getNumberOfSections()
|
| H A D | WindowsResource.cpp | 732 Header->NumberOfSections = 2; in writeCOFFHeader()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-readobj/XCOFF/ |
| H A D | file-header.test | 12 # FILEHEADER32-NEXT: NumberOfSections: 1 25 NumberOfSections: 1 43 # FILEHEADER64-NEXT: NumberOfSections: 1
|
| /llvm-project-15.0.7/llvm/test/tools/yaml2obj/XCOFF/ |
| H A D | full-contents.yaml | 8 NumberOfSections: 2 56 # CHECK-NEXT: NumberOfSections: 2
|
| H A D | basic-doc64.yaml | 38 # CHECK64-NEXT: NumberOfSections: 4
|
| H A D | basic-doc.yaml | 42 # CHECK-NEXT: NumberOfSections: 5
|
| /llvm-project-15.0.7/llvm/test/tools/obj2yaml/XCOFF/ |
| H A D | aix.yaml | 11 # CHECK32-NEXT: NumberOfSections: 2 65 # CHECK64-NEXT: NumberOfSections: 2
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | COFF.cpp | 84 COFFHeader->NumberOfSections == uint16_t(0xffff) && in createLinkGraphFromCOFFObject()
|
| /llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/ |
| H A D | COFF.h | 66 int32_t NumberOfSections; member 87 uint32_t NumberOfSections; member
|
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | COFF.h | 77 support::ulittle16_t NumberOfSections; member 84 bool isImportLibrary() const { return NumberOfSections == 0xffff; } in isImportLibrary() 98 support::ulittle32_t NumberOfSections; member 897 return COFFHeader->isImportLibrary() ? 0 : COFFHeader->NumberOfSections; in getNumberOfSections() 899 return COFFBigObjHeader->NumberOfSections; in getNumberOfSections()
|
| H A D | XCOFFObjectFile.h | 28 support::ubig16_t NumberOfSections; member 42 support::ubig16_t NumberOfSections; member
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | XCOFFEmitter.cpp | 237 InitFileHdr.NumberOfSections = Obj.Sections.size(); in initFileHeader() 355 W.write<uint16_t>(Obj.Header.NumberOfSections ? Obj.Header.NumberOfSections in writeFileHeader() 356 : InitFileHdr.NumberOfSections); in writeFileHeader()
|
| H A D | COFFEmitter.cpp | 295 CP.Obj.Header.NumberOfSections = CP.Obj.Sections.size(); in layoutCOFF() 430 << zeros(uint32_t(0)) << binary_le(CP.Obj.Header.NumberOfSections) in writeCOFF() 435 << binary_le(static_cast<int16_t>(CP.Obj.Header.NumberOfSections)) in writeCOFF()
|
| H A D | XCOFFYAML.cpp | 165 IO.mapOptional("NumberOfSections", FileHdr.NumberOfSections); in mapping()
|
| /llvm-project-15.0.7/llvm/tools/obj2yaml/ |
| H A D | xcoff2yaml.cpp | 44 YAMLObj.Header.NumberOfSections = Obj.getNumberOfSections(); in dumpHeader()
|
| /llvm-project-15.0.7/llvm/lib/ObjCopy/COFF/ |
| H A D | COFFWriter.cpp | 197 Obj.CoffFileHeader.NumberOfSections = Obj.getSections().size(); in finalize() 282 BigObjHeader.NumberOfSections = Obj.getSections().size(); in writeHeaders()
|
| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | WinCOFFObjectWriter.cpp | 486 W.write<uint32_t>(Header.NumberOfSections); in WriteFileHeader() 491 W.write<uint16_t>(static_cast<int16_t>(Header.NumberOfSections)); in WriteFileHeader() 957 Offset += COFF::SectionSize * Header.NumberOfSections; in assignFileOffsets() 1021 Header.NumberOfSections = Sections.size(); in writeObject()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | aix-xcoff-lcomm.ll | 28 ; OBJ-NEXT: NumberOfSections: 2
|
| H A D | aix-xcoff-data.ll | 156 ; OBJ-NEXT: NumberOfSections: 3 709 ; OBJ64-NEXT: NumberOfSections: 3
|
| H A D | aix-xcoff-rodata.ll | 81 ; OBJ-NEXT: NumberOfSections: 1
|
| H A D | aix-xcoff-reloc.ll | 37 ; OBJ-NEXT: NumberOfSections: 2
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/ |
| H A D | XCOFFYAML.h | 24 uint16_t NumberOfSections; member
|
| /llvm-project-15.0.7/libunwind/src/ |
| H A D | AddressSpace.hpp | 567 for (unsigned j = 0; j < pifh->NumberOfSections; j++, pish++) { in findUnwindSections()
|