You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.4KB

  1. /*
  2. * Copyright (c) 2009 Loren Merritt
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg 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 GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "config.h"
  21. #if HAVE_IBM_ASM
  22. .macro DEFINE_REG n
  23. .equiv r\n, \n
  24. .equiv f\n, \n
  25. .equiv v\n, \n
  26. .endm
  27. DEFINE_REG 0
  28. DEFINE_REG 1
  29. DEFINE_REG 2
  30. DEFINE_REG 3
  31. DEFINE_REG 4
  32. DEFINE_REG 5
  33. DEFINE_REG 6
  34. DEFINE_REG 7
  35. DEFINE_REG 8
  36. DEFINE_REG 9
  37. DEFINE_REG 10
  38. DEFINE_REG 11
  39. DEFINE_REG 12
  40. DEFINE_REG 13
  41. DEFINE_REG 14
  42. DEFINE_REG 15
  43. DEFINE_REG 16
  44. DEFINE_REG 17
  45. DEFINE_REG 18
  46. DEFINE_REG 19
  47. DEFINE_REG 20
  48. DEFINE_REG 21
  49. DEFINE_REG 22
  50. DEFINE_REG 23
  51. DEFINE_REG 24
  52. DEFINE_REG 25
  53. DEFINE_REG 26
  54. DEFINE_REG 27
  55. DEFINE_REG 28
  56. DEFINE_REG 29
  57. DEFINE_REG 30
  58. DEFINE_REG 31
  59. #endif /* HAVE_IBM_ASM */