diff options
author | Tom Tromey <tom@tromey.com> | 2021-03-08 07:27:57 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-03-08 07:28:23 -0700 |
commit | cbc18219d313984150f25af6cc66c866e1686190 (patch) | |
tree | 3d389830898d13f65dc6f509c785e461010286a6 /gdb/ax-gdb.c | |
parent | ae4bb61e199c90c71e3482169233a0f40f446484 (diff) | |
download | gdb-cbc18219d313984150f25af6cc66c866e1686190.zip gdb-cbc18219d313984150f25af6cc66c866e1686190.tar.gz gdb-cbc18219d313984150f25af6cc66c866e1686190.tar.bz2 |
Implement UNOP_MEMVAL and UNOP_MEMVAL_TYPE
This adds class unop_memval_operation and unop_memval_type_operation,
which implement UNOP_MEMVAL and UNOP_MEMVAL_TYPE.
gdb/ChangeLog
2021-03-08 Tom Tromey <tom@tromey.com>
* expop.h (class unop_memval_operation)
(class unop_memval_type_operation): New.
* eval.c (eval_op_memval): No longer static.
(unop_memval_operation::evaluate_for_address)
(unop_memval_type_operation::evaluate_for_address)
(unop_memval_operation::evaluate_for_sizeof)
(unop_memval_type_operation::evaluate_for_sizeof): New methods.
* ax-gdb.c (unop_memval_operation::do_generate_ax)
(unop_memval_type_operation::do_generate_ax): New methods.
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r-- | gdb/ax-gdb.c | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c index 756f4d7..6514e40 100644 --- a/gdb/ax-gdb.c +++ b/gdb/ax-gdb.c @@ -2514,6 +2514,46 @@ unop_sizeof_operation::do_generate_ax (struct expression *exp, value->type = builtin_type (ax->gdbarch)->builtin_int; } +void +unop_memval_operation::do_generate_ax (struct expression *exp, + struct agent_expr *ax, + struct axs_value *value, + struct type *cast_type) +{ + std::get<0> (m_storage)->generate_ax (exp, ax, value); + /* If we have an axs_rvalue or an axs_lvalue_memory, then we + already have the right value on the stack. For + axs_lvalue_register, we must convert. */ + if (value->kind == axs_lvalue_register) + require_rvalue (ax, value); + + value->type = std::get<1> (m_storage); + value->kind = axs_lvalue_memory; +} + +void +unop_memval_type_operation::do_generate_ax (struct expression *exp, + struct agent_expr *ax, + struct axs_value *value, + struct type *cast_type) +{ + struct value *val + = std::get<0> (m_storage)->evaluate (nullptr, exp, + EVAL_AVOID_SIDE_EFFECTS); + struct type *type = value_type (val); + + std::get<1> (m_storage)->generate_ax (exp, ax, value); + + /* If we have an axs_rvalue or an axs_lvalue_memory, then we + already have the right value on the stack. For + axs_lvalue_register, we must convert. */ + if (value->kind == axs_lvalue_register) + require_rvalue (ax, value); + + value->type = type; + value->kind = axs_lvalue_memory; +} + } /* This handles the middle-to-right-side of code generation for binary |