Support -prompt and -lbl in gdb_test
[binutils-gdb.git] / gdb / opencl-lang.c
index 317163966cd3e78074a15919ee74f5074ba4b8df..1034d1c91fe5c729d8a10eac7fce2b55cb3296bf 100644 (file)
@@ -1,5 +1,5 @@
 /* OpenCL language support for GDB, the GNU debugger.
-   Copyright (C) 2010-2021 Free Software Foundation, Inc.
+   Copyright (C) 2010-2022 Free Software Foundation, Inc.
 
    Contributed by Ken Werner <ken.werner@de.ibm.com>.
 
@@ -139,8 +139,8 @@ lval_func_read (struct value *v)
   gdb_assert (n <= c->n);
 
   for (i = offset; i < n; i++)
-    memcpy (value_contents_raw (v) + j++ * elsize,
-           value_contents (c->val) + c->indices[i] * elsize,
+    memcpy (value_contents_raw (v).data () + j++ * elsize,
+           value_contents (c->val).data () + c->indices[i] * elsize,
            elsize);
 }
 
@@ -179,8 +179,8 @@ lval_func_write (struct value *v, struct value *fromval)
       struct value *from_elm_val = allocate_value (eltype);
       struct value *to_elm_val = value_subscript (c->val, c->indices[i]);
 
-      memcpy (value_contents_writeable (from_elm_val),
-             value_contents (fromval) + j++ * elsize,
+      memcpy (value_contents_writeable (from_elm_val).data (),
+             value_contents (fromval).data () + j++ * elsize,
              elsize);
       value_assign (to_elm_val, from_elm_val);
     }
@@ -254,6 +254,7 @@ static const struct lval_funcs opencl_value_funcs =
   {
     lval_func_read,
     lval_func_write,
+    nullptr,
     NULL,      /* indirect */
     NULL,      /* coerce_ref */
     lval_func_check_synthetic_pointer,
@@ -314,9 +315,9 @@ create_value (struct gdbarch *gdbarch, struct value *val, enum noside noside,
 
              /* Copy src val contents into the destination value.  */
              for (i = 0; i < n; i++)
-               memcpy (value_contents_writeable (ret)
+               memcpy (value_contents_writeable (ret).data ()
                        + (i * TYPE_LENGTH (elm_type)),
-                       value_contents (val)
+                       value_contents (val).data ()
                        + (indices[i] * TYPE_LENGTH (elm_type)),
                        TYPE_LENGTH (elm_type));
            }
@@ -472,7 +473,8 @@ opencl_logical_not (struct type *expect_type, struct expression *exp,
          value of its operand compares unequal to 0, and -1 (i.e. all bits
          set) if the value of its operand compares equal to 0.  */
          int tmp = value_logical_not (value_subscript (arg, i)) ? -1 : 0;
-         memset (value_contents_writeable (ret) + i * TYPE_LENGTH (eltype),
+         memset ((value_contents_writeable (ret).data ()
+                  + i * TYPE_LENGTH (eltype)),
                  tmp, TYPE_LENGTH (eltype));
        }
     }
@@ -572,7 +574,8 @@ vector_relop (struct expression *exp, struct value *val1, struct value *val2,
         if the specified relation is true.  */
       int tmp = scalar_relop (value_subscript (val1, i),
                              value_subscript (val2, i), op) ? -1 : 0;
-      memset (value_contents_writeable (ret) + i * TYPE_LENGTH (eltype1),
+      memset ((value_contents_writeable (ret).data ()
+              + i * TYPE_LENGTH (eltype1)),
              tmp, TYPE_LENGTH (eltype1));
      }
 
@@ -681,7 +684,7 @@ eval_opencl_assign (struct type *expect_type, struct expression *exp,
                    enum noside noside, enum exp_opcode op,
                    struct value *arg1, struct value *arg2)
 {
-  if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
+  if (noside == EVAL_AVOID_SIDE_EFFECTS)
     return arg1;
 
   struct type *type1 = value_type (arg1);
@@ -692,309 +695,167 @@ eval_opencl_assign (struct type *expect_type, struct expression *exp,
   return value_assign (arg1, arg2);
 }
 
-/* Expression evaluator for the OpenCL.  Most operations are delegated to
-   evaluate_subexp_standard; see that function for a description of the
-   arguments.  */
+namespace expr
+{
 
-static struct value *
-evaluate_subexp_opencl (struct type *expect_type, struct expression *exp,
-                  int *pos, enum noside noside)
+value *
+opencl_structop_operation::evaluate (struct type *expect_type,
+                                    struct expression *exp,
+                                    enum noside noside)
 {
-  enum exp_opcode op = exp->elts[*pos].opcode;
-  struct value *arg1 = NULL;
-  struct value *arg2 = NULL;
-  struct type *type1, *type2;
+  value *arg1 = std::get<0> (m_storage)->evaluate (nullptr, exp, noside);
+  struct type *type1 = check_typedef (value_type (arg1));
 
-  switch (op)
+  if (type1->code () == TYPE_CODE_ARRAY && type1->is_vector ())
+    return opencl_component_ref (exp, arg1, std::get<1> (m_storage).c_str (),
+                                noside);
+  else
     {
-    /* Handle assignment and cast operators to support OpenCL-style
-       scalar-to-vector widening.  */
-    case BINOP_ASSIGN:
-      (*pos)++;
-      arg1 = evaluate_subexp (nullptr, exp, pos, noside);
-      type1 = value_type (arg1);
-      arg2 = evaluate_subexp (type1, exp, pos, noside);
-
-      return eval_opencl_assign (expect_type, exp, noside, op, arg1, arg2);
-
-    case UNOP_CAST:
-      type1 = exp->elts[*pos + 1].type;
-      (*pos) += 2;
-      arg1 = evaluate_subexp (type1, exp, pos, noside);
-
-      if (noside == EVAL_SKIP)
-       return value_from_longest (builtin_type (exp->gdbarch)->
-                                  builtin_int, 1);
-
-      return opencl_value_cast (type1, arg1);
-
-    case UNOP_CAST_TYPE:
-      (*pos)++;
-      arg1 = evaluate_subexp (NULL, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
-      type1 = value_type (arg1);
-      arg1 = evaluate_subexp (type1, exp, pos, noside);
-
-      if (noside == EVAL_SKIP)
-       return value_from_longest (builtin_type (exp->gdbarch)->
-                                  builtin_int, 1);
-
-      return opencl_value_cast (type1, arg1);
+      struct value *v = value_struct_elt (&arg1, {},
+                                         std::get<1> (m_storage).c_str (),
+                                         NULL, "structure");
 
-    /* Handle binary relational and equality operators that are either not
-       or differently defined for GNU vectors.  */
-    case BINOP_EQUAL:
-    case BINOP_NOTEQUAL:
-    case BINOP_LESS:
-    case BINOP_GTR:
-    case BINOP_GEQ:
-    case BINOP_LEQ:
-      (*pos)++;
-      arg1 = evaluate_subexp (nullptr, exp, pos, noside);
-      arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
+      if (noside == EVAL_AVOID_SIDE_EFFECTS)
+       v = value_zero (value_type (v), VALUE_LVAL (v));
+      return v;
+    }
+}
 
-      if (noside == EVAL_SKIP)
-       return value_from_longest (builtin_type (exp->gdbarch)->
-                                  builtin_int, 1);
+value *
+opencl_logical_binop_operation::evaluate (struct type *expect_type,
+                                         struct expression *exp,
+                                         enum noside noside)
+{
+  enum exp_opcode op = std::get<0> (m_storage);
+  value *arg1 = std::get<1> (m_storage)->evaluate (nullptr, exp, noside);
+
+  /* For scalar operations we need to avoid evaluating operands
+     unnecessarily.  However, for vector operations we always need to
+     evaluate both operands.  Unfortunately we only know which of the
+     two cases apply after we know the type of the second operand.
+     Therefore we evaluate it once using EVAL_AVOID_SIDE_EFFECTS.  */
+  value *arg2 = std::get<2> (m_storage)->evaluate (nullptr, exp,
+                                                  EVAL_AVOID_SIDE_EFFECTS);
+  struct type *type1 = check_typedef (value_type (arg1));
+  struct type *type2 = check_typedef (value_type (arg2));
 
-      return opencl_relop (expect_type, exp, noside, op, arg1, arg2);
+  if ((type1->code () == TYPE_CODE_ARRAY && type1->is_vector ())
+      || (type2->code () == TYPE_CODE_ARRAY && type2->is_vector ()))
+    {
+      arg2 = std::get<2> (m_storage)->evaluate (nullptr, exp, noside);
 
-    /* Handle the logical unary operator not(!).  */
-    case UNOP_LOGICAL_NOT:
-      (*pos)++;
-      arg1 = evaluate_subexp (nullptr, exp, pos, noside);
+      return opencl_relop (nullptr, exp, noside, op, arg1, arg2);
+    }
+  else
+    {
+      /* For scalar built-in types, only evaluate the right
+        hand operand if the left hand operand compares
+        unequal(&&)/equal(||) to 0.  */
+      bool tmp = value_logical_not (arg1);
 
-      if (noside == EVAL_SKIP)
-       return value_from_longest (builtin_type (exp->gdbarch)->
-                                  builtin_int, 1);
+      if (op == BINOP_LOGICAL_OR)
+       tmp = !tmp;
 
-      return opencl_logical_not (expect_type, exp, noside, op, arg1);
+      if (!tmp)
+       {
+         arg2 = std::get<2> (m_storage)->evaluate (nullptr, exp, noside);
+         tmp = value_logical_not (arg2);
+         if (op == BINOP_LOGICAL_OR)
+           tmp = !tmp;
+       }
 
-    /* Handle the logical operator and(&&) and or(||).  */
-    case BINOP_LOGICAL_AND:
-    case BINOP_LOGICAL_OR:
-      (*pos)++;
-      arg1 = evaluate_subexp (nullptr, exp, pos, noside);
+      type1 = language_bool_type (exp->language_defn, exp->gdbarch);
+      return value_from_longest (type1, tmp);
+    }
+}
 
-      if (noside == EVAL_SKIP)
+value *
+opencl_ternop_cond_operation::evaluate (struct type *expect_type,
+                                       struct expression *exp,
+                                       enum noside noside)
+{
+  value *arg1 = std::get<0> (m_storage)->evaluate (nullptr, exp, noside);
+  struct type *type1 = check_typedef (value_type (arg1));
+  if (type1->code () == TYPE_CODE_ARRAY && type1->is_vector ())
+    {
+      struct value *arg2, *arg3, *tmp, *ret;
+      struct type *eltype2, *type2, *type3, *eltype3;
+      int t2_is_vec, t3_is_vec, i;
+      LONGEST lowb1, lowb2, lowb3, highb1, highb2, highb3;
+
+      arg2 = std::get<1> (m_storage)->evaluate (nullptr, exp, noside);
+      arg3 = std::get<2> (m_storage)->evaluate (nullptr, exp, noside);
+      type2 = check_typedef (value_type (arg2));
+      type3 = check_typedef (value_type (arg3));
+      t2_is_vec
+       = type2->code () == TYPE_CODE_ARRAY && type2->is_vector ();
+      t3_is_vec
+       = type3->code () == TYPE_CODE_ARRAY && type3->is_vector ();
+
+      /* Widen the scalar operand to a vector if necessary.  */
+      if (t2_is_vec || !t3_is_vec)
        {
-         evaluate_subexp (nullptr, exp, pos, noside);
-
-         return value_from_longest (builtin_type (exp->gdbarch)->
-                                    builtin_int, 1);
+         arg3 = opencl_value_cast (type2, arg3);
+         type3 = value_type (arg3);
        }
-      else
+      else if (!t2_is_vec || t3_is_vec)
        {
-         /* For scalar operations we need to avoid evaluating operands
-            unnecessarily.  However, for vector operations we always need to
-            evaluate both operands.  Unfortunately we only know which of the
-            two cases apply after we know the type of the second operand.
-            Therefore we evaluate it once using EVAL_AVOID_SIDE_EFFECTS.  */
-         int oldpos = *pos;
-
-         arg2 = evaluate_subexp (nullptr, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
-         *pos = oldpos;
-         type1 = check_typedef (value_type (arg1));
-         type2 = check_typedef (value_type (arg2));
-
-         if ((type1->code () == TYPE_CODE_ARRAY && type1->is_vector ())
-             || (type2->code () == TYPE_CODE_ARRAY && type2->is_vector ()))
-           {
-             arg2 = evaluate_subexp (nullptr, exp, pos, noside);
-
-             return opencl_relop (nullptr, exp, noside, op, arg1, arg2);
-           }
-         else
-           {
-             /* For scalar built-in types, only evaluate the right
-                hand operand if the left hand operand compares
-                unequal(&&)/equal(||) to 0.  */
-             int res;
-             int tmp = value_logical_not (arg1);
-
-             if (op == BINOP_LOGICAL_OR)
-               tmp = !tmp;
-
-             arg2
-               = evaluate_subexp (nullptr, exp, pos, tmp ? EVAL_SKIP : noside);
-             type1 = language_bool_type (exp->language_defn, exp->gdbarch);
-
-             if (op == BINOP_LOGICAL_AND)
-               res = !tmp && !value_logical_not (arg2);
-             else /* BINOP_LOGICAL_OR */
-               res = tmp || !value_logical_not (arg2);
-
-             return value_from_longest (type1, res);
-           }
+         arg2 = opencl_value_cast (type3, arg2);
+         type2 = value_type (arg2);
        }
-
-    /* Handle the ternary selection operator.  */
-    case TERNOP_COND:
-      (*pos)++;
-      arg1 = evaluate_subexp (nullptr, exp, pos, noside);
-      type1 = check_typedef (value_type (arg1));
-      if (type1->code () == TYPE_CODE_ARRAY && type1->is_vector ())
+      else if (!t2_is_vec || !t3_is_vec)
        {
-         struct value *arg3, *tmp, *ret;
-         struct type *eltype2, *type3, *eltype3;
-         int t2_is_vec, t3_is_vec, i;
-         LONGEST lowb1, lowb2, lowb3, highb1, highb2, highb3;
-
-         arg2 = evaluate_subexp (nullptr, exp, pos, noside);
-         arg3 = evaluate_subexp (nullptr, exp, pos, noside);
-         type2 = check_typedef (value_type (arg2));
-         type3 = check_typedef (value_type (arg3));
-         t2_is_vec
-           = type2->code () == TYPE_CODE_ARRAY && type2->is_vector ();
-         t3_is_vec
-           = type3->code () == TYPE_CODE_ARRAY && type3->is_vector ();
-
-         /* Widen the scalar operand to a vector if necessary.  */
-         if (t2_is_vec || !t3_is_vec)
-           {
-             arg3 = opencl_value_cast (type2, arg3);
-             type3 = value_type (arg3);
-           }
-         else if (!t2_is_vec || t3_is_vec)
-           {
-             arg2 = opencl_value_cast (type3, arg2);
-             type2 = value_type (arg2);
-           }
-         else if (!t2_is_vec || !t3_is_vec)
-           {
-             /* Throw an error if arg2 or arg3 aren't vectors.  */
-             error (_("\
+         /* Throw an error if arg2 or arg3 aren't vectors.  */
+         error (_("\
 Cannot perform conditional operation on incompatible types"));
-           }
+       }
 
-         eltype2 = check_typedef (TYPE_TARGET_TYPE (type2));
-         eltype3 = check_typedef (TYPE_TARGET_TYPE (type3));
+      eltype2 = check_typedef (TYPE_TARGET_TYPE (type2));
+      eltype3 = check_typedef (TYPE_TARGET_TYPE (type3));
 
-         if (!get_array_bounds (type1, &lowb1, &highb1)
-             || !get_array_bounds (type2, &lowb2, &highb2)
-             || !get_array_bounds (type3, &lowb3, &highb3))
-           error (_("Could not determine the vector bounds"));
+      if (!get_array_bounds (type1, &lowb1, &highb1)
+         || !get_array_bounds (type2, &lowb2, &highb2)
+         || !get_array_bounds (type3, &lowb3, &highb3))
+       error (_("Could not determine the vector bounds"));
 
-         /* Throw an error if the types of arg2 or arg3 are incompatible.  */
-         if (eltype2->code () != eltype3->code ()
-             || TYPE_LENGTH (eltype2) != TYPE_LENGTH (eltype3)
-             || eltype2->is_unsigned () != eltype3->is_unsigned ()
-             || lowb2 != lowb3 || highb2 != highb3)
-           error (_("\
+      /* Throw an error if the types of arg2 or arg3 are incompatible.  */
+      if (eltype2->code () != eltype3->code ()
+         || TYPE_LENGTH (eltype2) != TYPE_LENGTH (eltype3)
+         || eltype2->is_unsigned () != eltype3->is_unsigned ()
+         || lowb2 != lowb3 || highb2 != highb3)
+       error (_("\
 Cannot perform operation on vectors with different types"));
 
-         /* Throw an error if the sizes of arg1 and arg2/arg3 differ.  */
-         if (lowb1 != lowb2 || lowb1 != lowb3
-             || highb1 != highb2 || highb1 != highb3)
-           error (_("\
+      /* Throw an error if the sizes of arg1 and arg2/arg3 differ.  */
+      if (lowb1 != lowb2 || lowb1 != lowb3
+         || highb1 != highb2 || highb1 != highb3)
+       error (_("\
 Cannot perform conditional operation on vectors with different sizes"));
 
-         ret = allocate_value (type2);
+      ret = allocate_value (type2);
 
-         for (i = 0; i < highb1 - lowb1 + 1; i++)
-           {
-             tmp = value_logical_not (value_subscript (arg1, i)) ?
-                   value_subscript (arg3, i) : value_subscript (arg2, i);
-             memcpy (value_contents_writeable (ret) +
-                     i * TYPE_LENGTH (eltype2), value_contents_all (tmp),
-                     TYPE_LENGTH (eltype2));
-           }
-
-         return ret;
-       }
-      else
+      for (i = 0; i < highb1 - lowb1 + 1; i++)
        {
-         if (value_logical_not (arg1))
-           {
-             /* Skip the second operand.  */
-             evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
-
-             return evaluate_subexp (nullptr, exp, pos, noside);
-           }
-         else
-           {
-             /* Skip the third operand.  */
-             arg2 = evaluate_subexp (nullptr, exp, pos, noside);
-             evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
-
-             return arg2;
-           }
+         tmp = value_logical_not (value_subscript (arg1, i)) ?
+           value_subscript (arg3, i) : value_subscript (arg2, i);
+         memcpy (value_contents_writeable (ret).data () +
+                 i * TYPE_LENGTH (eltype2), value_contents_all (tmp).data (),
+                 TYPE_LENGTH (eltype2));
        }
 
-    /* Handle STRUCTOP_STRUCT to allow component access on OpenCL vectors.  */
-    case STRUCTOP_STRUCT:
-      {
-       int pc = (*pos)++;
-       int tem = longest_to_int (exp->elts[pc + 1].longconst);
-
-       (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
-       arg1 = evaluate_subexp (nullptr, exp, pos, noside);
-       type1 = check_typedef (value_type (arg1));
-
-       if (noside == EVAL_SKIP)
-         {
-           return value_from_longest (builtin_type (exp->gdbarch)->
-                                      builtin_int, 1);
-         }
-       else if (type1->code () == TYPE_CODE_ARRAY && type1->is_vector ())
-         {
-           return opencl_component_ref (exp, arg1, &exp->elts[pc + 2].string,
-                                        noside);
-         }
-       else
-         {
-           struct value *v = value_struct_elt (&arg1, NULL,
-                                               &exp->elts[pc + 2].string, NULL,
-                                               "structure");
-
-           if (noside == EVAL_AVOID_SIDE_EFFECTS)
-             v = value_zero (value_type (v), VALUE_LVAL (v));
-           return v;
-         }
-      }
-    default:
-      break;
+      return ret;
     }
-
-  return evaluate_subexp_c (expect_type, exp, pos, noside);
-}
-
-namespace expr
-{
-
-value *
-opencl_structop_operation::evaluate (struct type *expect_type,
-                                    struct expression *exp,
-                                    enum noside noside)
-{
-  value *arg1 = std::get<0> (m_storage)->evaluate (nullptr, exp, noside);
-  struct type *type1 = check_typedef (value_type (arg1));
-
-  if (type1->code () == TYPE_CODE_ARRAY && type1->is_vector ())
-    return opencl_component_ref (exp, arg1, std::get<1> (m_storage).c_str (),
-                                noside);
   else
     {
-      struct value *v = value_struct_elt (&arg1, NULL,
-                                         std::get<1> (m_storage).c_str (),
-                                         NULL, "structure");
-
-      if (noside == EVAL_AVOID_SIDE_EFFECTS)
-       v = value_zero (value_type (v), VALUE_LVAL (v));
-      return v;
+      if (value_logical_not (arg1))
+       return std::get<2> (m_storage)->evaluate (nullptr, exp, noside);
+      else
+       return std::get<1> (m_storage)->evaluate (nullptr, exp, noside);
     }
 }
 
 } /* namespace expr */
 
-const struct exp_descriptor exp_descriptor_opencl =
-{
-  print_subexp_standard,
-  operator_length_standard,
-  operator_check_standard,
-  dump_subexp_body_standard,
-  evaluate_subexp_opencl
-};
-
 /* Class representing the OpenCL language.  */
 
 class opencl_language : public language_defn
@@ -1108,23 +969,13 @@ public:
          show = 0;
       }
 
-    c_print_type (type, varstring, stream, show, level, flags);
+    c_print_type (type, varstring, stream, show, level, la_language, flags);
   }
 
   /* See language.h.  */
 
   enum macro_expansion macro_expansion () const override
   { return macro_expansion_c; }
-
-  /* See language.h.  */
-
-  const struct exp_descriptor *expression_ops () const override
-  { return &exp_descriptor_opencl; }
-
-  /* See language.h.  */
-
-  const struct op_print *opcode_print_table () const override
-  { return c_op_print_tab; }
 };
 
 /* Single instance of the OpenCL language class.  */