From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id E57DE383FB96 for ; Thu, 29 Sep 2022 22:49:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org E57DE383FB96 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1664491792; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=2QgL75vaXGFUBKSF1NdOrGzsv4rsMH4eLWDDr1MqNfg=; b=OpQSm3u9ajc3PcIzfi71YgIGDbxtXdMPyKDA0RXft5LGR/o32dRwugTNckKse9Ee9cUDnR mzuNMfruwd4s3+bwFycGMufU/Yzj3fRa8VXmMiGBZrK0i+xjGeUsEASPybIyz51kazCxsZ Q2ZgH44yKniZ6jR9ijsdjngInjlXdTM= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-189-a01ToNBiMEypgIRB_IQf_Q-1; Thu, 29 Sep 2022 18:49:51 -0400 X-MC-Unique: a01ToNBiMEypgIRB_IQf_Q-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 12CCD811E87; Thu, 29 Sep 2022 22:49:51 +0000 (UTC) Received: from pdp-11.lan (unknown [10.22.9.132]) by smtp.corp.redhat.com (Postfix) with ESMTP id C7027492CA2; Thu, 29 Sep 2022 22:49:50 +0000 (UTC) From: Marek Polacek To: GCC Patches , Jason Merrill , Joseph Myers Subject: [PATCH] c-family: ICE with [[gnu::nocf_check]] [PR106937] Date: Thu, 29 Sep 2022 18:49:45 -0400 Message-Id: <20220929224945.90798-1-polacek@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.9 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: When getting the name of an attribute, we ought to use get_attribute_name, which handles both [[ ]] and __attribute__(()) forms. Failure to do so may result in an ICE, like here. Bootstrapped/regtested on x86_64-pc-linux-gnu, ok for trunk? PR c++/106937 gcc/c-family/ChangeLog: * c-pretty-print.cc (pp_c_attributes): Use get_attribute_name. (pp_c_attributes_display): Likewise. gcc/testsuite/ChangeLog: * gcc.dg/fcf-protection-1.c: New test. --- gcc/c-family/c-pretty-print.cc | 8 ++++---- gcc/testsuite/gcc.dg/fcf-protection-1.c | 13 +++++++++++++ 2 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/fcf-protection-1.c diff --git a/gcc/c-family/c-pretty-print.cc b/gcc/c-family/c-pretty-print.cc index efa1768f4d6..91f88b830e3 100644 --- a/gcc/c-family/c-pretty-print.cc +++ b/gcc/c-family/c-pretty-print.cc @@ -863,7 +863,7 @@ pp_c_attributes (c_pretty_printer *pp, tree attributes) pp_c_left_paren (pp); for (; attributes != NULL_TREE; attributes = TREE_CHAIN (attributes)) { - pp_tree_identifier (pp, TREE_PURPOSE (attributes)); + pp_tree_identifier (pp, get_attribute_name (attributes)); if (TREE_VALUE (attributes)) pp_c_call_argument_list (pp, TREE_VALUE (attributes)); @@ -875,7 +875,7 @@ pp_c_attributes (c_pretty_printer *pp, tree attributes) } /* Pretty-print ATTRIBUTES using GNU C extension syntax for attributes - marked to be displayed on disgnostic. */ + marked to be displayed on diagnostic. */ void pp_c_attributes_display (c_pretty_printer *pp, tree a) @@ -888,7 +888,7 @@ pp_c_attributes_display (c_pretty_printer *pp, tree a) for (; a != NULL_TREE; a = TREE_CHAIN (a)) { const struct attribute_spec *as; - as = lookup_attribute_spec (TREE_PURPOSE (a)); + as = lookup_attribute_spec (get_attribute_name (a)); if (!as || as->affects_type_identity == false) continue; if (c_dialect_cxx () @@ -906,7 +906,7 @@ pp_c_attributes_display (c_pretty_printer *pp, tree a) { pp_separate_with (pp, ','); } - pp_tree_identifier (pp, TREE_PURPOSE (a)); + pp_tree_identifier (pp, get_attribute_name (a)); if (TREE_VALUE (a)) pp_c_call_argument_list (pp, TREE_VALUE (a)); } diff --git a/gcc/testsuite/gcc.dg/fcf-protection-1.c b/gcc/testsuite/gcc.dg/fcf-protection-1.c new file mode 100644 index 00000000000..9d06feadfd1 --- /dev/null +++ b/gcc/testsuite/gcc.dg/fcf-protection-1.c @@ -0,0 +1,13 @@ +/* PR c++/106937 */ +/* { dg-options "-fcf-protection -w" } */ + +[[gnu::nocf_check]] typedef void (*FuncPointerWithNoCfCheck)(void); +typedef void (*FuncPointer)(void); +[[gnu::nocf_check]] void testNoCfCheck(); +void testNoCfCheck(){}; +int [[gnu::nocf_check]] i; +void testNoCfCheckImpl(double i [[gnu::nocf_check]]) {} +void testNoCfCheckMismatch(FuncPointer f) { + FuncPointerWithNoCfCheck fNoCfCheck = f; + (*fNoCfCheck)(); +} base-commit: c2ee70f20de8133a88553270073226b0f3f55f62 -- 2.37.3