Introduce bool_operation

This adds class bool_operation, which implements OP_BOOL.

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

	* expop.h (class bool_operation): New.
This commit is contained in:
Tom Tromey 2021-03-08 07:27:57 -07:00
parent 55bdbff857
commit e6985c5e45
2 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2021-03-08 Tom Tromey <tom@tromey.com>
* expop.h (class bool_operation): New.
2021-03-08 Tom Tromey <tom@tromey.com>
* expop.h (class register_operation): New.

View File

@ -627,6 +627,28 @@ protected:
override;
};
class bool_operation
: public tuple_holding_operation<bool>
{
public:
using tuple_holding_operation::tuple_holding_operation;
value *evaluate (struct type *expect_type,
struct expression *exp,
enum noside noside) override
{
struct type *type = language_bool_type (exp->language_defn, exp->gdbarch);
return value_from_longest (type, std::get<0> (m_storage));
}
enum exp_opcode opcode () const override
{ return OP_BOOL; }
bool constant_p () const override
{ return true; }
};
} /* namespace expr */
#endif /* EXPOP_H */