Searched refs:ExportedFunctions (Results 1 – 2 of 2) sorted by relevance
63 static ManagedStatic<std::map<const Function *, ExFunc> > ExportedFunctions; variable118 ExportedFunctions->insert(std::make_pair(F, FnPtr)); // Cache for later in lookupFunction()265 std::map<const Function *, ExFunc>::iterator FI = ExportedFunctions->find(F); in callExternalFunction()266 if (ExFunc Fn = (FI == ExportedFunctions->end()) ? lookupFunction(F) in callExternalFunction()
1895 DenseMap<StringRef, ExportedFunctionInfo> ExportedFunctions; in lower() local1935 auto P = ExportedFunctions.insert({FunctionName, {Linkage, FuncMD}}); in lower()1940 for (const auto &P : ExportedFunctions) { in lower()2008 if (ExportedFunctions.count(F->getName())) { in lower()2010 ExportedFunctions[F->getName()].Linkage == CFL_Definition; in lower()2212 if (!ExportedFunctions.count(Aliasee) || in lower()2213 ExportedFunctions[Aliasee].Linkage != CFL_Definition || in lower()2254 if (!ExportedFunctions.count(SymbolName)) in lower()