Home
last modified time | relevance | path

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

/freebsd-src/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-src/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp2079 MapVector<StringRef, ExportedFunctionInfo> ExportedFunctions; in lower()
2119 auto P = ExportedFunctions.insert({FunctionName, {Linkage, FuncMD}}); in lower()
2124 for (const auto &P : ExportedFunctions) { in lower()
2192 if (ExportedFunctions.count(F->getName())) { in lower()
2194 ExportedFunctions[F->getName()].Linkage == CFL_Definition; in lower()
2392 if (!ExportedFunctions.count(Aliasee) || in lower()
2393 ExportedFunctions[Aliasee].Linkage != CFL_Definition || in lower()
2434 if (!ExportedFunctions.count(SymbolName)) in lower()
2077 DenseMap<StringRef, ExportedFunctionInfo> ExportedFunctions; lower() local