Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 6 Oct 2004 22:09:35 +0000 (22:09 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 6 Oct 2004 22:09:35 +0000 (22:09 +0000)
2004-10-06  Alan Modra  <amodra@bigpond.net.au>

* gmon/Makefile (CFLAGS-mcount.c): Move before inclusion of "Rules".
* sysdeps/powerpc/powerpc64/Makefile (CFLAGS-mcount.c): Add
-msoft-float.
* sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): New macros.
(CALL_MCOUNT): Replace with a gas macro implementation.
(EALIGN): Delete PROF version.
* sysdeps/powerpc/powerpc64/__longjmp-common.S: Invoke CALL_MCOUNT.
* sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Likewise.
* sysdeps/powerpc/powerpc64/bsd-setjmp.S: Likewise.
* sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
* sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/memset.S: Likewise.
* sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/strchr.S: Likewise.
* sysdeps/powerpc/powerpc64/strcmp.S: Likewise.
* sysdeps/powerpc/powerpc64/strcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/strlen.S: Likewise.
* sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.

* sysdeps/powerpc/powerpc64/setjmp-common.S: Add extra entry point
past _mcount call.
* sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Use it.
* sysdeps/powerpc/powerpc64/bsd-setjmp.S: Likewise.

31 files changed:
ChangeLog
gmon/Makefile
sysdeps/powerpc/powerpc64/Makefile
sysdeps/powerpc/powerpc64/__longjmp-common.S
sysdeps/powerpc/powerpc64/bsd-_setjmp.S
sysdeps/powerpc/powerpc64/bsd-setjmp.S
sysdeps/powerpc/powerpc64/fpu/s_ceil.S
sysdeps/powerpc/powerpc64/fpu/s_ceilf.S
sysdeps/powerpc/powerpc64/fpu/s_copysign.S
sysdeps/powerpc/powerpc64/fpu/s_floor.S
sysdeps/powerpc/powerpc64/fpu/s_floorf.S
sysdeps/powerpc/powerpc64/fpu/s_llrint.S
sysdeps/powerpc/powerpc64/fpu/s_llrintf.S
sysdeps/powerpc/powerpc64/fpu/s_llround.S
sysdeps/powerpc/powerpc64/fpu/s_llroundf.S
sysdeps/powerpc/powerpc64/fpu/s_rint.S
sysdeps/powerpc/powerpc64/fpu/s_rintf.S
sysdeps/powerpc/powerpc64/fpu/s_round.S
sysdeps/powerpc/powerpc64/fpu/s_roundf.S
sysdeps/powerpc/powerpc64/fpu/s_trunc.S
sysdeps/powerpc/powerpc64/fpu/s_truncf.S
sysdeps/powerpc/powerpc64/memcpy.S
sysdeps/powerpc/powerpc64/memset.S
sysdeps/powerpc/powerpc64/setjmp-common.S
sysdeps/powerpc/powerpc64/stpcpy.S
sysdeps/powerpc/powerpc64/strchr.S
sysdeps/powerpc/powerpc64/strcmp.S
sysdeps/powerpc/powerpc64/strcpy.S
sysdeps/powerpc/powerpc64/strlen.S
sysdeps/powerpc/powerpc64/strncmp.S
sysdeps/powerpc/powerpc64/sysdep.h

index e0245eb..609c18d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,44 @@
+2004-10-06  Alan Modra  <amodra@bigpond.net.au>
+
+       * gmon/Makefile (CFLAGS-mcount.c): Move before inclusion of "Rules".
+       * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-mcount.c): Add
+       -msoft-float.
+       * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): New macros.
+       (CALL_MCOUNT): Replace with a gas macro implementation.
+       (EALIGN): Delete PROF version.
+       * sysdeps/powerpc/powerpc64/__longjmp-common.S: Invoke CALL_MCOUNT.
+       * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Likewise.
+       * sysdeps/powerpc/powerpc64/bsd-setjmp.S: Likewise.
+       * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
+       * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
+       * sysdeps/powerpc/powerpc64/memset.S: Likewise.
+       * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
+       * sysdeps/powerpc/powerpc64/strchr.S: Likewise.
+       * sysdeps/powerpc/powerpc64/strcmp.S: Likewise.
+       * sysdeps/powerpc/powerpc64/strcpy.S: Likewise.
+       * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
+       * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
+       * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
+
+       * sysdeps/powerpc/powerpc64/setjmp-common.S: Add extra entry point
+       past _mcount call.
+       * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Use it.
+       * sysdeps/powerpc/powerpc64/bsd-setjmp.S: Likewise.
+
 2004-10-06  Ulrich Drepper  <drepper@redhat.com>
 
        * resolv/res_mkquery.c (res_nmkquery): Reject randombits value if
index 060ede1..80a7945 100644 (file)
@@ -29,11 +29,11 @@ elide-routines.os = bb_init_func bb_exit_func
 
 tests  := tst-sprofil
 
-include ../Rules
-
 # The mcount code won't work without a frame pointer.
 CFLAGS-mcount.c := -fno-omit-frame-pointer
 
+include ../Rules
+
 # We cannot compile mcount.c with -pg because that would
 # create recursive calls.  Just copy the normal static object.
 # On systems where `profil' is not a system call, the same
index 758b856..3ced656 100644 (file)
@@ -22,3 +22,10 @@ ifeq ($(subdir),elf)
 # help gcc inline asm code from dl-machine.h
 +cflags += -finline-limit=2000
 endif
+
+ifeq ($(subdir),gmon)
+# The assembly functions assume that fp arg regs are not trashed.
+# Compiling with -msoft-float ensures that fp regs are not used
+# for moving memory around.
+CFLAGS-mcount.c += -msoft-float
+endif
index b11a0fd..9d0195d 100644 (file)
@@ -42,6 +42,7 @@
 
        .machine        "altivec"
 ENTRY (BP_SYM (__longjmp))
+       CALL_MCOUNT 2
        CHECK_BOUNDS_BOTH_WIDE_LIT (r3, r8, r9, JB_SIZE)
 #ifndef __NO_VMX__
        ld    r5,.LC__dl_hwcap@toc(r2)
index 13f4056..82b79a8 100644 (file)
@@ -25,8 +25,9 @@
 #if defined NOT_IN_libc
 /* Build a non-versioned object for rtld-*.  */
 ENTRY (BP_SYM (_setjmp))
+       CALL_MCOUNT 1
        li r4,0                 /* Set second argument to 0.  */
-       b JUMPTARGET(BP_SYM (__sigsetjmp))
+       b JUMPTARGET (__sigsetjmp_ent)
 END (BP_SYM (_setjmp))
 libc_hidden_def (_setjmp)
 
@@ -36,8 +37,9 @@ libc_hidden_def (_setjmp)
 symbol_version (__novmx_setjmp,_setjmp,GLIBC_2.3);
 
 ENTRY (BP_SYM (__novmx_setjmp))
+       CALL_MCOUNT 1
        li r4,0                 /* Set second argument to 0.  */
-       b JUMPTARGET(BP_SYM (__novmx__sigsetjmp))
+       b JUMPTARGET (__novmx__sigsetjmp_ent)
 END (BP_SYM (__novmx_setjmp))
 libc_hidden_def (__novmx_setjmp)
 # endif /* defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4) */
@@ -50,13 +52,15 @@ ENTRY (BP_SYM (__GI__setjmp))
 #if defined SHARED && !defined IS_IN_rtld
        std r2,40(r1)   /* Save the callers TOC in the save area.  */
 #endif
+       CALL_MCOUNT 1
        li r4,0                 /* Set second argument to 0.  */
-       b JUMPTARGET(BP_SYM (__vmx__sigsetjmp))
+       b JUMPTARGET (__vmx__sigsetjmp_ent)
 END (BP_SYM (__GI__setjmp))
 
 ENTRY (BP_SYM (__vmx_setjmp))
+       CALL_MCOUNT 1
        li r4,0                 /* Set second argument to 0.  */
-       b JUMPTARGET(BP_SYM (__vmx__sigsetjmp))
+       b JUMPTARGET (__vmx__sigsetjmp_ent)
 END (BP_SYM (__vmx_setjmp))
 libc_hidden_def (__vmx_setjmp)
 #endif /* !NOT_IN_libc */
index 73b9a4d..543e83f 100644 (file)
@@ -25,8 +25,9 @@
 
 
 ENTRY (__novmxsetjmp)
+       CALL_MCOUNT 1
        li r4,1                 /* Set second argument to 1.  */
-       b JUMPTARGET (__novmx__sigsetjmp)
+       b JUMPTARGET (__novmx__sigsetjmp_ent)
 END (__novmxsetjmp)
 strong_alias (__novmxsetjmp, __novmx__setjmp)
 symbol_version (__novmxsetjmp, setjmp, GLIBC_2.3)
@@ -35,8 +36,9 @@ symbol_version (__novmxsetjmp, setjmp, GLIBC_2.3)
 
 
 ENTRY (__vmxsetjmp)
+       CALL_MCOUNT 1
        li r4,1                 /* Set second argument to 1.  */
-       b JUMPTARGET (__vmx__sigsetjmp)
+       b JUMPTARGET (__vmx__sigsetjmp_ent)
 END (__vmxsetjmp)
 strong_alias (__vmxsetjmp, __vmx__setjmp)
 strong_alias (__vmx__sigsetjmp, __setjmp)
index 127f302..a1bfaa7 100644 (file)
@@ -27,6 +27,7 @@
        .section        ".text"
 
 ENTRY (__ceil)
+       CALL_MCOUNT 0
        mffs    fp11            /* Save current FPU rounding mode.  */
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
index 34f6142..42eb274 100644 (file)
@@ -27,6 +27,7 @@
        .section        ".text"
 
 ENTRY (__ceilf)
+       CALL_MCOUNT 0
        mffs    fp11            /* Save current FPU rounding mode.  */
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
index 40fd83d..a43ed12 100644 (file)
@@ -23,6 +23,7 @@
 #include <sysdep.h>
 
 ENTRY(__copysign)
+       CALL_MCOUNT 0
 /* double [f1] copysign (double [f1] x, double [f2] y);
    copysign(x,y) returns a value with the magnitude of x and
    with the sign bit of y.  */
index 57fd63c..80cbdc5 100644 (file)
@@ -25,6 +25,7 @@
        .section        ".text"
 
 ENTRY (__floor)
+       CALL_MCOUNT 0
        mffs    fp11            /* Save current FPU rounding mode.  */
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
index cde92b9..20cbb15 100644 (file)
@@ -25,6 +25,7 @@
        .section        ".text"
 
 ENTRY (__floorf)
+       CALL_MCOUNT 0
        mffs    fp11            /* Save current FPU rounding mode.  */
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
index bc976a7..610b561 100644 (file)
@@ -21,6 +21,7 @@
 
 /* long long int[r3] __llrint (double x[fp1])  */
 ENTRY (__llrint)       
+       CALL_MCOUNT 0
        fctid   fp13,fp1
        stfd    fp13,-16(r1)
        nop     /* Insure the following load is in a different dispatch group */
index aef84de..b7b2a8f 100644 (file)
@@ -21,6 +21,7 @@
 
 /* long long int[r3] __llrintf (float x[fp1])  */
 ENTRY (__llrintf)      
+       CALL_MCOUNT 0
        fctid   fp13,fp1
        stfd    fp13,-16(r1)
        nop     /* Insure the following load is in a different dispatch group */
index 320ef0f..a3dcd4c 100644 (file)
@@ -37,6 +37,7 @@
    to the integer value.  */
 
 ENTRY (__llround)
+       CALL_MCOUNT 0
        lfd     fp12,.LC0@toc(2)
        lfd     fp10,.LC1@toc(2)
        fcmpu   cr6,fp1,fp12    /* if (x > 0.0)  */
index ff92305..b5ca43b 100644 (file)
@@ -37,6 +37,7 @@
    to the integer value.  */
 
 ENTRY (__llroundf)
+       CALL_MCOUNT 0
        lfd     fp12,.LC0@toc(2)
        lfd     fp10,.LC1@toc(2)
        fcmpu   cr6,fp1,fp12    /* if (x < 0.0)  */
index f7db7ff..79e8072 100644 (file)
@@ -28,6 +28,7 @@
        .section        ".text"
 
 ENTRY (__rint)
+       CALL_MCOUNT 0
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
        fsub    fp12,fp13,fp13  /* generate 0.0  */
index de6d654..eb34dd5 100644 (file)
@@ -25,6 +25,7 @@
        .section        ".text"
 
 ENTRY (__rintf)
+       CALL_MCOUNT 0
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
        fsubs   fp12,fp13,fp13  /* generate 0.0  */
index 1c2e529..c0b6d46 100644 (file)
@@ -39,6 +39,7 @@
    to the integer value.  */
 
 ENTRY (__round)
+       CALL_MCOUNT 0
        mffs    fp11            /* Save current FPU rounding mode.  */
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
index fd8eb0a..23ee4c0 100644 (file)
@@ -39,6 +39,7 @@
    to the integer value.  */
 
 ENTRY (__roundf )
+       CALL_MCOUNT 0
        mffs    fp11            /* Save current FPU rounding mode.  */
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
index dc345ab..3ddd298 100644 (file)
@@ -34,6 +34,7 @@
    subtracting +-2**52.  */
 
 ENTRY (__trunc)
+       CALL_MCOUNT 0
        mffs    fp11            /* Save current FPU rounding mode.  */
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
index 727647f..b38b722 100644 (file)
@@ -34,6 +34,7 @@
    subtracting +-2**23.  */
 
 ENTRY (__truncf)
+       CALL_MCOUNT 0
        mffs    fp11            /* Save current FPU rounding mode.  */
        lfd     fp13,.LC0@toc(2)
        fabs    fp0,fp1
index 251e1fe..9df5bb4 100644 (file)
@@ -37,6 +37,8 @@
    Each case has a optimized unrolled loop.   */
 
 EALIGN (BP_SYM (memcpy), 5, 0)
+       CALL_MCOUNT 3
+
     cmpldi cr1,5,31
     neg   0,3
     std   3,-16(1)
index f3a299d..1abc59b 100644 (file)
@@ -41,6 +41,7 @@
    to 0, to take advantage of the dcbz instruction.  */
 
 EALIGN (BP_SYM (memset), 5, 0)
+       CALL_MCOUNT 3
 
 #define rTMP   r0
 #define rRTN   r3      /* Initial value of 1st argument.  */
@@ -274,6 +275,7 @@ libc_hidden_builtin_def (memset)
 /* Copied from bzero.S to prevent the linker from inserting a stub
    between bzero and memset.  */
 ENTRY (BP_SYM (__bzero))
+       CALL_MCOUNT 3
 #if __BOUNDED_POINTERS__
        mr      r6,r4
        li      r5,0
index ab57170..f82d5a2 100644 (file)
 
        .machine        "altivec"
 ENTRY (BP_SYM (__sigsetjmp))
+       CALL_MCOUNT 2
+       .globl JUMPTARGET(GLUE(__sigsetjmp,_ent))
+       .hidden JUMPTARGET(GLUE(__sigsetjmp,_ent))
+JUMPTARGET(GLUE(__sigsetjmp,_ent)):
        CHECK_BOUNDS_BOTH_WIDE_LIT (r3, r8, r9, JB_SIZE)
        std  r1,(JB_GPR1*8)(3)
        mflr r0
index deac0ea..cc7a6ab 100644 (file)
@@ -26,6 +26,7 @@
 /* char * [r3] stpcpy (char *dest [r3], const char *src [r4])  */
 
 EALIGN (BP_SYM (__stpcpy), 4, 0)
+       CALL_MCOUNT 2
 
 #define rTMP   r0
 #define rRTN   r3
index e3222f3..93ea61e 100644 (file)
@@ -26,6 +26,7 @@
 /* char * [r3] strchr (const char *s [r3] , int c [r4] )  */
 
 ENTRY (BP_SYM (strchr))
+       CALL_MCOUNT 2
 
 #define rTMP1  r0
 #define rRTN   r3      /* outgoing result */
index 7e2dae0..4d7eb21 100644 (file)
@@ -26,6 +26,7 @@
 /* int [r3] strcmp (const char *s1 [r3], const char *s2 [r4])  */
 
 EALIGN (BP_SYM(strcmp), 4, 0)
+       CALL_MCOUNT 2
 
 #define rTMP   r0
 #define rRTN   r3
index 4d12b82..e9e9fc7 100644 (file)
@@ -26,6 +26,7 @@
 /* char * [r3] strcpy (char *dest [r3], const char *src [r4])  */
 
 EALIGN (BP_SYM (strcpy), 4, 0)
+       CALL_MCOUNT 2
 
 #define rTMP   r0
 #define rRTN   r3      /* incoming DEST arg preserved as result */
index 760be58..4c1385a 100644 (file)
@@ -79,6 +79,7 @@
 /* int [r3] strlen (char *s [r3])  */
 
 ENTRY (BP_SYM (strlen))
+       CALL_MCOUNT 1
 
 #define rTMP1  r0
 #define rRTN   r3      /* incoming STR arg, outgoing result */
index bdcfab9..04bdc2f 100644 (file)
@@ -26,6 +26,7 @@
 /* int [r3] strncmp (const char *s1 [r3], const char *s2 [r4], size_t size [r5])  */
 
 EALIGN (BP_SYM(strncmp), 4, 0)
+       CALL_MCOUNT 3
 
 #define rTMP   r0
 #define rRTN   r3
index 4420a6d..fead0b5 100644 (file)
 
 #ifdef __ASSEMBLER__
 
+/* Support macros for CALL_MCOUNT.  */
+       .macro SAVE_ARG NARG
+       .if \NARG
+       SAVE_ARG \NARG-1
+       std     2+\NARG,-72+8*(\NARG)(1)
+       .endif
+       .endm
+
+       .macro REST_ARG NARG
+       .if \NARG
+       REST_ARG \NARG-1
+       ld      2+\NARG,40+8*(\NARG)(1)
+       .endif
+       .endm
+
 /* If compiled for profiling, call `_mcount' at the start of each function.
    see ppc-mcount.S for more details.  */
+       .macro CALL_MCOUNT NARG
 #ifdef PROF
-/* The mcount code relies on a the return address being on the stack
-   to locate our caller and so it can restore it; so store one just
-   for its benefit.  */
-#ifdef SYSV_ELF_PROFILING
-#define CALL_MCOUNT    \
-  .pushsection;                        \
-  .section ".data";            \
-  .align ALIGNARG(2);          \
-__mcount:                      \
-  .long  0;                    \
-  .previous;                   \
-  .section ".toc","aw";                \
-.LC__mcount:;                  \
-  .tc __mcount[TC],__mcount;   \
-  .previous;                   \
-  mflr  r0;                    \
-  std   r0,16(r1);             \
-  ld    r0,.LC__mcount@toc(r2);        \
-  bl    JUMPTARGET(_mcount);
-#else /* SYSV_ELF_PROFILING */
-#define CALL_MCOUNT    \
-  mflr  r0;                    \
-  std   r0,16(r1);             \
-  bl    JUMPTARGET(_mcount);
-#endif /* SYSV_ELF_PROFILING */
-#else  /* PROF */
-#define CALL_MCOUNT            /* Do nothing.  */
-#endif /* PROF */
+       mflr    r0
+       SAVE_ARG \NARG
+       std     r0,16(r1)
+       stdu    r1,-112(r1)
+       bl      JUMPTARGET (_mcount)
+       ld      r0,128(r1)
+       REST_ARG \NARG
+       addi    r1,r1,112
+       mtlr    r0
+#endif
+       .endm
 
 #ifdef USE_PPC64_OVERLAPPING_OPD
 # define OPD_ENT(name) .quad BODY_LABEL (name), .TOC.@tocbase
@@ -106,24 +105,11 @@ BODY_LABEL(name):
 
 /* EALIGN is like ENTRY, but does alignment to 'words'*4 bytes
    past a 2^alignt boundary.  */
-#ifdef PROF
-#define EALIGN(name, alignt, words) \
-       ENTRY_2(name)                           \
-       .align ALIGNARG(alignt);                \
-       EALIGN_W_##words;                       \
-BODY_LABEL(name):                              \
-       CALL_MCOUNT                             \
-       b 0f;                                   \
-       .align ALIGNARG(alignt);                \
-       EALIGN_W_##words;                       \
-0:
-#else /* PROF */
 #define EALIGN(name, alignt, words) \
        ENTRY_2(name)                           \
        .align ALIGNARG(alignt);                \
        EALIGN_W_##words;                       \
 BODY_LABEL(name):
-#endif
 
 /* Local labels stripped out by the linker.  */
 #undef L