Split out eval_op_scope
authorTom Tromey <tom@tromey.com>
Mon, 8 Mar 2021 14:27:57 +0000 (07:27 -0700)
committerTom Tromey <tom@tromey.com>
Mon, 8 Mar 2021 14:27:57 +0000 (07:27 -0700)
This splits OP_SCOPE into a new function for future use.

gdb/ChangeLog
2021-03-08  Tom Tromey  <tom@tromey.com>

* eval.c (eval_op_scope): New function.
(evaluate_subexp_standard): Use it.

gdb/ChangeLog
gdb/eval.c

index b1436a1479743b152811898d98b05e9f952db1e7..a6dbb7ee633829fc466d11cc873f0319a8bd203e 100644 (file)
@@ -1,3 +1,8 @@
+2021-03-08  Tom Tromey  <tom@tromey.com>
+
+       * eval.c (eval_op_scope): New function.
+       (evaluate_subexp_standard): Use it.
+
 2021-03-06  Chernov Sergey  <klen_s@mail.ru>
 
        PR gdb/27528:
index 7ba3ee59522fc4d627f85315eba77835547a6b5b..11a705327f289efb9fc6234932ac41da11b91960 100644 (file)
@@ -1182,6 +1182,22 @@ is_integral_or_integral_reference (struct type *type)
          && is_integral_type (TYPE_TARGET_TYPE (type)));
 }
 
+/* Helper function that implements the body of OP_SCOPE.  */
+
+static struct value *
+eval_op_scope (struct type *expect_type, struct expression *exp,
+              enum noside noside,
+              struct type *type, const char *string)
+{
+  if (noside == EVAL_SKIP)
+    return eval_skip_value (exp);
+  struct value *arg1 = value_aggregate_elt (type, string, expect_type,
+                                           0, noside);
+  if (arg1 == NULL)
+    error (_("There is no field named %s"), string);
+  return arg1;
+}
+
 struct value *
 evaluate_subexp_standard (struct type *expect_type,
                          struct expression *exp, int *pos,
@@ -1208,14 +1224,9 @@ evaluate_subexp_standard (struct type *expect_type,
     case OP_SCOPE:
       tem = longest_to_int (exp->elts[pc + 2].longconst);
       (*pos) += 4 + BYTES_TO_EXP_ELEM (tem + 1);
-      if (noside == EVAL_SKIP)
-       return eval_skip_value (exp);
-      arg1 = value_aggregate_elt (exp->elts[pc + 1].type,
-                                 &exp->elts[pc + 3].string,
-                                 expect_type, 0, noside);
-      if (arg1 == NULL)
-       error (_("There is no field named %s"), &exp->elts[pc + 3].string);
-      return arg1;
+      return eval_op_scope (expect_type, exp, noside,
+                           exp->elts[pc + 1].type,
+                           &exp->elts[pc + 3].string);
 
     case OP_LONG:
       (*pos) += 3;