public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Zoran Zaric <Zoran.Zaric@amd.com>
To: Tom Tromey <tom@tromey.com>,
	Zoran Zaric via Gdb-patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH 19/30] Add new location description access interface
Date: Tue, 23 Feb 2021 14:49:54 +0000	[thread overview]
Message-ID: <28ce52db-fc37-c5e1-f845-a5fbcb455739@amd.com> (raw)
In-Reply-To: <82aea0d9-ee82-9f59-befe-f02a47f0d871@amd.com>


>> Thank you Tom for the review.
>>
>> To be honest, I am not sure how to do this with virtual functions, 
>> considering that the information held by the different location 
>> descriptions categories are so very different.
>>
>> The only way how I can see this being implemented if I encapsulate all 
>> the specifics of dealing with the different location descriptions 
>> (reading, writing, conversions between them and the composite/implicit 
>> pointer infrastructure) inside of that class hierarchy and change the 
>> dwarf_entry class to have a bunch of virtual functions that only make 
>> sense for one location description category.
>>
>> The reason why I didn't implement it that way in the first place is 
>> because I was following the existing model of how the struct value 
>> handling was implemented, where instead of dynamic casting there is an 
>> enumeration check to figure out what is described by an object.
>>
>> Don't get me wrong, I am not really against that change, but it would 
>> require a bit serious rework of the implementation.
>>
>> So if you really feel that this is a deal breaker, I could give 
>> another crack at it in the next version.
>>
>> Zoran
>>
> 
> After rereading my response, I realized that I probably need to explain 
> my thought process a bit more.
> 
> In the original code there were large switch cases that dealt with the 
> evaluation result (aka location description) based on a result 
> enumeration. This was done in two places:
> 
> - at the evaluator caller side and
> - composite/implicit pointer callback functions.
> 
> I first moved those pieces to be at the expr.c side and then when I 
> switched to the new classes, I have replaced the big switch statement, 
> with the if/else statements that used the dynamic cast to cast to the 
> appropriate class instead to referring to the enumeration to know which 
> data members are valid or not.
> 
> So in a sense, the ugly code was already there. Not to mention that the 
> struct value infrastructure is based on the same model.
> 
> Originally, I had an enumeration that would be checked inside of the 
> dwarf_entry class and return an object of the correct class but that was 
> functionally the same as having the dynamic cast so people advised me to 
> just use the dynamic cast because it was already used in gdb.
> 
> So Tom, when you say that the type-case looks bad, do you mean just the 
> fact that I am using the dynamic cast or the problem is more general 
> because the dwarf_entry class is supposed to encapsulate all that logic?
> 
> For the dynamic cast issue, I can always switch back to the enumeration 
> methodology that I've described and is similar to what was there before.
> 
> In the case of a potentially better design of the dwarf_entry classes, I 
> couldn't agree more. I was trying to first mimic the previous mechanism 
> so that people would find it easier to understand and accept.
> 
> The proper encapsulation was planned for a later time, but to be frank 
> the struct value requires the same type of remake which is not a modest 
> task in either case.
> 
> Hope this makes more sense,
> Zoran

Hi Tom,

I've invested a lot of time during the last two weeks and managed to 
change the design to be more C++ based and now most of the dynamic 
casting has been replaced with virtual functions which made the code a 
lot more elegant.

Unfortunately, there are still a few places left that use the casting 
but those are limited to the evaluator parts that model the logic behind 
how some of the DWARF operations are defined in the standard, which 
don't really make sense to be a DWARF entry class virtual functions.

This will all make more sense when I submit the new version of my patch 
series in a few days.

Zoran



  reply	other threads:[~2021-02-23 14:50 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-07 19:00 [PATCH 00/30] Allow location description on the DWARF stack Zoran Zaric
2020-12-07 19:00 ` [PATCH 01/30] Replace the symbol needs evaluator with a parser Zoran Zaric
2021-01-21 21:16   ` Tom Tromey
2021-01-21 21:48     ` Zoran Zaric
2021-02-23 14:15     ` Zoran Zaric
2020-12-07 19:00 ` [PATCH 02/30] Move frame context info to dwarf_expr_context Zoran Zaric
2021-01-21 21:23   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 03/30] Remove get_frame_cfa from dwarf_expr_context Zoran Zaric
2021-01-21 21:23   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 04/30] Move compilation unit info to dwarf_expr_context Zoran Zaric
2021-01-21 21:28   ` Tom Tromey
2021-02-23 14:21     ` Zoran Zaric
2020-12-07 19:00 ` [PATCH 05/30] Move dwarf_call " Zoran Zaric
2021-01-21 21:30   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 06/30] Move get_object_address " Zoran Zaric
2021-01-21 21:31   ` Tom Tromey
2021-02-23 14:33     ` Zoran Zaric
2020-12-07 19:00 ` [PATCH 07/30] Move read_mem " Zoran Zaric
2021-01-21 21:34   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 08/30] Move push_dwarf_reg_entry_value to expr.c Zoran Zaric
2021-01-21 21:35   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 09/30] Inline get_reg_value method of dwarf_expr_context Zoran Zaric
2021-01-21 21:36   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 10/30] Remove empty frame and full evaluators Zoran Zaric
2021-01-21 21:37   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 11/30] Merge evaluate_for_locexpr_baton evaluator Zoran Zaric
2021-02-08 21:21   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 12/30] Move piece_closure and its support to expr.c Zoran Zaric
2021-02-08 21:32   ` Tom Tromey
2021-02-09 14:53     ` Zoran Zaric
2020-12-07 19:00 ` [PATCH 13/30] Make DWARF evaluator return a single struct value Zoran Zaric
2021-02-08 21:35   ` Tom Tromey
2021-02-09 14:55     ` Zoran Zaric
2021-02-09 17:13       ` Tom Tromey
2020-12-07 19:00 ` [PATCH 14/30] Simplify dwarf_expr_context class interface Zoran Zaric
2021-02-08 21:38   ` Tom Tromey
2021-02-09 14:56     ` Zoran Zaric
2021-02-23 14:38     ` Zoran Zaric
2020-12-07 19:00 ` [PATCH 15/30] Add as_lval argument to expression evaluator Zoran Zaric
2021-02-08 21:41   ` Tom Tromey
2021-02-09 15:25     ` Zoran Zaric
2021-02-09 20:33       ` Tom Tromey
2020-12-07 19:00 ` [PATCH 16/30] Add new register access interface to expr.c Zoran Zaric
2021-02-09 19:37   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 17/30] Add new memory " Zoran Zaric
2021-02-09 19:45   ` Tom Tromey
2021-02-23 15:35     ` Zoran Zaric
2020-12-07 19:00 ` [PATCH 18/30] Add new classes that model DWARF stack element Zoran Zaric
2021-02-08 21:54   ` Tom Tromey
2021-02-09 17:34     ` Zoran Zaric
2021-02-09 20:36       ` Tom Tromey
2021-02-09 21:07         ` Tom Tromey
2021-02-09 21:26           ` Zoran Zaric
2021-02-23 14:57             ` Zoran Zaric
2020-12-07 19:00 ` [PATCH 19/30] Add new location description access interface Zoran Zaric
2021-02-08 21:46   ` Tom Tromey
2021-02-09 16:00     ` Zoran Zaric
2021-02-09 17:30       ` Zoran Zaric
2021-02-23 14:49         ` Zoran Zaric [this message]
2020-12-07 19:00 ` [PATCH 20/30] Add dwarf_entry factory class to expr.c Zoran Zaric
2021-02-09 19:54   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 21/30] Change DWARF stack to use new dwarf_entry classes Zoran Zaric
2021-02-09 20:11   ` Tom Tromey
2020-12-07 19:00 ` [PATCH 22/30] Remove dwarf_expr_context from expr.h interface Zoran Zaric
2020-12-07 19:00 ` [PATCH 23/30] Rename and update the piece_closure structure Zoran Zaric
2020-12-07 19:00 ` [PATCH 24/30] Move read_addr_from_reg function to frame.c Zoran Zaric
2020-12-07 19:00 ` [PATCH 25/30] Add frame info check to DW_OP_reg operations Zoran Zaric
2020-12-07 19:00 ` [PATCH 26/30] Remove DWARF expression composition check Zoran Zaric
2020-12-07 19:00 ` [PATCH 27/30] Add support for any location description in CFI Zoran Zaric
2020-12-07 19:00 ` [PATCH 28/30] Add DWARF operations for byte and bit offset Zoran Zaric
2020-12-07 19:00 ` [PATCH 29/30] Add support for DW_OP_LLVM_undefined operation Zoran Zaric
2020-12-07 19:00 ` [PATCH 30/30] Add support for nested composite locations Zoran Zaric
2020-12-08 14:48 ` [PATCH 00/30] Allow location description on the DWARF stack Metzger, Markus T
2020-12-08 16:17   ` Simon Marchi
2020-12-09  0:30   ` Tye, Tony

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=28ce52db-fc37-c5e1-f845-a5fbcb455739@amd.com \
    --to=zoran.zaric@amd.com \
    --cc=gdb-patches@sourceware.org \
    --cc=tom@tromey.com \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).