Use ENTRY and END in more MIPS .S files.
authorJoseph Myers <joseph@codesourcery.com>
Fri, 8 Feb 2013 02:03:10 +0000 (02:03 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Fri, 8 Feb 2013 02:03:10 +0000 (02:03 +0000)
15 files changed:
ports/ChangeLog.mips
ports/sysdeps/mips/add_n.S
ports/sysdeps/mips/bsd-_setjmp.S
ports/sysdeps/mips/bsd-setjmp.S
ports/sysdeps/mips/mips64/add_n.S
ports/sysdeps/mips/mips64/addmul_1.S
ports/sysdeps/mips/mips64/bsd-_setjmp.S
ports/sysdeps/mips/mips64/bsd-setjmp.S
ports/sysdeps/mips/mips64/lshift.S
ports/sysdeps/mips/mips64/mul_1.S
ports/sysdeps/mips/mips64/rshift.S
ports/sysdeps/mips/mips64/setjmp.S
ports/sysdeps/mips/mips64/sub_n.S
ports/sysdeps/mips/mips64/submul_1.S
ports/sysdeps/mips/setjmp.S

index b04001ecf05b154a9e4217ad59b20cf80eda5738..cde1f700bea04c2184828ab6e290cb4ec23ad3e8 100644 (file)
@@ -1,5 +1,20 @@
 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
 
+       * sysdeps/mips/add_n.S (__mpn_add_n): Use END.
+       * sysdeps/mips/bsd-_setjmp.S (_setjmp): Likewise.
+       * sysdeps/mips/bsd-setjmp.S (setjmp): Likewise.
+       * sysdeps/mips/mips64/add_n.S (__mpn_add_n): Use ENTRY and END.
+       * sysdeps/mips/mips64/addmul_1.S (__mpn_addmul_1): Likewise.
+       * sysdeps/mips/mips64/bsd-_setjmp.S (_setjmp): Use END.
+       * sysdeps/mips/mips64/bsd-setjmp.S (setjmp): Likewise.
+       * sysdeps/mips/mips64/lshift.S (__mpn_lshift): Use ENTRY and END.
+       * sysdeps/mips/mips64/mul_1.S (__mpn_mul_1): Likewise.
+       * sysdeps/mips/mips64/rshift.S (__mpn_rshift): Likewise.
+       * sysdeps/mips/mips64/setjmp.S (__sigsetjmp): Use END.
+       * sysdeps/mips/mips64/sub_n.S (__mpn_sub_n): Use ENTRY and END.
+       * sysdeps/mips/mips64/submul_1.S (__mpn_submul_1): Likewise.
+       * sysdeps/mips/setjmp.S (__sigsetjmp): Use END.
+
        [BZ #13550]
        * sysdeps/unix/sysv/linux/mips/mips64/msgctl.c: Do not include
        <bp-checks.h>.
index 7a3848f600cb4f993f42fa2e06bce750e07031e0..e83fc817077d1efaed06f7eddc28bc69beee8870 100644 (file)
@@ -118,4 +118,4 @@ L(end):     addu    $11,$11,$2
        sw      $11,0($4)
        j       $31
        or      $2,$2,$8
-       .end __mpn_add_n
+END (__mpn_add_n)
index a932096a0afa6a0b53b4ab6a180449a503165568..1974e4b3934533377df68794fff68b1e74c7e3b0 100644 (file)
@@ -38,5 +38,5 @@ ENTRY (_setjmp)
 #else
        j       C_SYMBOL_NAME (__sigsetjmp)
 #endif
-       .end    _setjmp
+END (_setjmp)
 libc_hidden_def (_setjmp)
index 406c8492dd63997291033624b0bc22311ba893a1..5eedcddd7892c6e3063c7773a96ca2271ee71e6e 100644 (file)
@@ -38,4 +38,4 @@ ENTRY (setjmp)
 #else
        j       C_SYMBOL_NAME (__sigsetjmp)
 #endif
-       .end    setjmp
+END (setjmp)
index efb6cf4240d18dd0994e2356d2d0cc6a275127c0..020d4af0909287f48f477b3b6ce46a830bbf3853 100644 (file)
 #ifdef __PIC__
        .option pic2
 #endif
-       .text
-       .align  2
-       .globl  __mpn_add_n
-       .ent    __mpn_add_n
-__mpn_add_n:
+ENTRY (__mpn_add_n)
 #ifdef __PIC__
        SETUP_GP /* ??? unused */
 #endif
@@ -126,4 +122,4 @@ L(Lend):    daddu   $11,$11,$2
        j       $31
        or      $2,$2,$8
 
-       .end    __mpn_add_n
+END (__mpn_add_n)
index 43838fd2f915bc8f8987625a57d4e049b483a1d3..46729a65d99d086b247ac53fc6d72a9b4cf17a53 100644 (file)
 #ifdef PIC
        .option pic2
 #endif
-       .text
-       .align  4
-       .globl  __mpn_addmul_1
-       .ent    __mpn_addmul_1
-__mpn_addmul_1:
+ENTRY (__mpn_addmul_1)
 #ifdef PIC
        SETUP_GP /* ??? unused */
 #endif
@@ -102,4 +98,4 @@ L(LC0):      ld      $10,0($4)
        j       $31
        daddu   $2,$9,$2        # add high product limb and carry from addition
 
-       .end    __mpn_addmul_1
+END (__mpn_addmul_1)
index de36cf0e89ca2e58b15c5b07df4f09c43cbd26d4..83b1264925084b1f6e9f7e9af22057afd785b67f 100644 (file)
@@ -43,5 +43,5 @@ ENTRY (_setjmp)
 #else
        j       C_SYMBOL_NAME (__sigsetjmp)
 #endif
-       .end    _setjmp
+END (_setjmp)
 libc_hidden_def (_setjmp)
index c3e26bfc226f9d95efb46f0eabd14f439b3b6df9..15af26a82d6206f7477a214571e152b184090c28 100644 (file)
@@ -43,4 +43,4 @@ ENTRY (setjmp)
 #else
        j       C_SYMBOL_NAME (__sigsetjmp)
 #endif
-       .end    setjmp
+END (setjmp)
index e0b02bc25b533cebe9a1ce3d31ccb94981b1b19f..740408d75a1ccd3df86d636e3974ba97df63ba9e 100644 (file)
 #ifdef __PIC__
        .option pic2
 #endif
-       .text
-       .align  2
-       .globl  __mpn_lshift
-       .ent    __mpn_lshift
-__mpn_lshift:
+ENTRY (__mpn_lshift)
 #ifdef __PIC__
        SETUP_GP /* ??? unused */
 #endif
@@ -101,4 +97,4 @@ L(Loop):     ld      $3,-16($5)
 L(Lend):       dsll    $8,$10,$7
        j       $31
        sd      $8,-8($4)
-       .end    __mpn_lshift
+END (__mpn_lshift)
index 2fe28d369d6a881330ec80723572f79dde0a9914..e1360658ae89ca88aaaaba9bf119826f48e131a1 100644 (file)
 #ifdef __PIC__
        .option pic2
 #endif
-       .text
-       .align  4
-       .globl  __mpn_mul_1
-       .ent    __mpn_mul_1
-__mpn_mul_1:
+ENTRY (__mpn_mul_1)
 #ifdef __PIC__
        SETUP_GP /* ??? unused */
 #endif
@@ -91,4 +87,4 @@ L(LC0):       mflo    $10
        j       $31
        daddu   $2,$9,$2        # add high product limb and carry from addition
 
-       .end    __mpn_mul_1
+END (__mpn_mul_1)
index 75ac68bb2e6db7a2cbfe8844594f4d7e7c560354..0d821f2b793c51371234c1913fd0481aa1434295 100644 (file)
 #ifdef __PIC__
        .option pic2
 #endif
-       .text
-       .align  2
-       .globl  __mpn_rshift
-       .ent    __mpn_rshift
-__mpn_rshift:
+ENTRY (__mpn_rshift)
 #ifdef __PIC__
        SETUP_GP /* ??? unused */
 #endif
@@ -98,4 +94,4 @@ L(Loop):      ld      $3,8($5)
 L(Lend):       dsrl    $8,$10,$7
        j       $31
        sd      $8,0($4)
-       .end    __mpn_rshift
+END (__mpn_rshift)
index 53ed92ca49f5f26917242eb8eaf7bdee8901a0fc..621e390fd0762e4f8eed2eaa51d64be7bd0a16a4 100644 (file)
@@ -41,4 +41,4 @@ ENTRY (__sigsetjmp)
        move a4, gp
 #endif
        jr t9
-       .end __sigsetjmp
+END (__sigsetjmp)
index ea8f4bd4cbcbc429e7f23f723895b3a4c77c1fc8..dd6f6918419496628ee1adb9fece8f48d14a9399 100644 (file)
 #ifdef __PIC__
        .option pic2
 #endif
-       .text
-       .align  2
-       .globl  __mpn_sub_n
-       .ent    __mpn_sub_n
-__mpn_sub_n:
+ENTRY (__mpn_sub_n)
 #ifdef __PIC__
        SETUP_GP /* ??? unused */
 #endif
@@ -126,4 +122,4 @@ L(Lend):    daddu   $11,$11,$2
        j       $31
        or      $2,$2,$8
 
-       .end    __mpn_sub_n
+END (__mpn_sub_n)
index 22239d52b3c8935821b892e78b92542907ee735a..bf5d6ffce072cfcdc223710c8cfb3111aa1c55e7 100644 (file)
 #ifdef __PIC__
        .option pic2
 #endif
-       .text
-       .align  4
-       .globl  __mpn_submul_1
-       .ent    __mpn_submul_1
-__mpn_submul_1:
+ENTRY (__mpn_submul_1)
 #ifdef __PIC__
        SETUP_GP /* ??? unused */
 #endif
@@ -103,4 +99,4 @@ L(LC0):      ld      $10,0($4)
        j       $31
        daddu   $2,$9,$2        # add high product limb and carry from addition
 
-       .end    __mpn_submul_1
+END (__mpn_submul_1)
index 7c53b97b2dc6d96a61c0d728f815dac1144b4b94..3f923fb52bc1f6b0aaed13c8cb47bf7a2d2a2bb7 100644 (file)
@@ -41,4 +41,4 @@ ENTRY (__sigsetjmp)
 #else
        j       __sigsetjmp_aux
 #endif
-       .end __sigsetjmp
+END (__sigsetjmp)