From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gateway32.websitewelcome.com (gateway32.websitewelcome.com [192.185.145.122]) by sourceware.org (Postfix) with ESMTPS id 8504239450DB for ; Sat, 20 Feb 2021 20:16:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 8504239450DB Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=tromey.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=tom@tromey.com Received: from cm17.websitewelcome.com (cm17.websitewelcome.com [100.42.49.20]) by gateway32.websitewelcome.com (Postfix) with ESMTP id 10E7872130A for ; Sat, 20 Feb 2021 14:16:25 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id DYfxlmTw0DT64DYfxlULXH; Sat, 20 Feb 2021 14:16:25 -0600 X-Authority-Reason: nr=8 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=pBysRnBHBFyUxPBP2ofKWmr+PXA/GUcXDiZp1PKzgGI=; b=GfFsImZEr/00T0/Wbmx5sggc1d gYSaNJbtgQm6L/IKmy5kmBp/UkS9UwMMac6ZhSjgVJavmGqNKk0CzQu85IoeP7AKNRhCdzQ6uXMNx EWbMSzDHCPfoBCq59FimCB7il; Received: from 97-122-70-152.hlrn.qwest.net ([97.122.70.152]:52682 helo=localhost.localdomain) by box5379.bluehost.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1lDYfw-000GMM-Se for gdb-patches@sourceware.org; Sat, 20 Feb 2021 13:16:24 -0700 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH v3 054/206] Split out eval_op_m2_subscript Date: Sat, 20 Feb 2021 13:13:37 -0700 Message-Id: <20210220201609.838264-55-tom@tromey.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20210220201609.838264-1-tom@tromey.com> References: <20210220201609.838264-1-tom@tromey.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - box5379.bluehost.com X-AntiAbuse: Original Domain - sourceware.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tromey.com X-BWhitelist: no X-Source-IP: 97.122.70.152 X-Source-L: No X-Exim-ID: 1lDYfw-000GMM-Se X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: 97-122-70-152.hlrn.qwest.net (localhost.localdomain) [97.122.70.152]:52682 X-Source-Auth: tom+tromey.com X-Email-Count: 55 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes X-Spam-Status: No, score=-3034.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, GIT_PATCH_0, JMQ_SPF_NEUTRAL, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_PASS, SPF_NEUTRAL, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Feb 2021 20:16:28 -0000 This splits BINOP_SUBSCRIPT into a new function for future use. gdb/ChangeLog 2021-02-20 Tom Tromey * m2-lang.c (eval_op_m2_subscript): New function. (evaluate_subexp_modula2): Use it. --- gdb/ChangeLog | 5 +++ gdb/m2-lang.c | 99 ++++++++++++++++++++++++++------------------------- 2 files changed, 56 insertions(+), 48 deletions(-) diff --git a/gdb/m2-lang.c b/gdb/m2-lang.c index b0dafad8d33..5748b60d59c 100644 --- a/gdb/m2-lang.c +++ b/gdb/m2-lang.c @@ -60,6 +60,56 @@ eval_op_m2_high (struct type *expect_type, struct expression *exp, return arg1; } +/* A helper function for BINOP_SUBSCRIPT. */ + +static struct value * +eval_op_m2_subscript (struct type *expect_type, struct expression *exp, + enum noside noside, + struct value *arg1, struct value *arg2) +{ + if (noside == EVAL_SKIP) + return eval_skip_value (exp); + /* If the user attempts to subscript something that is not an + array or pointer type (like a plain int variable for example), + then report this as an error. */ + + arg1 = coerce_ref (arg1); + struct type *type = check_typedef (value_type (arg1)); + + if (m2_is_unbounded_array (type)) + { + struct value *temp = arg1; + type = type->field (0).type (); + if (type == NULL || (type->code () != TYPE_CODE_PTR)) + error (_("internal error: unbounded " + "array structure is unknown")); + /* i18n: Do not translate the "_m2_contents" part! */ + arg1 = value_struct_elt (&temp, NULL, "_m2_contents", NULL, + _("unbounded structure " + "missing _m2_contents field")); + + if (value_type (arg1) != type) + arg1 = value_cast (type, arg1); + + check_typedef (value_type (arg1)); + return value_ind (value_ptradd (arg1, value_as_long (arg2))); + } + else + if (type->code () != TYPE_CODE_ARRAY) + { + if (type->name ()) + error (_("cannot subscript something of type `%s'"), + type->name ()); + else + error (_("cannot subscript requested type")); + } + + if (noside == EVAL_AVOID_SIDE_EFFECTS) + return value_zero (TYPE_TARGET_TYPE (type), VALUE_LVAL (arg1)); + else + return value_subscript (arg1, value_as_long (arg2)); +} + static struct value * evaluate_subexp_modula2 (struct type *expect_type, struct expression *exp, int *pos, enum noside noside) @@ -67,7 +117,6 @@ evaluate_subexp_modula2 (struct type *expect_type, struct expression *exp, enum exp_opcode op = exp->elts[*pos].opcode; struct value *arg1; struct value *arg2; - struct type *type; switch (op) { @@ -80,57 +129,11 @@ evaluate_subexp_modula2 (struct type *expect_type, struct expression *exp, (*pos)++; arg1 = evaluate_subexp_with_coercion (exp, pos, noside); arg2 = evaluate_subexp_with_coercion (exp, pos, noside); - if (noside == EVAL_SKIP) - goto nosideret; - /* If the user attempts to subscript something that is not an - array or pointer type (like a plain int variable for example), - then report this as an error. */ - - arg1 = coerce_ref (arg1); - type = check_typedef (value_type (arg1)); - - if (m2_is_unbounded_array (type)) - { - struct value *temp = arg1; - type = type->field (0).type (); - if (type == NULL || (type->code () != TYPE_CODE_PTR)) - { - warning (_("internal error: unbounded " - "array structure is unknown")); - return evaluate_subexp_standard (expect_type, exp, pos, noside); - } - /* i18n: Do not translate the "_m2_contents" part! */ - arg1 = value_struct_elt (&temp, NULL, "_m2_contents", NULL, - _("unbounded structure " - "missing _m2_contents field")); - - if (value_type (arg1) != type) - arg1 = value_cast (type, arg1); - - check_typedef (value_type (arg1)); - return value_ind (value_ptradd (arg1, value_as_long (arg2))); - } - else - if (type->code () != TYPE_CODE_ARRAY) - { - if (type->name ()) - error (_("cannot subscript something of type `%s'"), - type->name ()); - else - error (_("cannot subscript requested type")); - } - - if (noside == EVAL_AVOID_SIDE_EFFECTS) - return value_zero (TYPE_TARGET_TYPE (type), VALUE_LVAL (arg1)); - else - return value_subscript (arg1, value_as_long (arg2)); + return eval_op_m2_subscript (expect_type, exp, noside, arg1, arg2); default: return evaluate_subexp_standard (expect_type, exp, pos, noside); } - - nosideret: - return value_from_longest (builtin_type (exp->gdbarch)->builtin_int, 1); } -- 2.26.2