diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-04-29 01:07:59 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-04-29 01:07:59 +0000 |
commit | 2cede0f92c5b021d68564c631e3604d572ea817e (patch) | |
tree | 9032b99973f4aef8b53a65f9350686c56bb5bb36 /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | c829f19e244e8f1ccb63a785260ec6958d0d417f (diff) | |
download | bcm5719-llvm-2cede0f92c5b021d68564c631e3604d572ea817e.tar.gz bcm5719-llvm-2cede0f92c5b021d68564c631e3604d572ea817e.zip |
Debug info: Improve line table for functions with cleanups an early exit
and no return expr at the end of the function.
The "function has only simple returns" check in FinishFunction tests
whether the number of simple return exprs equals the number of return
exprs, but so far a fallthrough at the end of a function was not counted
as a return, which would result in cleanup code being associated with the
wrong source line.
rdar://problem/16733984.
llvm-svn: 207480
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 95e4ee498d2..e8f48afb3b5 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -498,6 +498,22 @@ void CodeGenFunction::EmitOpenCLKernelMetadata(const FunctionDecl *FD, OpenCLKernelMetadata->addOperand(kernelMDNode); } +/// Determine whether the function F ends with a return stmt. +static bool endsWithReturn(const Decl* F) { + const Stmt *Body = nullptr; + if (auto *FD = dyn_cast_or_null<FunctionDecl>(F)) + Body = FD->getBody(); + else if (auto *OMD = dyn_cast_or_null<ObjCMethodDecl>(F)) + Body = OMD->getBody(); + + if (auto *CS = dyn_cast_or_null<CompoundStmt>(Body)) { + auto LastStmt = CS->body_rbegin(); + if (LastStmt != CS->body_rend()) + return isa<ReturnStmt>(*LastStmt); + } + return false; +} + void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy, llvm::Function *Fn, @@ -593,6 +609,10 @@ void CodeGenFunction::StartFunction(GlobalDecl GD, if (RetTy->isVoidType()) { // Void type; nothing to return. ReturnValue = 0; + + // Count the implicit return. + if (!endsWithReturn(D)) + ++NumReturnExprs; } else if (CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::Indirect && !hasScalarEvaluationKind(CurFnInfo->getReturnType())) { // Indirect aggregate return; emit returned value directly into sret slot. |