diff options
Diffstat (limited to 'mpi/m68k')
-rw-r--r-- | mpi/m68k/mc68020/mpih-mul1.S | 10 | ||||
-rw-r--r-- | mpi/m68k/mc68020/mpih-mul2.S | 10 | ||||
-rw-r--r-- | mpi/m68k/mc68020/mpih-mul3.S | 10 | ||||
-rw-r--r-- | mpi/m68k/mpih-add1.S | 10 | ||||
-rw-r--r-- | mpi/m68k/mpih-lshift.S | 10 | ||||
-rw-r--r-- | mpi/m68k/mpih-rshift.S | 10 | ||||
-rw-r--r-- | mpi/m68k/mpih-sub1.S | 10 |
7 files changed, 35 insertions, 35 deletions
diff --git a/mpi/m68k/mc68020/mpih-mul1.S b/mpi/m68k/mc68020/mpih-mul1.S index 4872b9ba..b4181a9c 100644 --- a/mpi/m68k/mc68020/mpih-mul1.S +++ b/mpi/m68k/mc68020/mpih-mul1.S @@ -37,7 +37,7 @@ /******************* * mpi_limb_t - * mpihelp_mul_1( mpi_ptr_t res_ptr, (sp + 4) + * _gcry_mpih_mul_1( mpi_ptr_t res_ptr, (sp + 4) * mpi_ptr_t s1_ptr, (sp + 8) * mpi_size_t s1_size, (sp + 12) * mpi_limb_t s2_limb) (sp + 16) @@ -46,10 +46,10 @@ TEXT ALIGN - GLOBL C_SYMBOL_NAME(mpihelp_mul_1) + GLOBL C_SYMBOL_NAME(_gcry_mpih_mul_1) -C_SYMBOL_NAME(mpihelp_mul_1:) -PROLOG(mpihelp_mul_1) +C_SYMBOL_NAME(_gcry_mpih_mul_1:) +PROLOG(_gcry_mpih_mul_1) #define res_ptr a0 #define s1_ptr a1 @@ -101,6 +101,6 @@ L(L1:) movel MEM_POSTINC(s1_ptr),R(d3) movel MEM_POSTINC(sp),R(d2) #endif rts -EPILOG(mpihelp_mul_1) +EPILOG(_gcry_mpih_mul_1) diff --git a/mpi/m68k/mc68020/mpih-mul2.S b/mpi/m68k/mc68020/mpih-mul2.S index 7c492ffb..b2f9e7cc 100644 --- a/mpi/m68k/mc68020/mpih-mul2.S +++ b/mpi/m68k/mc68020/mpih-mul2.S @@ -35,7 +35,7 @@ /******************* * mpi_limb_t - * mpihelp_addmul_1( mpi_ptr_t res_ptr, (sp + 4) + * _gcry_mpih_addmul_1( mpi_ptr_t res_ptr, (sp + 4) * mpi_ptr_t s1_ptr, (sp + 8) * mpi_size_t s1_size, (sp + 12) * mpi_limb_t s2_limb) (sp + 16) @@ -44,10 +44,10 @@ TEXT ALIGN - GLOBL C_SYMBOL_NAME(mpihelp_addmul_1) + GLOBL C_SYMBOL_NAME(_gcry_mpih_addmul_1) -C_SYMBOL_NAME(mpihelp_addmul_1:) -PROLOG(mpihelp_addmul_1) +C_SYMBOL_NAME(_gcry_mpih_addmul_1:) +PROLOG(_gcry_mpih_addmul_1) #define res_ptr a0 #define s1_ptr a1 @@ -92,5 +92,5 @@ L(L1:) movel MEM_POSTINC(s1_ptr),R(d3) moveml MEM_POSTINC(sp),R(d2)-R(d5) rts -EPILOG(mpihelp_addmul_1) +EPILOG(_gcry_mpih_addmul_1) diff --git a/mpi/m68k/mc68020/mpih-mul3.S b/mpi/m68k/mc68020/mpih-mul3.S index 1e4ac45d..f72a8120 100644 --- a/mpi/m68k/mc68020/mpih-mul3.S +++ b/mpi/m68k/mc68020/mpih-mul3.S @@ -37,7 +37,7 @@ /******************* * mpi_limb_t - * mpihelp_submul_1( mpi_ptr_t res_ptr, (sp + 4) + * _gcry_mpih_submul_1( mpi_ptr_t res_ptr, (sp + 4) * mpi_ptr_t s1_ptr, (sp + 8) * mpi_size_t s1_size, (sp + 12) * mpi_limb_t s2_limb) (sp + 16) @@ -46,10 +46,10 @@ TEXT ALIGN - GLOBL C_SYMBOL_NAME(mpihelp_submul_1) + GLOBL C_SYMBOL_NAME(_gcry_mpih_submul_1) -C_SYMBOL_NAME(mpihelp_submul_1:) -PROLOG(mpihelp_submul_1) +C_SYMBOL_NAME(_gcry_mpih_submul_1:) +PROLOG(_gcry_mpih_submul_1) #define res_ptr a0 #define s1_ptr a1 @@ -94,6 +94,6 @@ L(L1:) movel MEM_POSTINC(s1_ptr),R(d3) moveml MEM_POSTINC(sp),R(d2)-R(d5) rts -EPILOG(mpihelp_submul_1) +EPILOG(_gcry_mpih_submul_1) diff --git a/mpi/m68k/mpih-add1.S b/mpi/m68k/mpih-add1.S index 1e9cc640..e05f89cd 100644 --- a/mpi/m68k/mpih-add1.S +++ b/mpi/m68k/mpih-add1.S @@ -36,7 +36,7 @@ /******************* * mpi_limb_t - * mpihelp_add_n( mpi_ptr_t res_ptr, (sp + 4) + * _gcry_mpih_add_n( mpi_ptr_t res_ptr, (sp + 4) * mpi_ptr_t s1_ptr, (sp + 8) * mpi_ptr_t s2_ptr, (sp + 16) * mpi_size_t size) (sp + 12) @@ -45,10 +45,10 @@ TEXT ALIGN - GLOBL C_SYMBOL_NAME(mpihelp_add_n) + GLOBL C_SYMBOL_NAME(_gcry_mpih_add_n) -C_SYMBOL_NAME(mpihelp_add_n:) -PROLOG(mpihelp_add_n) +C_SYMBOL_NAME(_gcry_mpih_add_n:) +PROLOG(_gcry_mpih_add_n) /* Save used registers on the stack. */ movel R(d2),MEM_PREDEC(sp) movel R(a2),MEM_PREDEC(sp) @@ -89,6 +89,6 @@ L(L2:) movel MEM_POSTINC(sp),R(d2) rts -EPILOG(mpihelp_add_n) +EPILOG(_gcry_mpih_add_n) diff --git a/mpi/m68k/mpih-lshift.S b/mpi/m68k/mpih-lshift.S index cc9dfba6..c7e485a4 100644 --- a/mpi/m68k/mpih-lshift.S +++ b/mpi/m68k/mpih-lshift.S @@ -34,7 +34,7 @@ /******************* * mpi_limb_t - * mpihelp_lshift( mpi_ptr_t wp, (sp + 4) + * _gcry_mpih_lshift( mpi_ptr_t wp, (sp + 4) * mpi_ptr_t up, (sp + 8) * mpi_size_t usize, (sp + 12) * unsigned cnt) (sp + 16) @@ -47,10 +47,10 @@ TEXT ALIGN - GLOBL C_SYMBOL_NAME(mpihelp_lshift) + GLOBL C_SYMBOL_NAME(_gcry_mpih_lshift) -C_SYMBOL_NAME(mpihelp_lshift:) -PROLOG(mpihelp_lshift) +C_SYMBOL_NAME(_gcry_mpih_lshift:) +PROLOG(_gcry_mpih_lshift) /* Save used registers on the stack. */ moveml R(d2)-R(d6)/R(a2),MEM_PREDEC(sp) @@ -158,7 +158,7 @@ L(LLend:) /* Restore used registers from stack frame. */ moveml MEM_POSTINC(sp),R(d2)-R(d6)/R(a2) rts -EPILOG(mpihelp_lshift) +EPILOG(_gcry_mpih_lshift) diff --git a/mpi/m68k/mpih-rshift.S b/mpi/m68k/mpih-rshift.S index cc86166a..d9be3e0d 100644 --- a/mpi/m68k/mpih-rshift.S +++ b/mpi/m68k/mpih-rshift.S @@ -34,7 +34,7 @@ /******************* * mpi_limb_t - * mpihelp_rshift( mpi_ptr_t wp, (sp + 4) + * _gcry_mpih_rshift( mpi_ptr_t wp, (sp + 4) * mpi_ptr_t up, (sp + 8) * mpi_size_t usize, (sp + 12) * unsigned cnt) (sp + 16) @@ -47,10 +47,10 @@ TEXT ALIGN - GLOBL C_SYMBOL_NAME(mpihelp_rshift) + GLOBL C_SYMBOL_NAME(_gcry_mpih_rshift) -C_SYMBOL_NAME(mpihelp_rshift:) -PROLOG(mpihelp_rshift) +C_SYMBOL_NAME(_gcry_mpih_rshift:) +PROLOG(_gcry_mpih_rshift) /* Save used registers on the stack. */ moveml R(d2)-R(d6)/R(a2),MEM_PREDEC(sp) @@ -157,7 +157,7 @@ L(LRend:) /* Restore used registers from stack frame. */ moveml MEM_POSTINC(sp),R(d2)-R(d6)/R(a2) rts -EPILOG(mpihelp_rshift) +EPILOG(_gcry_mpih_rshift) diff --git a/mpi/m68k/mpih-sub1.S b/mpi/m68k/mpih-sub1.S index 1847fbd6..945b8d24 100644 --- a/mpi/m68k/mpih-sub1.S +++ b/mpi/m68k/mpih-sub1.S @@ -35,7 +35,7 @@ /******************* * mpi_limb_t - * mpihelp_sub_n( mpi_ptr_t res_ptr, (sp + 4) + * _gcry_mpih_sub_n( mpi_ptr_t res_ptr, (sp + 4) * mpi_ptr_t s1_ptr, (sp + 8) * mpi_ptr_t s2_ptr, (sp + 16) * mpi_size_t size) (sp + 12) @@ -44,10 +44,10 @@ TEXT ALIGN - GLOBL C_SYMBOL_NAME(mpihelp_sub_n) + GLOBL C_SYMBOL_NAME(_gcry_mpih_sub_n) -C_SYMBOL_NAME(mpihelp_sub_n:) -PROLOG(mpihelp_sub_n) +C_SYMBOL_NAME(_gcry_mpih_sub_n:) +PROLOG(_gcry_mpih_sub_n) /* Save used registers on the stack. */ movel R(d2),MEM_PREDEC(sp) movel R(a2),MEM_PREDEC(sp) @@ -88,6 +88,6 @@ L(L2:) movel MEM_POSTINC(sp),R(d2) rts -EPILOG(mpihelp_sub_n) +EPILOG(_gcry_mpih_sub_n) |