Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp117 std::vector<COFFShortExport> &Exports, in parseModuleDefinition() argument
144 for (COFFShortExport &E : Def->Exports) { in parseModuleDefinition()
151 Exports = std::move(Def->Exports); in parseModuleDefinition()
206 std::vector<COFFShortExport> Exports, NativeExports; in dlltoolDriverMain() local
220 AddUnderscores, Exports, OutputFile)) in dlltoolDriverMain()
229 for (COFFShortExport &E : Exports) { in dlltoolDriverMain()
246 if (!Path.empty() && writeImportLibrary(OutputFile, Path, Exports, Machine, in dlltoolDriverMain()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A 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()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp376 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); in findOrInferSubmodule()
416 for (unsigned I = 0, N = Exports.size(); I != N; ++I) { in getExportedModules()
417 Module *Mod = Exports[I].getPointer(); in getExportedModules()
418 if (!Exports[I].getInt()) { in getExportedModules()
431 if (Module *Restriction = Exports[I].getPointer()) in getExportedModules()
589 for (unsigned I = 0, N = Exports.size(); I != N; ++I) { in print()
592 if (Module *Restriction = Exports[I].getPointer()) { in print()
594 if (Exports[I].getInt()) in print()
708 SmallVector<Module *, 16> Exports; in setVisible() local
709 V.M->getExportedModules(Exports); in setVisible()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A 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
[all...]
H A DWasmEmitter.cpp430 encodeULEB128(Section.Exports.size(), OS); in writeSectionContent()
431 for (const WasmYAML::Export &Export : Section.Exports) { in writeSectionContent()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOWriter.cpp81 assert((DyLdInfoCommand.export_size == O.Exports.Trie.size()) && in totalSize()
372 assert((DyLdInfoCommand.export_size == O.Exports.Trie.size()) && in writeExportInfo()
374 memcpy(Out, O.Exports.Trie.data(), O.Exports.Trie.size()); in writeExportInfo()
579 assert((ExportsTrieCmd.datasize == O.Exports.Trie.size()) && in writeExportsTrieData()
581 memcpy(Out, O.Exports.Trie.data(), O.Exports.Trie.size()); in writeExportsTrieData()
H A DMachOLayoutBuilder.cpp247 DyldInfoExportsTrieSize = O.Exports.Trie.size(); in layoutTail()
250 DyldExportsTrieSize = O.Exports.Trie.size(); in layoutTail()
409 O.Exports.Trie.empty() ? 0 : StartOfExportTrie; in layoutTail()
H A DMachOObject.h309 ExportInfo Exports; member
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DDylibVerifier.h87 Exports(std::make_unique<SymbolSet>()), Ctx(VerifierContext{Diag}) {} in DylibVerifier()
210 std::unique_ptr<SymbolSet> Exports = std::make_unique<SymbolSet>(); variable
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp491 Exports.emplace_back(std::move(Section)); in NormalizedTBD()
603 for (const auto &Section : Exports) { in denormalize()
706 std::vector<ExportSection> Exports; member
857 handleSymbols(Exports, File->exports()); in NormalizedTBD_V4()
935 handleSymbols(Exports); in denormalize()
953 SectionList Exports; member
1011 IO.mapOptional("exports", Keys->Exports); in mapKeysToValues()
1038 IO.mapOptional("exports", Keys->Exports); in mapKeysToValuesV4()
H A DTextStubV5.cpp109 Exports, enumerator
637 auto ExportsOrErr = getSymbolSection(File, TBDKey::Exports, Targets); in parseToInterfaceFile()
640 TargetsToSymbols Exports = std::move(*ExportsOrErr); in parseToInterfaceFile() local
676 for (auto &[Targets, Symbols] : Exports) in parseToInterfaceFile()
982 Array Exports = serializeSymbols(File->exports(), ActiveTargets); in serializeIF() local
983 insertNonEmptyValues(Library, TBDKey::Exports, std::move(Exports)); in serializeIF()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFFModuleDefinition.h28 std::vector<COFFShortExport> Exports; member
H A DCOFFImportFile.h139 StringRef ImportName, StringRef Path, ArrayRef<COFFShortExport> Exports,
H A DWasm.h150 ArrayRef<wasm::WasmExport> exports() const { return Exports; } in exports()
289 std::vector<wasm::WasmExport> Exports; variable
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp273 StringMap<std::pair<SymbolFlags, RecordLinkage>> Exports; in readSymbols() local
280 Exports[Sym.name()] = {Flags, Linkage}; in readSymbols()
305 auto Exp = Exports.find(Name); in readSymbols()
309 if (Exp != Exports.end()) in readSymbols()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFModuleDefinition.cpp258 Info.Exports.push_back(E); in parseExport()
297 Info.Exports.push_back(E); in parseExport()
H A DCOFFImportFile.cpp660 ArrayRef<COFFShortExport> Exports, in writeImportLibrary() argument
786 if (Error e = addExports(Exports, Machine)) in writeImportLibrary()
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DDylibVerifier.cpp174 Exports->addGlobal(SymCtx.Kind, SymCtx.SymbolName, R->getFlags(), Targets); in addSymbol()
213 return Exports->findSymbol(SymCtx.Kind, SymCtx.SymbolName, in shouldIgnoreInternalZipperedSymbol()
621 if (const Symbol *Sym = Exports->findSymbol(SymCtx.Kind, SymCtx.SymbolName, in visitSymbolInDylib()
989 if (const Symbol *Sym = Exports->findSymbol(Base.second, Base.first)) { in takeExports()
1001 return std::move(Exports); in takeExports()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp331 void writeExportSection(ArrayRef<wasm::WasmExport> Exports);
981 void WasmObjectWriter::writeExportSection(ArrayRef<wasm::WasmExport> Exports) { in writeExportSection() argument
982 if (Exports.empty()) in writeExportSection()
988 encodeULEB128(Exports.size(), W->OS); in writeExportSection()
989 for (const wasm::WasmExport &Export : Exports) { in writeExportSection()
1460 SmallVector<wasm::WasmExport, 4> Exports; in writeOneObject() local
1604 Exports.push_back(Export); in writeOneObject()
1914 writeExportSection(Exports); in writeOneObject()
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp418 NativeExports = std::move(NativeDef->Exports); in libDriverMain()
422 return writeImportLibrary(OutputFile, OutputPath, Def->Exports, LibMachine, in libDriverMain()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendActions.cpp930 if (!Primary->Exports.empty()) in ExecuteAction()
932 for (unsigned MN = 0, N = Primary->Exports.size(); MN != N; ++MN) { in ExecuteAction()
933 if (Module *M = Primary->Exports[MN].getPointer()) { in ExecuteAction()
/freebsd/crypto/heimdal/lib/asn1/
H A Dasn1parse.y259 ModuleBody : Exports Imports AssignmentList
287 Exports : kw_EXPORTS referencenames ';'
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp673 if (UmbrellaModule->InferExportWildcard && Result->Exports.empty()) in findOrCreateModuleForHeaderInUmbrellaDir()
674 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); in findOrCreateModuleForHeaderInUmbrellaDir()
689 if (UmbrellaModule->InferExportWildcard && Result->Exports.empty()) in findOrCreateModuleForHeaderInUmbrellaDir()
690 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); in findOrCreateModuleForHeaderInUmbrellaDir()
1113 Result->Exports.push_back(Module::ExportDecl(nullptr, true)); in inferFrameworkModule()
1405 Mod->Exports.push_back(Export); in resolveExports()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h415 SmallVector<ExportDecl, 2> Exports; variable
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1142 auto &Exports = ExportLists[ModName]; in ComputeCrossModuleImport() local
1143 unsigned NumGVS = numGlobalVarSummaries(Index, Exports); in ComputeCrossModuleImport()
1145 << Exports.size() - NumGVS << " functions and " << NumGVS in ComputeCrossModuleImport()

12