Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolData.cpp41 uint32_t DataSection = RawSymbol->getAddressSection(); in getCompilandId() local
43 if (DataSection == 0) { in getCompilandId()
45 Session.addressForRVA(RVA, DataSection, DataOffset); in getCompilandId()
48 if (DataSection) { in getCompilandId()
51 if (Section->getAddressSection() == DataSection && in getCompilandId()
/freebsd-12.1/contrib/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp30 DataSection = Ctx.getELFSection(".dp.data", ELF::SHT_PROGBITS, in Initialize()
129 return DataSection; in SelectSectionForGlobal()
/freebsd-12.1/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXTargetObjectFile.h37 return DataSection; in getExplicitSectionGlobal()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCObjectFileInfo.cpp76 DataSection // .data in initMachOMCObjectFileInfo()
154 DataCoalSection = DataSection; in initMachOMCObjectFileInfo()
343 DataSection = Ctx->getELFSection(".data", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo()
505 DataSection = Ctx->getCOFFSection( in initCOFFMCObjectFileInfo()
724 DataSection = Ctx->getWasmSection(".data", SectionKind::getData()); in initWasmMCObjectFileInfo()
H A DWasmObjectWriter.cpp624 MCSectionWasm &DataSection) { in addData() argument
625 LLVM_DEBUG(errs() << "addData: " << DataSection.getSectionName() << "\n"); in addData()
627 DataBytes.resize(alignTo(DataBytes.size(), DataSection.getAlignment())); in addData()
629 for (const MCFragment &Frag : DataSection) { in addData()
1365 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection()); in writeObject() local
1366 assert(DataSection.isWasmData()); in writeObject()
1371 DataSection.getSegmentIndex(), in writeObject()
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h59 MCSection *DataSection; variable
238 MCSection *getDataSection() const { return DataSection; } in getDataSection()
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp821 auto &DataSection = Obj->addSection<Section>(Data); in addData() local
822 DataSection.Name = ".data"; in addData()
823 DataSection.Type = ELF::SHT_PROGBITS; in addData()
824 DataSection.Size = Data.size(); in addData()
825 DataSection.Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE; in addData()
832 SymTab->addSymbol(Prefix + "_start", STB_GLOBAL, STT_NOTYPE, &DataSection, in addData()
834 SymTab->addSymbol(Prefix + "_end", STB_GLOBAL, STT_NOTYPE, &DataSection, in addData()
835 /*Value=*/DataSection.Size, STV_DEFAULT, 0, 0); in addData()
837 /*Value=*/DataSection.Size, STV_DEFAULT, SHN_ABS, 0); in addData()
/freebsd-12.1/contrib/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp560 for (const auto& DataSection : MemMgr.DataMemory) in remapSectionsAndSymbols() local
561 Worklist.push_back(std::make_pair(DataSection.base(), DataSection.size())); in remapSectionsAndSymbols()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp138 static void sectionMapping(IO &IO, WasmYAML::DataSection &Section) { in sectionMapping()
236 Section.reset(new WasmYAML::DataSection()); in mapping()
237 sectionMapping(IO, *cast<WasmYAML::DataSection>(Section.get())); in mapping()
/freebsd-12.1/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsTargetStreamer.cpp868 MCSection &DataSection = *OFI.getDataSection(); in finish() local
869 MCA.registerSection(DataSection); in finish()
874 DataSection.setAlignment(std::max(16u, DataSection.getAlignment())); in finish()
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h337 struct DataSection : Section { struct
338 DataSection() : Section(wasm::WASM_SEC_DATA) {} in DataSection() function
/freebsd-12.1/contrib/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp301 return DataSection; in getSectionForConstant()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp1964 uint32_t DataSection = data.getAddressSection(); in GetCompilandId() local
1966 if (DataSection == 0) { in GetCompilandId()
1968 m_session_up->addressForRVA(RVA, DataSection, DataOffset); in GetCompilandId()
1971 if (DataSection) { in GetCompilandId()
1973 auto &sec_cs = m_sec_contribs[DataSection]; in GetCompilandId()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DWasm.h281 uint32_t DataSection = 0; variable
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1019 return DataSection; in SelectSectionForGlobal()
1378 return DataSection; in SelectSectionForGlobal()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DWasmObjectFile.cpp1112 DataSection = Sections.size(); in parseDataSection()
1266 Ref.d.a = DataSection; in getSymbolSection()