diff options
| author | Artem Dergachev <artem.dergachev@gmail.com> | 2019-05-07 22:33:13 +0000 |
|---|---|---|
| committer | Artem Dergachev <artem.dergachev@gmail.com> | 2019-05-07 22:33:13 +0000 |
| commit | b3fc9df481906703f545c945f098064fc9d3b2ee (patch) | |
| tree | f415188b0d31ec5969418c1227f40dd98ddbe5cc /clang | |
| parent | 2e977c083ca4e0a25cc3c4c4e9ce44963674ca92 (diff) | |
| download | bcm5719-llvm-b3fc9df481906703f545c945f098064fc9d3b2ee.tar.gz bcm5719-llvm-b3fc9df481906703f545c945f098064fc9d3b2ee.zip | |
[analyzer] Fix a crash when doing RVO from within blocks.
When looking for the location context of the call site, unwrap block invocation
contexts because they are attached to the current AnalysisDeclContext
while what we need is the previous AnalysisDeclContext.
Differential Revision: https://reviews.llvm.org/D61545
llvm-svn: 360202
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp | 6 | ||||
| -rw-r--r-- | clang/test/Analysis/copy-elision.mm | 18 |
2 files changed, 24 insertions, 0 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp index aaab01f98c2..62699fb3186 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp @@ -196,6 +196,12 @@ std::pair<ProgramStateRef, SVal> ExprEngine::prepareForObjectConstruction( // able to find construction context at all. break; } + if (isa<BlockInvocationContext>(CallerLCtx)) { + // Unwrap block invocation contexts. They're mostly part of + // the current stack frame. + CallerLCtx = CallerLCtx->getParent(); + assert(!isa<BlockInvocationContext>(CallerLCtx)); + } return prepareForObjectConstruction( cast<Expr>(SFC->getCallSite()), State, CallerLCtx, RTC->getConstructionContext(), CallOpts); diff --git a/clang/test/Analysis/copy-elision.mm b/clang/test/Analysis/copy-elision.mm new file mode 100644 index 00000000000..fa9435f599f --- /dev/null +++ b/clang/test/Analysis/copy-elision.mm @@ -0,0 +1,18 @@ +// RUN: %clang_analyze_cc1 -analyzer-checker=core -fblocks -verify %s + +// expected-no-diagnostics + +namespace block_rvo_crash { +struct A {}; + +A getA(); +void use(A a) {} + +void foo() { + // This used to crash when finding construction context for getA() + // (which is use()'s argument due to RVO). + use(^{ + return getA(); // no-crash + }()); +} +} // namespace block_rvo_crash |

