mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
Introduce ada_bitwise_operation
This adds class ada_bitwise_operation, which is used to implement the Ada bitwise operators. gdb/ChangeLog 2021-03-08 Tom Tromey <tom@tromey.com> * ada-exp.h (ada_bitwise_operation): New template class. (ada_bitwise_and_operation, ada_bitwise_ior_operation) (ada_bitwise_xor_operation): New typedefs.
This commit is contained in:
parent
6e8fb7b723
commit
039e4b76be
@ -1,3 +1,9 @@
|
||||
2021-03-08 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* ada-exp.h (ada_bitwise_operation): New template class.
|
||||
(ada_bitwise_and_operation, ada_bitwise_ior_operation)
|
||||
(ada_bitwise_xor_operation): New typedefs.
|
||||
|
||||
2021-03-08 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* ada-lang.c (ada_equal_binop): No longer static.
|
||||
|
@ -186,6 +186,33 @@ class ada_binop_equal_operation
|
||||
{ return std::get<0> (m_storage); }
|
||||
};
|
||||
|
||||
/* Bitwise operators for Ada. */
|
||||
template<enum exp_opcode OP>
|
||||
class ada_bitwise_operation
|
||||
: public maybe_constant_operation<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 *lhs = std::get<0> (m_storage)->evaluate (nullptr, exp, noside);
|
||||
value *rhs = std::get<1> (m_storage)->evaluate (nullptr, exp, noside);
|
||||
value *result = eval_op_binary (expect_type, exp, noside, OP, lhs, rhs);
|
||||
return value_cast (value_type (lhs), result);
|
||||
}
|
||||
|
||||
enum exp_opcode opcode () const override
|
||||
{ return OP; }
|
||||
};
|
||||
|
||||
using ada_bitwise_and_operation = ada_bitwise_operation<BINOP_BITWISE_AND>;
|
||||
using ada_bitwise_ior_operation = ada_bitwise_operation<BINOP_BITWISE_IOR>;
|
||||
using ada_bitwise_xor_operation = ada_bitwise_operation<BINOP_BITWISE_XOR>;
|
||||
|
||||
} /* namespace expr */
|
||||
|
||||
#endif /* ADA_EXP_H */
|
||||
|
Loading…
Reference in New Issue
Block a user