Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetObjectFile.h36 return DataSection; in getExplicitSectionGlobal()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp78 DataSection // .data in initMachOMCObjectFileInfo()
156 DataCoalSection = DataSection; in initMachOMCObjectFileInfo()
358 DataSection = Ctx->getELFSection(".data", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo()
537 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
796 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo()
890 DataSection = Ctx->getXCOFFSection( in initXCOFFMCObjectFileInfo()
H A DWasmObjectWriter.cpp662 MCSectionWasm &DataSection) { in addData() argument
663 LLVM_DEBUG(errs() << "addData: " << DataSection.getName() << "\n"); in addData()
665 DataBytes.resize(alignTo(DataBytes.size(), DataSection.getAlignment())); in addData()
667 for (const MCFragment &Frag : DataSection) { in addData()
1588 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection()); in writeOneObject() local
1589 if (!DataSection.isWasmData()) in writeOneObject()
1596 DataSection.getSegmentIndex(), Layout.getSymbolOffset(WS), in writeOneObject()
1697 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection()); in writeOneObject() local
1707 DataSegments[DataSection.getSegmentIndex()]; in writeOneObject()
1711 DataSection.getSegmentIndex(), in writeOneObject()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h58 MCSection *DataSection = nullptr; variable
255 MCSection *getDataSection() const { return DataSection; } in getDataSection()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
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()
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()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h379 struct DataSection : Section { struct
380 DataSection() : Section(wasm::WASM_SEC_DATA) {} in DataSection() function
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp1297 auto &DataSection = Obj->addSection<Section>(Data); in addData() local
1298 DataSection.Name = ".data"; in addData()
1299 DataSection.Type = ELF::SHT_PROGBITS; in addData()
1300 DataSection.Size = Data.size(); in addData()
1301 DataSection.Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE; in addData()
1309 SymTab->addSymbol(Prefix + "_start", STB_GLOBAL, STT_NOTYPE, &DataSection, in addData()
1311 SymTab->addSymbol(Prefix + "_end", STB_GLOBAL, STT_NOTYPE, &DataSection, in addData()
1312 /*Value=*/DataSection.Size, NewSymbolVisibility, 0, 0); in addData()
1314 /*Value=*/DataSection.Size, NewSymbolVisibility, SHN_ABS, in addData()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp2030 uint32_t DataSection = data.getAddressSection(); in GetCompilandId() local
2032 if (DataSection == 0) { in GetCompilandId()
2034 m_session_up->addressForRVA(RVA, DataSection, DataOffset); in GetCompilandId()
2037 if (DataSection) { in GetCompilandId()
2039 auto &sec_cs = m_sec_contribs[DataSection]; in GetCompilandId()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp216 DataSection, enumerator
773 if (CurrentState != DataSection) { in CheckDataSection()
779 CurrentState = DataSection; in CheckDataSection()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp381 return DataSection; in getSectionForConstant()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp649 for (const auto& DataSection : MemMgr.DataMemory) in remapSectionsAndSymbols() local
650 Worklist.push_back(&DataSection); in remapSectionsAndSymbols()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h301 uint32_t DataSection = 0; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1337 return DataSection; in SelectSectionForGlobal()
1697 return DataSection; in SelectSectionForGlobal()
2363 return DataSection; in SelectSectionForGlobal()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1411 DataSection = Sections.size(); in parseDataSection()
1601 return DataSection; in getSymbolSectionIdImpl()