From 944fd3b8126f27569a6a3552b3457ba8a8cc3f87 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 8 Mar 2021 07:27:57 -0700 Subject: Implement OpenCL logical binary operations This implements "&&" and "||" for OpenCL. gdb/ChangeLog 2021-03-08 Tom Tromey * opencl-lang.c (opencl_logical_binop_operation::evaluate): New method. * c-exp.h (class opencl_logical_binop_operation): New. --- gdb/c-exp.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'gdb/c-exp.h') diff --git a/gdb/c-exp.h b/gdb/c-exp.h index 58a16d5..f75b4ae 100644 --- a/gdb/c-exp.h +++ b/gdb/c-exp.h @@ -186,6 +186,23 @@ public: { return STRUCTOP_STRUCT; } }; +/* This handles the "&&" and "||" operations for OpenCL. */ +class opencl_logical_binop_operation + : public tuple_holding_operation +{ +public: + + using tuple_holding_operation::tuple_holding_operation; + + value *evaluate (struct type *expect_type, + struct expression *exp, + enum noside noside) override; + + enum exp_opcode opcode () const override + { return std::get<0> (m_storage); } +}; + }/* namespace expr */ #endif /* C_EXP_H */ -- cgit v1.1