forked from OSchip/llvm-project
DebugInfo: Ensure calls to functions with default arguments which themselves have default arguments, still have locations.
To handle default arguments in C++ in the debug info, we disable code updating the debug location during the emission of default arguments. This code was buggy in the case of default arguments which, themselves, have default arguments - the inner default argument would re-enable debug info when it was finished, but before the outer default argument was finished. This was already a bug, but got worse (because a crasher instead of just a quality bug) with the recent improvements to debug info line quality because... The ApplyDebugLocation scoped device would find the debug info disabled and not save any debug location. But then in ~ApplyDebugLocation it would find the debug info had been enabled and would then apply the no-location. Then the outer function call would be emitted without any location. That's bad. Arguably we could /also/ fix the ApplyDebugLocation to assert on this situation (where debug info was disabled in the ctor and enabled in the dtor, or the other way around) but this is at least the necessary fix regardless. (also, I imagine this disabling behavior might need to be in-place for CGExprComplex and CGExprAgg too, maybe... ?) And I seem to recall seeing some weird default arg stepping behavior recently which might be related to this too... I'll have to look into it. llvm-svn: 228053
This commit is contained in:
parent
71ac240620
commit
14177b748a
|
@ -3393,11 +3393,12 @@ Value *CodeGenFunction::EmitScalarExpr(const Expr *E, bool IgnoreResultAssign) {
|
|||
assert(E && hasScalarEvaluationKind(E->getType()) &&
|
||||
"Invalid scalar expression to emit");
|
||||
|
||||
bool hasDebugInfo = getDebugInfo();
|
||||
if (isa<CXXDefaultArgExpr>(E))
|
||||
disableDebugInfo();
|
||||
Value *V = ScalarExprEmitter(*this, IgnoreResultAssign)
|
||||
.Visit(const_cast<Expr*>(E));
|
||||
if (isa<CXXDefaultArgExpr>(E))
|
||||
if (isa<CXXDefaultArgExpr>(E) && hasDebugInfo)
|
||||
enableDebugInfo();
|
||||
return V;
|
||||
}
|
||||
|
|
|
@ -250,6 +250,15 @@ void f20(int a, int b, int c) {
|
|||
;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: define
|
||||
int f21_a(int = 0);
|
||||
void f21_b(int = f21_a());
|
||||
void f21() {
|
||||
// CHECK: call {{.*}}f21_b{{.*}}, !dbg [[DBG_F21:![0-9]*]]
|
||||
#line 2300
|
||||
f21_b();
|
||||
}
|
||||
|
||||
// CHECK: [[DBG_F1]] = !MDLocation(line: 100,
|
||||
// CHECK: [[DBG_FOO_VALUE]] = !MDLocation(line: 200,
|
||||
// CHECK: [[DBG_FOO_REF]] = !MDLocation(line: 202,
|
||||
|
|
Loading…
Reference in New Issue