1
0

opcode.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2022-11-09 WangXiaoyao Add portable asm support
  9. */
  10. #ifndef __OPCODE_H__
  11. #define __OPCODE_H__
  12. /**
  13. * @brief binary opcode pseudo operations
  14. * Used to bypass toolchain restriction on extension ISA
  15. *
  16. * WARNING: Xuantie ISAs are not compatible to each other in opcode.
  17. * It's painful to port this file, and should be really careful.
  18. */
  19. /**
  20. * @brief RISC-V instruction formats
  21. */
  22. /**
  23. * R type: .insn r opcode6, func3, func7, rd, rs1, rs2
  24. *
  25. * +-------+-----+-----+-------+----+---------+
  26. * | func7 | rs2 | rs1 | func3 | rd | opcode6 |
  27. * +-------+-----+-----+-------+----+---------+
  28. * 31 25 20 15 12 7 0
  29. */
  30. #define __OPC_INSN_FORMAT_R(opcode, func3, func7, rd, rs1, rs2) \
  31. ".insn r "RT_STRINGIFY(opcode)","RT_STRINGIFY(func3)","RT_STRINGIFY(func7)","RT_STRINGIFY(rd)","RT_STRINGIFY(rs1)","RT_STRINGIFY(rs2)
  32. /**
  33. * @brief Xuantie T-HEAD extension ISA format
  34. * Compatible to Xuantie C906R2S1 user manual v06
  35. */
  36. #define __OPC_INSN_FORMAT_CACHE(func7, rs2, rs1) \
  37. __OPC_INSN_FORMAT_R(0x0b, 0x0, func7, x0, rs1, rs2)
  38. #ifdef _TOOLCHAIN_SUPP_XTHEADE_ISA_
  39. #define OPC_SYNC "sync"
  40. #define OPC_SYNC_I "sync.i"
  41. #define OPC_DCACHE_CALL "dcache.call"
  42. #define OPC_DCACHE_IALL "dcache.iall"
  43. #define OPC_DCACHE_CIALL "dcache.ciall"
  44. #define OPC_ICACHE_IALL "icache.iall"
  45. #define OPC_DCACHE_CVA(rs1) "dcache.cva "RT_STRINGIFY(rs1)
  46. #define OPC_DCACHE_IVA(rs1) "dcache.iva "RT_STRINGIFY(rs1)
  47. #define OPC_DCACHE_CIVA(rs1) "dcache.civa "RT_STRINGIFY(rs1)
  48. #define OPC_ICACHE_IVA(rs1) "icache.iva "RT_STRINGIFY(rs1)
  49. #else /* !_TOOLCHAIN_NOT_SUPP_THEAD_ISA_ */
  50. #define OPC_SYNC ".long 0x0180000B"
  51. #define OPC_SYNC_I ".long 0x01A0000B"
  52. #define OPC_DCACHE_CALL ".long 0x0010000B"
  53. #define OPC_DCACHE_IALL ".long 0x0020000B"
  54. #define OPC_DCACHE_CIALL ".long 0x0030000B"
  55. #define OPC_ICACHE_IALL ".long 0x0100000B"
  56. #define OPC_DCACHE_CVA(rs1) __OPC_INSN_FORMAT_CACHE(0x1, x4, rs1)
  57. #define OPC_DCACHE_IVA(rs1) __OPC_INSN_FORMAT_CACHE(0x1, x6, rs1)
  58. #define OPC_DCACHE_CIVA(rs1) __OPC_INSN_FORMAT_CACHE(0x1, x7, rs1)
  59. #define OPC_ICACHE_IVA(rs1) __OPC_INSN_FORMAT_CACHE(0x1, x16, rs1)
  60. #endif /* _TOOLCHAIN_NOT_SUPP_THEAD_ISA_ */
  61. #ifdef _TOOLCHAIN_SUPP_ZIFENCEI_ISA_
  62. #define OPC_FENCE_I "fence.i"
  63. #else /* !_TOOLCHAIN_SUPP_ZIFENCEI_ISA_ */
  64. #define OPC_FENCE_I ".long 0x0000100F"
  65. #endif /* _TOOLCHAIN_SUPP_ZIFENCEI_ISA_ */
  66. #endif /* __OPCODE_H__ */