Home
last modified time | relevance | path

Searched refs:Exports (Results 1 – 25 of 34) sorted by relevance

12

/openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/
DAMDGPUExportClustering.cpp59 static void buildCluster(ArrayRef<SUnit *> Exports, ScheduleDAGInstrs *DAG) { in buildCluster() argument
60 SUnit *ChainHead = Exports.front(); in buildCluster()
63 for (unsigned Idx = 0, End = Exports.size() - 1; Idx < End; ++Idx) { in buildCluster()
64 SUnit *SUa = Exports[Idx]; in buildCluster()
65 SUnit *SUb = Exports[Idx + 1]; in buildCluster()
/openbsd/src/gnu/llvm/clang/lib/Basic/
DModule.cpp370 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); in findOrInferSubmodule()
388 for (unsigned I = 0, N = Exports.size(); I != N; ++I) { in getExportedModules()
389 Module *Mod = Exports[I].getPointer(); in getExportedModules()
390 if (!Exports[I].getInt()) { in getExportedModules()
403 if (Module *Restriction = Exports[I].getPointer()) in getExportedModules()
562 for (unsigned I = 0, N = Exports.size(); I != N; ++I) { in print()
565 if (Module *Restriction = Exports[I].getPointer()) { in print()
567 if (Exports[I].getInt()) in print()
681 SmallVector<Module *, 16> Exports; in setVisible() local
682 V.M->getExportedModules(Exports); in setVisible()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/ToolDrivers/llvm-dlltool/
DDlltoolDriver.cpp193 for (COFFShortExport& E : Def->Exports) { in dlltoolDriverMain()
201 for (COFFShortExport& E : Def->Exports) { in dlltoolDriverMain()
218 writeImportLibrary(Def->OutputFile, Path, Def->Exports, Machine, true)) in dlltoolDriverMain()
/openbsd/src/gnu/llvm/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp160 fromCodeViewSubsection(const DebugCrossModuleExportsSubsectionRef &Exports);
162 std::vector<CrossModuleExport> Exports; member
342 IO.mapOptional("Exports", Exports); in map()
468 for (const auto &M : Exports) in toCodeViewSubsection()
648 const DebugCrossModuleExportsSubsectionRef &Exports) { in fromCodeViewSubsection() argument
650 Result->Exports.assign(Exports.begin(), Exports.end()); in fromCodeViewSubsection()
831 DebugCrossModuleExportsSubsectionRef &Exports, in visitCrossModuleExports() argument
834 YAMLCrossModuleExportsSubsection::fromCodeViewSubsection(Exports); in visitCrossModuleExports()
DWasmEmitter.cpp430 encodeULEB128(Section.Exports.size(), OS); in writeSectionContent()
431 for (const WasmYAML::Export &Export : Section.Exports) { in writeSectionContent()
DWasmYAML.cpp137 IO.mapOptional("Exports", Section.Exports); in sectionMapping()
/openbsd/src/gnu/llvm/llvm/lib/TextAPI/
DTextStub.cpp530 Exports.emplace_back(std::move(Section)); in NormalizedTBD()
640 for (const auto &Section : Exports) { in denormalize()
741 std::vector<ExportSection> Exports; member
897 handleSymbols(Exports, File->exports(), [](const Symbol *Symbol) { in NormalizedTBD_V4()
971 handleSymbols(Exports); in denormalize()
989 SectionList Exports; member
1046 IO.mapOptional("exports", Keys->Exports); in mapKeysToValues()
1072 IO.mapOptional("exports", Keys->Exports); in mapKeysToValuesV4()
/openbsd/src/gnu/llvm/llvm/include/llvm/Object/
DCOFFModuleDefinition.h28 std::vector<COFFShortExport> Exports; member
DCOFFImportFile.h106 ArrayRef<COFFShortExport> Exports,
DWasm.h144 ArrayRef<wasm::WasmExport> exports() const { return Exports; } in exports()
280 std::vector<wasm::WasmExport> Exports; variable
/openbsd/src/gnu/llvm/llvm/cmake/modules/
DLLVMDistributionSupport.cmake7 # (except for LLVM where it's called ${project}Exports for legacy reasons).
113 # it's named ${project}{distribution}Exports for legacy reasons). Also set the
128 set(suffix "Exports") # legacy
159 set(suffix "Exports.cmake") # legacy
189 set(suffix "Exports") # legacy
DCMakeLists.txt85 # We need to use the full path to the LLVM Exports file to make sure we get the
/openbsd/src/gnu/llvm/llvm/lib/Object/
DCOFFModuleDefinition.cpp255 Info.Exports.push_back(E); in parseExport()
287 Info.Exports.push_back(E); in parseExport()
DCOFFImportFile.cpp578 ArrayRef<COFFShortExport> Exports, in writeImportLibrary() argument
593 for (COFFShortExport E : Exports) { in writeImportLibrary()
/openbsd/src/gnu/llvm/llvm/lib/MC/
DWasmObjectWriter.cpp334 void writeExportSection(ArrayRef<wasm::WasmExport> Exports);
982 void WasmObjectWriter::writeExportSection(ArrayRef<wasm::WasmExport> Exports) { in writeExportSection() argument
983 if (Exports.empty()) in writeExportSection()
989 encodeULEB128(Exports.size(), W->OS); in writeExportSection()
990 for (const wasm::WasmExport &Export : Exports) { in writeExportSection()
1465 SmallVector<wasm::WasmExport, 4> Exports; in writeOneObject() local
1611 Exports.push_back(Export); in writeOneObject()
1927 writeExportSection(Exports); in writeOneObject()
/openbsd/src/gnu/usr.bin/perl/ext/Devel-Peek/
DChanges12 Exports Dump and mstat.
/openbsd/src/gnu/llvm/clang/lib/Frontend/
DFrontendActions.cpp864 if (!Primary->Exports.empty()) in ExecuteAction()
866 for (unsigned MN = 0, N = Primary->Exports.size(); MN != N; ++MN) { in ExecuteAction()
867 if (Module *M = Primary->Exports[MN].getPointer()) { in ExecuteAction()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/IPO/
DFunctionImport.cpp725 auto &Exports = ExportLists[ModName]; in ComputeCrossModuleImport() local
726 unsigned NumGVS = numGlobalVarSummaries(Index, Exports); in ComputeCrossModuleImport()
728 << Exports.size() - NumGVS << " functions and " << NumGVS in ComputeCrossModuleImport()
/openbsd/src/gnu/llvm/clang/lib/Lex/
DModuleMap.cpp651 if (UmbrellaModule->InferExportWildcard && Result->Exports.empty()) in findOrCreateModuleForHeaderInUmbrellaDir()
652 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); in findOrCreateModuleForHeaderInUmbrellaDir()
667 if (UmbrellaModule->InferExportWildcard && Result->Exports.empty()) in findOrCreateModuleForHeaderInUmbrellaDir()
668 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); in findOrCreateModuleForHeaderInUmbrellaDir()
1062 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); in inferFrameworkModule()
1362 Mod->Exports.push_back(Export); in resolveExports()
/openbsd/src/gnu/llvm/clang/include/clang/Basic/
DModule.h363 SmallVector<ExportDecl, 2> Exports; variable
/openbsd/src/gnu/llvm/llvm/include/llvm/ObjectYAML/
DWasmYAML.h363 std::vector<Export> Exports; member
/openbsd/src/gnu/llvm/llvm/tools/obj2yaml/
Dwasm2yaml.cpp325 ExportSec->Exports.push_back(Ex); in dump()
/openbsd/src/gnu/llvm/lld/docs/
DWebAssembly.rst165 Exports section in Behaviour
/openbsd/src/gnu/llvm/clang/lib/Sema/
DSemaModule.cpp607 getCurrentModule()->Exports.emplace_back(Mod, false); in ActOnModuleImport()
/openbsd/src/gnu/llvm/llvm/tools/llvm-pdbutil/
DDumpOutputStyle.cpp955 DebugCrossModuleExportsSubsectionRef &Exports) -> Error { in dumpXme() argument
957 for (const auto &Export : Exports) { in dumpXme()

12