From: Simon Marchi via Gdb-patches <gdb-patches@sourceware.org>
To: Zoran Zaric <Zoran.Zaric@amd.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH 16/43] Simplify dwarf_expr_context class interface
Date: Tue, 27 Apr 2021 22:45:20 -0400 [thread overview]
Message-ID: <cee363d7-65f2-b723-1949-f8bdc0f81670@polymtl.ca> (raw)
In-Reply-To: <20210301144620.103016-17-Zoran.Zaric@amd.com>
On 2021-03-01 9:45 a.m., Zoran Zaric via Gdb-patches wrote:
> From: Zoran Zaric <zoran.zaric@amd.com>
>
> Idea of this patch is to get a clean and simple public interface for
> the dwarf_expr_context class, looking like:
>
> - constructor,
> - destructor,
> - push_address method and
> - evaluate method.
>
> Where constructor should only ever require a target architecture
> information. This information is held in per object file
> (dwarf2_per_objfile) structure, so it makes sense to keep that
> structure as a constructor argument. It also makes sense to get the
> address size from that structure, but unfortunately that interface
> doesn’t exist at the moment, so the dwarf_expr_context class user
> needs to provide that information.
>
> The push_address method is used to push a CORE_ADDR as a value on
> top of the DWARF stack before the evaluation. This method can be
> later changed to push any struct value object on the stack.
>
> The evaluate method is the method that evaluates a DWARF expression
> and provides the evaluation result, in a form of a single struct
> value object that describes a location. To do this, the method requires
> a context of the evaluation, as well as expected result type
> information. If the type information is not provided, the DWARF generic
> type will be used instead.
>
> gdb/ChangeLog:
>
> * dwarf2/expr.c (dwarf_expr_context::dwarf_expr_context): Add
> address size argument.
> (dwarf_expr_context::read_mem): Change to use property_addr_info
> structure.
> (dwarf_expr_context::evaluate): New function.
> (dwarf_expr_context::execute_stack_op): Change to use
> property_addr_info structure.
> * dwarf2/expr.h (struct dwarf_expr_context): New evaluate
> declaration. Change eval and fetch_result method to private.
> * dwarf2/frame.c (execute_stack_op): Change to call evaluate
> method.
> * dwarf2/loc.c (dwarf2_evaluate_loc_desc_full): Change to call
> evaluate method.
> (dwarf2_locexpr_baton_eval): Change to call evaluate method.
> ---
> gdb/dwarf2/expr.c | 49 ++++++++++++++++++++++++++++++++++++----------
> gdb/dwarf2/expr.h | 44 +++++++++++++++++++++++++++--------------
> gdb/dwarf2/frame.c | 18 ++++-------------
> gdb/dwarf2/loc.c | 41 ++++++++++++--------------------------
> 4 files changed, 85 insertions(+), 67 deletions(-)
>
> diff --git a/gdb/dwarf2/expr.c b/gdb/dwarf2/expr.c
> index b2248681899..1645f477d74 100644
> --- a/gdb/dwarf2/expr.c
> +++ b/gdb/dwarf2/expr.c
> @@ -699,8 +699,11 @@ dwarf_expr_context::address_type () const
>
> /* Create a new context for the expression evaluator. */
>
> -dwarf_expr_context::dwarf_expr_context (dwarf2_per_objfile *per_objfile)
> -: per_objfile (per_objfile)
> +dwarf_expr_context::dwarf_expr_context (dwarf2_per_objfile *per_objfile,
> + int addr_size)
> +: gdbarch (per_objfile->objfile->arch ()),
If gdbarch is always obtained from the objfile, we could maybe avoid
storing it.
> + addr_size (addr_size),
> + per_objfile (per_objfile)
> {
> }
>
> @@ -825,13 +828,17 @@ dwarf_expr_context::read_mem (gdb_byte *buf, CORE_ADDR addr,
> return;
>
> /* Prefer the passed-in memory, if it exists. */
> - CORE_ADDR offset = addr - obj_address;
> + if (addr_info != nullptr)
> + {
> + CORE_ADDR offset = addr - addr_info->addr;
>
> - if (offset < data_view.size () && offset + length <= data_view.size ())
> + if (offset < addr_info->valaddr.size ()
> + && offset + length <= addr_info->valaddr.size ())
> {
> - memcpy (buf, data_view.data (), length);
> + memcpy (buf, addr_info->valaddr.data (), length);
Not related to this patch, but: I find it odd that the field `valaddr`
contains the object's value. Why is it called like that?
> return;
> }
> + }
The indentation here is not right.
>
> read_memory (addr, buf, length);
> }
> @@ -874,8 +881,8 @@ dwarf_expr_context::push_dwarf_reg_entry_value
> caller_frame);
> scoped_restore save_per_cu = make_scoped_restore (&this->per_cu,
> caller_per_cu);
> - scoped_restore save_obj_addr = make_scoped_restore (&this->obj_address,
> - (CORE_ADDR) 0);
> + scoped_restore save_addr_info = make_scoped_restore (&this->addr_info,
> + nullptr);
> scoped_restore save_per_objfile = make_scoped_restore (&this->per_objfile,
> caller_per_objfile);
>
> @@ -1043,6 +1050,28 @@ dwarf_expr_context::fetch_result (struct type *type,
> return retval;
> }
>
> +/* See expr.h. */
> +
> +struct value *
> +dwarf_expr_context::evaluate (const gdb_byte *addr, size_t len,
> + struct dwarf2_per_cu_data *per_cu,
> + struct frame_info *frame,
> + const struct property_addr_info *addr_info,
> + struct type *type,
> + struct type *subobj_type,
> + LONGEST subobj_offset)
> +{
> + this->per_cu = per_cu;
> + this->frame = frame;
> + this->addr_info = addr_info;
> +
> + if (per_cu != nullptr)
> + this->ref_addr_size = per_cu->ref_addr_size ();
As mentioned in a previous message, I have the feeling that we could get
rid of the ref_addr_size field and just call per_cu->ref_addr_size when
we need it. It could always be a follow-up cleanup.
> +
> + eval (addr, len);
> + return fetch_result (type, subobj_type, subobj_offset);
This is just me, not an officiel style rule, when I like to use `this->`
when accessing fields and methods, to make it clear what they are (not
global variables or free functions). Although for fields prefixed with
`m_`, I don't, because it's already obvious by the naming.
> diff --git a/gdb/dwarf2/expr.h b/gdb/dwarf2/expr.h
> index a0ac21f2ed1..d1374068732 100644
> --- a/gdb/dwarf2/expr.h
> +++ b/gdb/dwarf2/expr.h
> @@ -119,19 +119,30 @@ struct dwarf_stack_value
> its current state and its callbacks. */
> struct dwarf_expr_context
> {
> - dwarf_expr_context (dwarf2_per_objfile *per_objfile);
> + /* We should ever only pass in the PER_OBJFILE, while the ADDR_SIZE
> + information should be retrievable from there. The PER_OBJFILE
> + contains a pointer to the PER_BFD information anyway and the
> + address size information must be the same for the whole BFD. */
> + dwarf_expr_context (struct dwarf2_per_objfile *per_objfile,
> + int addr_size);
I don't really understand the comment. What do you mean by "We should
ever only pass..."? In general, I don't find that the comment helps me
understand what the parameters are and do. Try to change it to be more
concrete and straight to the point.
> virtual ~dwarf_expr_context () = default;
>
> void push_address (CORE_ADDR value, bool in_stack_memory);
> - void eval (const gdb_byte *addr, size_t len);
>
> - /* Fetch the result of the expression evaluation in a form of
> - a struct value, where TYPE, SUBOBJ_TYPE and SUBOBJ_OFFSET
> - describe the source level representation of that result. */
> - struct value *fetch_result (struct type *type = nullptr,
> - struct type *subobj_type = nullptr,
> - LONGEST subobj_offset = 0);
> + /* Evaluate the expression at ADDR (LEN bytes long) in a given PER_CU
> + FRAME context. Where TYPE, SUBOBJ_TYPE and SUBOBJ_OFFSET describe
> + expected struct value representation of the evaluation result.
> + The ADDR_INFO property can be specified to override the range of
> + memory addresses with the passed in buffer. */
It sounds like you are missing a word between PER_CU and FRAME.
The sentence starting with "Where" sounds strange, I'd remove the
"Where" to make it a simple statement.
It sounds like you are missing a "the" between "describe" and
"expected".
> + struct value *evaluate (const gdb_byte *addr, size_t len,
> + struct dwarf2_per_cu_data *per_cu,
> + struct frame_info *frame,
> + const struct property_addr_info *addr_info = nullptr,
> + struct type *type = nullptr,
> + struct type *subobj_type = nullptr,
> + LONGEST subobj_offset = 0);
Note to self that ADDR + LEN would be good candidates to become a
gdb::array_view later.
>
> +private:
> /* The stack of values. */
> std::vector<dwarf_stack_value> stack;
If all these fields become private, it would be good to rename them to
add the `m_` prefix. It could be done at the end (if not already done
later in the series), to avoid the conflicts.
Simon
next prev parent reply other threads:[~2021-04-28 2:45 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-01 14:45 [PATCH 00/43 V2] Allow location description on the DWARF stack Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 01/43] Replace the symbol needs evaluator with a parser Zoran Zaric via Gdb-patches
2021-04-27 1:20 ` Simon Marchi via Gdb-patches
2021-04-28 10:17 ` Zoran Zaric via Gdb-patches
2021-04-28 14:08 ` Simon Marchi via Gdb-patches
2021-04-28 15:02 ` Zoran Zaric via Gdb-patches
2021-04-28 15:31 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 02/43] Cleanup of the dwarf_expr_context constructor Zoran Zaric via Gdb-patches
2021-04-27 1:23 ` Simon Marchi via Gdb-patches
2021-04-28 10:19 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 03/43] Move frame context info to dwarf_expr_context Zoran Zaric via Gdb-patches
2021-04-27 2:19 ` Simon Marchi via Gdb-patches
2021-04-28 10:51 ` Zoran Zaric via Gdb-patches
2021-04-28 14:14 ` Simon Marchi via Gdb-patches
2021-04-28 15:55 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 04/43] Remove get_frame_cfa from dwarf_expr_context Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 05/43] Move compilation unit info to dwarf_expr_context Zoran Zaric via Gdb-patches
2021-04-27 2:58 ` Simon Marchi via Gdb-patches
2021-04-28 11:28 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 06/43] Move dwarf_call " Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 07/43] Move get_object_address " Zoran Zaric via Gdb-patches
2021-04-27 3:12 ` Simon Marchi via Gdb-patches
2021-04-28 11:34 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 08/43] Move read_mem " Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 09/43] Move push_dwarf_reg_entry_value to expr.c Zoran Zaric via Gdb-patches
2021-04-27 3:56 ` Simon Marchi via Gdb-patches
2021-04-28 11:36 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 10/43] Inline get_reg_value method of dwarf_expr_context Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 11/43] Remove empty frame and full evaluators Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 12/43] Merge evaluate_for_locexpr_baton evaluator Zoran Zaric via Gdb-patches
2021-04-28 1:33 ` Simon Marchi via Gdb-patches
2021-04-28 11:39 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 13/43] Move piece_closure and its support to expr.c Zoran Zaric via Gdb-patches
2021-04-28 1:56 ` Simon Marchi via Gdb-patches
2021-04-28 11:40 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 14/43] Make value_copy also copy the stack data member Zoran Zaric via Gdb-patches
2021-04-28 2:01 ` Simon Marchi via Gdb-patches
2021-04-28 11:43 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 15/43] Make DWARF evaluator return a single struct value Zoran Zaric via Gdb-patches
2021-04-28 2:21 ` Simon Marchi via Gdb-patches
2021-04-28 11:47 ` Zoran Zaric via Gdb-patches
2021-04-28 14:24 ` Simon Marchi via Gdb-patches
2021-03-01 14:45 ` [PATCH 16/43] Simplify dwarf_expr_context class interface Zoran Zaric via Gdb-patches
2021-04-28 2:45 ` Simon Marchi via Gdb-patches [this message]
2021-04-28 13:15 ` Zoran Zaric via Gdb-patches
2021-04-28 14:41 ` Simon Marchi via Gdb-patches
2021-04-28 15:39 ` Zoran Zaric via Gdb-patches
2021-04-28 19:19 ` Simon Marchi via Gdb-patches
2021-04-29 15:49 ` Simon Marchi via Gdb-patches
2021-04-29 15:55 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 17/43] Add as_lval argument to expression evaluator Zoran Zaric via Gdb-patches
2021-04-28 3:04 ` Simon Marchi via Gdb-patches
2021-04-28 13:16 ` Zoran Zaric via Gdb-patches
2021-04-28 3:30 ` Simon Marchi via Gdb-patches
2021-03-01 14:45 ` [PATCH 18/43] Add new register access interface to expr.c Zoran Zaric via Gdb-patches
2021-03-08 23:52 ` Lancelot SIX via Gdb-patches
2021-04-28 3:25 ` Simon Marchi via Gdb-patches
2021-04-28 13:29 ` Zoran Zaric via Gdb-patches
2021-04-28 14:48 ` Simon Marchi via Gdb-patches
2021-04-28 15:42 ` Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 19/43] Add new memory " Zoran Zaric via Gdb-patches
2021-04-30 21:24 ` Simon Marchi via Gdb-patches
2021-03-01 14:45 ` [PATCH 20/43] Add new classes that model DWARF stack element Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 21/43] Add to_location method to DWARF entry classes Zoran Zaric via Gdb-patches
2021-03-01 14:45 ` [PATCH 22/43] Add to_value " Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 23/43] Add read method to location description classes Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 24/43] Add write " Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 25/43] Add deref " Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 26/43] Add read_from_gdb_value method to dwarf_location Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 27/43] Add write_to_gdb_value " Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 28/43] Add is_implicit_ptr_at " Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 29/43] Add indirect_implicit_ptr to dwarf_location class Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 30/43] Add new computed struct value callback interface Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 31/43] Add to_gdb_value method to DWARF entry class Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 32/43] Change DWARF stack to use new dwarf_entry classes Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 33/43] Remove old computed struct value callbacks Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 34/43] Comments cleanup between expr.h and expr.c Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 35/43] Remove dwarf_expr_context from expr.h interface Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 36/43] Move read_addr_from_reg function to frame.c Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 37/43] Add frame info check to DW_OP_reg operations Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 38/43] Remove DWARF expression composition check Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 39/43] Change back the symbol needs to use the evaluator Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 40/43] Add support for any location description in CFI Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 41/43] Add DWARF operations for byte and bit offset Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 42/43] Add support for DW_OP_LLVM_undefined operation Zoran Zaric via Gdb-patches
2021-03-01 14:46 ` [PATCH 43/43] Add support for nested composite locations Zoran Zaric via Gdb-patches
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cee363d7-65f2-b723-1949-f8bdc0f81670@polymtl.ca \
--to=gdb-patches@sourceware.org \
--cc=Zoran.Zaric@amd.com \
--cc=simon.marchi@polymtl.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox