Home
last modified time | relevance | path

Searched refs:ExportedFunctions (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp63 static ManagedStatic<std::map<const Function *, ExFunc> > ExportedFunctions; variable
118 ExportedFunctions->insert(std::make_pair(F, FnPtr)); // Cache for later in lookupFunction()
267 std::map<const Function *, ExFunc>::iterator FI = ExportedFunctions->find(F); in callExternalFunction()
268 if (ExFunc Fn = (FI == ExportedFunctions->end()) ? lookupFunction(F) in callExternalFunction()
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp1908 DenseMap<StringRef, ExportedFunctionInfo> ExportedFunctions; in lower() local
1948 auto P = ExportedFunctions.insert({FunctionName, {Linkage, FuncMD}}); in lower()
1953 for (const auto &P : ExportedFunctions) { in lower()
2021 if (ExportedFunctions.count(F->getName())) { in lower()
2023 ExportedFunctions[F->getName()].Linkage == CFL_Definition; in lower()
2221 if (!ExportedFunctions.count(Aliasee) || in lower()
2222 ExportedFunctions[Aliasee].Linkage != CFL_Definition || in lower()
2263 if (!ExportedFunctions.count(SymbolName)) in lower()