Introduce string_operation
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:28:16 +0000 (07:28 -0700)
This adds string_operation, which implements OP_STRING for most
languages (C has its own variant).

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

* expop.h (class string_operation): New.
* eval.c (eval_op_string): No longer static.

gdb/ChangeLog
gdb/eval.c
gdb/expop.h

index 05f67b855b70d8d2fb09e078da80de0898744342..ddf93421490228f854c7c7c1336061f1a89a49ea 100644 (file)
@@ -1,3 +1,8 @@
+2021-03-08  Tom Tromey  <tom@tromey.com>
+
+       * expop.h (class string_operation): New.
+       * eval.c (eval_op_string): No longer static.
+
 2021-03-08  Tom Tromey  <tom@tromey.com>
 
        * expop.h (class internalvar_operation): New.
index 4601c92ed5f4c1751c3ad2b9c0e66515acdc10bc..e68a93d15c77f2cd3aed492ca5872c0d78b1df6d 100644 (file)
@@ -1284,7 +1284,7 @@ eval_op_register (struct type *expect_type, struct expression *exp,
 
 /* Helper function that implements the body of OP_STRING.  */
 
-static struct value *
+struct value *
 eval_op_string (struct type *expect_type, struct expression *exp,
                enum noside noside, int len, const char *string)
 {
index d143815a25958cd6ca9be514269498f2d8f0d2e5..802be81bda7bcaf48e4c42e387373504c6105193 100644 (file)
@@ -61,6 +61,10 @@ extern struct value *eval_op_func_static_var (struct type *expect_type,
 extern struct value *eval_op_register (struct type *expect_type,
                                       struct expression *exp,
                                       enum noside noside, const char *name);
+extern struct value *eval_op_string (struct type *expect_type,
+                                    struct expression *exp,
+                                    enum noside noside, int len,
+                                    const char *string);
 
 namespace expr
 {
@@ -681,6 +685,26 @@ protected:
     override;
 };
 
+class string_operation
+  : public tuple_holding_operation<std::string>
+{
+public:
+
+  using tuple_holding_operation::tuple_holding_operation;
+
+  value *evaluate (struct type *expect_type,
+                  struct expression *exp,
+                  enum noside noside) override
+  {
+    const std::string &str = std::get<0> (m_storage);
+    return eval_op_string (expect_type, exp, noside,
+                          str.size (), str.c_str ());
+  }
+
+  enum exp_opcode opcode () const override
+  { return OP_STRING; }
+};
+
 } /* namespace expr */
 
 #endif /* EXPOP_H */