From: Stefan Weil <weil@mail.berlios.de>
To: Blue Swirl <blauwirbel@gmail.com>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH] elf: Calculate symbol size if needed
Date: Thu, 09 Sep 2010 19:42:54 +0200 [thread overview]
Message-ID: <4C891C9E.7030807@mail.berlios.de> (raw)
In-Reply-To: <AANLkTi=O-BhV1Fbkixt6zCqAn0xtCKOObBjT4Zi0LjWs@mail.gmail.com>
Am 11.08.2010 18:21, schrieb Blue Swirl:
> On Mon, Aug 9, 2010 at 2:43 PM, Stefan Weil<weil@mail.berlios.de> wrote:
>
>> Symbols with a size of 0 are unusable for the disassembler.
>>
>> Example:
>>
>> While running an arm linux kernel, no symbolic names are
>> used in qemu.log when the cpu is executing an assembler function.
>>
> That is a problem of the assembler function, it should use '.size'
> directive like what happens when C code is compiled. And why just ARM?
>
>
>> Assume that the size of such symbols is the difference to the
>> next symbol value.
>>
>> Signed-off-by: Stefan Weil<weil@mail.berlios.de>
>> ---
>> hw/elf_ops.h | 5 +++++
>> 1 files changed, 5 insertions(+), 0 deletions(-)
>>
>> diff --git a/hw/elf_ops.h b/hw/elf_ops.h
>> index 27d1ab9..0bd7235 100644
>> --- a/hw/elf_ops.h
>> +++ b/hw/elf_ops.h
>> @@ -153,6 +153,11 @@ static int glue(load_symbols, SZ)(struct elfhdr *ehdr, int fd, int must_swab,
>> syms = qemu_realloc(syms, nsyms * sizeof(*syms));
>>
>> qsort(syms, nsyms, sizeof(*syms), glue(symcmp, SZ));
>> + for (i = 0; i< nsyms - 1; i++) {
>> + if (syms[i].st_size == 0) {
>> + syms[i].st_size = syms[i + 1].st_value - syms[i].st_value;
>> + }
>> + }
>>
> The size of the last symbol is not guesstimated, it could be assumed
> to be _etext - syms[nsyms].st_value.
>
>
>> } else {
>> qemu_free(syms);
>> syms = NULL;
>> --
>> 1.7.1
>
The patch is still missing in qemu master.
From the two feedbacks I did not read that anything needs to be changed.
Was I wrong, or can it be applied?
next prev parent reply other threads:[~2010-09-09 17:43 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-09 14:43 [Qemu-devel] [PATCH] elf: Calculate symbol size if needed Stefan Weil
2010-08-11 16:21 ` Blue Swirl
2010-08-11 18:03 ` Stefan Weil
2010-09-09 17:42 ` Stefan Weil [this message]
2010-09-09 18:44 ` Blue Swirl
2010-09-09 19:11 ` Stefan Weil
2010-09-09 19:29 ` Blue Swirl
2010-09-09 19:34 ` Stefan Weil
2010-09-09 19:36 ` Blue Swirl
2010-09-09 21:07 ` Edgar E. Iglesias
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=4C891C9E.7030807@mail.berlios.de \
--to=weil@mail.berlios.de \
--cc=aliguori@us.ibm.com \
--cc=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
/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 NNTP newsgroup(s).