| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXTargetObjectFile.h | 36 return DataSection; in getExplicitSectionGlobal()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCObjectFileInfo.cpp | 78 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 D | WasmObjectWriter.cpp | 662 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 D | MCObjectFileInfo.h | 58 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 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| 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()
|
| 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 379 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 D | Object.cpp | 1297 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 D | SymbolFilePDB.cpp | 2030 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 D | WebAssemblyAsmParser.cpp | 216 DataSection, enumerator 773 if (CurrentState != DataSection) { in CheckDataSection() 779 CurrentState = DataSection; in CheckDataSection()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ |
| H A D | TargetLoweringObjectFile.cpp | 381 return DataSection; in getSectionForConstant()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-rtdyld/ |
| H A D | llvm-rtdyld.cpp | 649 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 D | Wasm.h | 301 uint32_t DataSection = 0; variable
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetLoweringObjectFileImpl.cpp | 1337 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 D | WasmObjectFile.cpp | 1411 DataSection = Sections.size(); in parseDataSection() 1601 return DataSection; in getSymbolSectionIdImpl()
|