Home
last modified time | relevance | path

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

/external/llvm/unittests/Analysis/
DLazyCallGraphTest.cpp271 static Function &lookupFunction(Module &M, StringRef Name) { in lookupFunction() function
296 LazyCallGraph::Node &A = CG.get(lookupFunction(*M, "a")); in TEST()
297 LazyCallGraph::Node &B = CG.get(lookupFunction(*M, "b")); in TEST()
301 CG.insertEdge(B, lookupFunction(*M, "c")); in TEST()
364 LazyCallGraph::Node &A = *CG.lookup(lookupFunction(*M, "a")); in TEST()
365 LazyCallGraph::Node &B = *CG.lookup(lookupFunction(*M, "b")); in TEST()
366 LazyCallGraph::Node &C = *CG.lookup(lookupFunction(*M, "c")); in TEST()
367 LazyCallGraph::Node &D = *CG.lookup(lookupFunction(*M, "d")); in TEST()
368 LazyCallGraph::Node &E = *CG.lookup(lookupFunction(*M, "e")); in TEST()
404 LazyCallGraph::Node &A = *CG.lookup(lookupFunction(*M, "a")); in TEST()
[all …]
/external/llvm/lib/ExecutionEngine/Interpreter/
DExternalFunctions.cpp91 static ExFunc lookupFunction(const Function *F) { in lookupFunction() function
256 if (ExFunc Fn = (FI == ExportedFunctions->end()) ? lookupFunction(F) in callExternalFunction()