public inbox for libffi-discuss@sourceware.org
 help / color / mirror / Atom feed
From: Anthony Green <green@moxielogic.com>
To: Alan Modra <amodra@gmail.com>
Cc: libffi-discuss@sourceware.org
Subject: Re: [RS6000] libffi ppc64 assembly
Date: Tue, 30 Oct 2012 12:13:00 -0000	[thread overview]
Message-ID: <CACxje5-X4fbpniY3uAbNAzqafOGEPG-vqhaDDkhBUJfk0=bKMg@mail.gmail.com> (raw)
In-Reply-To: <20121025003225.GD3263@bubble.grove.modra.org>

Thanks Alan.  I'll pull it into the libffi git tree once you commit it
to the GCC tree.

Thanks,

Anthony Green


On Wed, Oct 24, 2012 at 8:32 PM, Alan Modra <amodra@gmail.com> wrote:
> This is a repost of http://gcc.gnu.org/ml/gcc-patches/2012-10/msg02108.html
> now to the correct list for libffi patches.  The gcc part has been
> approved.  Compiling libffi for powerpc64 with an older gcc that
> doesn't define _CALL_LINUX should continue to be fine if using BFD
> ld.
>
> ==================
> Gold on powerpc64 doesn't support old ABI objects, but libffi contains
> old ABI assembly.  This patch modifies those files to support both old
> and new ABI, and adds a builtin define to powerpc64 gcc that can be
> used to select between the ABIs in assembly.  I figure a define is
> generally useful, and more robust than trying to duplicate gcc
> configury in libffi (which could be overridden by CFLAGS anyway).
> Bootstrapped and regression tested powerpc64-linux.  OK to apply
> mainline?
>
> gcc/
>         * config/rs6000/linux64.h (TARGET_OS_CPP_BUILTINS): Define _CALL_LINUX.
> libffi/
>         * src/powerpc/linux64_closure.S: Add new ABI support.
>         * src/powerpc/linux64.S: Likewise.
>
> Index: gcc/config/rs6000/linux64.h
> ===================================================================
> --- gcc/config/rs6000/linux64.h (revision 192660)
> +++ gcc/config/rs6000/linux64.h (working copy)
> @@ -318,6 +318,8 @@
>           builtin_define ("__PPC64__");                 \
>           builtin_define ("__powerpc__");               \
>           builtin_define ("__powerpc64__");             \
> +         if (!DOT_SYMBOLS)                             \
> +           builtin_define ("_CALL_LINUX");             \
>           builtin_assert ("cpu=powerpc64");             \
>           builtin_assert ("machine=powerpc64");         \
>         }                                               \
> Index: libffi/src/powerpc/linux64_closure.S
> ===================================================================
> --- libffi/src/powerpc/linux64_closure.S        (revision 192660)
> +++ libffi/src/powerpc/linux64_closure.S        (working copy)
> @@ -32,16 +32,24 @@
>
>  #ifdef __powerpc64__
>         FFI_HIDDEN (ffi_closure_LINUX64)
> -       FFI_HIDDEN (.ffi_closure_LINUX64)
> -       .globl  ffi_closure_LINUX64, .ffi_closure_LINUX64
> +       .globl  ffi_closure_LINUX64
>         .section        ".opd","aw"
>         .align  3
>  ffi_closure_LINUX64:
> +#ifdef _CALL_LINUX
> +       .quad   .L.ffi_closure_LINUX64,.TOC.@tocbase,0
> +       .type   ffi_closure_LINUX64,@function
> +       .text
> +.L.ffi_closure_LINUX64:
> +#else
> +       FFI_HIDDEN (.ffi_closure_LINUX64)
> +       .globl  .ffi_closure_LINUX64
>         .quad   .ffi_closure_LINUX64,.TOC.@tocbase,0
>         .size   ffi_closure_LINUX64,24
>         .type   .ffi_closure_LINUX64,@function
>         .text
>  .ffi_closure_LINUX64:
> +#endif
>  .LFB1:
>         # save general regs into parm save area
>         std     %r3, 48(%r1)
> @@ -91,7 +99,11 @@
>         addi %r6, %r1, 128
>
>         # make the call
> +#ifdef _CALL_LINUX
> +       bl ffi_closure_helper_LINUX64
> +#else
>         bl .ffi_closure_helper_LINUX64
> +#endif
>  .Lret:
>
>         # now r3 contains the return type
> @@ -194,7 +206,11 @@
>  .LFE1:
>         .long   0
>         .byte   0,12,0,1,128,0,0,0
> +#ifdef _CALL_LINUX
> +       .size   ffi_closure_LINUX64,.-.L.ffi_closure_LINUX64
> +#else
>         .size   .ffi_closure_LINUX64,.-.ffi_closure_LINUX64
> +#endif
>
>         .section        .eh_frame,EH_FRAME_FLAGS,@progbits
>  .Lframe1:
> Index: libffi/src/powerpc/linux64.S
> ===================================================================
> --- libffi/src/powerpc/linux64.S        (revision 192660)
> +++ libffi/src/powerpc/linux64.S        (working copy)
> @@ -30,16 +30,25 @@
>  #include <ffi.h>
>
>  #ifdef __powerpc64__
> -       .hidden ffi_call_LINUX64, .ffi_call_LINUX64
> -       .globl  ffi_call_LINUX64, .ffi_call_LINUX64
> +       .hidden ffi_call_LINUX64
> +       .globl  ffi_call_LINUX64
>         .section        ".opd","aw"
>         .align  3
>  ffi_call_LINUX64:
> +#ifdef _CALL_LINUX
> +       .quad   .L.ffi_call_LINUX64,.TOC.@tocbase,0
> +       .type   ffi_call_LINUX64,@function
> +       .text
> +.L.ffi_call_LINUX64:
> +#else
> +       .hidden .ffi_call_LINUX64
> +       .globl  .ffi_call_LINUX64
>         .quad   .ffi_call_LINUX64,.TOC.@tocbase,0
>         .size   ffi_call_LINUX64,24
>         .type   .ffi_call_LINUX64,@function
>         .text
>  .ffi_call_LINUX64:
> +#endif
>  .LFB1:
>         mflr    %r0
>         std     %r28, -32(%r1)
> @@ -58,7 +67,11 @@
>
>         /* Call ffi_prep_args64.  */
>         mr      %r4, %r1
> +#ifdef _CALL_LINUX
> +       bl      ffi_prep_args64
> +#else
>         bl      .ffi_prep_args64
> +#endif
>
>         ld      %r0, 0(%r29)
>         ld      %r2, 8(%r29)
> @@ -137,7 +150,11 @@
>  .LFE1:
>         .long   0
>         .byte   0,12,0,1,128,4,0,0
> +#ifdef _CALL_LINUX
> +       .size   ffi_call_LINUX64,.-.L.ffi_call_LINUX64
> +#else
>         .size   .ffi_call_LINUX64,.-.ffi_call_LINUX64
> +#endif
>
>         .section        .eh_frame,EH_FRAME_FLAGS,@progbits
>  .Lframe1:
>
> --
> Alan Modra
> Australia Development Lab, IBM

  reply	other threads:[~2012-10-30 12:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-25  0:32 Alan Modra
2012-10-30 12:13 ` Anthony Green [this message]
2012-10-31  3:48   ` Alan Modra

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='CACxje5-X4fbpniY3uAbNAzqafOGEPG-vqhaDDkhBUJfk0=bKMg@mail.gmail.com' \
    --to=green@moxielogic.com \
    --cc=amodra@gmail.com \
    --cc=libffi-discuss@sourceware.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).