+2021-03-08 Tom Tromey <tom@tromey.com>
+
+ * ada-lang.c (ada_ternop_slice): No longer static.
+ * ada-exp.h (class ada_ternop_slice_operation): New.
+
2021-03-08 Tom Tromey <tom@tromey.com>
* ada-exp.h (ada_bitwise_operation): New template class.
struct expression *exp,
enum noside noside, enum exp_opcode op,
struct value *arg1, struct value *arg2);
+extern struct value *ada_ternop_slice (struct expression *exp,
+ enum noside noside,
+ struct value *array,
+ struct value *low_bound_val,
+ struct value *high_bound_val);
namespace expr
{
using ada_bitwise_ior_operation = ada_bitwise_operation<BINOP_BITWISE_IOR>;
using ada_bitwise_xor_operation = ada_bitwise_operation<BINOP_BITWISE_XOR>;
+/* Ada array- or string-slice operation. */
+class ada_ternop_slice_operation
+ : public maybe_constant_operation<operation_up, operation_up, operation_up>
+{
+public:
+
+ using maybe_constant_operation::maybe_constant_operation;
+
+ value *evaluate (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside) override
+ {
+ value *array = std::get<0> (m_storage)->evaluate (nullptr, exp, noside);
+ value *low = std::get<1> (m_storage)->evaluate (nullptr, exp, noside);
+ value *high = std::get<2> (m_storage)->evaluate (nullptr, exp, noside);
+ return ada_ternop_slice (exp, noside, array, low, high);
+ }
+
+ enum exp_opcode opcode () const override
+ { return TERNOP_SLICE; }
+};
+
} /* namespace expr */
#endif /* ADA_EXP_H */