Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolData.cpp39 uint32_t DataSection = RawSymbol->getAddressSection(); in getCompilandId() local
41 if (DataSection == 0) { in getCompilandId()
43 Session.addressForRVA(RVA, DataSection, DataOffset); in getCompilandId()
46 if (DataSection) { in getCompilandId()
49 if (Section->getAddressSection() == DataSection && in getCompilandId()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp29 DataSection = Ctx.getELFSection(".dp.data", ELF::SHT_PROGBITS, in Initialize()
128 return DataSection; in SelectSectionForGlobal()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetObjectFile.h32 return DataSection; in getExplicitSectionGlobal()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp717 MCSectionWasm &DataSection) { in addData() argument
718 LLVM_DEBUG(errs() << "addData: " << DataSection.getName() << "\n"); in addData()
720 DataBytes.resize(alignTo(DataBytes.size(), DataSection.getAlign())); in addData()
722 for (const MCFragment &Frag : DataSection) { in addData()
1639 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection()); in writeOneObject() local
1640 if (!DataSection.isWasmData()) in writeOneObject()
1647 DataSection.getSegmentIndex(), Layout.getSymbolOffset(WS), in writeOneObject()
1748 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection()); in writeOneObject() local
1758 DataSegments[DataSection.getSegmentIndex()]; in writeOneObject()
1762 DataSection.getSegmentIndex(), in writeOneObject()
H A DMCObjectFileInfo.cpp96 DataSection // .data in initMachOMCObjectFileInfo()
174 DataCoalSection = DataSection; in initMachOMCObjectFileInfo()
394 DataSection = Ctx->getELFSection(".data", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo()
585 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
850 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo()
950 DataSection = Ctx->getXCOFFSection( in initXCOFFMCObjectFileInfo()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp64 auto DataSection = getInstrProfSection(Obj, IPSK_covdata); in get() local
65 if (auto Err = DataSection.takeError()) in get()
67 auto DataOrErr = DataSection->getContents(); in get()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h56 MCSection *DataSection = nullptr; variable
267 MCSection *getDataSection() const { return DataSection; } in getDataSection()
/freebsd-14.2/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubV5.cpp417 auto *DataSection = Obj->getObject(Keys[TBDKey::Data]); in getSymbolSection() local
420 if (!DataSection && !TextSection) in getSymbolSection()
423 if (DataSection) { in getSymbolSection()
424 auto Err = collectSymbolsFromSegment(DataSection, Result, in getSymbolSection()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp156 static void sectionMapping(IO &IO, WasmYAML::DataSection &Section) { in sectionMapping()
267 Section.reset(new WasmYAML::DataSection()); in mapping()
268 sectionMapping(IO, *cast<WasmYAML::DataSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp50 void writeSectionContent(raw_ostream &OS, WasmYAML::DataSection &Section);
547 WasmYAML::DataSection &Section) { in writeSectionContent()
637 else if (auto S = dyn_cast<WasmYAML::DataSection>(Sec.get())) in writeWasm()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h397 struct DataSection : Section { struct
398 DataSection() : Section(wasm::WASM_SEC_DATA) {} in DataSection() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1285 auto &DataSection = Obj->addSection<Section>(Data); in addData() local
1286 DataSection.Name = ".data"; in addData()
1287 DataSection.Type = ELF::SHT_PROGBITS; in addData()
1288 DataSection.Size = Data.size(); in addData()
1289 DataSection.Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE; in addData()
1297 SymTab->addSymbol(Prefix + "_start", STB_GLOBAL, STT_NOTYPE, &DataSection, in addData()
1299 SymTab->addSymbol(Prefix + "_end", STB_GLOBAL, STT_NOTYPE, &DataSection, in addData()
1300 /*Value=*/DataSection.Size, NewSymbolVisibility, 0, 0); in addData()
1302 /*Value=*/DataSection.Size, NewSymbolVisibility, SHN_ABS, in addData()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp2024 uint32_t DataSection = data.getAddressSection(); in GetCompilandId() local
2026 if (DataSection == 0) { in GetCompilandId()
2028 m_session_up->addressForRVA(RVA, DataSection, DataOffset); in GetCompilandId()
2031 if (DataSection) { in GetCompilandId()
2033 auto &sec_cs = m_sec_contribs[DataSection]; in GetCompilandId()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp216 DataSection, enumerator
772 if (CurrentState != DataSection) { in CheckDataSection()
778 CurrentState = DataSection; in CheckDataSection()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp386 return DataSection; in getSectionForConstant()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsTargetStreamer.cpp897 MCSection &DataSection = *OFI.getDataSection(); in finish() local
898 MCA.registerSection(DataSection); in finish()
903 DataSection.ensureMinAlignment(Align(16)); in finish()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h300 uint32_t DataSection = 0; variable
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp698 for (const auto& DataSection : MemMgr.DataMemory) in remapSectionsAndSymbols() local
699 Worklist.push_back(&DataSection); in remapSectionsAndSymbols()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1409 return DataSection; in SelectSectionForGlobal()
1786 return DataSection; in SelectSectionForGlobal()
2478 return DataSection; in SelectSectionForGlobal()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1573 DataSection = Sections.size(); in parseDataSection()
1776 return DataSection; in getSymbolSectionIdImpl()