From: Doug Evans <dje@google.com>
To: Yao Qi <yao@codesourcery.com>
Cc: gdb-patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH 3/5] set/show code-cache
Date: Fri, 25 Oct 2013 07:47:00 -0000 [thread overview]
Message-ID: <CADPb22SrY50xeRsKb3T8cY=qYVf=QmMicpRcr9_m79nD0MpwHQ@mail.gmail.com> (raw)
In-Reply-To: <1382516855-32218-4-git-send-email-yao@codesourcery.com>
On Wed, Oct 23, 2013 at 1:27 AM, Yao Qi <yao@codesourcery.com> wrote:
> Similar to stack cache, in this patch, we add
> TARGET_OBJECT_CODE_MEMORY to read code from target and add a new
> option "set code-cache on|off" to control use code cache or not.
>
> The invalidation of code cache is identical to stack cache, with this
> patch, function target_dcache_invalidate invalidates both. Command
> "set {stack,code}-cache" invalidates either of them.
>
> gdb:
>
> 2013-10-23 Yao Qi <yao@codesourcery.com>
>
> * target.c (struct target_dcache) <code>: New field.
> (target_dcache_alloc): Initialize field 'code'.
> (set_stack_cache_enabled_p): Invalidate corresponding dcache.
> (code_cache_enabled_p_1): New.
> (code_cache_enabled_p): New.
> (set_code_cache_enabled_p): New function.
> (show_code_cache_enabled_p): New function.
> (target_dcache_xfree): Free code cache.
> (target_dcache_invalidate): Invalidate code cache.
> (memory_xfer_partial_1): Handle TARGET_OBJECT_CODE_MEMORY and
> code_cache_enabled_p.
> (target_xfer_partial): Likewise.
> (target_read_code): New function.
> (initialize_targets): Register command.
> * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>: New.
> (target_read_code): Declare.
> ---
> gdb/target.c | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
> gdb/target.h | 5 +++
> 2 files changed, 89 insertions(+), 13 deletions(-)
>
> diff --git a/gdb/target.c b/gdb/target.c
> index 2ae42a8..624d41a 100644
> --- a/gdb/target.c
> +++ b/gdb/target.c
> @@ -218,6 +218,9 @@ struct target_dcache
> /* Cache the memory on stack and areas specified by memory
> attributes. */
> DCACHE *general;
> +
> + /* Cache the code. */
> + DCACHE *code;
> };
While perhaps it usually won't be a problem (*1), it's odd to have two caches.
If I do x/10x $addr and then x/10i $addr will both caches get populated?
[Will there be latent bugs due to "storing the same thing twice"?
(which has been a source of bugs in gdb) Plus there's the extra
complexity of keeping both in sync.]
---
(*1): Because it's rarer to request reading areas of memory containing
code vs disassembling it or reading prologues.
next prev parent reply other threads:[~2013-10-25 7:47 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-23 8:29 [PATCH 0/5] Cache code access for disassemble Yao Qi
2013-10-23 8:29 ` [PATCH 5/5] set/show code-cache NEWS and doc Yao Qi
2013-10-23 15:25 ` Eli Zaretskii
2013-10-24 8:26 ` Yao Qi
2013-10-24 15:21 ` Eli Zaretskii
[not found] ` <526A3B07.1020607@codesourcery.com>
2013-10-25 10:01 ` Eli Zaretskii
2013-11-02 0:25 ` Yao Qi
2013-11-02 7:06 ` Eli Zaretskii
2013-10-23 8:29 ` [PATCH 3/5] set/show code-cache Yao Qi
2013-10-25 7:47 ` Doug Evans [this message]
2013-10-25 14:35 ` Yao Qi
2013-10-25 15:57 ` Doug Evans
2013-10-26 13:24 ` Yao Qi
2013-10-28 18:33 ` Doug Evans
2013-10-23 8:29 ` [PATCH 4/5] Use target_read_code in disassemble Yao Qi
2013-10-23 8:29 ` [PATCH 1/5] Add REGISTRY for struct address_space Yao Qi
2013-10-28 20:46 ` Tom Tromey
2013-10-23 8:29 ` [PATCH 2/5] Associate target_dcache to address_space Yao Qi
2013-10-23 16:37 ` Tom Tromey
2013-10-24 8:33 ` Yao Qi
2013-10-28 20:49 ` Tom Tromey
2013-10-28 21:51 ` Doug Evans
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='CADPb22SrY50xeRsKb3T8cY=qYVf=QmMicpRcr9_m79nD0MpwHQ@mail.gmail.com' \
--to=dje@google.com \
--cc=gdb-patches@sourceware.org \
--cc=yao@codesourcery.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