From patchwork Tue Aug 12 15:26:12 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Wielaard X-Patchwork-Id: 379394 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 1754B1400B2 for ; Wed, 13 Aug 2014 01:26:58 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:in-reply-to:references; q=dns; s= default; b=VdLbhkxX8AMbVd2OAgl9ZTwkzfvWcku6fJupYaEtQpJNJ169qjPpt deoSpCq+0GcSaRrDh3b108UexV+H7X2fo7O5Sf9UZa+NCpX/cqSYaTvKgwPUjEnp 2JOuHaHfMsi+yjDRM4xbcygnCcuN3waeos40KQhMBuCyjiCdrpRxDM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:in-reply-to:references; s= default; bh=3h3sGL97lOYe/u1nCmfLaT3Pphs=; b=TleFfUUjnHF4fF32Znqm ddfeKL+pPsPN8DR+yWzwG3sftnkHzY7aA05qXAOlD/pNQtO98V77BzXh1iixh+GJ ycH8Xf6QDKVeeVK8CQDx0mcbe8Q5e6I/ojSKzrCFpQCBW3ZP8tpENStgTebWwi6r ttHGDt0vV4kmVylXnujz6rg= Received: (qmail 16246 invoked by alias); 12 Aug 2014 15:26:51 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 16199 invoked by uid 89); 12 Aug 2014 15:26:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, SPF_PASS autolearn=ham version=3.3.2 X-HELO: gnu.wildebeest.org Received: from wildebeest.demon.nl (HELO gnu.wildebeest.org) (212.238.236.112) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 12 Aug 2014 15:26:39 +0000 From: Mark Wielaard To: gcc-patches@gcc.gnu.org Cc: Jason Merrill , Cary Coutant , "Joseph S. Myers" , Mark Wielaard Subject: [PATCH 2/2] Emit DW_tag_restrict_type for restrict-qualified pointers. Date: Tue, 12 Aug 2014 17:26:12 +0200 Message-Id: <1407857172-17669-2-git-send-email-mjw@redhat.com> In-Reply-To: <1407857172-17669-1-git-send-email-mjw@redhat.com> References: <1407857172-17669-1-git-send-email-mjw@redhat.com> X-Spam-Score: -2.9 (--) Ping. Rebased patch to current gcc master. gcc/ChangeLog PR debug/59051 * dwarf2out.h (modified_type_die): Handle TYPE_QUAL_RESTRICT. gcc/testsuite/ChangeLog PR debug/59051 * gcc.dg/guality/restrict.c: New test. --- gcc/ChangeLog | 5 ++++ gcc/dwarf2out.c | 33 +++++++++++++++++------ gcc/testsuite/ChangeLog | 5 ++++ gcc/testsuite/gcc.dg/guality/restrict.c | 48 +++++++++++++++++++++++++++++++++ 4 files changed, 83 insertions(+), 8 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/guality/restrict.c diff --git a/gcc/ChangeLog b/gcc/ChangeLog index be9ff58..428a1e1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-07-08 Mark Wielaard + + PR debug/59051 + * dwarf2out.c (modified_type_die): Handle TYPE_QUAL_RESTRICT. + 2014-07-07 Mark Wielaard * dwarf2out.c (decl_quals): New function. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 79a1dc2..51e379e 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -10478,7 +10478,13 @@ modified_type_die (tree type, int cv_quals, dw_die_ref context_die) return NULL; /* Only these cv-qualifiers are currently handled. */ - cv_quals &= (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE); + cv_quals &= (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE | TYPE_QUAL_RESTRICT); + + /* Don't emit DW_TAG_restrict_type for DWARFv2, since it is a type + tag modifier (and not an attribute) old consumers won't be able + to handle it. */ + if (dwarf_version < 3) + cv_quals &= ~TYPE_QUAL_RESTRICT; /* See if we already have the appropriately qualified variant of this type. */ @@ -10523,7 +10529,7 @@ modified_type_die (tree type, int cv_quals, dw_die_ref context_die) else { int dquals = TYPE_QUALS_NO_ADDR_SPACE (dtype); - dquals &= (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE); + dquals &= (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE | TYPE_QUAL_RESTRICT); if ((dquals & ~cv_quals) != TYPE_UNQUALIFIED || (cv_quals == dquals && DECL_ORIGINAL_TYPE (name) != type)) /* cv-unqualified version of named type. Just use @@ -10537,22 +10543,33 @@ modified_type_die (tree type, int cv_quals, dw_die_ref context_die) mod_scope = scope_die_for (type, context_die); if ((cv_quals & TYPE_QUAL_CONST) - /* If both const_type and volatile_type, prefer the path - which leads to a qualified type. */ - && (!(cv_quals & TYPE_QUAL_VOLATILE) - || get_qualified_type (type, TYPE_QUAL_CONST) == NULL_TREE - || get_qualified_type (type, TYPE_QUAL_VOLATILE) != NULL_TREE)) + /* If there are multiple type modifiers, prefer a path which + leads to a qualified type. */ + && (((cv_quals & ~TYPE_QUAL_CONST) == TYPE_UNQUALIFIED) + || get_qualified_type (type, cv_quals) == NULL_TREE + || (get_qualified_type (type, cv_quals & ~TYPE_QUAL_CONST) + != NULL_TREE))) { mod_type_die = new_die (DW_TAG_const_type, mod_scope, type); sub_die = modified_type_die (type, cv_quals & ~TYPE_QUAL_CONST, context_die); } - else if (cv_quals & TYPE_QUAL_VOLATILE) + else if ((cv_quals & TYPE_QUAL_VOLATILE) + && (((cv_quals & ~TYPE_QUAL_VOLATILE) == TYPE_UNQUALIFIED) + || get_qualified_type (type, cv_quals) == NULL_TREE + || (get_qualified_type (type, cv_quals & ~TYPE_QUAL_VOLATILE) + != NULL_TREE))) { mod_type_die = new_die (DW_TAG_volatile_type, mod_scope, type); sub_die = modified_type_die (type, cv_quals & ~TYPE_QUAL_VOLATILE, context_die); } + else if (cv_quals & TYPE_QUAL_RESTRICT) + { + mod_type_die = new_die (DW_TAG_restrict_type, mod_scope, type); + sub_die = modified_type_die (type, cv_quals & ~TYPE_QUAL_RESTRICT, + context_die); + } else if (code == POINTER_TYPE) { mod_type_die = new_die (DW_TAG_pointer_type, mod_scope, type); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5f57b8d..3f9e53f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-07-08 Mark Wielaard + + PR debug/59051 + * gcc.dg/guality/restrict.c: New test. + 2014-07-03 Mark Wielaard * lib/gcc-gdb-test.exp (gdb-test): Handle type:var for gdb ptype diff --git a/gcc/testsuite/gcc.dg/guality/restrict.c b/gcc/testsuite/gcc.dg/guality/restrict.c new file mode 100644 index 0000000..e31224b --- /dev/null +++ b/gcc/testsuite/gcc.dg/guality/restrict.c @@ -0,0 +1,48 @@ +/* debuginfo tests for combinations of const, volatile, restrict pointers. */ +/* { dg-do run } */ +/* { dg-options "-std=c99 -gdwarf-3" } */ + +int *ip; +const int *cip; +int * restrict irp; +int * const icp; +const int * restrict cirp; +int * const restrict icrp; +const int * const restrict cicrp; + +int * const volatile restrict cvirp; +const volatile int * restrict pcvir; + +static __attribute__((noclone, noinline)) void * +cpy (void * restrict s1, const void * restrict s2, unsigned int n) +{ + char *t1 = s1; + const char *t2 = s2; + while(n-- > 0) + *t1++ = *t2++; + return s1; +} + +int +main (int argc, char **argv) +{ + void *foo = 0; + if (argc > 16) + foo = cpy (argv[0], argv[1], argc); + + return foo != 0; +} + +/* { dg-final { gdb-test 30 "type:ip" "int *" } } */ +/* { dg-final { gdb-test 30 "type:cip" "const int *" } } */ +/* { dg-final { gdb-test 30 "type:irp" "int * restrict" } } */ +/* { dg-final { gdb-test 30 "type:icp" "int * const" } } */ +/* { dg-final { gdb-test 30 "type:cirp" "const int * restrict" } } */ +/* { dg-final { gdb-test 30 "type:icrp" "int * const restrict" } } */ +/* { dg-final { gdb-test 30 "type:cicrp" "const int * const restrict" } } */ + +/* { dg-final { gdb-test 30 "type:cvirp" "int * const volatile restrict" } } */ +/* { dg-final { gdb-test 30 "type:pcvir" "const volatile int * restrict" } } */ + +/* { dg-final { gdb-test 30 "type:main" "int (int, char **)" } } */ +/* { dg-final { gdb-test 30 "type:cpy" "void *(void * restrict, const void * restrict, unsigned int)" } } */