| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBSymbolData.cpp | 40 uint32_t DataSection = RawSymbol->getAddressSection(); in getCompilandId() local 42 if (DataSection == 0) { in getCompilandId() 44 Session.addressForRVA(RVA, DataSection, DataOffset); in getCompilandId() 47 if (DataSection) { in getCompilandId() 50 if (Section->getAddressSection() == DataSection && in getCompilandId()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| H A D | XCoreTargetObjectFile.cpp | 29 DataSection = Ctx.getELFSection(".dp.data", ELF::SHT_PROGBITS, in Initialize() 128 return DataSection; in SelectSectionForGlobal()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXTargetObjectFile.h | 36 return DataSection; in getExplicitSectionGlobal()
|
| /netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
| H A D | EncoreBootImageGenerator.cpp | 289 …EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(section->getIdentifi… in processDataSection()
|
| /netbsd-src/external/bsd/elftosb/dist/common/ |
| H A D | EncoreBootImage.h | 840 class DataSection : public Section 844 DataSection() : Section(), m_data(), m_length(0) {} in DataSection() function 847 DataSection(uint32_t identifier) : Section(identifier), m_data(), m_length(0) {} in DataSection() function
|
| H A D | EncoreBootImage.cpp | 1300 void EncoreBootImage::DataSection::setData(const uint8_t * data, unsigned length) in setData() 1309 void EncoreBootImage::DataSection::setDataNoCopy(const uint8_t * data, unsigned length) in setDataNoCopy() 1315 unsigned EncoreBootImage::DataSection::getBlockCount() const in getBlockCount() 1320 unsigned EncoreBootImage::DataSection::getBlocks(unsigned offset, unsigned maxCount, cipher_block_t… in getBlocks() 1368 void EncoreBootImage::DataSection::debugPrint() const in debugPrint()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
| H A D | MCObjectFileInfo.cpp | 77 DataSection // .data in initMachOMCObjectFileInfo() 155 DataCoalSection = DataSection; in initMachOMCObjectFileInfo() 357 DataSection = Ctx->getELFSection(".data", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo() 531 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo() 790 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo() 884 DataSection = Ctx->getXCOFFSection( in initXCOFFMCObjectFileInfo()
|
| H A D | WasmObjectWriter.cpp | 652 MCSectionWasm &DataSection) { in addData() argument 653 LLVM_DEBUG(errs() << "addData: " << DataSection.getName() << "\n"); in addData() 655 DataBytes.resize(alignTo(DataBytes.size(), DataSection.getAlignment())); in addData() 657 for (const MCFragment &Frag : DataSection) { in addData() 1577 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection()); in writeOneObject() local 1578 if (!DataSection.isWasmData()) in writeOneObject() 1585 DataSection.getSegmentIndex(), Layout.getSymbolOffset(WS), in writeOneObject() 1686 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection()); in writeOneObject() local 1696 DataSegments[DataSection.getSegmentIndex()]; in writeOneObject() 1700 DataSection.getSegmentIndex(), in writeOneObject()
|
| /netbsd-src/sys/arch/powerpc/stand/mkbootimage/ |
| H A D | pef.h | 69 #define DataSection 1 macro
|
| H A D | mkbootimage.c | 642 dataHdr.regionKind = DataSection; in bebox_write_header()
|
| /netbsd-src/external/bsd/elftosb/dist/sbtool/ |
| H A D | EncoreBootImageReader.cpp | 352 EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(header.m_tag); in readSection()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| H A D | MCObjectFileInfo.h | 58 MCSection *DataSection = nullptr; variable 255 MCSection *getDataSection() const { return DataSection; } in getDataSection()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
| H A D | MipsTargetStreamer.cpp | 883 MCSection &DataSection = *OFI.getDataSection(); in finish() local 884 MCA.registerSection(DataSection); in finish() 889 DataSection.setAlignment(Align(std::max(16u, DataSection.getAlignment()))); in finish()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
| H A D | Object.cpp | 1293 auto &DataSection = Obj->addSection<Section>(Data); in addData() local 1294 DataSection.Name = ".data"; in addData() 1295 DataSection.Type = ELF::SHT_PROGBITS; in addData() 1296 DataSection.Size = Data.size(); in addData() 1297 DataSection.Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE; in addData() 1305 SymTab->addSymbol(Prefix + "_start", STB_GLOBAL, STT_NOTYPE, &DataSection, in addData() 1307 SymTab->addSymbol(Prefix + "_end", STB_GLOBAL, STT_NOTYPE, &DataSection, in addData() 1308 /*Value=*/DataSection.Size, NewSymbolVisibility, 0, 0); in addData() 1310 /*Value=*/DataSection.Size, NewSymbolVisibility, SHN_ABS, in addData()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| H A D | WasmEmitter.cpp | 50 void writeSectionContent(raw_ostream &OS, WasmYAML::DataSection &Section); 540 WasmYAML::DataSection &Section) { in writeSectionContent() 641 else if (auto S = dyn_cast<WasmYAML::DataSection>(Sec.get())) in writeWasm()
|
| H A D | WasmYAML.cpp | 153 static void sectionMapping(IO &IO, WasmYAML::DataSection &Section) { in sectionMapping() 264 Section.reset(new WasmYAML::DataSection()); in mapping() 265 sectionMapping(IO, *cast<WasmYAML::DataSection>(Section.get())); in mapping()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 379 struct DataSection : Section { struct 380 DataSection() : Section(wasm::WASM_SEC_DATA) {} in DataSection() argument
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 214 DataSection, enumerator 743 if (CurrentState != DataSection) { in CheckDataSection() 749 CurrentState = DataSection; in CheckDataSection()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ |
| H A D | TargetLoweringObjectFile.cpp | 381 return DataSection; in getSectionForConstant()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/ |
| H A D | llvm-rtdyld.cpp | 648 for (const auto& DataSection : MemMgr.DataMemory) in remapSectionsAndSymbols() local 649 Worklist.push_back(&DataSection); in remapSectionsAndSymbols()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| H A D | Wasm.h | 301 uint32_t DataSection = 0; variable
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| H A D | wasm2yaml.cpp | 358 auto DataSec = std::make_unique<WasmYAML::DataSection>(); in dump()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | TargetLoweringObjectFileImpl.cpp | 1316 return DataSection; in SelectSectionForGlobal() 1677 return DataSection; in SelectSectionForGlobal() 2332 return DataSection; in SelectSectionForGlobal()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 1410 DataSection = Sections.size(); in parseDataSection() 1600 return DataSection; in getSymbolSectionIdImpl()
|