checkasm.S 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /****************************************************************************
  2. * Assembly testing and benchmarking tool
  3. * Copyright (c) 2015 Martin Storsjo
  4. * Copyright (c) 2015 Janne Grunau
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.
  21. *****************************************************************************/
  22. #include "libavutil/aarch64/asm.S"
  23. const register_init, align=4
  24. .quad 0x21f86d66c8ca00ce
  25. .quad 0x75b6ba21077c48ad
  26. .quad 0xed56bb2dcb3c7736
  27. .quad 0x8bda43d3fd1a7e06
  28. .quad 0xb64a9c9e5d318408
  29. .quad 0xdf9a54b303f1d3a3
  30. .quad 0x4a75479abd64e097
  31. .quad 0x249214109d5d1c88
  32. .quad 0x1a1b2550a612b48c
  33. .quad 0x79445c159ce79064
  34. .quad 0x2eed899d5a28ddcd
  35. .quad 0x86b2536fcd8cf636
  36. .quad 0xb0856806085e7943
  37. .quad 0x3f2bf84fc0fcca4e
  38. .quad 0xacbd382dcf5b8de2
  39. .quad 0xd229e1f5b281303f
  40. .quad 0x71aeaff20b095fd9
  41. .quad 0xab63e2e11fa38ed9
  42. endconst
  43. const error_message
  44. .asciz "failed to preserve register"
  45. endconst
  46. // max number of args used by any asm function.
  47. #define MAX_ARGS 15
  48. #define CLOBBER_STACK ((8*MAX_ARGS + 15) & ~15)
  49. function checkasm_stack_clobber, export=1
  50. mov x3, sp
  51. mov x2, #CLOBBER_STACK
  52. 1:
  53. stp x0, x1, [sp, #-16]!
  54. subs x2, x2, #16
  55. b.gt 1b
  56. mov sp, x3
  57. ret
  58. endfunc
  59. #define ARG_STACK ((8*(MAX_ARGS - 8) + 15) & ~15)
  60. function checkasm_checked_call, export=1
  61. stp x29, x30, [sp, #-16]!
  62. mov x29, sp
  63. stp x19, x20, [sp, #-16]!
  64. stp x21, x22, [sp, #-16]!
  65. stp x23, x24, [sp, #-16]!
  66. stp x25, x26, [sp, #-16]!
  67. stp x27, x28, [sp, #-16]!
  68. stp d8, d9, [sp, #-16]!
  69. stp d10, d11, [sp, #-16]!
  70. stp d12, d13, [sp, #-16]!
  71. stp d14, d15, [sp, #-16]!
  72. movrel x9, register_init
  73. ldp d8, d9, [x9], #16
  74. ldp d10, d11, [x9], #16
  75. ldp d12, d13, [x9], #16
  76. ldp d14, d15, [x9], #16
  77. ldp x19, x20, [x9], #16
  78. ldp x21, x22, [x9], #16
  79. ldp x23, x24, [x9], #16
  80. ldp x25, x26, [x9], #16
  81. ldp x27, x28, [x9], #16
  82. sub sp, sp, #ARG_STACK
  83. .equ pos, 0
  84. .rept MAX_ARGS-8
  85. // Skip the first 8 args, that are loaded into registers
  86. ldr x9, [x29, #16 + 8*8 + pos]
  87. str x9, [sp, #pos]
  88. .equ pos, pos + 8
  89. .endr
  90. mov x12, x0
  91. ldp x0, x1, [x29, #16]
  92. ldp x2, x3, [x29, #32]
  93. ldp x4, x5, [x29, #48]
  94. ldp x6, x7, [x29, #64]
  95. blr x12
  96. add sp, sp, #ARG_STACK
  97. stp x0, x1, [sp, #-16]!
  98. movrel x9, register_init
  99. movi v3.8h, #0
  100. .macro check_reg_neon reg1, reg2
  101. ldr q1, [x9], #16
  102. uzp1 v2.2d, v\reg1\().2d, v\reg2\().2d
  103. eor v1.16b, v1.16b, v2.16b
  104. orr v3.16b, v3.16b, v1.16b
  105. .endm
  106. check_reg_neon 8, 9
  107. check_reg_neon 10, 11
  108. check_reg_neon 12, 13
  109. check_reg_neon 14, 15
  110. uqxtn v3.8b, v3.8h
  111. umov x3, v3.d[0]
  112. .macro check_reg reg1, reg2
  113. ldp x0, x1, [x9], #16
  114. eor x0, x0, \reg1
  115. eor x1, x1, \reg2
  116. orr x3, x3, x0
  117. orr x3, x3, x1
  118. .endm
  119. check_reg x19, x20
  120. check_reg x21, x22
  121. check_reg x23, x24
  122. check_reg x25, x26
  123. check_reg x27, x28
  124. cbz x3, 0f
  125. movrel x0, error_message
  126. bl X(checkasm_fail_func)
  127. 0:
  128. ldp x0, x1, [sp], #16
  129. ldp d14, d15, [sp], #16
  130. ldp d12, d13, [sp], #16
  131. ldp d10, d11, [sp], #16
  132. ldp d8, d9, [sp], #16
  133. ldp x27, x28, [sp], #16
  134. ldp x25, x26, [sp], #16
  135. ldp x23, x24, [sp], #16
  136. ldp x21, x22, [sp], #16
  137. ldp x19, x20, [sp], #16
  138. ldp x29, x30, [sp], #16
  139. ret
  140. endfunc