fpsimdmacros.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * FP/SIMD state saving and restoring macros
  3. *
  4. * Copyright (C) 2012 ARM Ltd.
  5. * Author: Catalin Marinas <catalin.marinas@arm.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. .macro fpsimd_save state, tmpnr
  20. stp q0, q1, [\state, #16 * 0]
  21. stp q2, q3, [\state, #16 * 2]
  22. stp q4, q5, [\state, #16 * 4]
  23. stp q6, q7, [\state, #16 * 6]
  24. stp q8, q9, [\state, #16 * 8]
  25. stp q10, q11, [\state, #16 * 10]
  26. stp q12, q13, [\state, #16 * 12]
  27. stp q14, q15, [\state, #16 * 14]
  28. stp q16, q17, [\state, #16 * 16]
  29. stp q18, q19, [\state, #16 * 18]
  30. stp q20, q21, [\state, #16 * 20]
  31. stp q22, q23, [\state, #16 * 22]
  32. stp q24, q25, [\state, #16 * 24]
  33. stp q26, q27, [\state, #16 * 26]
  34. stp q28, q29, [\state, #16 * 28]
  35. stp q30, q31, [\state, #16 * 30]!
  36. mrs x\tmpnr, fpsr
  37. str w\tmpnr, [\state, #16 * 2]
  38. mrs x\tmpnr, fpcr
  39. str w\tmpnr, [\state, #16 * 2 + 4]
  40. .endm
  41. .macro fpsimd_restore state, tmpnr
  42. ldp q0, q1, [\state, #16 * 0]
  43. ldp q2, q3, [\state, #16 * 2]
  44. ldp q4, q5, [\state, #16 * 4]
  45. ldp q6, q7, [\state, #16 * 6]
  46. ldp q8, q9, [\state, #16 * 8]
  47. ldp q10, q11, [\state, #16 * 10]
  48. ldp q12, q13, [\state, #16 * 12]
  49. ldp q14, q15, [\state, #16 * 14]
  50. ldp q16, q17, [\state, #16 * 16]
  51. ldp q18, q19, [\state, #16 * 18]
  52. ldp q20, q21, [\state, #16 * 20]
  53. ldp q22, q23, [\state, #16 * 22]
  54. ldp q24, q25, [\state, #16 * 24]
  55. ldp q26, q27, [\state, #16 * 26]
  56. ldp q28, q29, [\state, #16 * 28]
  57. ldp q30, q31, [\state, #16 * 30]!
  58. ldr w\tmpnr, [\state, #16 * 2]
  59. msr fpsr, x\tmpnr
  60. ldr w\tmpnr, [\state, #16 * 2 + 4]
  61. msr fpcr, x\tmpnr
  62. .endm