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()267 std::map<const Function *, ExFunc>::iterator FI = ExportedFunctions->find(F); in callExternalFunction()268 if (ExFunc Fn = (FI == ExportedFunctions->end()) ? lookupFunction(F) in callExternalFunction()
1908 DenseMap<StringRef, ExportedFunctionInfo> ExportedFunctions; in lower() local1948 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()