Searched refs:Imports (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DModuleFile.cpp49 if (!Imports.empty()) {
50 llvm::errs() << " Imports: ";
51 for (unsigned I = 0, N = Imports.size(); I != N; ++I) {
54 llvm::errs() << Imports[I]->FileName;
H A DModuleManager.cpp93 ImportedBy->Imports.insert(&MF);
247 I->Imports.remove_if(IsVictim);
364 for (auto M = CurrentModule->Imports.rbegin(),
365 MEnd = CurrentModule->Imports.rend();
418 M = NextModule->Imports.begin(),
419 MEnd = NextModule->Imports.end();
476 return Node->Imports.begin();
480 return Node->Imports.end();
H A DASTWriter.cpp1204 // Imports
2686 if (!Mod->Imports.empty()) {
2688 for (auto *I : Mod->Imports)
4882 llvm::SmallVector<ModuleInfo, 64> Imports;
4885 Imports.push_back(ModuleInfo(SubmoduleIDs[I->getImportedModule()],
4889 if (!Imports.empty()) {
4898 llvm::sort(Imports, Cmp);
4899 Imports.erase(std::unique(Imports.begin(), Imports
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.h30 FixedStreamArray<support::ulittle32_t> Imports; member in struct:llvm::codeview::CrossModuleImportItem
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.cpp39 if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DMDBuilder.cpp61 const DenseSet<GlobalValue::GUID> *Imports) {
69 if (Imports) {
70 SmallVector<GlobalValue::GUID, 2> OrderID(Imports->begin(), Imports->end());
59 createFunctionEntryCount( uint64_t Count, bool Synthetic, const DenseSet<GlobalValue::GUID> *Imports) argument
H A DFunction.cpp1626 const DenseSet<GlobalValue::GUID> *Imports) {
1627 setEntryCount(ProfileCount(Count, Type), Imports);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp175 const DebugCrossModuleImportsSubsectionRef &Imports);
177 std::vector<YAMLCrossModuleImport> Imports; member in struct:__anon3750::YAMLCrossModuleImportsSubsection
291 IO.mapRequired("Imports", Obj.ImportIds);
347 IO.mapOptional("Imports", Imports);
481 for (const auto &M : Imports) {
657 const DebugCrossModuleImportsSubsectionRef &Imports) {
659 for (const auto &CMI : Imports) {
665 YCMI.ImportIds.assign(CMI.Imports.begin(), CMI.Imports
655 fromCodeViewSubsection( const DebugStringTableSubsectionRef &Strings, const DebugCrossModuleImportsSubsectionRef &Imports) argument
841 visitCrossModuleImports( DebugCrossModuleImportsSubsectionRef &Imports, const StringsAndChecksumsRef &State) argument
[all...]
H A DWasmEmitter.cpp345 encodeULEB128(Section.Imports.size(), OS);
346 for (const WasmYAML::Import &Import : Section.Imports) {
H A DWasmYAML.cpp103 IO.mapOptional("Imports", Section.Imports);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp2278 // Sorts and deduplicates a block of includes given by 'Imports' based on
2284 const SmallVectorImpl<JavaImportDirective> &Imports,
2287 unsigned ImportsBeginOffset = Imports.front().Offset;
2289 Imports.back().Offset + Imports.back().Text.size();
2295 for (unsigned i = 0, e = Imports.size(); i != e; ++i) {
2298 findJavaImportGroup(Style, Imports[i].Identifier));
2302 return std::make_tuple(!Imports[LHSI].IsStatic, JavaImportGroups[LHSI],
2303 Imports[LHSI].Identifier) <
2304 std::make_tuple(!Imports[RHS
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp329 void writeImportSection(ArrayRef<wasm::WasmImport> Imports, uint64_t DataSize,
732 void WasmObjectWriter::writeImportSection(ArrayRef<wasm::WasmImport> Imports, argument
735 if (Imports.empty())
743 encodeULEB128(Imports.size(), W.OS);
744 for (const wasm::WasmImport &Import : Imports) {
1185 SmallVector<wasm::WasmImport, 4> Imports; local
1203 Imports.push_back(MemImport);
1213 Imports.push_back(TableImport);
1215 // Populate SignatureIndices, and Imports and WasmIndices for undefined
1242 Imports
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp398 for (unsigned I = 0, N = Imports.size(); I != N; ++I) {
399 Module *Mod = Imports[I];
426 SmallVector<Module *, 16> Stack(Imports.begin(), Imports.end());
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DMDBuilder.h71 /// GUIDs stored in \p Imports that need to be imported for sample PGO, to
74 const DenseSet<GlobalValue::GUID> *Imports);
H A DFunction.h294 /// pgo data. \p Imports points to a set of GUIDs that needs to
298 const DenseSet<GlobalValue::GUID> *Imports = nullptr);
302 const DenseSet<GlobalValue::GUID> *Imports = nullptr);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp54 static cl::list<std::string> Imports(
294 for (const auto &Import : Imports) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h137 ArrayRef<wasm::WasmImport> imports() const { return Imports; }
273 std::vector<wasm::WasmImport> Imports; member in class:llvm::object::WasmObjectFile
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp178 for (const Module *Import : M->Imports) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFile.h492 llvm::SetVector<ModuleFile *> Imports; member in class:clang::serialization::ModuleFile
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp486 ImportedGlobals.reserve(Imports.size());
487 ImportedFunctions.reserve(Imports.size());
488 ImportedEvents.reserve(Imports.size());
489 for (auto &I : Imports) {
942 Imports.reserve(Count);
976 Imports.push_back(Im);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h316 llvm::SmallSetVector<Module *, 2> Imports; member in class:clang::Module
/freebsd-13-stable/crypto/heimdal/lib/asn1/
H A Dasn1parse.y259 ModuleBody : Exports Imports AssignmentList
263 Imports : kw_IMPORTS SymbolsImported ';' label
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h281 std::vector<Import> Imports; member in struct:llvm::WasmYAML::ImportSection
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1011 printHeader(P, "Cross Module Imports");
1021 DebugCrossModuleImportsSubsectionRef &Imports) {
1024 for (const auto &Xmi : Imports) {
1040 for (const auto I : Xmi.Imports)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp1322 BuildingSubmoduleStack.back().M->Imports.insert(M);

Completed in 425 milliseconds

12