mpih-sub1.S 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* AMD64 (x86_64) sub_n -- Subtract two limb vectors of the same length > 0 and store
  2. * sum in a third limb vector.
  3. *
  4. * Copyright (C) 1992, 1994, 1995, 1998,
  5. * 2001, 2002, 2006 Free Software Foundation, Inc.
  6. *
  7. * This file is part of Libgcrypt.
  8. *
  9. * Libgcrypt is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU Lesser General Public License as
  11. * published by the Free Software Foundation; either version 2.1 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * Libgcrypt is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  22. *
  23. * Note: This code is heavily based on the GNU MP Library.
  24. * Actually it's the same code with only minor changes in the
  25. * way the data is stored; this is to support the abstraction
  26. * of an optional secure memory allocation which may be used
  27. * to avoid revealing of sensitive data due to paging etc.
  28. */
  29. #include "sysdep.h"
  30. #include "asm-syntax.h"
  31. /*******************
  32. * mpi_limb_t
  33. * _gcry_mpih_sub_n( mpi_ptr_t res_ptr, rdi
  34. * mpi_ptr_t s1_ptr, rsi
  35. * mpi_ptr_t s2_ptr, rdx
  36. * mpi_size_t size) rcx
  37. */
  38. .text
  39. .globl C_SYMBOL_NAME(_gcry_mpih_sub_n)
  40. C_SYMBOL_NAME(_gcry_mpih_sub_n:)
  41. leaq (%rsi,%rcx,8), %rsi
  42. leaq (%rdi,%rcx,8), %rdi
  43. leaq (%rdx,%rcx,8), %rdx
  44. negq %rcx
  45. xorl %eax, %eax /* clear cy */
  46. ALIGN(4) /* minimal alignment for claimed speed */
  47. .Loop: movq (%rsi,%rcx,8), %rax
  48. movq (%rdx,%rcx,8), %r10
  49. sbbq %r10, %rax
  50. movq %rax, (%rdi,%rcx,8)
  51. incq %rcx
  52. jne .Loop
  53. movq %rcx, %rax /* zero %rax */
  54. adcq %rax, %rax
  55. ret