ec_multibinary.asm 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ; Copyright(c) 2011-2015 Intel Corporation All rights reserved.
  3. ;
  4. ; Redistribution and use in source and binary forms, with or without
  5. ; modification, are permitted provided that the following conditions
  6. ; are met:
  7. ; * Redistributions of source code must retain the above copyright
  8. ; notice, this list of conditions and the following disclaimer.
  9. ; * Redistributions in binary form must reproduce the above copyright
  10. ; notice, this list of conditions and the following disclaimer in
  11. ; the documentation and/or other materials provided with the
  12. ; distribution.
  13. ; * Neither the name of Intel Corporation nor the names of its
  14. ; contributors may be used to endorse or promote products derived
  15. ; from this software without specific prior written permission.
  16. ;
  17. ; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. ; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. ; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20. ; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21. ; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. ; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23. ; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24. ; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. ; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. ; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27. ; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  29. %include "reg_sizes.asm"
  30. %include "multibinary.asm"
  31. %ifidn __OUTPUT_FORMAT__, elf32
  32. [bits 32]
  33. %else
  34. default rel
  35. [bits 64]
  36. extern ec_encode_data_update_sse
  37. extern ec_encode_data_update_avx
  38. extern ec_encode_data_update_avx2
  39. %ifdef HAVE_AS_KNOWS_AVX512
  40. extern ec_encode_data_avx512
  41. extern gf_vect_dot_prod_avx512
  42. extern ec_encode_data_update_avx512
  43. extern gf_vect_mad_avx512
  44. %endif
  45. extern gf_vect_mul_sse
  46. extern gf_vect_mul_avx
  47. extern gf_vect_mad_sse
  48. extern gf_vect_mad_avx
  49. extern gf_vect_mad_avx2
  50. %endif
  51. %if (AS_FEATURE_LEVEL) >= 10
  52. extern ec_init_tables_gfni
  53. extern ec_encode_data_avx512_gfni
  54. extern ec_encode_data_avx2_gfni
  55. extern ec_encode_data_update_avx512_gfni
  56. extern ec_encode_data_update_avx2_gfni
  57. %endif
  58. extern ec_init_tables_base
  59. extern gf_vect_mul_base
  60. extern ec_encode_data_base
  61. extern ec_encode_data_update_base
  62. extern gf_vect_dot_prod_base
  63. extern gf_vect_mad_base
  64. extern gf_vect_dot_prod_sse
  65. extern gf_vect_dot_prod_avx
  66. extern gf_vect_dot_prod_avx2
  67. extern ec_encode_data_sse
  68. extern ec_encode_data_avx
  69. extern ec_encode_data_avx2
  70. mbin_interface ec_encode_data
  71. mbin_interface gf_vect_dot_prod
  72. mbin_interface gf_vect_mul
  73. mbin_interface ec_encode_data_update
  74. mbin_interface gf_vect_mad
  75. mbin_interface ec_init_tables
  76. %ifidn __OUTPUT_FORMAT__, elf32
  77. mbin_dispatch_init5 ec_encode_data, ec_encode_data_base, ec_encode_data_sse, ec_encode_data_avx, ec_encode_data_avx2
  78. mbin_dispatch_init5 gf_vect_dot_prod, gf_vect_dot_prod_base, gf_vect_dot_prod_sse, gf_vect_dot_prod_avx, gf_vect_dot_prod_avx2
  79. mbin_dispatch_init2 gf_vect_mul, gf_vect_mul_base
  80. mbin_dispatch_init2 ec_encode_data_update, ec_encode_data_update_base
  81. mbin_dispatch_init2 gf_vect_mad, gf_vect_mad_base
  82. mbin_dispatch_init2 ec_init_tables, ec_init_tables_base
  83. %else
  84. mbin_dispatch_init5 gf_vect_mul, gf_vect_mul_base, gf_vect_mul_sse, gf_vect_mul_avx, gf_vect_mul_avx
  85. mbin_dispatch_init8 ec_encode_data, ec_encode_data_base, ec_encode_data_sse, ec_encode_data_avx, ec_encode_data_avx2, ec_encode_data_avx512, ec_encode_data_avx2_gfni, ec_encode_data_avx512_gfni
  86. mbin_dispatch_init8 ec_encode_data_update, ec_encode_data_update_base, ec_encode_data_update_sse, ec_encode_data_update_avx, ec_encode_data_update_avx2, ec_encode_data_update_avx512, ec_encode_data_update_avx2_gfni, ec_encode_data_update_avx512_gfni
  87. mbin_dispatch_init6 gf_vect_mad, gf_vect_mad_base, gf_vect_mad_sse, gf_vect_mad_avx, gf_vect_mad_avx2, gf_vect_mad_avx512
  88. mbin_dispatch_init6 gf_vect_dot_prod, gf_vect_dot_prod_base, gf_vect_dot_prod_sse, gf_vect_dot_prod_avx, gf_vect_dot_prod_avx2, gf_vect_dot_prod_avx512
  89. mbin_dispatch_init8 ec_init_tables, ec_init_tables_base, ec_init_tables_base, ec_init_tables_base, ec_init_tables_base, ec_init_tables_base, ec_init_tables_gfni, ec_init_tables_gfni
  90. %endif