diff options
author | Anna Zaks <ganna@apple.com> | 2013-01-30 19:12:39 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-01-30 19:12:39 +0000 |
commit | c84d151892303a86478ec8ed7b12d0e03d6747c9 (patch) | |
tree | 6fe277d5bf7fbc7948c38f3bb9ebf00ad5db8540 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 66b9f1660eac648d55a147e658c2e256ca2320fb (diff) | |
download | bcm5719-llvm-c84d151892303a86478ec8ed7b12d0e03d6747c9.tar.gz bcm5719-llvm-c84d151892303a86478ec8ed7b12d0e03d6747c9.zip |
[analyzer] Make shallow mode more shallow.
Redefine the shallow mode to inline all functions for which we have a
definite definition (ipa=inlining). However, only inline functions that
are up to 4 basic blocks large and cut the max exploded nodes generated
per top level function in half.
This makes shallow faster and allows us to keep inlining small
functions. For example, we would keep inlining wrapper functions and
constructors/destructors.
With the new shallow, it takes 104s to analyze sqlite3, whereas
the deep mode is 658s and previous shallow is 209s.
llvm-svn: 173958
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index ae240577d12..a2b28bc5391 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -218,7 +218,6 @@ static bool ParseAnalyzerArgs(AnalyzerOptions &Opts, ArgList &Args, Opts.AnalyzeSpecificFunction = Args.getLastArgValue(OPT_analyze_function); Opts.UnoptimizedCFG = Args.hasArg(OPT_analysis_UnoptimizedCFG); Opts.TrimGraph = Args.hasArg(OPT_trim_egraph); - Opts.MaxNodes = Args.getLastArgIntValue(OPT_analyzer_max_nodes, 150000,Diags); Opts.maxBlockVisitOnPath = Args.getLastArgIntValue(OPT_analyzer_max_loop, 4, Diags); Opts.PrintStats = Args.hasArg(OPT_analyzer_stats); Opts.InlineMaxStackDepth = |