public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "jojelino at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libffi/52221] [libffi] r183675,r184021 needs to be fixed.
Date: Thu, 16 Feb 2012 21:06:00 -0000	[thread overview]
Message-ID: <bug-52221-4-0jmEdlOg4K@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-52221-4@http.gcc.gnu.org/bugzilla/>

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52221

gee <jojelino at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #26653|0                           |1
        is obsolete|                            |

--- Comment #9 from gee <jojelino at gmail dot com> 2012-02-16 20:19:22 UTC ---
Created attachment 26686
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26686
script used for generating trampoline code.

trampoline code in attachment 26685 based on following source code.

extern int* esp asm ("%esp");
volatile int
sideeffect();
static volatile int ctx;
int __cdecl
main()
{
  int ret;
  extern int ecx asm("%ecx");
  /*
   * CFLAGS -O4
   */
#define NUM_CLOBBERED_REG 1
  /* expected layout
   /* ret   esp[4]
   * ?      esp[3]
   * clobbered
   */
  asm volatile("blk1:");
#define swap(x,y,tmp,...) {\
    asm ("movl %0,%2 # movl x,tmp\n\
    movl %1,%0 # movl y,x\n\
    movl %2,%1 # movl tmp,y":"+g"(x),"+g"(y),"+g"(tmp)::__VA_ARGS__);\
}
  swap(esp[NUM_CLOBBERED_REG+1], ecx, esp[NUM_CLOBBERED_REG], "ecx");
  /* expected layout
   * ecx    esp[4]
   * ret    esp[3]
   * clobbered
   */
  asm ("movl %0,%%eax"::"i"(&ctx):"eax");
  esp -= NUM_CLOBBERED_REG + 1;
  asm volatile ("call _sideeffect":"+a"(ret)::"memory","ecx","edx");
  ecx = esp[NUM_CLOBBERED_REG + 1];
  esp[NUM_CLOBBERED_REG + 1] = esp[NUM_CLOBBERED_REG];

  /* expected layout
   * ret    esp[4]
   * ret    esp[3]
   * clobbered
   */
  esp += NUM_CLOBBERED_REG + 1;
  asm volatile("ret");
  asm volatile("blk2:");
  return ret;
}
volatile int
sideeffect()
{
  return (volatile int) 0;
}


  parent reply	other threads:[~2012-02-16 21:05 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-12 17:22 [Bug libffi/52221] New: [libffi] r184021 " jojelino at gmail dot com
2012-02-12 17:58 ` [Bug libffi/52221] " ktietz at gcc dot gnu.org
2012-02-13 15:18 ` ktietz at gcc dot gnu.org
2012-02-13 15:19 ` ktietz at gcc dot gnu.org
2012-02-13 17:02 ` jojelino at gmail dot com
2012-02-13 18:35 ` jojelino at gmail dot com
2012-02-13 21:06 ` ktietz at gcc dot gnu.org
2012-02-15 21:43 ` [Bug libffi/52221] [libffi] r183675,r184021 " jojelino at gmail dot com
2012-02-16 20:20 ` jojelino at gmail dot com
2012-02-16 21:01 ` ktietz at gcc dot gnu.org
2012-02-16 21:06 ` jojelino at gmail dot com [this message]
2012-02-16 23:35 ` jojelino at gmail dot com
2012-02-17  8:39 ` jojelino at gmail dot com
2012-02-17  9:07 ` ktietz at gcc dot gnu.org
2012-02-22 18:23 ` jojelino at gmail dot com
2012-02-23 21:04 ` ktietz at gcc dot gnu.org
2012-02-23 21:28 ` ktietz at gcc dot gnu.org

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=bug-52221-4-0jmEdlOg4K@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.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 read-only IMAP folder(s) and NNTP newsgroup(s).