Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp66 std::map<const Function *, ExFunc> ExportedFunctions; member
128 Fns.ExportedFunctions.insert(std::make_pair(F, FnPtr)); // Cache for later in lookupFunction()
279 Fns.ExportedFunctions.find(F); in callExternalFunction()
280 if (ExFunc Fn = (FI == Fns.ExportedFunctions.end()) ? lookupFunction(F) in callExternalFunction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp2077 DenseMap<StringRef, ExportedFunctionInfo> ExportedFunctions; in lower() local
2117 auto P = ExportedFunctions.insert({FunctionName, {Linkage, FuncMD}}); in lower()
2122 for (const auto &P : ExportedFunctions) { in lower()
2190 if (ExportedFunctions.count(F->getName())) { in lower()
2192 ExportedFunctions[F->getName()].Linkage == CFL_Definition; in lower()
2390 if (!ExportedFunctions.count(Aliasee) || in lower()
2391 ExportedFunctions[Aliasee].Linkage != CFL_Definition || in lower()
2432 if (!ExportedFunctions.count(SymbolName)) in lower()