asmdefs.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) 2015 Imagination Technologies Ltd
  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. /**
  21. * @file
  22. * MIPS assembly defines from sys/asm.h but rewritten for use with C inline
  23. * assembly (rather than from within .s files).
  24. */
  25. #ifndef AVUTIL_MIPS_ASMDEFS_H
  26. #define AVUTIL_MIPS_ASMDEFS_H
  27. #if defined(_ABI64) && _MIPS_SIM == _ABI64
  28. # define mips_reg int64_t
  29. # define PTRSIZE " 8 "
  30. # define PTRLOG " 3 "
  31. # define PTR_ADDU "daddu "
  32. # define PTR_ADDIU "daddiu "
  33. # define PTR_ADDI "daddi "
  34. # define PTR_SUBU "dsubu "
  35. # define PTR_L "ld "
  36. # define PTR_S "sd "
  37. # define PTR_SRA "dsra "
  38. # define PTR_SRL "dsrl "
  39. # define PTR_SLL "dsll "
  40. #else
  41. # define mips_reg int32_t
  42. # define PTRSIZE " 4 "
  43. # define PTRLOG " 2 "
  44. # define PTR_ADDU "addu "
  45. # define PTR_ADDIU "addiu "
  46. # define PTR_ADDI "addi "
  47. # define PTR_SUBU "subu "
  48. # define PTR_L "lw "
  49. # define PTR_S "sw "
  50. # define PTR_SRA "sra "
  51. # define PTR_SRL "srl "
  52. # define PTR_SLL "sll "
  53. #endif
  54. #endif /* AVCODEC_MIPS_ASMDEFS_H */