| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MachOBuilder.h | 183 return S->SectionNumber; 227 size_t SectionNumber = 0; 384 size_t SectionNumber = 0; 387 ++SectionNumber; 388 Sec->SectionNumber = SectionNumber; 392 Sym.n_sect = SectionNumber;
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | WasmDumper.cpp | 123 int SectionNumber = 0; in printRelocations() local 128 ++SectionNumber; in printRelocations() 132 W.startLine() << "Section (" << SectionNumber << ") " << Name << " {\n"; in printRelocations()
|
| H A D | COFFDumper.cpp | 1556 int SectionNumber = 0; in printSectionHeaders() local 1558 ++SectionNumber; in printSectionHeaders() 1564 W.printNumber("Number", SectionNumber); in printSectionHeaders() 1605 int SectionNumber = 0; in printRelocations() local 1607 ++SectionNumber; in printRelocations() 1613 W.startLine() << "Section (" << SectionNumber << ") " << Name << " {\n"; in printRelocations() 1672 getSectionName(const llvm::object::COFFObjectFile *Obj, int32_t SectionNumber, in getSectionName() argument 1676 if (SectionNumber == llvm::COFF::IMAGE_SYM_DEBUG) in getSectionName() 1678 if (SectionNumber == llvm::COFF::IMAGE_SYM_ABSOLUTE) in getSectionName() 1680 if (SectionNumber == llvm::COFF::IMAGE_SYM_UNDEFINED) in getSectionName()
|
| H A D | XCOFFDumper.cpp | 257 W.printNumber("SectionNum", LoadSecSymEntPtr->SectionNumber); in printLoaderSectionSymbolsHelper()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ELFAttrParserExtended.cpp | 79 unsigned SectionNumber = 0; in parse() local 155 Sw->startLine() << "Section " << ++SectionNumber << " {\n"; in parse()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WinCOFFObjectWriter.cpp | 394 WeakDefault->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE; in defineSymbol() 412 Sym->Data.SectionNumber = COFF::IMAGE_SYM_ABSOLUTE; in defineSymbol() 494 W.write<uint32_t>(S.Data.SectionNumber); in WriteSymbol() 496 W.write<uint16_t>(static_cast<int16_t>(S.Data.SectionNumber)); in WriteSymbol() 644 File->Data.SectionNumber = COFF::IMAGE_SYM_DEBUG; in createFileSymbols() 688 if (!Sym->Section && Sym->Data.SectionNumber != COFF::IMAGE_SYM_ABSOLUTE) in setWeakDefaultNames() 717 Section.Symbol->Data.SectionNumber = I; in assignSectionNumbers() 1004 Symbol->Data.SectionNumber = Symbol->Section->Number; in writeObject()
|
| H A D | XCOFFObjectWriter.cpp | 403 int16_t SectionNumber, uint16_t SymbolType, 853 int16_t SectionNumber, uint16_t SymbolType, in writeSymbolEntry() argument 863 W.write<int16_t>(SectionNumber); in writeSymbolEntry()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | XCOFFObjectFile.h | 221 support::big16_t SectionNumber; 234 support::big16_t SectionNumber; 567 static bool isReservedSectionNumber(int16_t SectionNumber); 760 support::big16_t SectionNumber; 774 support::big16_t SectionNumber; 835 int16_t getSectionNumber() const { return GETVALUE(SectionNumber); }
|
| H A D | COFF.h | 262 SectionNumberType SectionNumber; member 331 if (CS16->SectionNumber <= COFF::MaxNumberOfSections16) in getSectionNumber() 332 return CS16->SectionNumber; in getSectionNumber() 333 return static_cast<int16_t>(CS16->SectionNumber); in getSectionNumber() 335 return static_cast<int32_t>(CS32->SectionNumber); in getSectionNumber()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | COFF.h | 205 int32_t SectionNumber; member 849 inline bool isReservedSectionNumber(int32_t SectionNumber) { in isReservedSectionNumber() argument 850 return SectionNumber <= 0; in isReservedSectionNumber()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/ |
| H A D | COFFObject.h | 168 Dest.SectionNumber = Src.SectionNumber; in copySymbol()
|
| H A D | COFFObjcopy.cpp | 242 Sym.Sym.SectionNumber == 0) in handleArgs() 252 Sym.Sym.SectionNumber != 0) in handleArgs()
|
| H A D | COFFWriter.cpp | 48 Sym.Sym.SectionNumber = static_cast<uint32_t>(Sym.TargetSectionId); in finalizeSymbolContents() 55 Sym.Sym.SectionNumber = Sec->Index; in finalizeSymbolContents()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | WindowsResource.cpp | 806 Symbol->SectionNumber = 0xffff; in writeSymbolTable() 816 Symbol->SectionNumber = 1; in writeSymbolTable() 835 Symbol->SectionNumber = 2; in writeSymbolTable() 856 Symbol->SectionNumber = 2; in writeSymbolTable()
|
| H A D | COFFObjectFile.cpp | 168 int32_t SectionNumber = Symb.getSectionNumber(); in getSymbolAddress() local 171 COFF::isReservedSectionNumber(SectionNumber)) in getSymbolAddress() 174 Expected<const coff_section *> Section = getSection(SectionNumber); in getSymbolAddress() 188 int32_t SectionNumber = Symb.getSectionNumber(); in getSymbolType() local 200 if (SectionNumber == COFF::IMAGE_SYM_DEBUG || Symb.isSectionDefinition()) in getSymbolType() 203 if (!COFF::isReservedSectionNumber(SectionNumber)) in getSymbolType()
|
| H A D | XCOFFObjectFile.cpp | 851 bool XCOFFObjectFile::isReservedSectionNumber(int16_t SectionNumber) { in isReservedSectionNumber() argument 852 return (SectionNumber <= 0 && SectionNumber >= -2); in isReservedSectionNumber()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | COFFEmitter.cpp | 525 OS << binary_le(i->Header.SectionNumber); in writeCOFF() 527 OS << binary_le(static_cast<int16_t>(i->Header.SectionNumber)); in writeCOFF()
|
| H A D | COFFYAML.cpp | 674 IO.mapRequired("SectionNumber", S.Header.SectionNumber); in mapping()
|
| H A D | CodeViewYAMLSymbols.cpp | 335 IO.mapRequired("SectionNumber", Symbol.SectionNumber); in map()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | SymbolRecordMapping.cpp | 91 error(IO.mapInteger(Section.SectionNumber)); in visitKnownRecord()
|
| H A D | SymbolDumper.cpp | 157 W.printNumber("SectionNumber", Section.SectionNumber); in visitKnownRecord()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | SymbolRecord.h | 113 uint16_t SectionNumber = 0; variable
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalSymbolDumper.cpp | 466 Section.SectionNumber); in visitKnownRecord()
|
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | Writer.cpp | 1447 sym.SectionNumber = IMAGE_SYM_ABSOLUTE; in createSymbol() 1464 sym.SectionNumber = os->sectionIndex; in createSymbol()
|
| H A D | PDB.cpp | 1507 sym.SectionNumber = os.sectionIndex; in addLinkerModuleSectionSymbol()
|