From patchwork Sat Mar 5 03:19:05 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Artemiy Volkov X-Patchwork-Id: 11207 Received: (qmail 106125 invoked by alias); 5 Mar 2016 03:20:48 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 105703 invoked by uid 89); 5 Mar 2016 03:20:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy=harvard, Harvard, True, sk:allocat X-HELO: mail-lb0-f196.google.com Received: from mail-lb0-f196.google.com (HELO mail-lb0-f196.google.com) (209.85.217.196) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Sat, 05 Mar 2016 03:20:11 +0000 Received: by mail-lb0-f196.google.com with SMTP id vk4so6499460lbb.1 for ; Fri, 04 Mar 2016 19:20:11 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:from:to:cc:subject:date:message-id :in-reply-to:references; bh=yL4eTvfqC8xAlLeON9zi2d/+xh4XpP2LqAdGpXjOllw=; b=S0gIKcly5wgLVsiPdYQW9cRzL5l+oPg3LHPUOZaXmFgIhJ/LkXoCEQIQWcVadArRh2 wXQ3Dr0hU8wM9lFMvsAFABCYAAeBvo+omXg2TVjcpuDvjZLG3dRfbzRLvmD6h01iPTm4 AvB/5HuOKvo1poe8HK9znjr/uWLh7ADL2U4BPDiW4O0r95xvBV3Osoq2ZUkclmaoP8Qn V6Zga6HUwb7rPZKS4o2wDE58RF6FGFAiQy4J7PSsZlpYkV0AK4kgWopTTqlrtqDLkFkJ K1jkzsVip3r/Bob4g3ewdHigkIO8v38ULsHAakX6NCPu8Yublk+DuKDgcfL0EGd8VZPL 0vGg== X-Gm-Message-State: AD7BkJL6lJwF8rSzZ9S75HGpvqtyApQC7+M8a2stsXLZ12bR/dJKmfyPukcKUSnGThZ/CA== X-Received: by 10.112.46.136 with SMTP id v8mr3225253lbm.38.1457148008270; Fri, 04 Mar 2016 19:20:08 -0800 (PST) Received: from arch.smware.local (108-60-110-19.static.wiline.com. [108.60.110.19]) by smtp.gmail.com with ESMTPSA id jr10sm1020677lbc.42.2016.03.04.19.20.06 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 04 Mar 2016 19:20:07 -0800 (PST) From: Artemiy Volkov To: gdb-patches@sourceware.org Cc: keiths@redhat.com, palves@redhat.com, Artemiy Volkov Subject: [PATCH v3 01/11] [PR gdb/14441] gdb: gdbtypes: add definitions for rvalue reference type Date: Fri, 4 Mar 2016 19:19:05 -0800 Message-Id: <1457147955-21871-2-git-send-email-artemiyv@acm.org> In-Reply-To: <1457147955-21871-1-git-send-email-artemiyv@acm.org> References: <1453229609-20159-1-git-send-email-artemiyv@acm.org> <1457147955-21871-1-git-send-email-artemiyv@acm.org> X-IsSubscribed: yes This patch introduces preliminal definitions regarding C++0x rvalue references to the gdb type system. In addition to an enum type_code entry, a field in struct type and an accessor macro for that which are created similarly to the lvalue references' counterparts, we also introduce a TYPE_REFERENCE convenience macro used to check for both kinds of references simultaneously as they are equivalent in many contexts. gdb/Changelog: 2016-03-04 Artemiy Volkov * gdbtypes.h (enum type_code) : New constant. (TYPE_IS_REFERENCE): New macro. (struct type): Add rvalue_reference_type field. (TYPE_RVALUE_REFERENCE_TYPE): New macro. --- gdb/gdbtypes.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index e775a1d..3bdbcd9 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -160,6 +160,8 @@ enum type_code TYPE_CODE_REF, /**< C++ Reference types */ + TYPE_CODE_RVALUE_REF, /**< C++ rvalue reference types */ + TYPE_CODE_CHAR, /**< *real* character type */ /* * Boolean type. 0 is false, 1 is true, and other values are @@ -362,6 +364,11 @@ enum type_instance_flag_value #define TYPE_ATOMIC(t) \ (TYPE_INSTANCE_FLAGS (t) & TYPE_INSTANCE_FLAG_ATOMIC) +/* True if this type represents either an lvalue or lvalue reference type. */ + +#define TYPE_IS_REFERENCE(t) \ + (TYPE_CODE (t) == TYPE_CODE_REF || TYPE_CODE (t) == TYPE_CODE_RVALUE_REF) + /* * Instruction-space delimited type. This is for Harvard architectures which have separate instruction and data address spaces (and perhaps others). @@ -767,6 +774,10 @@ struct type struct type *reference_type; + /* * A C++ rvalue reference type added in C++0x. */ + + struct type *rvalue_reference_type; + /* * Variant chain. This points to a type that differs from this one only in qualifiers and length. Currently, the possible qualifiers are const, volatile, code-space, data-space, and @@ -1229,6 +1240,7 @@ extern void allocate_gnat_aux_type (struct type *); #define TYPE_TARGET_TYPE(thistype) TYPE_MAIN_TYPE(thistype)->target_type #define TYPE_POINTER_TYPE(thistype) (thistype)->pointer_type #define TYPE_REFERENCE_TYPE(thistype) (thistype)->reference_type +#define TYPE_RVALUE_REFERENCE_TYPE(thistype) (thistype)->rvalue_reference_type #define TYPE_CHAIN(thistype) (thistype)->chain /* * Note that if thistype is a TYPEDEF type, you have to call check_typedef. But check_typedef does set the TYPE_LENGTH of the TYPEDEF type,