riscv.h 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918
  1. /* Definition of RISC-V target for GNU compiler.
  2. Copyright (C) 2011-2018 Free Software Foundation, Inc.
  3. Contributed by Andrew Waterman (andrew@sifive.com).
  4. Based on MIPS target for GNU compiler.
  5. This file is part of GCC.
  6. GCC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 3, or (at your option)
  9. any later version.
  10. GCC is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with GCC; see the file COPYING3. If not see
  16. <http://www.gnu.org/licenses/>. */
  17. #ifndef GCC_RISCV_H
  18. #define GCC_RISCV_H
  19. #include "config/riscv/riscv-opts.h"
  20. /* Target CPU builtins. */
  21. #define TARGET_CPU_CPP_BUILTINS() riscv_cpu_cpp_builtins (pfile)
  22. /* Default target_flags if no switches are specified */
  23. #ifndef TARGET_DEFAULT
  24. #define TARGET_DEFAULT 0
  25. #endif
  26. #ifndef RISCV_TUNE_STRING_DEFAULT
  27. #define RISCV_TUNE_STRING_DEFAULT "rocket"
  28. #endif
  29. /* Support for a compile-time default CPU, et cetera. The rules are:
  30. --with-arch is ignored if -march is specified.
  31. --with-abi is ignored if -mabi is specified.
  32. --with-tune is ignored if -mtune is specified. */
  33. #define OPTION_DEFAULT_SPECS \
  34. {"tune", "%{!mtune=*:-mtune=%(VALUE)}" }, \
  35. {"arch", "%{!march=*:-march=%(VALUE)}" }, \
  36. {"abi", "%{!mabi=*:-mabi=%(VALUE)}" }, \
  37. #ifdef IN_LIBGCC2
  38. #undef TARGET_64BIT
  39. /* Make this compile time constant for libgcc2 */
  40. #define TARGET_64BIT (__riscv_xlen == 64)
  41. #endif /* IN_LIBGCC2 */
  42. #undef ASM_SPEC
  43. #define ASM_SPEC "\
  44. %(subtarget_asm_debugging_spec) \
  45. %{" FPIE_OR_FPIC_SPEC ":-fpic} \
  46. %{march=*} \
  47. %{mabi=*} \
  48. %(subtarget_asm_spec)"
  49. #define TARGET_DEFAULT_CMODEL CM_MEDLOW
  50. #define LOCAL_LABEL_PREFIX "."
  51. #define USER_LABEL_PREFIX ""
  52. /* Offsets recorded in opcodes are a multiple of this alignment factor.
  53. The default for this in 64-bit mode is 8, which causes problems with
  54. SFmode register saves. */
  55. #define DWARF_CIE_DATA_ALIGNMENT -4
  56. /* The mapping from gcc register number to DWARF 2 CFA column number. */
  57. #define DWARF_FRAME_REGNUM(REGNO) \
  58. (GP_REG_P (REGNO) || FP_REG_P (REGNO) ? REGNO : INVALID_REGNUM)
  59. /* The DWARF 2 CFA column which tracks the return address. */
  60. #define DWARF_FRAME_RETURN_COLUMN RETURN_ADDR_REGNUM
  61. #define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (VOIDmode, RETURN_ADDR_REGNUM)
  62. /* Describe how we implement __builtin_eh_return. */
  63. #define EH_RETURN_DATA_REGNO(N) \
  64. ((N) < 4 ? (N) + GP_ARG_FIRST : INVALID_REGNUM)
  65. #define EH_RETURN_STACKADJ_RTX gen_rtx_REG (Pmode, GP_ARG_FIRST + 4)
  66. /* Target machine storage layout */
  67. #define BITS_BIG_ENDIAN 0
  68. #define BYTES_BIG_ENDIAN 0
  69. #define WORDS_BIG_ENDIAN 0
  70. #define MAX_BITS_PER_WORD 64
  71. /* Width of a word, in units (bytes). */
  72. #define UNITS_PER_WORD (TARGET_64BIT ? 8 : 4)
  73. #ifndef IN_LIBGCC2
  74. #define MIN_UNITS_PER_WORD 4
  75. #endif
  76. /* The `Q' extension is not yet supported. */
  77. #define UNITS_PER_FP_REG (TARGET_DOUBLE_FLOAT ? 8 : 4)
  78. /* The largest type that can be passed in floating-point registers. */
  79. #define UNITS_PER_FP_ARG \
  80. ((riscv_abi == ABI_ILP32 || riscv_abi == ABI_ILP32E \
  81. || riscv_abi == ABI_LP64) \
  82. ? 0 \
  83. : ((riscv_abi == ABI_ILP32F || riscv_abi == ABI_LP64F) ? 4 : 8))
  84. /* Set the sizes of the core types. */
  85. #define SHORT_TYPE_SIZE 16
  86. #define INT_TYPE_SIZE 32
  87. #define LONG_LONG_TYPE_SIZE 64
  88. #define POINTER_SIZE (riscv_abi >= ABI_LP64 ? 64 : 32)
  89. #define LONG_TYPE_SIZE POINTER_SIZE
  90. #define FLOAT_TYPE_SIZE 32
  91. #define DOUBLE_TYPE_SIZE 64
  92. #define LONG_DOUBLE_TYPE_SIZE 128
  93. /* Allocation boundary (in *bits*) for storing arguments in argument list. */
  94. #define PARM_BOUNDARY BITS_PER_WORD
  95. /* Allocation boundary (in *bits*) for the code of a function. */
  96. #define FUNCTION_BOUNDARY (TARGET_RVC ? 16 : 32)
  97. /* The smallest supported stack boundary the calling convention supports. */
  98. #define STACK_BOUNDARY \
  99. (riscv_abi == ABI_ILP32E ? BITS_PER_WORD : 2 * BITS_PER_WORD)
  100. /* The ABI stack alignment. */
  101. #define ABI_STACK_BOUNDARY (riscv_abi == ABI_ILP32E ? BITS_PER_WORD : 128)
  102. /* There is no point aligning anything to a rounder boundary than this. */
  103. #define BIGGEST_ALIGNMENT 128
  104. /* The user-level ISA permits unaligned accesses, but they are not required
  105. of the privileged architecture. */
  106. #define STRICT_ALIGNMENT TARGET_STRICT_ALIGN
  107. /* Define this if you wish to imitate the way many other C compilers
  108. handle alignment of bitfields and the structures that contain
  109. them.
  110. The behavior is that the type written for a bit-field (`int',
  111. `short', or other integer type) imposes an alignment for the
  112. entire structure, as if the structure really did contain an
  113. ordinary field of that type. In addition, the bit-field is placed
  114. within the structure so that it would fit within such a field,
  115. not crossing a boundary for it.
  116. Thus, on most machines, a bit-field whose type is written as `int'
  117. would not cross a four-byte boundary, and would force four-byte
  118. alignment for the whole structure. (The alignment used may not
  119. be four bytes; it is controlled by the other alignment
  120. parameters.)
  121. If the macro is defined, its definition should be a C expression;
  122. a nonzero value for the expression enables this behavior. */
  123. #define PCC_BITFIELD_TYPE_MATTERS 1
  124. /* An integer expression for the size in bits of the largest integer machine
  125. mode that should actually be used. We allow pairs of registers. */
  126. #define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (TARGET_64BIT ? TImode : DImode)
  127. /* DATA_ALIGNMENT and LOCAL_ALIGNMENT common definition. */
  128. #define RISCV_EXPAND_ALIGNMENT(COND, TYPE, ALIGN) \
  129. (((COND) && ((ALIGN) < BITS_PER_WORD) \
  130. && (TREE_CODE (TYPE) == ARRAY_TYPE \
  131. || TREE_CODE (TYPE) == UNION_TYPE \
  132. || TREE_CODE (TYPE) == RECORD_TYPE)) ? BITS_PER_WORD : (ALIGN))
  133. /* If defined, a C expression to compute the alignment for a static
  134. variable. TYPE is the data type, and ALIGN is the alignment that
  135. the object would ordinarily have. The value of this macro is used
  136. instead of that alignment to align the object.
  137. If this macro is not defined, then ALIGN is used.
  138. One use of this macro is to increase alignment of medium-size
  139. data to make it all fit in fewer cache lines. Another is to
  140. cause character arrays to be word-aligned so that `strcpy' calls
  141. that copy constants to character arrays can be done inline. */
  142. #define DATA_ALIGNMENT(TYPE, ALIGN) \
  143. RISCV_EXPAND_ALIGNMENT (riscv_align_data_type == riscv_align_data_type_xlen, \
  144. TYPE, ALIGN)
  145. /* We need this for the same reason as DATA_ALIGNMENT, namely to cause
  146. character arrays to be word-aligned so that `strcpy' calls that copy
  147. constants to character arrays can be done inline, and 'strcmp' can be
  148. optimised to use word loads. */
  149. #define LOCAL_ALIGNMENT(TYPE, ALIGN) \
  150. RISCV_EXPAND_ALIGNMENT (true, TYPE, ALIGN)
  151. /* Define if operations between registers always perform the operation
  152. on the full register even if a narrower mode is specified. */
  153. #define WORD_REGISTER_OPERATIONS 1
  154. /* When in 64-bit mode, move insns will sign extend SImode and CCmode
  155. moves. All other references are zero extended. */
  156. #define LOAD_EXTEND_OP(MODE) \
  157. (TARGET_64BIT && (MODE) == SImode ? SIGN_EXTEND : ZERO_EXTEND)
  158. /* Define this macro if it is advisable to hold scalars in registers
  159. in a wider mode than that declared by the program. In such cases,
  160. the value is constrained to be within the bounds of the declared
  161. type, but kept valid in the wider mode. The signedness of the
  162. extension may differ from that of the type. */
  163. #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
  164. if (GET_MODE_CLASS (MODE) == MODE_INT \
  165. && GET_MODE_SIZE (MODE) < UNITS_PER_WORD) \
  166. { \
  167. if ((MODE) == SImode) \
  168. (UNSIGNEDP) = 0; \
  169. (MODE) = word_mode; \
  170. }
  171. /* Pmode is always the same as ptr_mode, but not always the same as word_mode.
  172. Extensions of pointers to word_mode must be signed. */
  173. #define POINTERS_EXTEND_UNSIGNED false
  174. /* Define if loading short immediate values into registers sign extends. */
  175. #define SHORT_IMMEDIATES_SIGN_EXTEND 1
  176. /* Standard register usage. */
  177. /* Number of hardware registers. We have:
  178. - 32 integer registers
  179. - 32 floating point registers
  180. - 2 fake registers:
  181. - ARG_POINTER_REGNUM
  182. - FRAME_POINTER_REGNUM */
  183. #define FIRST_PSEUDO_REGISTER 66
  184. /* x0, sp, gp, and tp are fixed. */
  185. #define FIXED_REGISTERS \
  186. { /* General registers. */ \
  187. 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
  188. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
  189. /* Floating-point registers. */ \
  190. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
  191. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
  192. /* Others. */ \
  193. 1, 1 \
  194. }
  195. /* a0-a7, t0-t6, fa0-fa7, and ft0-ft11 are volatile across calls.
  196. The call RTLs themselves clobber ra. */
  197. #define CALL_USED_REGISTERS \
  198. { /* General registers. */ \
  199. 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, \
  200. 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, \
  201. /* Floating-point registers. */ \
  202. 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, \
  203. 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, \
  204. /* Others. */ \
  205. 1, 1 \
  206. }
  207. /* Internal macros to classify an ISA register's type. */
  208. #define GP_REG_FIRST 0
  209. #define GP_REG_LAST (TARGET_RVE ? 15 : 31)
  210. #define GP_REG_NUM (GP_REG_LAST - GP_REG_FIRST + 1)
  211. #define FP_REG_FIRST 32
  212. #define FP_REG_LAST 63
  213. #define FP_REG_NUM (FP_REG_LAST - FP_REG_FIRST + 1)
  214. /* The DWARF 2 CFA column which tracks the return address from a
  215. signal handler context. This means that to maintain backwards
  216. compatibility, no hard register can be assigned this column if it
  217. would need to be handled by the DWARF unwinder. */
  218. #define DWARF_ALT_FRAME_RETURN_COLUMN 64
  219. #define GP_REG_P(REGNO) \
  220. ((unsigned int) ((int) (REGNO) - GP_REG_FIRST) < GP_REG_NUM)
  221. #define FP_REG_P(REGNO) \
  222. ((unsigned int) ((int) (REGNO) - FP_REG_FIRST) < FP_REG_NUM)
  223. #define FP_REG_RTX_P(X) (REG_P (X) && FP_REG_P (REGNO (X)))
  224. /* Use s0 as the frame pointer if it is so requested. */
  225. #define HARD_FRAME_POINTER_REGNUM 8
  226. #define STACK_POINTER_REGNUM 2
  227. #define THREAD_POINTER_REGNUM 4
  228. /* These two registers don't really exist: they get eliminated to either
  229. the stack or hard frame pointer. */
  230. #define ARG_POINTER_REGNUM 64
  231. #define FRAME_POINTER_REGNUM 65
  232. /* Register in which static-chain is passed to a function. */
  233. #define STATIC_CHAIN_REGNUM (GP_TEMP_FIRST + 2)
  234. /* Registers used as temporaries in prologue/epilogue code.
  235. The prologue registers mustn't conflict with any
  236. incoming arguments, the static chain pointer, or the frame pointer.
  237. The epilogue temporary mustn't conflict with the return registers,
  238. the frame pointer, the EH stack adjustment, or the EH data registers. */
  239. #define RISCV_PROLOGUE_TEMP_REGNUM (GP_TEMP_FIRST + 1)
  240. #define RISCV_PROLOGUE_TEMP(MODE) gen_rtx_REG (MODE, RISCV_PROLOGUE_TEMP_REGNUM)
  241. #define MCOUNT_NAME "_mcount"
  242. #define NO_PROFILE_COUNTERS 1
  243. /* Emit rtl for profiling. Output assembler code to FILE
  244. to call "_mcount" for profiling a function entry. */
  245. #define PROFILE_HOOK(LABEL) \
  246. { \
  247. rtx fun, ra; \
  248. ra = get_hard_reg_initial_val (Pmode, RETURN_ADDR_REGNUM); \
  249. fun = gen_rtx_SYMBOL_REF (Pmode, MCOUNT_NAME); \
  250. emit_library_call (fun, LCT_NORMAL, VOIDmode, ra, Pmode); \
  251. }
  252. /* All the work done in PROFILE_HOOK, but still required. */
  253. #define FUNCTION_PROFILER(STREAM, LABELNO) do { } while (0)
  254. /* Define this macro if it is as good or better to call a constant
  255. function address than to call an address kept in a register. */
  256. #define NO_FUNCTION_CSE 1
  257. /* Define the classes of registers for register constraints in the
  258. machine description. Also define ranges of constants.
  259. One of the classes must always be named ALL_REGS and include all hard regs.
  260. If there is more than one class, another class must be named NO_REGS
  261. and contain no registers.
  262. The name GENERAL_REGS must be the name of a class (or an alias for
  263. another name such as ALL_REGS). This is the class of registers
  264. that is allowed by "g" or "r" in a register constraint.
  265. Also, registers outside this class are allocated only when
  266. instructions express preferences for them.
  267. The classes must be numbered in nondecreasing order; that is,
  268. a larger-numbered class must never be contained completely
  269. in a smaller-numbered class.
  270. For any two classes, it is very desirable that there be another
  271. class that represents their union. */
  272. enum reg_class
  273. {
  274. NO_REGS, /* no registers in set */
  275. SIBCALL_REGS, /* registers used by indirect sibcalls */
  276. JALR_REGS, /* registers used by indirect calls */
  277. GR_REGS, /* integer registers */
  278. FP_REGS, /* floating-point registers */
  279. FRAME_REGS, /* arg pointer and frame pointer */
  280. ALL_REGS, /* all registers */
  281. LIM_REG_CLASSES /* max value + 1 */
  282. };
  283. #define N_REG_CLASSES (int) LIM_REG_CLASSES
  284. #define GENERAL_REGS GR_REGS
  285. /* An initializer containing the names of the register classes as C
  286. string constants. These names are used in writing some of the
  287. debugging dumps. */
  288. #define REG_CLASS_NAMES \
  289. { \
  290. "NO_REGS", \
  291. "SIBCALL_REGS", \
  292. "JALR_REGS", \
  293. "GR_REGS", \
  294. "FP_REGS", \
  295. "FRAME_REGS", \
  296. "ALL_REGS" \
  297. }
  298. /* An initializer containing the contents of the register classes,
  299. as integers which are bit masks. The Nth integer specifies the
  300. contents of class N. The way the integer MASK is interpreted is
  301. that register R is in the class if `MASK & (1 << R)' is 1.
  302. When the machine has more than 32 registers, an integer does not
  303. suffice. Then the integers are replaced by sub-initializers,
  304. braced groupings containing several integers. Each
  305. sub-initializer must be suitable as an initializer for the type
  306. `HARD_REG_SET' which is defined in `hard-reg-set.h'. */
  307. #define REG_CLASS_CONTENTS \
  308. { \
  309. { 0x00000000, 0x00000000, 0x00000000 }, /* NO_REGS */ \
  310. { 0xf00000c0, 0x00000000, 0x00000000 }, /* SIBCALL_REGS */ \
  311. { 0xffffffc0, 0x00000000, 0x00000000 }, /* JALR_REGS */ \
  312. { 0xffffffff, 0x00000000, 0x00000000 }, /* GR_REGS */ \
  313. { 0x00000000, 0xffffffff, 0x00000000 }, /* FP_REGS */ \
  314. { 0x00000000, 0x00000000, 0x00000003 }, /* FRAME_REGS */ \
  315. { 0xffffffff, 0xffffffff, 0x00000003 } /* ALL_REGS */ \
  316. }
  317. /* A C expression whose value is a register class containing hard
  318. register REGNO. In general there is more that one such class;
  319. choose a class which is "minimal", meaning that no smaller class
  320. also contains the register. */
  321. #define REGNO_REG_CLASS(REGNO) riscv_regno_to_class[ (REGNO) ]
  322. /* A macro whose definition is the name of the class to which a
  323. valid base register must belong. A base register is one used in
  324. an address which is the register value plus a displacement. */
  325. #define BASE_REG_CLASS GR_REGS
  326. /* A macro whose definition is the name of the class to which a
  327. valid index register must belong. An index register is one used
  328. in an address where its value is either multiplied by a scale
  329. factor or added to another register (as well as added to a
  330. displacement). */
  331. #define INDEX_REG_CLASS NO_REGS
  332. /* We generally want to put call-clobbered registers ahead of
  333. call-saved ones. (IRA expects this.) */
  334. #define REG_ALLOC_ORDER \
  335. { \
  336. /* Call-clobbered GPRs. */ \
  337. 15, 14, 13, 12, 11, 10, 16, 17, 6, 28, 29, 30, 31, 5, 7, 1, \
  338. /* Call-saved GPRs. */ \
  339. 8, 9, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, \
  340. /* GPRs that can never be exposed to the register allocator. */ \
  341. 0, 2, 3, 4, \
  342. /* Call-clobbered FPRs. */ \
  343. 47, 46, 45, 44, 43, 42, 32, 33, 34, 35, 36, 37, 38, 39, 48, 49, \
  344. 60, 61, 62, 63, \
  345. /* Call-saved FPRs. */ \
  346. 40, 41, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, \
  347. /* None of the remaining classes have defined call-saved \
  348. registers. */ \
  349. 64, 65 \
  350. }
  351. /* True if VALUE is a signed 12-bit number. */
  352. #define SMALL_OPERAND(VALUE) \
  353. ((unsigned HOST_WIDE_INT) (VALUE) + IMM_REACH/2 < IMM_REACH)
  354. /* True if VALUE can be loaded into a register using LUI. */
  355. #define LUI_OPERAND(VALUE) \
  356. (((VALUE) | ((1UL<<31) - IMM_REACH)) == ((1UL<<31) - IMM_REACH) \
  357. || ((VALUE) | ((1UL<<31) - IMM_REACH)) + IMM_REACH == 0)
  358. /* Stack layout; function entry, exit and calling. */
  359. #define STACK_GROWS_DOWNWARD 1
  360. #define FRAME_GROWS_DOWNWARD 1
  361. #define RETURN_ADDR_RTX riscv_return_addr
  362. #define ELIMINABLE_REGS \
  363. {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
  364. { ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}, \
  365. { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
  366. { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}} \
  367. #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
  368. (OFFSET) = riscv_initial_elimination_offset (FROM, TO)
  369. /* Allocate stack space for arguments at the beginning of each function. */
  370. #define ACCUMULATE_OUTGOING_ARGS 1
  371. /* The argument pointer always points to the first argument. */
  372. #define FIRST_PARM_OFFSET(FNDECL) 0
  373. #define REG_PARM_STACK_SPACE(FNDECL) 0
  374. /* Define this if it is the responsibility of the caller to
  375. allocate the area reserved for arguments passed in registers.
  376. If `ACCUMULATE_OUTGOING_ARGS' is also defined, the only effect
  377. of this macro is to determine whether the space is included in
  378. `crtl->outgoing_args_size'. */
  379. #define OUTGOING_REG_PARM_STACK_SPACE(FNTYPE) 1
  380. #define PREFERRED_STACK_BOUNDARY riscv_stack_boundary
  381. /* Symbolic macros for the registers used to return integer and floating
  382. point values. */
  383. #define GP_RETURN GP_ARG_FIRST
  384. #define FP_RETURN (UNITS_PER_FP_ARG == 0 ? GP_RETURN : FP_ARG_FIRST)
  385. #define MAX_ARGS_IN_REGISTERS (riscv_abi == ABI_ILP32E ? 6 : 8)
  386. /* Symbolic macros for the first/last argument registers. */
  387. #define GP_ARG_FIRST (GP_REG_FIRST + 10)
  388. #define GP_ARG_LAST (GP_ARG_FIRST + MAX_ARGS_IN_REGISTERS - 1)
  389. #define GP_TEMP_FIRST (GP_REG_FIRST + 5)
  390. #define FP_ARG_FIRST (FP_REG_FIRST + 10)
  391. #define FP_ARG_LAST (FP_ARG_FIRST + MAX_ARGS_IN_REGISTERS - 1)
  392. #define CALLEE_SAVED_REG_NUMBER(REGNO) \
  393. ((REGNO) >= 8 && (REGNO) <= 9 ? (REGNO) - 8 : \
  394. (REGNO) >= 18 && (REGNO) <= 27 ? (REGNO) - 16 : -1)
  395. #define LIBCALL_VALUE(MODE) \
  396. riscv_function_value (NULL_TREE, NULL_TREE, MODE)
  397. #define FUNCTION_VALUE(VALTYPE, FUNC) \
  398. riscv_function_value (VALTYPE, FUNC, VOIDmode)
  399. #define FUNCTION_VALUE_REGNO_P(N) ((N) == GP_RETURN || (N) == FP_RETURN)
  400. /* 1 if N is a possible register number for function argument passing.
  401. We have no FP argument registers when soft-float. */
  402. /* Accept arguments in a0-a7, and in fa0-fa7 if permitted by the ABI. */
  403. #define FUNCTION_ARG_REGNO_P(N) \
  404. (IN_RANGE ((N), GP_ARG_FIRST, GP_ARG_LAST) \
  405. || (UNITS_PER_FP_ARG && IN_RANGE ((N), FP_ARG_FIRST, FP_ARG_LAST)))
  406. typedef struct {
  407. /* Number of integer registers used so far, up to MAX_ARGS_IN_REGISTERS. */
  408. unsigned int num_gprs;
  409. /* Number of floating-point registers used so far, likewise. */
  410. unsigned int num_fprs;
  411. } CUMULATIVE_ARGS;
  412. /* Initialize a variable CUM of type CUMULATIVE_ARGS
  413. for a call to a function whose data type is FNTYPE.
  414. For a library call, FNTYPE is 0. */
  415. #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
  416. memset (&(CUM), 0, sizeof (CUM))
  417. #define EPILOGUE_USES(REGNO) riscv_epilogue_uses (REGNO)
  418. /* Align based on stack boundary, which might have been set by the user. */
  419. #define RISCV_STACK_ALIGN(LOC) \
  420. (((LOC) + ((PREFERRED_STACK_BOUNDARY/8)-1)) & -(PREFERRED_STACK_BOUNDARY/8))
  421. /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
  422. the stack pointer does not matter. The value is tested only in
  423. functions that have frame pointers.
  424. No definition is equivalent to always zero. */
  425. #define EXIT_IGNORE_STACK 1
  426. /* Trampolines are a block of code followed by two pointers. */
  427. #define TRAMPOLINE_CODE_SIZE 16
  428. #define TRAMPOLINE_SIZE \
  429. ((Pmode == SImode) \
  430. ? TRAMPOLINE_CODE_SIZE \
  431. : (TRAMPOLINE_CODE_SIZE + POINTER_SIZE * 2))
  432. #define TRAMPOLINE_ALIGNMENT POINTER_SIZE
  433. /* Addressing modes, and classification of registers for them. */
  434. #define REGNO_OK_FOR_INDEX_P(REGNO) 0
  435. #define REGNO_MODE_OK_FOR_BASE_P(REGNO, MODE) \
  436. riscv_regno_mode_ok_for_base_p (REGNO, MODE, 1)
  437. /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
  438. and check its validity for a certain class.
  439. We have two alternate definitions for each of them.
  440. The usual definition accepts all pseudo regs; the other rejects them all.
  441. The symbol REG_OK_STRICT causes the latter definition to be used.
  442. Most source files want to accept pseudo regs in the hope that
  443. they will get allocated to the class that the insn wants them to be in.
  444. Some source files that are used after register allocation
  445. need to be strict. */
  446. #ifndef REG_OK_STRICT
  447. #define REG_MODE_OK_FOR_BASE_P(X, MODE) \
  448. riscv_regno_mode_ok_for_base_p (REGNO (X), MODE, 0)
  449. #else
  450. #define REG_MODE_OK_FOR_BASE_P(X, MODE) \
  451. riscv_regno_mode_ok_for_base_p (REGNO (X), MODE, 1)
  452. #endif
  453. #define REG_OK_FOR_INDEX_P(X) 0
  454. /* Maximum number of registers that can appear in a valid memory address. */
  455. #define MAX_REGS_PER_ADDRESS 1
  456. #define CONSTANT_ADDRESS_P(X) \
  457. (CONSTANT_P (X) && memory_address_p (SImode, X))
  458. /* This handles the magic '..CURRENT_FUNCTION' symbol, which means
  459. 'the start of the function that this code is output in'. */
  460. #define ASM_OUTPUT_LABELREF(FILE,NAME) \
  461. do { \
  462. if (strcmp (NAME, "..CURRENT_FUNCTION") == 0) \
  463. asm_fprintf ((FILE), "%U%s", \
  464. XSTR (XEXP (DECL_RTL (current_function_decl), \
  465. 0), 0)); \
  466. else \
  467. asm_fprintf ((FILE), "%U%s", (NAME)); \
  468. } while (0)
  469. #define JUMP_TABLES_IN_TEXT_SECTION 0
  470. #define CASE_VECTOR_MODE SImode
  471. #define CASE_VECTOR_PC_RELATIVE (riscv_cmodel != CM_MEDLOW)
  472. /* The load-address macro is used for PC-relative addressing of symbols
  473. that bind locally. Don't use it for symbols that should be addressed
  474. via the GOT. Also, avoid it for CM_MEDLOW, where LUI addressing
  475. currently results in more opportunities for linker relaxation. */
  476. #define USE_LOAD_ADDRESS_MACRO(sym) \
  477. (!TARGET_EXPLICIT_RELOCS && \
  478. ((flag_pic \
  479. && ((SYMBOL_REF_P (sym) && SYMBOL_REF_LOCAL_P (sym)) \
  480. || ((GET_CODE (sym) == CONST) \
  481. && SYMBOL_REF_P (XEXP (XEXP (sym, 0),0)) \
  482. && SYMBOL_REF_LOCAL_P (XEXP (XEXP (sym, 0),0))))) \
  483. || riscv_cmodel == CM_MEDANY))
  484. /* Define this as 1 if `char' should by default be signed; else as 0. */
  485. #define DEFAULT_SIGNED_CHAR 0
  486. #define MOVE_MAX UNITS_PER_WORD
  487. #define MAX_MOVE_MAX 8
  488. /* The SPARC port says:
  489. Nonzero if access to memory by bytes is slow and undesirable.
  490. For RISC chips, it means that access to memory by bytes is no
  491. better than access by words when possible, so grab a whole word
  492. and maybe make use of that. */
  493. #define SLOW_BYTE_ACCESS 1
  494. /* Using SHIFT_COUNT_TRUNCATED is discouraged, so we handle this with patterns
  495. in the md file instead. */
  496. #define SHIFT_COUNT_TRUNCATED 0
  497. /* Specify the machine mode that pointers have.
  498. After generation of rtl, the compiler makes no further distinction
  499. between pointers and any other objects of this machine mode. */
  500. #define Pmode word_mode
  501. /* Give call MEMs SImode since it is the "most permissive" mode
  502. for both 32-bit and 64-bit targets. */
  503. #define FUNCTION_MODE SImode
  504. /* A C expression for the cost of a branch instruction. A value of 2
  505. seems to minimize code size. */
  506. #define BRANCH_COST(speed_p, predictable_p) \
  507. ((!(speed_p) || (predictable_p)) ? 2 : riscv_branch_cost)
  508. /* True if the target optimizes short forward branches around integer
  509. arithmetic instructions into predicated operations, e.g., for
  510. conditional-move operations. The macro assumes that all branch
  511. instructions (BEQ, BNE, BLT, BLTU, BGE, BGEU, C.BEQZ, and C.BNEZ)
  512. support this feature. The macro further assumes that any integer
  513. arithmetic and logical operation (ADD[I], SUB, SLL[I], SRL[I], SRA[I],
  514. SLT[I][U], AND[I], XOR[I], OR[I], LUI, AUIPC, and their compressed
  515. counterparts, including C.MV and C.LI) can be in the branch shadow. */
  516. #define TARGET_SFB_ALU (riscv_microarchitecture == sifive_7)
  517. #define LOGICAL_OP_NON_SHORT_CIRCUIT 0
  518. /* Control the assembler format that we output. */
  519. /* Output to assembler file text saying following lines
  520. may contain character constants, extra white space, comments, etc. */
  521. #ifndef ASM_APP_ON
  522. #define ASM_APP_ON " #APP\n"
  523. #endif
  524. /* Output to assembler file text saying following lines
  525. no longer contain unusual constructs. */
  526. #ifndef ASM_APP_OFF
  527. #define ASM_APP_OFF " #NO_APP\n"
  528. #endif
  529. #define REGISTER_NAMES \
  530. { "zero","ra", "sp", "gp", "tp", "t0", "t1", "t2", \
  531. "s0", "s1", "a0", "a1", "a2", "a3", "a4", "a5", \
  532. "a6", "a7", "s2", "s3", "s4", "s5", "s6", "s7", \
  533. "s8", "s9", "s10", "s11", "t3", "t4", "t5", "t6", \
  534. "ft0", "ft1", "ft2", "ft3", "ft4", "ft5", "ft6", "ft7", \
  535. "fs0", "fs1", "fa0", "fa1", "fa2", "fa3", "fa4", "fa5", \
  536. "fa6", "fa7", "fs2", "fs3", "fs4", "fs5", "fs6", "fs7", \
  537. "fs8", "fs9", "fs10","fs11","ft8", "ft9", "ft10","ft11", \
  538. "arg", "frame", }
  539. #define ADDITIONAL_REGISTER_NAMES \
  540. { \
  541. { "x0", 0 + GP_REG_FIRST }, \
  542. { "x1", 1 + GP_REG_FIRST }, \
  543. { "x2", 2 + GP_REG_FIRST }, \
  544. { "x3", 3 + GP_REG_FIRST }, \
  545. { "x4", 4 + GP_REG_FIRST }, \
  546. { "x5", 5 + GP_REG_FIRST }, \
  547. { "x6", 6 + GP_REG_FIRST }, \
  548. { "x7", 7 + GP_REG_FIRST }, \
  549. { "x8", 8 + GP_REG_FIRST }, \
  550. { "x9", 9 + GP_REG_FIRST }, \
  551. { "x10", 10 + GP_REG_FIRST }, \
  552. { "x11", 11 + GP_REG_FIRST }, \
  553. { "x12", 12 + GP_REG_FIRST }, \
  554. { "x13", 13 + GP_REG_FIRST }, \
  555. { "x14", 14 + GP_REG_FIRST }, \
  556. { "x15", 15 + GP_REG_FIRST }, \
  557. { "x16", 16 + GP_REG_FIRST }, \
  558. { "x17", 17 + GP_REG_FIRST }, \
  559. { "x18", 18 + GP_REG_FIRST }, \
  560. { "x19", 19 + GP_REG_FIRST }, \
  561. { "x20", 20 + GP_REG_FIRST }, \
  562. { "x21", 21 + GP_REG_FIRST }, \
  563. { "x22", 22 + GP_REG_FIRST }, \
  564. { "x23", 23 + GP_REG_FIRST }, \
  565. { "x24", 24 + GP_REG_FIRST }, \
  566. { "x25", 25 + GP_REG_FIRST }, \
  567. { "x26", 26 + GP_REG_FIRST }, \
  568. { "x27", 27 + GP_REG_FIRST }, \
  569. { "x28", 28 + GP_REG_FIRST }, \
  570. { "x29", 29 + GP_REG_FIRST }, \
  571. { "x30", 30 + GP_REG_FIRST }, \
  572. { "x31", 31 + GP_REG_FIRST }, \
  573. { "f0", 0 + FP_REG_FIRST }, \
  574. { "f1", 1 + FP_REG_FIRST }, \
  575. { "f2", 2 + FP_REG_FIRST }, \
  576. { "f3", 3 + FP_REG_FIRST }, \
  577. { "f4", 4 + FP_REG_FIRST }, \
  578. { "f5", 5 + FP_REG_FIRST }, \
  579. { "f6", 6 + FP_REG_FIRST }, \
  580. { "f7", 7 + FP_REG_FIRST }, \
  581. { "f8", 8 + FP_REG_FIRST }, \
  582. { "f9", 9 + FP_REG_FIRST }, \
  583. { "f10", 10 + FP_REG_FIRST }, \
  584. { "f11", 11 + FP_REG_FIRST }, \
  585. { "f12", 12 + FP_REG_FIRST }, \
  586. { "f13", 13 + FP_REG_FIRST }, \
  587. { "f14", 14 + FP_REG_FIRST }, \
  588. { "f15", 15 + FP_REG_FIRST }, \
  589. { "f16", 16 + FP_REG_FIRST }, \
  590. { "f17", 17 + FP_REG_FIRST }, \
  591. { "f18", 18 + FP_REG_FIRST }, \
  592. { "f19", 19 + FP_REG_FIRST }, \
  593. { "f20", 20 + FP_REG_FIRST }, \
  594. { "f21", 21 + FP_REG_FIRST }, \
  595. { "f22", 22 + FP_REG_FIRST }, \
  596. { "f23", 23 + FP_REG_FIRST }, \
  597. { "f24", 24 + FP_REG_FIRST }, \
  598. { "f25", 25 + FP_REG_FIRST }, \
  599. { "f26", 26 + FP_REG_FIRST }, \
  600. { "f27", 27 + FP_REG_FIRST }, \
  601. { "f28", 28 + FP_REG_FIRST }, \
  602. { "f29", 29 + FP_REG_FIRST }, \
  603. { "f30", 30 + FP_REG_FIRST }, \
  604. { "f31", 31 + FP_REG_FIRST }, \
  605. }
  606. /* Globalizing directive for a label. */
  607. #define GLOBAL_ASM_OP "\t.globl\t"
  608. /* This is how to store into the string LABEL
  609. the symbol_ref name of an internal numbered label where
  610. PREFIX is the class of label and NUM is the number within the class.
  611. This is suitable for output with `assemble_name'. */
  612. #undef ASM_GENERATE_INTERNAL_LABEL
  613. #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \
  614. sprintf ((LABEL), "*%s%s%ld", (LOCAL_LABEL_PREFIX), (PREFIX), (long)(NUM))
  615. /* This is how to output an element of a case-vector that is absolute. */
  616. #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \
  617. fprintf (STREAM, "\t.word\t%sL%d\n", LOCAL_LABEL_PREFIX, VALUE)
  618. /* This is how to output an element of a PIC case-vector. */
  619. #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \
  620. fprintf (STREAM, "\t.word\t%sL%d-%sL%d\n", \
  621. LOCAL_LABEL_PREFIX, VALUE, LOCAL_LABEL_PREFIX, REL)
  622. /* This is how to output an assembler line
  623. that says to advance the location counter
  624. to a multiple of 2**LOG bytes. */
  625. #define ASM_OUTPUT_ALIGN(STREAM,LOG) \
  626. fprintf (STREAM, "\t.align\t%d\n", (LOG))
  627. /* Define the strings to put out for each section in the object file. */
  628. #define TEXT_SECTION_ASM_OP "\t.text" /* instructions */
  629. #define DATA_SECTION_ASM_OP "\t.data" /* large data */
  630. #define READONLY_DATA_SECTION_ASM_OP "\t.section\t.rodata"
  631. #define BSS_SECTION_ASM_OP "\t.bss"
  632. #define SBSS_SECTION_ASM_OP "\t.section\t.sbss,\"aw\",@nobits"
  633. #define SDATA_SECTION_ASM_OP "\t.section\t.sdata,\"aw\",@progbits"
  634. #define ASM_OUTPUT_REG_PUSH(STREAM,REGNO) \
  635. do \
  636. { \
  637. fprintf (STREAM, "\taddi\t%s,%s,-8\n\t%s\t%s,0(%s)\n", \
  638. reg_names[STACK_POINTER_REGNUM], \
  639. reg_names[STACK_POINTER_REGNUM], \
  640. TARGET_64BIT ? "sd" : "sw", \
  641. reg_names[REGNO], \
  642. reg_names[STACK_POINTER_REGNUM]); \
  643. } \
  644. while (0)
  645. #define ASM_OUTPUT_REG_POP(STREAM,REGNO) \
  646. do \
  647. { \
  648. fprintf (STREAM, "\t%s\t%s,0(%s)\n\taddi\t%s,%s,8\n", \
  649. TARGET_64BIT ? "ld" : "lw", \
  650. reg_names[REGNO], \
  651. reg_names[STACK_POINTER_REGNUM], \
  652. reg_names[STACK_POINTER_REGNUM], \
  653. reg_names[STACK_POINTER_REGNUM]); \
  654. } \
  655. while (0)
  656. #define ASM_COMMENT_START "#"
  657. #undef SIZE_TYPE
  658. #define SIZE_TYPE (POINTER_SIZE == 64 ? "long unsigned int" : "unsigned int")
  659. #undef PTRDIFF_TYPE
  660. #define PTRDIFF_TYPE (POINTER_SIZE == 64 ? "long int" : "int")
  661. /* The maximum number of bytes copied by one iteration of a movmemsi loop. */
  662. #define RISCV_MAX_MOVE_BYTES_PER_LOOP_ITER (UNITS_PER_WORD * 4)
  663. /* The maximum number of bytes that can be copied by a straight-line
  664. movmemsi implementation. */
  665. #define RISCV_MAX_MOVE_BYTES_STRAIGHT (RISCV_MAX_MOVE_BYTES_PER_LOOP_ITER * 3)
  666. /* If a memory-to-memory move would take MOVE_RATIO or more simple
  667. move-instruction pairs, we will do a movmem or libcall instead.
  668. Do not use move_by_pieces at all when strict alignment is not
  669. in effect but the target has slow unaligned accesses; in this
  670. case, movmem or libcall is more efficient. */
  671. #define MOVE_RATIO(speed) \
  672. (!STRICT_ALIGNMENT && riscv_slow_unaligned_access_p ? 1 : \
  673. (speed) ? RISCV_MAX_MOVE_BYTES_PER_LOOP_ITER / UNITS_PER_WORD : \
  674. CLEAR_RATIO (speed) / 2)
  675. /* For CLEAR_RATIO, when optimizing for size, give a better estimate
  676. of the length of a memset call, but use the default otherwise. */
  677. #define CLEAR_RATIO(speed) ((speed) ? 16 : 6)
  678. /* This is similar to CLEAR_RATIO, but for a non-zero constant, so when
  679. optimizing for size adjust the ratio to account for the overhead of
  680. loading the constant and replicating it across the word. */
  681. #define SET_RATIO(speed) (CLEAR_RATIO (speed) - ((speed) ? 0 : 2))
  682. #ifndef USED_FOR_TARGET
  683. extern const enum reg_class riscv_regno_to_class[];
  684. extern bool riscv_slow_unaligned_access_p;
  685. extern unsigned riscv_stack_boundary;
  686. #endif
  687. #define ASM_PREFERRED_EH_DATA_FORMAT(CODE,GLOBAL) \
  688. (((GLOBAL) ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel | DW_EH_PE_sdata4)
  689. #define XLEN_SPEC \
  690. "%{march=rv32*:32}" \
  691. "%{march=rv64*:64}" \
  692. #define ABI_SPEC \
  693. "%{mabi=ilp32:ilp32}" \
  694. "%{mabi=ilp32e:ilp32e}" \
  695. "%{mabi=ilp32f:ilp32f}" \
  696. "%{mabi=ilp32d:ilp32d}" \
  697. "%{mabi=lp64:lp64}" \
  698. "%{mabi=lp64f:lp64f}" \
  699. "%{mabi=lp64d:lp64d}" \
  700. /* ISA constants needed for code generation. */
  701. #define OPCODE_LW 0x2003
  702. #define OPCODE_LD 0x3003
  703. #define OPCODE_AUIPC 0x17
  704. #define OPCODE_JALR 0x67
  705. #define OPCODE_LUI 0x37
  706. #define OPCODE_ADDI 0x13
  707. #define SHIFT_RD 7
  708. #define SHIFT_RS1 15
  709. #define SHIFT_IMM 20
  710. #define IMM_BITS 12
  711. #define C_SxSP_BITS 6
  712. #define IMM_REACH (1LL << IMM_BITS)
  713. #define CONST_HIGH_PART(VALUE) (((VALUE) + (IMM_REACH/2)) & ~(IMM_REACH-1))
  714. #define CONST_LOW_PART(VALUE) ((VALUE) - CONST_HIGH_PART (VALUE))
  715. #define SWSP_REACH (4LL << C_SxSP_BITS)
  716. #define SDSP_REACH (8LL << C_SxSP_BITS)
  717. #endif /* ! GCC_RISCV_H */