From b7c4c992be0c0b3d63beb4480cd34f1a0c4eab05 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 22 Oct 2003 18:53:31 +0000 Subject: [PATCH] This is a disgusting hack that improves code substantially, by making callgraphSCC passes more effective. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9384 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/IPA/CallGraph.cpp | 124 ++++++++++++++++++++++++++++++++- 1 file changed, 122 insertions(+), 2 deletions(-) diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp index 6a41acb6d9e..59fd1a2705c 100644 --- a/lib/Analysis/IPA/CallGraph.cpp +++ b/lib/Analysis/IPA/CallGraph.cpp @@ -50,10 +50,129 @@ #include "llvm/iOther.h" #include "llvm/iTerminators.h" #include "Support/STLExtras.h" -#include static RegisterAnalysis X("callgraph", "Call Graph Construction"); +static const char * const KnownExternalFunctions[] = { + // Low-level system calls + "open", + "read", + "write", + "writev", + "lseek", + "poll", + "ioctl", + + // Low-level stdc library functions + "abort", + "getenv", + "putenv", + + // Standard IO functions + "printf", + "sprintf", + "fopen", + "freopen", + "fclose", + "fwrite", + "puts", + "fputs", + "getc", + "ungetc", + "putc", + "putchar", + "fread", + "fileno", + "ftell", + "fflush", + "fseek", + "fileno", + "ferror", + "feof", + "fdopen", + "__fxstat", + "setbuf", + "setbuffer", + "etlinebuf", + "setvbuf", + + // Memory functions + "malloc", + "free", + "realloc", + "calloc", + "memalign", + + // String functions + "atoi", + "memmove", + "memset", + "memchr", + "memcmp", + "strchr", + "strncpy", + "strncmp", + "strcmp", + "__strcoll_l", + "__strxfrm_l", + "__strftime_l", + "__strtol_l", + "__strtoul_l", + "__strtoll_l", + "__strtoull_l", + "__strtof_l", + "__strtod_l", + "__strtold_l", + + // Locale functions + "__uselocale", + "__newlocale", + "__freelocale", + "__duplocale", + "__nl_langinfo_l", + + // gettext functions used by libstdc++ + "gettext", + "dgettext", + "dcgettext", + "textdomain", + "bindtextdomain", + + // Random stuff + "__assert_fail", + "__errno_location", +}; + + +/// ExternalFunctionDoesntCallIntoProgram - This hack is used to indicate to the +/// call graph that the specified external function is _KNOWN_ to not call back +/// into the program. This is important, because otherwise functions which call +/// "printf" for example, end up in a great big SCC that goes from the function +/// through main. +/// +static bool ExternalFunctionDoesntCallIntoProgram(const std::string &Name) { + static std::vector Funcs; + + // First time this is called? + if (Funcs.empty()) { + // Add a whole bunch of functions which are often used... + Funcs.insert(Funcs.end(), KnownExternalFunctions, + KnownExternalFunctions+ + sizeof(KnownExternalFunctions)/sizeof(KnownExternalFunctions[0])); + // Sort the list for efficient access + std::sort(Funcs.begin(), Funcs.end()); + } + + // Binary search for the function name... + std::vector::iterator I = + std::lower_bound(Funcs.begin(), Funcs.end(), Name); + + // Found it? + return I != Funcs.end() && *I == Name; +} + + + // getNodeFor - Return the node for the specified function or create one if it // does not already exist. // @@ -86,7 +205,8 @@ void CallGraph::addToCallGraph(Function *F) { // If this function is not defined in this translation unit, it could call // anything. - if (F->isExternal()) + if (F->isExternal() && !F->getIntrinsicID() && + !ExternalFunctionDoesntCallIntoProgram(F->getName())) Node->addCalledFunction(ExternalNode); // Loop over all of the users of the function... looking for callers... -- 2.34.1