Home
last modified time | relevance | path

Searched refs:DataSection (Results 1 – 24 of 24) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolData.cpp40 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 DXCoreTargetObjectFile.cpp29 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 DNVPTXTargetObjectFile.h36 return DataSection; in getExplicitSectionGlobal()
/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DEncoreBootImageGenerator.cpp289 …EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(section->getIdentifi… in processDataSection()
/netbsd-src/external/bsd/elftosb/dist/common/
H A DEncoreBootImage.h840 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 DEncoreBootImage.cpp1300 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 DMCObjectFileInfo.cpp77 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 DWasmObjectWriter.cpp652 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 Dpef.h69 #define DataSection 1 macro
H A Dmkbootimage.c642 dataHdr.regionKind = DataSection; in bebox_write_header()
/netbsd-src/external/bsd/elftosb/dist/sbtool/
H A DEncoreBootImageReader.cpp352 EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(header.m_tag); in readSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h58 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 DMipsTargetStreamer.cpp883 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 DObject.cpp1293 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 DWasmEmitter.cpp50 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 DWasmYAML.cpp153 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 DWasmYAML.h379 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 DWebAssemblyAsmParser.cpp214 DataSection, enumerator
743 if (CurrentState != DataSection) { in CheckDataSection()
749 CurrentState = DataSection; in CheckDataSection()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp381 return DataSection; in getSectionForConstant()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp648 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 DWasm.h301 uint32_t DataSection = 0; variable
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp358 auto DataSec = std::make_unique<WasmYAML::DataSection>(); in dump()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1316 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 DWasmObjectFile.cpp1410 DataSection = Sections.size(); in parseDataSection()
1600 return DataSection; in getSymbolSectionIdImpl()