From e82d2e8c11119ca34bcccb8fef67a8727543a978 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Thu, 16 Mar 2023 21:37:35 -0700 Subject: [PATCH] Recommit "[Sema] Fix null pointer dereference handleAlwaysInlineAttr." Remove use of constexpr if that failed on the build bots. Original commit message: It's possible for `getCalleeDecl()` to return a null pointer. This was encountered by a user of our downstream compiler. The case involved a DependentScopeDeclRefExpr. Since this seems to only be for a warning diagnostic, I skipped the diagnostic check if it returned null. But mabye there's a different way to fix this. --- clang/lib/Sema/SemaStmtAttr.cpp | 5 +++-- clang/test/Sema/attr-alwaysinline.cpp | 13 +++++++++++++ clang/test/Sema/attr-noinline.cpp | 13 +++++++++++++ 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/clang/lib/Sema/SemaStmtAttr.cpp b/clang/lib/Sema/SemaStmtAttr.cpp index 6d443837a4c5..eeef85373ccb 100644 --- a/clang/lib/Sema/SemaStmtAttr.cpp +++ b/clang/lib/Sema/SemaStmtAttr.cpp @@ -233,7 +233,8 @@ static Attr *handleNoInlineAttr(Sema &S, Stmt *St, const ParsedAttr &A, for (const auto *CallExpr : CEF.getCallExprs()) { const Decl *Decl = CallExpr->getCalleeDecl(); - if (Decl->hasAttr() || Decl->hasAttr()) + if (Decl && + (Decl->hasAttr() || Decl->hasAttr())) S.Diag(St->getBeginLoc(), diag::warn_function_stmt_attribute_precedence) << A << (Decl->hasAttr() ? 0 : 1); } @@ -259,7 +260,7 @@ static Attr *handleAlwaysInlineAttr(Sema &S, Stmt *St, const ParsedAttr &A, for (const auto *CallExpr : CEF.getCallExprs()) { const Decl *Decl = CallExpr->getCalleeDecl(); - if (Decl->hasAttr() || Decl->hasAttr()) + if (Decl && (Decl->hasAttr() || Decl->hasAttr())) S.Diag(St->getBeginLoc(), diag::warn_function_stmt_attribute_precedence) << A << (Decl->hasAttr() ? 2 : 1); } diff --git a/clang/test/Sema/attr-alwaysinline.cpp b/clang/test/Sema/attr-alwaysinline.cpp index 6b8e8f215a4b..be3f74c8bfa9 100644 --- a/clang/test/Sema/attr-alwaysinline.cpp +++ b/clang/test/Sema/attr-alwaysinline.cpp @@ -25,3 +25,16 @@ void foo() { } [[clang::always_inline]] static int i = bar(); // expected-warning {{'always_inline' attribute only applies to functions and statements}} + +// This used to crash the compiler. +template +int foo(int x) { + [[clang::always_inline]] return foo(x + 1); +} + +// FIXME: This should warn that always_inline statement attribute has higher +// precedence than the noinline function attribute. +template [[gnu::noinline]] +int bar(int x) { + [[clang::always_inline]] return bar(x + 1); +} diff --git a/clang/test/Sema/attr-noinline.cpp b/clang/test/Sema/attr-noinline.cpp index d35782f11adb..ae0f80ca296e 100644 --- a/clang/test/Sema/attr-noinline.cpp +++ b/clang/test/Sema/attr-noinline.cpp @@ -25,3 +25,16 @@ void foo() { } [[clang::noinline]] static int i = bar(); // expected-warning {{'noinline' attribute only applies to functions and statements}} + +// This used to crash the compiler. +template +int foo(int x) { + [[clang::noinline]] return foo(x + 1); +} + +// FIXME: This should warn that noinline statement attribute has higher +// precedence than the always_inline function attribute. +template [[clang::always_inline]] +int bar(int x) { + [[clang::noinline]] return bar(x + 1); +}