From: Paul Brook <paul@nowt.org>
To: qemu-devel@nongnu.org, sk@z.pl
Subject: Re: [Qemu-devel] Stupid (probably) idea wrt dyngen & gcc 3.4 & 4.0
Date: Mon, 9 May 2005 01:40:56 +0100 [thread overview]
Message-ID: <200505090140.57249.paul@nowt.org> (raw)
In-Reply-To: <200505090202.00547.sk@z.pl>
On Monday 09 May 2005 01:02, Sebastian Kaliszewski wrote:
> Hello!
>
> As I understand the problem with dyngen & GCC 3.4 and newer is that even
> when using the following marcro (line 158 of dynget-exec.h) in op_*
> functions
>
> #define FORCE_RET() asm volatile ("");
>
> GCC still puts multiple exit points of a function.
>
> But did anyone try the following one:
>
> #define FORCE_RET() asm volatile ("" : : : "memory" );
>
> This tells GCC that that asm block clobbers arbitrary memory. If it doesnt
> help, then maybe putting few instructions will help (increasing the weight
> of the code thus convincing optimiser not to multiplicate the asm block)?
>
> #define FORCE_RET() asm volatile ("nop; nop; nop; nop" : : : "memory" );
No. The main problem with gcc3.4 was that we weren't using FORCE_RET
everywhere that we should. This has mostly been fixed now.
The problem with gcc4 is that -fno-reorder-blocks no longer does what we want.
There is no way to force gcc to put the the end of the function at the end.
As far as gcc is concerned there's nothing special about the "end" of the
function. gcc will turn
if (unlikely)
something();
rest_of_function();
FORCE_RET();
return;
into
if (unlikely) goto unlikely_code;
return_from_unlikely:
rest_of_function();
return;
unlikely_code:
something();
goto return_from_unlikely;
making rest_of_function bigger won't help.
> Then if the above fails, then simply search the binary code for such block
> of fout instructions
This won't work either. the FORCE_RET is before the function epilogue. ie. you
might have:
op_foo:
push %ebx
# function code
# the assembly from FORCE_RET
pop %ebx
ret
If you amputate this at the FORCE_RET you end up with a stack overflow.
I've got a solution for x86/x86-64 that's 95% complete, using the method I
suggested in a previous email. I hope to be submitting a patch shortly.
I expect most other hosts (particularly the RISC based ones) to be much
simpler to fix.
Paul
next prev parent reply other threads:[~2005-05-09 1:01 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-09 0:02 [Qemu-devel] Stupid (probably) idea wrt dyngen & gcc 3.4 & 4.0 Sebastian Kaliszewski
2005-05-09 0:25 ` André Braga
2005-05-09 0:40 ` Paul Brook [this message]
2005-05-09 1:55 ` Sebastian Kaliszewski
2005-05-09 2:33 ` Paul Brook
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=200505090140.57249.paul@nowt.org \
--to=paul@nowt.org \
--cc=qemu-devel@nongnu.org \
--cc=sk@z.pl \
/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).