]>
| Commit | Line | Data |
|---|---|---|
| 09cae750 | 1 | /* Definition of RISC-V target for GNU compiler. |
| 6441eb6d | 2 | Copyright (C) 2011-2025 Free Software Foundation, Inc. |
| 09cae750 PD |
3 | Contributed by Andrew Waterman (andrew@sifive.com). |
| 4 | Based on MIPS target for GNU compiler. | |
| 5 | ||
| 6 | This file is part of GCC. | |
| 7 | ||
| 8 | GCC is free software; you can redistribute it and/or modify | |
| 9 | it under the terms of the GNU General Public License as published by | |
| 10 | the Free Software Foundation; either version 3, or (at your option) | |
| 11 | any later version. | |
| 12 | ||
| 13 | GCC is distributed in the hope that it will be useful, | |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | GNU General Public License for more details. | |
| 17 | ||
| 18 | You should have received a copy of the GNU General Public License | |
| 19 | along with GCC; see the file COPYING3. If not see | |
| 20 | <http://www.gnu.org/licenses/>. */ | |
| 21 | ||
| 22 | #ifndef GCC_RISCV_H | |
| 23 | #define GCC_RISCV_H | |
| 24 | ||
| 94a4b932 | 25 | #include <stdbool.h> |
| 09cae750 PD |
26 | #include "config/riscv/riscv-opts.h" |
| 27 | ||
| 5f110561 KC |
28 | #define SWITCHABLE_TARGET 1 |
| 29 | ||
| 09cae750 PD |
30 | /* Target CPU builtins. */ |
| 31 | #define TARGET_CPU_CPP_BUILTINS() riscv_cpu_cpp_builtins (pfile) | |
| 32 | ||
| cd1e2f63 MC |
33 | #ifdef TARGET_BIG_ENDIAN_DEFAULT |
| 34 | #define DEFAULT_ENDIAN_SPEC "b" | |
| 35 | #else | |
| 36 | #define DEFAULT_ENDIAN_SPEC "l" | |
| 37 | #endif | |
| 38 | ||
| 09cae750 PD |
39 | /* Default target_flags if no switches are specified */ |
| 40 | ||
| 41 | #ifndef TARGET_DEFAULT | |
| 42 | #define TARGET_DEFAULT 0 | |
| 43 | #endif | |
| 44 | ||
| 45 | #ifndef RISCV_TUNE_STRING_DEFAULT | |
| 20f59301 | 46 | #define RISCV_TUNE_STRING_DEFAULT "generic" |
| 09cae750 PD |
47 | #endif |
| 48 | ||
| f908b69c | 49 | extern const char *riscv_expand_arch (int argc, const char **argv); |
| 72eb8335 KC |
50 | extern const char *riscv_expand_arch_from_cpu (int argc, const char **argv); |
| 51 | extern const char *riscv_default_mtune (int argc, const char **argv); | |
| d72ca12b | 52 | extern const char *riscv_multi_lib_check (int argc, const char **argv); |
| 7af0f1e1 | 53 | extern const char *riscv_arch_help (int argc, const char **argv); |
| f908b69c KC |
54 | |
| 55 | # define EXTRA_SPEC_FUNCTIONS \ | |
| 72eb8335 KC |
56 | { "riscv_expand_arch", riscv_expand_arch }, \ |
| 57 | { "riscv_expand_arch_from_cpu", riscv_expand_arch_from_cpu }, \ | |
| d72ca12b | 58 | { "riscv_default_mtune", riscv_default_mtune }, \ |
| 7af0f1e1 KC |
59 | { "riscv_multi_lib_check", riscv_multi_lib_check }, \ |
| 60 | { "riscv_arch_help", riscv_arch_help }, | |
| f908b69c | 61 | |
| 09cae750 | 62 | /* Support for a compile-time default CPU, et cetera. The rules are: |
| 72eb8335 | 63 | --with-arch is ignored if -march or -mcpu is specified. |
| 09cae750 | 64 | --with-abi is ignored if -mabi is specified. |
| 72eb8335 | 65 | --with-tune is ignored if -mtune or -mcpu is specified. |
| 06e32a5e | 66 | --with-isa-spec is ignored if -misa-spec is specified. |
| 97069657 | 67 | --with-tls is ignored if -mtls-dialect is specified. |
| 72eb8335 KC |
68 | |
| 69 | But using default -march/-mtune value if -mcpu don't have valid option. */ | |
| 09cae750 | 70 | #define OPTION_DEFAULT_SPECS \ |
| 72eb8335 KC |
71 | {"tune", "%{!mtune=*:" \ |
| 72 | " %{!mcpu=*:-mtune=%(VALUE)}" \ | |
| 73 | " %{mcpu=*:-mtune=%:riscv_default_mtune(%* %(VALUE))}}" }, \ | |
| aa1ae528 | 74 | {"arch", "%{!march=*|march=unset:" \ |
| 72eb8335 KC |
75 | " %{!mcpu=*:-march=%(VALUE)}" \ |
| 76 | " %{mcpu=*:%:riscv_expand_arch_from_cpu(%* %(VALUE))}}" }, \ | |
| 97069657 TI |
77 | {"abi", "%{!mabi=*:-mabi=%(VALUE)}" }, \ |
| 78 | {"isa_spec", "%{!misa-spec=*:-misa-spec=%(VALUE)}" }, \ | |
| 79 | {"tls", "%{!mtls-dialect=*:-mtls-dialect=%(VALUE)}"}, \ | |
| 09cae750 PD |
80 | |
| 81 | #ifdef IN_LIBGCC2 | |
| 82 | #undef TARGET_64BIT | |
| 83 | /* Make this compile time constant for libgcc2 */ | |
| 84 | #define TARGET_64BIT (__riscv_xlen == 64) | |
| 85 | #endif /* IN_LIBGCC2 */ | |
| 86 | ||
| 4b815282 KC |
87 | #ifdef HAVE_AS_MISA_SPEC |
| 88 | #define ASM_MISA_SPEC "%{misa-spec=*}" | |
| 89 | #else | |
| 90 | #define ASM_MISA_SPEC "" | |
| 91 | #endif | |
| 92 | ||
| a5ad5d5c KC |
93 | /* Reference: |
| 94 | https://gcc.gnu.org/onlinedocs/cpp/Stringizing.html#Stringizing */ | |
| 95 | #define STRINGIZING(s) __STRINGIZING(s) | |
| 96 | #define __STRINGIZING(s) #s | |
| 97 | ||
| 98 | #define MULTILIB_DEFAULTS \ | |
| 99 | {"march=" STRINGIZING (TARGET_RISCV_DEFAULT_ARCH), \ | |
| 100 | "mabi=" STRINGIZING (TARGET_RISCV_DEFAULT_ABI) } | |
| 101 | ||
| 09cae750 PD |
102 | #undef ASM_SPEC |
| 103 | #define ASM_SPEC "\ | |
| 104 | %(subtarget_asm_debugging_spec) \ | |
| 105 | %{" FPIE_OR_FPIC_SPEC ":-fpic} \ | |
| f4670347 | 106 | %{march=*} \ |
| 09cae750 | 107 | %{mabi=*} \ |
| 3b0a7d62 | 108 | %{mno-relax} \ |
| a9604fcb MC |
109 | %{mbig-endian} \ |
| 110 | %{mlittle-endian} \ | |
| 4b815282 KC |
111 | %(subtarget_asm_spec)" \ |
| 112 | ASM_MISA_SPEC | |
| 09cae750 | 113 | |
| aa1ae528 KC |
114 | /* Drop all -march=* options before -march=unset. */ |
| 115 | #define ARCH_UNSET_CLEANUP_SPECS \ | |
| 116 | "%{march=unset:%<march=*} " \ | |
| 117 | ||
| f4670347 | 118 | #undef DRIVER_SELF_SPECS |
| 72eb8335 | 119 | #define DRIVER_SELF_SPECS \ |
| aa1ae528 | 120 | ARCH_UNSET_CLEANUP_SPECS \ |
| 7af0f1e1 KC |
121 | "%{march=help:%:riscv_arch_help()} " \ |
| 122 | "%{print-supported-extensions:%:riscv_arch_help()} " \ | |
| 123 | "%{-print-supported-extensions:%:riscv_arch_help()} " \ | |
| 72eb8335 | 124 | "%{march=*:%:riscv_expand_arch(%*)} " \ |
| aa1ae528 KC |
125 | "%{!march=*|march=unset:%{mcpu=*:%:riscv_expand_arch_from_cpu(%*)}} " \ |
| 126 | "%{march=unset:%{!mcpu=*:%eAt least one valid -mcpu option must be given after -march=unset}} " | |
| f4670347 | 127 | |
| 09cae750 PD |
128 | #define LOCAL_LABEL_PREFIX "." |
| 129 | #define USER_LABEL_PREFIX "" | |
| 130 | ||
| 131 | /* Offsets recorded in opcodes are a multiple of this alignment factor. | |
| 132 | The default for this in 64-bit mode is 8, which causes problems with | |
| 133 | SFmode register saves. */ | |
| 134 | #define DWARF_CIE_DATA_ALIGNMENT -4 | |
| 135 | ||
| 136 | /* The mapping from gcc register number to DWARF 2 CFA column number. */ | |
| 31380d4b | 137 | #define DWARF_FRAME_REGNUM(REGNO) \ |
| 8cd140d3 JZ |
138 | (FRM_REG_P (REGNO) ? RISCV_DWARF_FRM \ |
| 139 | : VXRM_REG_P (REGNO) ? RISCV_DWARF_VXRM \ | |
| 140 | : VL_REG_P (REGNO) ? RISCV_DWARF_VL \ | |
| 31380d4b | 141 | : VTYPE_REG_P (REGNO) \ |
| 142 | ? RISCV_DWARF_VTYPE \ | |
| 143 | : (GP_REG_P (REGNO) || FP_REG_P (REGNO) || V_REG_P (REGNO) \ | |
| 144 | ? REGNO \ | |
| 145 | : INVALID_REGNUM)) | |
| 09cae750 PD |
146 | |
| 147 | /* The DWARF 2 CFA column which tracks the return address. */ | |
| 148 | #define DWARF_FRAME_RETURN_COLUMN RETURN_ADDR_REGNUM | |
| 149 | #define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (VOIDmode, RETURN_ADDR_REGNUM) | |
| 150 | ||
| 151 | /* Describe how we implement __builtin_eh_return. */ | |
| 152 | #define EH_RETURN_DATA_REGNO(N) \ | |
| 153 | ((N) < 4 ? (N) + GP_ARG_FIRST : INVALID_REGNUM) | |
| 154 | ||
| 155 | #define EH_RETURN_STACKADJ_RTX gen_rtx_REG (Pmode, GP_ARG_FIRST + 4) | |
| 156 | ||
| 157 | /* Target machine storage layout */ | |
| 158 | ||
| 159 | #define BITS_BIG_ENDIAN 0 | |
| a9604fcb MC |
160 | #define BYTES_BIG_ENDIAN (TARGET_BIG_ENDIAN != 0) |
| 161 | #define WORDS_BIG_ENDIAN (BYTES_BIG_ENDIAN) | |
| 09cae750 PD |
162 | |
| 163 | #define MAX_BITS_PER_WORD 64 | |
| 164 | ||
| 165 | /* Width of a word, in units (bytes). */ | |
| 166 | #define UNITS_PER_WORD (TARGET_64BIT ? 8 : 4) | |
| a99dc11f | 167 | #define BITS_PER_WORD (BITS_PER_UNIT * UNITS_PER_WORD) |
| 09cae750 PD |
168 | #ifndef IN_LIBGCC2 |
| 169 | #define MIN_UNITS_PER_WORD 4 | |
| 170 | #endif | |
| 171 | ||
| e53b6e56 | 172 | /* Allows SImode op in builtin overflow pattern, see internal-fn.cc. */ |
| 6efd040c L |
173 | #undef TARGET_MIN_ARITHMETIC_PRECISION |
| 174 | #define TARGET_MIN_ARITHMETIC_PRECISION riscv_min_arithmetic_precision | |
| 175 | ||
| 09cae750 PD |
176 | /* The `Q' extension is not yet supported. */ |
| 177 | #define UNITS_PER_FP_REG (TARGET_DOUBLE_FLOAT ? 8 : 4) | |
| e9f827d7 | 178 | /* Size per vector register. For VLEN = 32, size = poly (4, 4). Otherwise, size = poly (8, 8). */ |
| 31380d4b | 179 | #define UNITS_PER_V_REG (riscv_vector_chunks * riscv_bytes_per_vector_chunk) |
| 09cae750 PD |
180 | |
| 181 | /* The largest type that can be passed in floating-point registers. */ | |
| 09baee1a KC |
182 | #define UNITS_PER_FP_ARG \ |
| 183 | ((riscv_abi == ABI_ILP32 || riscv_abi == ABI_ILP32E \ | |
| 006e90e1 | 184 | || riscv_abi == ABI_LP64 || riscv_abi == ABI_LP64E) \ |
| 09baee1a KC |
185 | ? 0 \ |
| 186 | : ((riscv_abi == ABI_ILP32F || riscv_abi == ABI_LP64F) ? 4 : 8)) | |
| 09cae750 PD |
187 | |
| 188 | /* Set the sizes of the core types. */ | |
| 189 | #define SHORT_TYPE_SIZE 16 | |
| 190 | #define INT_TYPE_SIZE 32 | |
| 191 | #define LONG_LONG_TYPE_SIZE 64 | |
| 192 | #define POINTER_SIZE (riscv_abi >= ABI_LP64 ? 64 : 32) | |
| 193 | #define LONG_TYPE_SIZE POINTER_SIZE | |
| 194 | ||
| 09cae750 PD |
195 | /* Allocation boundary (in *bits*) for storing arguments in argument list. */ |
| 196 | #define PARM_BOUNDARY BITS_PER_WORD | |
| 197 | ||
| 198 | /* Allocation boundary (in *bits*) for the code of a function. */ | |
| 805a052d | 199 | #define FUNCTION_BOUNDARY \ |
| 59a869d7 | 200 | (((TARGET_RVC || TARGET_ZCA) && !is_zicfilp_p ()) ? 16 : 32) |
| 09cae750 | 201 | |
| 0ce42fe1 | 202 | /* The smallest supported stack boundary the calling convention supports. */ |
| 75902396 | 203 | #define STACK_BOUNDARY \ |
| 006e90e1 TO |
204 | (riscv_abi == ABI_ILP32E || riscv_abi == ABI_LP64E \ |
| 205 | ? BITS_PER_WORD \ | |
| 206 | : 2 * BITS_PER_WORD) | |
| 0ce42fe1 AW |
207 | |
| 208 | /* The ABI stack alignment. */ | |
| 006e90e1 TO |
209 | #define ABI_STACK_BOUNDARY \ |
| 210 | (riscv_abi == ABI_ILP32E || riscv_abi == ABI_LP64E \ | |
| 211 | ? BITS_PER_WORD \ | |
| 212 | : 128) | |
| 0ce42fe1 | 213 | |
| 09cae750 | 214 | /* There is no point aligning anything to a rounder boundary than this. */ |
| c0d3d1b6 | 215 | #define BIGGEST_ALIGNMENT 128 |
| 09cae750 | 216 | |
| 82285692 AW |
217 | /* The user-level ISA permits unaligned accesses, but they are not required |
| 218 | of the privileged architecture. */ | |
| 219 | #define STRICT_ALIGNMENT TARGET_STRICT_ALIGN | |
| 220 | ||
| 09cae750 PD |
221 | /* Define this if you wish to imitate the way many other C compilers |
| 222 | handle alignment of bitfields and the structures that contain | |
| 223 | them. | |
| 224 | ||
| 225 | The behavior is that the type written for a bit-field (`int', | |
| 226 | `short', or other integer type) imposes an alignment for the | |
| 227 | entire structure, as if the structure really did contain an | |
| 228 | ordinary field of that type. In addition, the bit-field is placed | |
| 229 | within the structure so that it would fit within such a field, | |
| 230 | not crossing a boundary for it. | |
| 231 | ||
| 232 | Thus, on most machines, a bit-field whose type is written as `int' | |
| 233 | would not cross a four-byte boundary, and would force four-byte | |
| 234 | alignment for the whole structure. (The alignment used may not | |
| 235 | be four bytes; it is controlled by the other alignment | |
| 236 | parameters.) | |
| 237 | ||
| 238 | If the macro is defined, its definition should be a C expression; | |
| 239 | a nonzero value for the expression enables this behavior. */ | |
| 240 | ||
| 241 | #define PCC_BITFIELD_TYPE_MATTERS 1 | |
| 242 | ||
| d3f952c5 JW |
243 | /* An integer expression for the size in bits of the largest integer machine |
| 244 | mode that should actually be used. We allow pairs of registers. */ | |
| 245 | #define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (TARGET_64BIT ? TImode : DImode) | |
| 246 | ||
| ffbb9818 ID |
247 | /* DATA_ALIGNMENT and LOCAL_ALIGNMENT common definition. */ |
| 248 | #define RISCV_EXPAND_ALIGNMENT(COND, TYPE, ALIGN) \ | |
| 249 | (((COND) && ((ALIGN) < BITS_PER_WORD) \ | |
| 250 | && (TREE_CODE (TYPE) == ARRAY_TYPE \ | |
| 251 | || TREE_CODE (TYPE) == UNION_TYPE \ | |
| 252 | || TREE_CODE (TYPE) == RECORD_TYPE)) ? BITS_PER_WORD : (ALIGN)) | |
| 253 | ||
| 09cae750 PD |
254 | /* If defined, a C expression to compute the alignment for a static |
| 255 | variable. TYPE is the data type, and ALIGN is the alignment that | |
| 256 | the object would ordinarily have. The value of this macro is used | |
| 257 | instead of that alignment to align the object. | |
| 258 | ||
| 259 | If this macro is not defined, then ALIGN is used. | |
| 260 | ||
| 261 | One use of this macro is to increase alignment of medium-size | |
| 262 | data to make it all fit in fewer cache lines. Another is to | |
| 263 | cause character arrays to be word-aligned so that `strcpy' calls | |
| 264 | that copy constants to character arrays can be done inline. */ | |
| 265 | ||
| ffbb9818 ID |
266 | #define DATA_ALIGNMENT(TYPE, ALIGN) \ |
| 267 | RISCV_EXPAND_ALIGNMENT (riscv_align_data_type == riscv_align_data_type_xlen, \ | |
| 268 | TYPE, ALIGN) | |
| 09cae750 PD |
269 | |
| 270 | /* We need this for the same reason as DATA_ALIGNMENT, namely to cause | |
| 271 | character arrays to be word-aligned so that `strcpy' calls that copy | |
| 272 | constants to character arrays can be done inline, and 'strcmp' can be | |
| 273 | optimised to use word loads. */ | |
| 274 | #define LOCAL_ALIGNMENT(TYPE, ALIGN) \ | |
| ffbb9818 | 275 | RISCV_EXPAND_ALIGNMENT (true, TYPE, ALIGN) |
| 09cae750 PD |
276 | |
| 277 | /* Define if operations between registers always perform the operation | |
| 278 | on the full register even if a narrower mode is specified. */ | |
| 279 | #define WORD_REGISTER_OPERATIONS 1 | |
| 280 | ||
| 281 | /* When in 64-bit mode, move insns will sign extend SImode and CCmode | |
| 282 | moves. All other references are zero extended. */ | |
| 283 | #define LOAD_EXTEND_OP(MODE) \ | |
| 284 | (TARGET_64BIT && (MODE) == SImode ? SIGN_EXTEND : ZERO_EXTEND) | |
| 285 | ||
| 286 | /* Define this macro if it is advisable to hold scalars in registers | |
| 287 | in a wider mode than that declared by the program. In such cases, | |
| 288 | the value is constrained to be within the bounds of the declared | |
| 289 | type, but kept valid in the wider mode. The signedness of the | |
| 290 | extension may differ from that of the type. */ | |
| 291 | ||
| 292 | #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \ | |
| 293 | if (GET_MODE_CLASS (MODE) == MODE_INT \ | |
| 294 | && GET_MODE_SIZE (MODE) < UNITS_PER_WORD) \ | |
| 295 | { \ | |
| 296 | if ((MODE) == SImode) \ | |
| 297 | (UNSIGNEDP) = 0; \ | |
| 298 | (MODE) = word_mode; \ | |
| 299 | } | |
| 300 | ||
| 301 | /* Pmode is always the same as ptr_mode, but not always the same as word_mode. | |
| 302 | Extensions of pointers to word_mode must be signed. */ | |
| 303 | #define POINTERS_EXTEND_UNSIGNED false | |
| 304 | ||
| 09cae750 PD |
305 | /* Define if loading short immediate values into registers sign extends. */ |
| 306 | #define SHORT_IMMEDIATES_SIGN_EXTEND 1 | |
| 307 | ||
| 308 | /* Standard register usage. */ | |
| 309 | ||
| 310 | /* Number of hardware registers. We have: | |
| 311 | ||
| 312 | - 32 integer registers | |
| 313 | - 32 floating point registers | |
| 314 | - 2 fake registers: | |
| 315 | - ARG_POINTER_REGNUM | |
| 31380d4b | 316 | - FRAME_POINTER_REGNUM |
| 317 | - 1 vl register | |
| 318 | - 1 vtype register | |
| 467ca4a1 | 319 | - 28 unused registers for future expansion |
| 31380d4b | 320 | - 32 vector registers */ |
| 09cae750 | 321 | |
| 31380d4b | 322 | #define FIRST_PSEUDO_REGISTER 128 |
| 09cae750 | 323 | |
| 79a3d3da | 324 | /* x0, ra, sp, gp, and tp are fixed. */ |
| 09cae750 PD |
325 | |
| 326 | #define FIXED_REGISTERS \ | |
| 327 | { /* General registers. */ \ | |
| 71f90649 | 328 | 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ |
| 09cae750 PD |
329 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ |
| 330 | /* Floating-point registers. */ \ | |
| 331 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ | |
| 332 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ | |
| 333 | /* Others. */ \ | |
| a035d133 | 334 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \ |
| 31380d4b | 335 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \ |
| 336 | /* Vector registers. */ \ | |
| 337 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ | |
| 338 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 \ | |
| 09cae750 PD |
339 | } |
| 340 | ||
| f3abed16 | 341 | /* a0-a7, t0-t6, fa0-fa7, and ft0-ft11 are volatile across calls. |
| 09cae750 PD |
342 | The call RTLs themselves clobber ra. */ |
| 343 | ||
| 344 | #define CALL_USED_REGISTERS \ | |
| 345 | { /* General registers. */ \ | |
| 71f90649 | 346 | 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, \ |
| 09cae750 PD |
347 | 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, \ |
| 348 | /* Floating-point registers. */ \ | |
| 349 | 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, \ | |
| 350 | 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, \ | |
| 351 | /* Others. */ \ | |
| 31380d4b | 352 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \ |
| 353 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \ | |
| 354 | /* Vector registers. */ \ | |
| 355 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \ | |
| 356 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 \ | |
| 09cae750 PD |
357 | } |
| 358 | ||
| b780f68e JW |
359 | /* Select a register mode required for caller save of hard regno REGNO. |
| 360 | Contrary to what is documented, the default is not the smallest suitable | |
| 361 | mode but the largest suitable mode for the given (REGNO, NREGS) pair and | |
| 362 | it quickly creates paradoxical subregs that can be problematic. */ | |
| 363 | #define HARD_REGNO_CALLER_SAVE_MODE(REGNO, NREGS, MODE) \ | |
| 364 | ((MODE) == VOIDmode ? choose_hard_reg_mode (REGNO, NREGS, NULL) : (MODE)) | |
| 365 | ||
| 09cae750 PD |
366 | /* Internal macros to classify an ISA register's type. */ |
| 367 | ||
| 368 | #define GP_REG_FIRST 0 | |
| 09baee1a | 369 | #define GP_REG_LAST (TARGET_RVE ? 15 : 31) |
| 09cae750 PD |
370 | #define GP_REG_NUM (GP_REG_LAST - GP_REG_FIRST + 1) |
| 371 | ||
| 372 | #define FP_REG_FIRST 32 | |
| 373 | #define FP_REG_LAST 63 | |
| 374 | #define FP_REG_NUM (FP_REG_LAST - FP_REG_FIRST + 1) | |
| 375 | ||
| 31380d4b | 376 | #define V_REG_FIRST 96 |
| 377 | #define V_REG_LAST 127 | |
| 378 | #define V_REG_NUM (V_REG_LAST - V_REG_FIRST + 1) | |
| 379 | ||
| 09cae750 PD |
380 | /* The DWARF 2 CFA column which tracks the return address from a |
| 381 | signal handler context. This means that to maintain backwards | |
| 382 | compatibility, no hard register can be assigned this column if it | |
| 383 | would need to be handled by the DWARF unwinder. */ | |
| 384 | #define DWARF_ALT_FRAME_RETURN_COLUMN 64 | |
| 385 | ||
| 386 | #define GP_REG_P(REGNO) \ | |
| 387 | ((unsigned int) ((int) (REGNO) - GP_REG_FIRST) < GP_REG_NUM) | |
| 388 | #define FP_REG_P(REGNO) \ | |
| 389 | ((unsigned int) ((int) (REGNO) - FP_REG_FIRST) < FP_REG_NUM) | |
| 60d6c63d CM |
390 | #define HARDFP_REG_P(REGNO) \ |
| 391 | ((REGNO) >= FP_REG_FIRST && (REGNO) <= FP_REG_LAST) | |
| 31380d4b | 392 | #define V_REG_P(REGNO) \ |
| 393 | ((unsigned int) ((int) (REGNO) - V_REG_FIRST) < V_REG_NUM) | |
| 394 | #define VL_REG_P(REGNO) ((REGNO) == VL_REGNUM) | |
| 395 | #define VTYPE_REG_P(REGNO) ((REGNO) == VTYPE_REGNUM) | |
| 5ed88078 | 396 | #define VXRM_REG_P(REGNO) ((REGNO) == VXRM_REGNUM) |
| 8cd140d3 | 397 | #define FRM_REG_P(REGNO) ((REGNO) == FRM_REGNUM) |
| 09cae750 | 398 | |
| e18a6d14 AB |
399 | /* True when REGNO is in SIBCALL_REGS set. */ |
| 400 | #define SIBCALL_REG_P(REGNO) \ | |
| 401 | TEST_HARD_REG_BIT (reg_class_contents[SIBCALL_REGS], REGNO) | |
| 402 | ||
| 09cae750 PD |
403 | #define FP_REG_RTX_P(X) (REG_P (X) && FP_REG_P (REGNO (X))) |
| 404 | ||
| 09cae750 PD |
405 | /* Use s0 as the frame pointer if it is so requested. */ |
| 406 | #define HARD_FRAME_POINTER_REGNUM 8 | |
| 407 | #define STACK_POINTER_REGNUM 2 | |
| 408 | #define THREAD_POINTER_REGNUM 4 | |
| 409 | ||
| 410 | /* These two registers don't really exist: they get eliminated to either | |
| 411 | the stack or hard frame pointer. */ | |
| 412 | #define ARG_POINTER_REGNUM 64 | |
| 413 | #define FRAME_POINTER_REGNUM 65 | |
| 414 | ||
| 31380d4b | 415 | /* Define Dwarf for RVV. */ |
| 8cd140d3 | 416 | #define RISCV_DWARF_FRM (4096 + 0x003) |
| 5ed88078 | 417 | #define RISCV_DWARF_VXRM (4096 + 0x00a) |
| 31380d4b | 418 | #define RISCV_DWARF_VL (4096 + 0xc20) |
| 419 | #define RISCV_DWARF_VTYPE (4096 + 0xc21) | |
| 5576518a | 420 | #define RISCV_DWARF_VLENB (4096 + 0xc22) |
| 31380d4b | 421 | |
| 09cae750 | 422 | /* Register in which static-chain is passed to a function. */ |
| 805a052d | 423 | #define STATIC_CHAIN_REGNUM \ |
| 59a869d7 | 424 | ((is_zicfilp_p ()) ? (GP_TEMP_FIRST + 23) : (GP_TEMP_FIRST + 2)) |
| 09cae750 PD |
425 | |
| 426 | /* Registers used as temporaries in prologue/epilogue code. | |
| 427 | ||
| 428 | The prologue registers mustn't conflict with any | |
| 429 | incoming arguments, the static chain pointer, or the frame pointer. | |
| 430 | The epilogue temporary mustn't conflict with the return registers, | |
| 431 | the frame pointer, the EH stack adjustment, or the EH data registers. */ | |
| 432 | ||
| 207de839 | 433 | #define RISCV_PROLOGUE_TEMP_REGNUM (GP_TEMP_FIRST) |
| 09cae750 | 434 | #define RISCV_PROLOGUE_TEMP(MODE) gen_rtx_REG (MODE, RISCV_PROLOGUE_TEMP_REGNUM) |
| 5576518a JZZ |
435 | #define RISCV_PROLOGUE_TEMP2_REGNUM (GP_TEMP_FIRST + 1) |
| 436 | #define RISCV_PROLOGUE_TEMP2(MODE) gen_rtx_REG (MODE, RISCV_PROLOGUE_TEMP2_REGNUM) | |
| 09cae750 | 437 | |
| 2862d99b RMZ |
438 | /* Both prologue temp registers are used in the vector probe loop for when |
| 439 | stack-clash protection is enabled, so we need to copy SP to a new register | |
| 440 | and set it as CFA during the loop, we are using T3 for that. */ | |
| 441 | #define RISCV_STACK_CLASH_VECTOR_CFA_REGNUM (GP_TEMP_FIRST + 23) | |
| 442 | ||
| 207de839 MC |
443 | #define RISCV_CALL_ADDRESS_TEMP_REGNUM (GP_TEMP_FIRST + 1) |
| 444 | #define RISCV_CALL_ADDRESS_TEMP(MODE) \ | |
| 445 | gen_rtx_REG (MODE, RISCV_CALL_ADDRESS_TEMP_REGNUM) | |
| 446 | ||
| 805a052d MC |
447 | #define RISCV_CALL_ADDRESS_LPAD_REGNUM (GP_TEMP_FIRST + 2) |
| 448 | #define RISCV_CALL_ADDRESS_LPAD(MODE) \ | |
| 449 | gen_rtx_REG (MODE, RISCV_CALL_ADDRESS_LPAD_REGNUM) | |
| 450 | ||
| 3d1d3132 FG |
451 | #define RETURN_ADDR_MASK (1 << RETURN_ADDR_REGNUM) |
| 452 | #define S0_MASK (1 << S0_REGNUM) | |
| 453 | #define S1_MASK (1 << S1_REGNUM) | |
| 454 | #define S2_MASK (1 << S2_REGNUM) | |
| 455 | #define S3_MASK (1 << S3_REGNUM) | |
| 456 | #define S4_MASK (1 << S4_REGNUM) | |
| 457 | #define S5_MASK (1 << S5_REGNUM) | |
| 458 | #define S6_MASK (1 << S6_REGNUM) | |
| 459 | #define S7_MASK (1 << S7_REGNUM) | |
| 460 | #define S8_MASK (1 << S8_REGNUM) | |
| 461 | #define S9_MASK (1 << S9_REGNUM) | |
| 462 | #define S10_MASK (1 << S10_REGNUM) | |
| 463 | #define S11_MASK (1 << S11_REGNUM) | |
| 464 | ||
| 465 | #define MULTI_PUSH_GPR_MASK \ | |
| 466 | (RETURN_ADDR_MASK | S0_MASK | S1_MASK | S2_MASK | S3_MASK | S4_MASK \ | |
| 467 | | S5_MASK | S6_MASK | S7_MASK | S8_MASK | S9_MASK | S10_MASK | S11_MASK) | |
| 468 | #define ZCMP_MAX_SPIMM 3 | |
| 469 | #define ZCMP_SP_INC_STEP 16 | |
| 470 | #define ZCMP_INVALID_S0S10_SREGS_COUNTS 11 | |
| 471 | #define ZCMP_S0S11_SREGS_COUNTS 12 | |
| 472 | #define ZCMP_MAX_GRP_SLOTS 13 | |
| 473 | ||
| 09cae750 PD |
474 | #define MCOUNT_NAME "_mcount" |
| 475 | ||
| 476 | #define NO_PROFILE_COUNTERS 1 | |
| 477 | ||
| 478 | /* Emit rtl for profiling. Output assembler code to FILE | |
| 479 | to call "_mcount" for profiling a function entry. */ | |
| 480 | #define PROFILE_HOOK(LABEL) \ | |
| 481 | { \ | |
| 482 | rtx fun, ra; \ | |
| 483 | ra = get_hard_reg_initial_val (Pmode, RETURN_ADDR_REGNUM); \ | |
| 484 | fun = gen_rtx_SYMBOL_REF (Pmode, MCOUNT_NAME); \ | |
| db69559b | 485 | emit_library_call (fun, LCT_NORMAL, VOIDmode, ra, Pmode); \ |
| 09cae750 PD |
486 | } |
| 487 | ||
| 488 | /* All the work done in PROFILE_HOOK, but still required. */ | |
| 489 | #define FUNCTION_PROFILER(STREAM, LABELNO) do { } while (0) | |
| 490 | ||
| 491 | /* Define this macro if it is as good or better to call a constant | |
| 492 | function address than to call an address kept in a register. */ | |
| 493 | #define NO_FUNCTION_CSE 1 | |
| 494 | ||
| 495 | /* Define the classes of registers for register constraints in the | |
| 496 | machine description. Also define ranges of constants. | |
| 497 | ||
| 498 | One of the classes must always be named ALL_REGS and include all hard regs. | |
| 499 | If there is more than one class, another class must be named NO_REGS | |
| 500 | and contain no registers. | |
| 501 | ||
| 502 | The name GENERAL_REGS must be the name of a class (or an alias for | |
| 503 | another name such as ALL_REGS). This is the class of registers | |
| 504 | that is allowed by "g" or "r" in a register constraint. | |
| 505 | Also, registers outside this class are allocated only when | |
| 506 | instructions express preferences for them. | |
| 507 | ||
| 508 | The classes must be numbered in nondecreasing order; that is, | |
| 509 | a larger-numbered class must never be contained completely | |
| 510 | in a smaller-numbered class. | |
| 511 | ||
| 512 | For any two classes, it is very desirable that there be another | |
| 513 | class that represents their union. */ | |
| 514 | ||
| 515 | enum reg_class | |
| 516 | { | |
| 517 | NO_REGS, /* no registers in set */ | |
| 518 | SIBCALL_REGS, /* registers used by indirect sibcalls */ | |
| 46888571 | 519 | RVC_GR_REGS, /* RVC general registers */ |
| 09cae750 PD |
520 | JALR_REGS, /* registers used by indirect calls */ |
| 521 | GR_REGS, /* integer registers */ | |
| 46888571 | 522 | RVC_FP_REGS, /* RVC floating-point registers */ |
| 09cae750 PD |
523 | FP_REGS, /* floating-point registers */ |
| 524 | FRAME_REGS, /* arg pointer and frame pointer */ | |
| 31380d4b | 525 | VM_REGS, /* v0.t registers */ |
| 526 | VD_REGS, /* vector registers except v0.t */ | |
| 527 | V_REGS, /* vector registers */ | |
| 09cae750 PD |
528 | ALL_REGS, /* all registers */ |
| 529 | LIM_REG_CLASSES /* max value + 1 */ | |
| 530 | }; | |
| 531 | ||
| 532 | #define N_REG_CLASSES (int) LIM_REG_CLASSES | |
| 533 | ||
| 534 | #define GENERAL_REGS GR_REGS | |
| 535 | ||
| 536 | /* An initializer containing the names of the register classes as C | |
| 537 | string constants. These names are used in writing some of the | |
| 538 | debugging dumps. */ | |
| 539 | ||
| 540 | #define REG_CLASS_NAMES \ | |
| 541 | { \ | |
| 542 | "NO_REGS", \ | |
| 543 | "SIBCALL_REGS", \ | |
| 46888571 | 544 | "RVC_GR_REGS", \ |
| 09cae750 PD |
545 | "JALR_REGS", \ |
| 546 | "GR_REGS", \ | |
| 46888571 | 547 | "RVC_FP_REGS", \ |
| 09cae750 PD |
548 | "FP_REGS", \ |
| 549 | "FRAME_REGS", \ | |
| 31380d4b | 550 | "VM_REGS", \ |
| 551 | "VD_REGS", \ | |
| 552 | "V_REGS", \ | |
| 09cae750 PD |
553 | "ALL_REGS" \ |
| 554 | } | |
| 555 | ||
| 556 | /* An initializer containing the contents of the register classes, | |
| 557 | as integers which are bit masks. The Nth integer specifies the | |
| 558 | contents of class N. The way the integer MASK is interpreted is | |
| 559 | that register R is in the class if `MASK & (1 << R)' is 1. | |
| 560 | ||
| 561 | When the machine has more than 32 registers, an integer does not | |
| 562 | suffice. Then the integers are replaced by sub-initializers, | |
| 563 | braced groupings containing several integers. Each | |
| 564 | sub-initializer must be suitable as an initializer for the type | |
| 565 | `HARD_REG_SET' which is defined in `hard-reg-set.h'. */ | |
| 566 | ||
| 567 | #define REG_CLASS_CONTENTS \ | |
| 568 | { \ | |
| 31380d4b | 569 | { 0x00000000, 0x00000000, 0x00000000, 0x00000000 }, /* NO_REGS */ \ |
| 570 | { 0xf003fcc0, 0x00000000, 0x00000000, 0x00000000 }, /* SIBCALL_REGS */ \ | |
| 46888571 | 571 | { 0x0000ff00, 0x00000000, 0x00000000, 0x00000000 }, /* RVC_GR_REGS */ \ |
| 31380d4b | 572 | { 0xffffffc0, 0x00000000, 0x00000000, 0x00000000 }, /* JALR_REGS */ \ |
| 573 | { 0xffffffff, 0x00000000, 0x00000000, 0x00000000 }, /* GR_REGS */ \ | |
| 46888571 | 574 | { 0x00000000, 0x0000ff00, 0x00000000, 0x00000000 }, /* RVC_FP_REGS */ \ |
| 31380d4b | 575 | { 0x00000000, 0xffffffff, 0x00000000, 0x00000000 }, /* FP_REGS */ \ |
| 576 | { 0x00000000, 0x00000000, 0x00000003, 0x00000000 }, /* FRAME_REGS */ \ | |
| 31380d4b | 577 | { 0x00000000, 0x00000000, 0x00000000, 0x00000001 }, /* V0_REGS */ \ |
| 578 | { 0x00000000, 0x00000000, 0x00000000, 0xfffffffe }, /* VNoV0_REGS */ \ | |
| 579 | { 0x00000000, 0x00000000, 0x00000000, 0xffffffff }, /* V_REGS */ \ | |
| 167b04b9 | 580 | { 0xffffffff, 0xffffffff, 0x00000003, 0xffffffff } /* ALL_REGS */ \ |
| 09cae750 PD |
581 | } |
| 582 | ||
| 583 | /* A C expression whose value is a register class containing hard | |
| 584 | register REGNO. In general there is more that one such class; | |
| 585 | choose a class which is "minimal", meaning that no smaller class | |
| 586 | also contains the register. */ | |
| 587 | ||
| 588 | #define REGNO_REG_CLASS(REGNO) riscv_regno_to_class[ (REGNO) ] | |
| 589 | ||
| 590 | /* A macro whose definition is the name of the class to which a | |
| 591 | valid base register must belong. A base register is one used in | |
| 592 | an address which is the register value plus a displacement. */ | |
| 593 | ||
| 594 | #define BASE_REG_CLASS GR_REGS | |
| 595 | ||
| 596 | /* A macro whose definition is the name of the class to which a | |
| 597 | valid index register must belong. An index register is one used | |
| 598 | in an address where its value is either multiplied by a scale | |
| 599 | factor or added to another register (as well as added to a | |
| 600 | displacement). */ | |
| 601 | ||
| 42360427 | 602 | #define INDEX_REG_CLASS riscv_index_reg_class() |
| 09cae750 PD |
603 | |
| 604 | /* We generally want to put call-clobbered registers ahead of | |
| 605 | call-saved ones. (IRA expects this.) */ | |
| 606 | ||
| 607 | #define REG_ALLOC_ORDER \ | |
| 608 | { \ | |
| 609 | /* Call-clobbered GPRs. */ \ | |
| 610 | 15, 14, 13, 12, 11, 10, 16, 17, 6, 28, 29, 30, 31, 5, 7, 1, \ | |
| 611 | /* Call-saved GPRs. */ \ | |
| 612 | 8, 9, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, \ | |
| 613 | /* GPRs that can never be exposed to the register allocator. */ \ | |
| 614 | 0, 2, 3, 4, \ | |
| 615 | /* Call-clobbered FPRs. */ \ | |
| 616 | 47, 46, 45, 44, 43, 42, 32, 33, 34, 35, 36, 37, 38, 39, 48, 49, \ | |
| 617 | 60, 61, 62, 63, \ | |
| 618 | /* Call-saved FPRs. */ \ | |
| 619 | 40, 41, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, \ | |
| 7b206ae7 JZ |
620 | /* v1 ~ v31 vector registers. */ \ |
| 621 | 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, \ | |
| 622 | 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, \ | |
| 623 | 124, 125, 126, 127, \ | |
| 624 | /* The vector mask register. */ \ | |
| 625 | 96, \ | |
| 09cae750 PD |
626 | /* None of the remaining classes have defined call-saved \ |
| 627 | registers. */ \ | |
| 31380d4b | 628 | 64, 65, 66, 67 \ |
| 09cae750 PD |
629 | } |
| 630 | ||
| 631 | /* True if VALUE is a signed 12-bit number. */ | |
| 632 | ||
| 633 | #define SMALL_OPERAND(VALUE) \ | |
| 634 | ((unsigned HOST_WIDE_INT) (VALUE) + IMM_REACH/2 < IMM_REACH) | |
| 635 | ||
| 3496ca4e | 636 | #define POLY_SMALL_OPERAND_P(POLY_VALUE) \ |
| 637 | (POLY_VALUE.is_constant () ? \ | |
| 638 | SMALL_OPERAND (POLY_VALUE.to_constant ()) : false) | |
| 7b0073c6 | 639 | |
| 09cae750 PD |
640 | /* True if VALUE can be loaded into a register using LUI. */ |
| 641 | ||
| 642 | #define LUI_OPERAND(VALUE) \ | |
| 643 | (((VALUE) | ((1UL<<31) - IMM_REACH)) == ((1UL<<31) - IMM_REACH) \ | |
| 644 | || ((VALUE) | ((1UL<<31) - IMM_REACH)) + IMM_REACH == 0) | |
| 645 | ||
| 4bfc4585 VG |
646 | /* True if a VALUE (constant) can be expressed as sum of two S12 constants |
| 647 | (in range -2048 to 2047). | |
| 648 | Range check logic: | |
| 649 | from: min S12 + 1 (or -1 depending on what side of zero) | |
| 650 | to: two times the min S12 value (to max out S12 bits). */ | |
| 651 | ||
| 652 | #define SUM_OF_TWO_S12_N(VALUE) \ | |
| 653 | (((VALUE) >= (-2048 * 2)) && ((VALUE) <= (-2048 - 1))) | |
| 654 | ||
| 655 | #define SUM_OF_TWO_S12_P(VALUE) \ | |
| 656 | (((VALUE) >= (2047 + 1)) && ((VALUE) <= (2047 * 2))) | |
| 657 | ||
| 658 | #define SUM_OF_TWO_S12(VALUE) \ | |
| 659 | (SUM_OF_TWO_S12_N (VALUE) || SUM_OF_TWO_S12_P (VALUE)) | |
| 660 | ||
| f9cfc192 VG |
661 | /* Variant with first value 8 byte aligned if involving stack regs. */ |
| 662 | #define SUM_OF_TWO_S12_P_ALGN(VALUE) \ | |
| 663 | (((VALUE) >= (2032 + 1)) && ((VALUE) <= (2032 * 2))) | |
| 664 | ||
| 665 | #define SUM_OF_TWO_S12_ALGN(VALUE) \ | |
| 666 | (SUM_OF_TWO_S12_N (VALUE) || SUM_OF_TWO_S12_P_ALGN (VALUE)) | |
| 667 | ||
| 4e72ccad PT |
668 | /* If this is a single bit mask, then we can load it with bseti. Special |
| 669 | handling of SImode 0x80000000 on RV64 is done in riscv_build_integer_1. */ | |
| 670 | #define SINGLE_BIT_MASK_OPERAND(VALUE) \ | |
| 2c721ea9 AP |
671 | (pow2p_hwi (TARGET_64BIT \ |
| 672 | ? (VALUE) \ | |
| 673 | : ((VALUE) & ((HOST_WIDE_INT_1U << 32)-1)))) | |
| 4e1e0d79 | 674 | |
| bc6beecb PT |
675 | /* True if VALUE can be represented as an immediate with 1 extra bit |
| 676 | set: we check that it is not a SMALL_OPERAND (as this would be true | |
| 677 | for all small operands) unmodified and turns into a small operand | |
| 678 | once we clear the top bit. */ | |
| 679 | #define UIMM_EXTRA_BIT_OPERAND(VALUE) \ | |
| 680 | (!SMALL_OPERAND (VALUE) \ | |
| 681 | && SMALL_OPERAND (VALUE & ~(HOST_WIDE_INT_1U << floor_log2 (VALUE)))) | |
| 682 | ||
| 52e809d5 JM |
683 | /* True if bit BIT is set in VALUE. */ |
| 684 | #define BITSET_P(VALUE, BIT) (((VALUE) & (1ULL << (BIT))) != 0) | |
| 685 | ||
| c8957c87 JV |
686 | /* Returns the smaller (common) number of trailing zeros for VAL1 and VAL2. */ |
| 687 | #define COMMON_TRAILING_ZEROS(VAL1, VAL2) \ | |
| 688 | (ctz_hwi (VAL1) < ctz_hwi (VAL2) \ | |
| 689 | ? ctz_hwi (VAL1) \ | |
| 690 | : ctz_hwi (VAL2)) | |
| 691 | ||
| 692 | /* Returns true if both VAL1 and VAL2 are SMALL_OPERANDs after shifting by | |
| 693 | the common number of trailing zeros. */ | |
| 694 | #define SMALL_AFTER_COMMON_TRAILING_SHIFT(VAL1, VAL2) \ | |
| 695 | (SMALL_OPERAND ((VAL1) >> COMMON_TRAILING_ZEROS (VAL1, VAL2)) \ | |
| 696 | && SMALL_OPERAND ((VAL2) >> COMMON_TRAILING_ZEROS (VAL1, VAL2))) | |
| 697 | ||
| 09cae750 PD |
698 | /* Stack layout; function entry, exit and calling. */ |
| 699 | ||
| 700 | #define STACK_GROWS_DOWNWARD 1 | |
| 701 | ||
| 702 | #define FRAME_GROWS_DOWNWARD 1 | |
| 703 | ||
| 09cae750 PD |
704 | #define RETURN_ADDR_RTX riscv_return_addr |
| 705 | ||
| 706 | #define ELIMINABLE_REGS \ | |
| 707 | {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \ | |
| 708 | { ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}, \ | |
| 709 | { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}, \ | |
| 710 | { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}} \ | |
| 711 | ||
| 712 | #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \ | |
| 713 | (OFFSET) = riscv_initial_elimination_offset (FROM, TO) | |
| 714 | ||
| 715 | /* Allocate stack space for arguments at the beginning of each function. */ | |
| 716 | #define ACCUMULATE_OUTGOING_ARGS 1 | |
| 717 | ||
| 718 | /* The argument pointer always points to the first argument. */ | |
| 719 | #define FIRST_PARM_OFFSET(FNDECL) 0 | |
| 720 | ||
| 721 | #define REG_PARM_STACK_SPACE(FNDECL) 0 | |
| 722 | ||
| 723 | /* Define this if it is the responsibility of the caller to | |
| 724 | allocate the area reserved for arguments passed in registers. | |
| 725 | If `ACCUMULATE_OUTGOING_ARGS' is also defined, the only effect | |
| 726 | of this macro is to determine whether the space is included in | |
| 727 | `crtl->outgoing_args_size'. */ | |
| 728 | #define OUTGOING_REG_PARM_STACK_SPACE(FNTYPE) 1 | |
| 729 | ||
| c0d3d1b6 | 730 | #define PREFERRED_STACK_BOUNDARY riscv_stack_boundary |
| 0ce42fe1 | 731 | |
| 09cae750 PD |
732 | /* Symbolic macros for the registers used to return integer and floating |
| 733 | point values. */ | |
| 734 | ||
| 735 | #define GP_RETURN GP_ARG_FIRST | |
| 736 | #define FP_RETURN (UNITS_PER_FP_ARG == 0 ? GP_RETURN : FP_ARG_FIRST) | |
| e40a3d86 PL |
737 | #define V_RETURN V_REG_FIRST |
| 738 | ||
| 739 | #define GP_RETURN_FIRST GP_ARG_FIRST | |
| 740 | #define GP_RETURN_LAST GP_ARG_FIRST + 1 | |
| 741 | #define FP_RETURN_FIRST FP_RETURN | |
| 742 | #define FP_RETURN_LAST FP_RETURN + 1 | |
| 09cae750 | 743 | |
| 006e90e1 TO |
744 | #define MAX_ARGS_IN_REGISTERS \ |
| 745 | (riscv_abi == ABI_ILP32E || riscv_abi == ABI_LP64E \ | |
| 746 | ? 6 \ | |
| 747 | : 8) | |
| 09cae750 | 748 | |
| 94a4b932 LD |
749 | #define MAX_ARGS_IN_VECTOR_REGISTERS (16) |
| 750 | #define MAX_ARGS_IN_MASK_REGISTERS (1) | |
| 751 | ||
| 09cae750 PD |
752 | /* Symbolic macros for the first/last argument registers. */ |
| 753 | ||
| 754 | #define GP_ARG_FIRST (GP_REG_FIRST + 10) | |
| 755 | #define GP_ARG_LAST (GP_ARG_FIRST + MAX_ARGS_IN_REGISTERS - 1) | |
| 756 | #define GP_TEMP_FIRST (GP_REG_FIRST + 5) | |
| 757 | #define FP_ARG_FIRST (FP_REG_FIRST + 10) | |
| 758 | #define FP_ARG_LAST (FP_ARG_FIRST + MAX_ARGS_IN_REGISTERS - 1) | |
| 94a4b932 LD |
759 | #define V_ARG_FIRST (V_REG_FIRST + 8) |
| 760 | #define V_ARG_LAST (V_ARG_FIRST + MAX_ARGS_IN_VECTOR_REGISTERS - 1) | |
| 09cae750 PD |
761 | |
| 762 | #define CALLEE_SAVED_REG_NUMBER(REGNO) \ | |
| 763 | ((REGNO) >= 8 && (REGNO) <= 9 ? (REGNO) - 8 : \ | |
| 764 | (REGNO) >= 18 && (REGNO) <= 27 ? (REGNO) - 16 : -1) | |
| 765 | ||
| 3d1d3132 FG |
766 | #define CALLEE_SAVED_FREG_NUMBER(REGNO) CALLEE_SAVED_REG_NUMBER (REGNO - 32) |
| 767 | ||
| 09cae750 | 768 | /* 1 if N is a possible register number for function argument passing. |
| 1fb157cc | 769 | We have no FP argument registers when soft-float. */ |
| 09cae750 PD |
770 | |
| 771 | /* Accept arguments in a0-a7, and in fa0-fa7 if permitted by the ABI. */ | |
| 772 | #define FUNCTION_ARG_REGNO_P(N) \ | |
| 773 | (IN_RANGE ((N), GP_ARG_FIRST, GP_ARG_LAST) \ | |
| 774 | || (UNITS_PER_FP_ARG && IN_RANGE ((N), FP_ARG_FIRST, FP_ARG_LAST))) | |
| 775 | ||
| 94a4b932 LD |
776 | /* Define the standard RISC-V calling convention and variants. */ |
| 777 | ||
| 778 | enum riscv_cc | |
| 779 | { | |
| 780 | RISCV_CC_BASE = 0, /* Base standard RISC-V ABI. */ | |
| 781 | RISCV_CC_V, /* For functions that pass or return values in V registers. */ | |
| 4c67c72c KC |
782 | /* For functions that pass or return values in V registers. */ |
| 783 | RISCV_CC_VLS_V_32, | |
| 784 | RISCV_CC_VLS_V_64, | |
| 785 | RISCV_CC_VLS_V_128, | |
| 786 | RISCV_CC_VLS_V_256, | |
| 787 | RISCV_CC_VLS_V_512, | |
| 788 | RISCV_CC_VLS_V_1024, | |
| 789 | RISCV_CC_VLS_V_2048, | |
| 790 | RISCV_CC_VLS_V_4096, | |
| 791 | RISCV_CC_VLS_V_8192, | |
| 792 | RISCV_CC_VLS_V_16384, | |
| 94a4b932 LD |
793 | RISCV_CC_UNKNOWN |
| 794 | }; | |
| 795 | ||
| 09cae750 | 796 | typedef struct { |
| 94a4b932 LD |
797 | /* The calling convention that current function used. */ |
| 798 | enum riscv_cc variant_cc; | |
| 799 | ||
| 4c67c72c KC |
800 | unsigned int abi_vlen; |
| 801 | ||
| 09cae750 PD |
802 | /* Number of integer registers used so far, up to MAX_ARGS_IN_REGISTERS. */ |
| 803 | unsigned int num_gprs; | |
| 804 | ||
| 805 | /* Number of floating-point registers used so far, likewise. */ | |
| 806 | unsigned int num_fprs; | |
| 1d4d302a | 807 | |
| 94a4b932 LD |
808 | /* Number of mask registers used so far, up to MAX_ARGS_IN_MASK_REGISTERS. */ |
| 809 | unsigned int num_mrs; | |
| 810 | ||
| 811 | /* The used state of args in vector registers, true for used by prev arg, | |
| 812 | initial to false. */ | |
| 813 | bool used_vrs[MAX_ARGS_IN_VECTOR_REGISTERS]; | |
| 09cae750 PD |
814 | } CUMULATIVE_ARGS; |
| 815 | ||
| fdd59c0f LD |
816 | /* Return riscv calling convention of call_insn. */ |
| 817 | extern enum riscv_cc get_riscv_cc (const rtx use); | |
| 818 | ||
| 09cae750 PD |
819 | /* Initialize a variable CUM of type CUMULATIVE_ARGS |
| 820 | for a call to a function whose data type is FNTYPE. | |
| 821 | For a library call, FNTYPE is 0. */ | |
| 822 | ||
| 823 | #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \ | |
| 1d4d302a | 824 | riscv_init_cumulative_args (&(CUM), (FNTYPE), (LIBNAME), (INDIRECT), \ |
| 4c67c72c | 825 | (N_NAMED_ARGS) != -1, /* check_only */false) |
| 09cae750 | 826 | |
| d0ebdd9f | 827 | #define EPILOGUE_USES(REGNO) riscv_epilogue_uses (REGNO) |
| 09cae750 | 828 | |
| 0ce42fe1 AW |
829 | /* Align based on stack boundary, which might have been set by the user. */ |
| 830 | #define RISCV_STACK_ALIGN(LOC) \ | |
| c0d3d1b6 | 831 | (((LOC) + ((PREFERRED_STACK_BOUNDARY/8)-1)) & -(PREFERRED_STACK_BOUNDARY/8)) |
| 09cae750 PD |
832 | |
| 833 | /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function, | |
| 834 | the stack pointer does not matter. The value is tested only in | |
| 835 | functions that have frame pointers. | |
| 836 | No definition is equivalent to always zero. */ | |
| 837 | ||
| 838 | #define EXIT_IGNORE_STACK 1 | |
| 839 | ||
| 840 | ||
| 841 | /* Trampolines are a block of code followed by two pointers. */ | |
| 842 | ||
| 59a869d7 | 843 | #define TRAMPOLINE_CODE_SIZE ((is_zicfilp_p ()) ? 24 : 16) |
| 805a052d | 844 | |
| 09cae750 PD |
845 | #define TRAMPOLINE_SIZE \ |
| 846 | ((Pmode == SImode) \ | |
| 847 | ? TRAMPOLINE_CODE_SIZE \ | |
| 848 | : (TRAMPOLINE_CODE_SIZE + POINTER_SIZE * 2)) | |
| 849 | #define TRAMPOLINE_ALIGNMENT POINTER_SIZE | |
| 850 | ||
| 851 | /* Addressing modes, and classification of registers for them. */ | |
| 852 | ||
| 42360427 CM |
853 | #define REGNO_OK_FOR_INDEX_P(REGNO) \ |
| 854 | riscv_regno_ok_for_index_p (REGNO) | |
| 855 | ||
| 09cae750 PD |
856 | #define REGNO_MODE_OK_FOR_BASE_P(REGNO, MODE) \ |
| 857 | riscv_regno_mode_ok_for_base_p (REGNO, MODE, 1) | |
| 858 | ||
| 859 | /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx | |
| 860 | and check its validity for a certain class. | |
| 861 | We have two alternate definitions for each of them. | |
| 862 | The usual definition accepts all pseudo regs; the other rejects them all. | |
| 863 | The symbol REG_OK_STRICT causes the latter definition to be used. | |
| 864 | ||
| 865 | Most source files want to accept pseudo regs in the hope that | |
| 866 | they will get allocated to the class that the insn wants them to be in. | |
| 867 | Some source files that are used after register allocation | |
| 868 | need to be strict. */ | |
| 869 | ||
| 870 | #ifndef REG_OK_STRICT | |
| 871 | #define REG_MODE_OK_FOR_BASE_P(X, MODE) \ | |
| 872 | riscv_regno_mode_ok_for_base_p (REGNO (X), MODE, 0) | |
| 873 | #else | |
| 874 | #define REG_MODE_OK_FOR_BASE_P(X, MODE) \ | |
| 875 | riscv_regno_mode_ok_for_base_p (REGNO (X), MODE, 1) | |
| 876 | #endif | |
| 877 | ||
| 878 | #define REG_OK_FOR_INDEX_P(X) 0 | |
| 879 | ||
| 880 | /* Maximum number of registers that can appear in a valid memory address. */ | |
| 881 | ||
| 882 | #define MAX_REGS_PER_ADDRESS 1 | |
| 883 | ||
| 884 | #define CONSTANT_ADDRESS_P(X) \ | |
| 885 | (CONSTANT_P (X) && memory_address_p (SImode, X)) | |
| 886 | ||
| 887 | /* This handles the magic '..CURRENT_FUNCTION' symbol, which means | |
| 888 | 'the start of the function that this code is output in'. */ | |
| 889 | ||
| 2041a23a TV |
890 | #define ASM_OUTPUT_LABELREF(FILE,NAME) \ |
| 891 | do { \ | |
| 892 | if (strcmp (NAME, "..CURRENT_FUNCTION") == 0) \ | |
| 893 | asm_fprintf ((FILE), "%U%s", \ | |
| 894 | XSTR (XEXP (DECL_RTL (current_function_decl), \ | |
| 895 | 0), 0)); \ | |
| 896 | else \ | |
| 897 | asm_fprintf ((FILE), "%U%s", (NAME)); \ | |
| 898 | } while (0) | |
| 09cae750 | 899 | |
| 9a55cc62 JSJ |
900 | #undef ASM_OUTPUT_OPCODE |
| 901 | #define ASM_OUTPUT_OPCODE(STREAM, PTR) \ | |
| 902 | (PTR) = riscv_asm_output_opcode(STREAM, PTR) | |
| 903 | ||
| 1d9e02bb | 904 | #define JUMP_TABLES_IN_TEXT_SECTION (riscv_cmodel == CM_LARGE) |
| 09cae750 PD |
905 | #define CASE_VECTOR_MODE SImode |
| 906 | #define CASE_VECTOR_PC_RELATIVE (riscv_cmodel != CM_MEDLOW) | |
| 907 | ||
| 7d4df630 VG |
908 | #define LOCAL_SYM_P(sym) \ |
| 909 | ((SYMBOL_REF_P (sym) && SYMBOL_REF_LOCAL_P (sym)) \ | |
| 910 | || ((GET_CODE (sym) == CONST) \ | |
| 911 | && SYMBOL_REF_P (XEXP (XEXP (sym, 0),0)) \ | |
| 912 | && SYMBOL_REF_LOCAL_P (XEXP (XEXP (sym, 0),0)))) | |
| 913 | ||
| 09cae750 PD |
914 | /* The load-address macro is used for PC-relative addressing of symbols |
| 915 | that bind locally. Don't use it for symbols that should be addressed | |
| 916 | via the GOT. Also, avoid it for CM_MEDLOW, where LUI addressing | |
| 917 | currently results in more opportunities for linker relaxation. */ | |
| 918 | #define USE_LOAD_ADDRESS_MACRO(sym) \ | |
| 919 | (!TARGET_EXPLICIT_RELOCS && \ | |
| 7d4df630 | 920 | ((flag_pic && LOCAL_SYM_P (sym)) || riscv_cmodel == CM_MEDANY)) |
| 09cae750 PD |
921 | |
| 922 | /* Define this as 1 if `char' should by default be signed; else as 0. */ | |
| 923 | #define DEFAULT_SIGNED_CHAR 0 | |
| 924 | ||
| 925 | #define MOVE_MAX UNITS_PER_WORD | |
| 926 | #define MAX_MOVE_MAX 8 | |
| 927 | ||
| ecc82a8d AW |
928 | /* The SPARC port says: |
| 929 | Nonzero if access to memory by bytes is slow and undesirable. | |
| 930 | For RISC chips, it means that access to memory by bytes is no | |
| 931 | better than access by words when possible, so grab a whole word | |
| 932 | and maybe make use of that. */ | |
| 933 | #define SLOW_BYTE_ACCESS 1 | |
| 09cae750 | 934 | |
| b7ef9225 JW |
935 | /* Using SHIFT_COUNT_TRUNCATED is discouraged, so we handle this with patterns |
| 936 | in the md file instead. */ | |
| 937 | #define SHIFT_COUNT_TRUNCATED 0 | |
| 09cae750 | 938 | |
| 09cae750 PD |
939 | /* Specify the machine mode that pointers have. |
| 940 | After generation of rtl, the compiler makes no further distinction | |
| 941 | between pointers and any other objects of this machine mode. */ | |
| 942 | ||
| 943 | #define Pmode word_mode | |
| 944 | ||
| a3480aac CM |
945 | /* Specify the machine mode that registers have. */ |
| 946 | ||
| 947 | #define Xmode (TARGET_64BIT ? DImode : SImode) | |
| 948 | ||
| 09cae750 PD |
949 | /* Give call MEMs SImode since it is the "most permissive" mode |
| 950 | for both 32-bit and 64-bit targets. */ | |
| 951 | ||
| 952 | #define FUNCTION_MODE SImode | |
| 953 | ||
| 954 | /* A C expression for the cost of a branch instruction. A value of 2 | |
| 955 | seems to minimize code size. */ | |
| 956 | ||
| 957 | #define BRANCH_COST(speed_p, predictable_p) \ | |
| 958 | ((!(speed_p) || (predictable_p)) ? 2 : riscv_branch_cost) | |
| 959 | ||
| 4f475391 AW |
960 | /* True if the target optimizes short forward branches around integer |
| 961 | arithmetic instructions into predicated operations, e.g., for | |
| 962 | conditional-move operations. The macro assumes that all branch | |
| 963 | instructions (BEQ, BNE, BLT, BLTU, BGE, BGEU, C.BEQZ, and C.BNEZ) | |
| 964 | support this feature. The macro further assumes that any integer | |
| 965 | arithmetic and logical operation (ADD[I], SUB, SLL[I], SRL[I], SRA[I], | |
| 966 | SLT[I][U], AND[I], XOR[I], OR[I], LUI, AUIPC, and their compressed | |
| 967 | counterparts, including C.MV and C.LI) can be in the branch shadow. */ | |
| 968 | ||
| ec217f72 MC |
969 | #define TARGET_SFB_ALU \ |
| 970 | ((riscv_microarchitecture == sifive_7) \ | |
| 7c190f93 | 971 | || (riscv_microarchitecture == sifive_p400) \ |
| ec217f72 | 972 | || (riscv_microarchitecture == sifive_p600)) |
| 4f475391 | 973 | |
| 68b0742a RD |
974 | /* True if the target supports misaligned vector loads and stores. */ |
| 975 | #define TARGET_VECTOR_MISALIGN_SUPPORTED \ | |
| 976 | riscv_vector_unaligned_access_p | |
| 977 | ||
| 09cae750 PD |
978 | /* Control the assembler format that we output. */ |
| 979 | ||
| 980 | /* Output to assembler file text saying following lines | |
| 981 | may contain character constants, extra white space, comments, etc. */ | |
| 982 | ||
| 983 | #ifndef ASM_APP_ON | |
| 984 | #define ASM_APP_ON " #APP\n" | |
| 985 | #endif | |
| 986 | ||
| 987 | /* Output to assembler file text saying following lines | |
| 988 | no longer contain unusual constructs. */ | |
| 989 | ||
| 990 | #ifndef ASM_APP_OFF | |
| 991 | #define ASM_APP_OFF " #NO_APP\n" | |
| 992 | #endif | |
| 993 | ||
| 994 | #define REGISTER_NAMES \ | |
| 995 | { "zero","ra", "sp", "gp", "tp", "t0", "t1", "t2", \ | |
| 996 | "s0", "s1", "a0", "a1", "a2", "a3", "a4", "a5", \ | |
| 997 | "a6", "a7", "s2", "s3", "s4", "s5", "s6", "s7", \ | |
| 998 | "s8", "s9", "s10", "s11", "t3", "t4", "t5", "t6", \ | |
| 999 | "ft0", "ft1", "ft2", "ft3", "ft4", "ft5", "ft6", "ft7", \ | |
| 1000 | "fs0", "fs1", "fa0", "fa1", "fa2", "fa3", "fa4", "fa5", \ | |
| 1001 | "fa6", "fa7", "fs2", "fs3", "fs4", "fs5", "fs6", "fs7", \ | |
| 1002 | "fs8", "fs9", "fs10","fs11","ft8", "ft9", "ft10","ft11", \ | |
| f6d7ff47 | 1003 | "arg", "frame", "vl", "vtype", "vxrm", "frm", "vxsat", "N/A", \ |
| 31380d4b | 1004 | "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", \ |
| 1005 | "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", \ | |
| 1006 | "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", \ | |
| 1007 | "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", \ | |
| 1008 | "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", \ | |
| 1009 | "v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23", \ | |
| 1010 | "v24", "v25", "v26", "v27", "v28", "v29", "v30", "v31",} | |
| 09cae750 PD |
1011 | |
| 1012 | #define ADDITIONAL_REGISTER_NAMES \ | |
| 1013 | { \ | |
| 1014 | { "x0", 0 + GP_REG_FIRST }, \ | |
| 1015 | { "x1", 1 + GP_REG_FIRST }, \ | |
| 1016 | { "x2", 2 + GP_REG_FIRST }, \ | |
| 1017 | { "x3", 3 + GP_REG_FIRST }, \ | |
| 1018 | { "x4", 4 + GP_REG_FIRST }, \ | |
| 1019 | { "x5", 5 + GP_REG_FIRST }, \ | |
| 1020 | { "x6", 6 + GP_REG_FIRST }, \ | |
| 1021 | { "x7", 7 + GP_REG_FIRST }, \ | |
| 1022 | { "x8", 8 + GP_REG_FIRST }, \ | |
| 1023 | { "x9", 9 + GP_REG_FIRST }, \ | |
| 1024 | { "x10", 10 + GP_REG_FIRST }, \ | |
| 1025 | { "x11", 11 + GP_REG_FIRST }, \ | |
| 1026 | { "x12", 12 + GP_REG_FIRST }, \ | |
| 1027 | { "x13", 13 + GP_REG_FIRST }, \ | |
| 1028 | { "x14", 14 + GP_REG_FIRST }, \ | |
| 1029 | { "x15", 15 + GP_REG_FIRST }, \ | |
| 1030 | { "x16", 16 + GP_REG_FIRST }, \ | |
| 1031 | { "x17", 17 + GP_REG_FIRST }, \ | |
| 1032 | { "x18", 18 + GP_REG_FIRST }, \ | |
| 1033 | { "x19", 19 + GP_REG_FIRST }, \ | |
| 1034 | { "x20", 20 + GP_REG_FIRST }, \ | |
| 1035 | { "x21", 21 + GP_REG_FIRST }, \ | |
| 1036 | { "x22", 22 + GP_REG_FIRST }, \ | |
| 1037 | { "x23", 23 + GP_REG_FIRST }, \ | |
| 1038 | { "x24", 24 + GP_REG_FIRST }, \ | |
| 1039 | { "x25", 25 + GP_REG_FIRST }, \ | |
| 1040 | { "x26", 26 + GP_REG_FIRST }, \ | |
| 1041 | { "x27", 27 + GP_REG_FIRST }, \ | |
| 1042 | { "x28", 28 + GP_REG_FIRST }, \ | |
| 1043 | { "x29", 29 + GP_REG_FIRST }, \ | |
| 1044 | { "x30", 30 + GP_REG_FIRST }, \ | |
| 1045 | { "x31", 31 + GP_REG_FIRST }, \ | |
| 1046 | { "f0", 0 + FP_REG_FIRST }, \ | |
| 1047 | { "f1", 1 + FP_REG_FIRST }, \ | |
| 1048 | { "f2", 2 + FP_REG_FIRST }, \ | |
| 1049 | { "f3", 3 + FP_REG_FIRST }, \ | |
| 1050 | { "f4", 4 + FP_REG_FIRST }, \ | |
| 1051 | { "f5", 5 + FP_REG_FIRST }, \ | |
| 1052 | { "f6", 6 + FP_REG_FIRST }, \ | |
| 1053 | { "f7", 7 + FP_REG_FIRST }, \ | |
| 1054 | { "f8", 8 + FP_REG_FIRST }, \ | |
| 1055 | { "f9", 9 + FP_REG_FIRST }, \ | |
| 1056 | { "f10", 10 + FP_REG_FIRST }, \ | |
| 1057 | { "f11", 11 + FP_REG_FIRST }, \ | |
| 1058 | { "f12", 12 + FP_REG_FIRST }, \ | |
| 1059 | { "f13", 13 + FP_REG_FIRST }, \ | |
| 1060 | { "f14", 14 + FP_REG_FIRST }, \ | |
| 1061 | { "f15", 15 + FP_REG_FIRST }, \ | |
| 1062 | { "f16", 16 + FP_REG_FIRST }, \ | |
| 1063 | { "f17", 17 + FP_REG_FIRST }, \ | |
| 1064 | { "f18", 18 + FP_REG_FIRST }, \ | |
| 1065 | { "f19", 19 + FP_REG_FIRST }, \ | |
| 1066 | { "f20", 20 + FP_REG_FIRST }, \ | |
| 1067 | { "f21", 21 + FP_REG_FIRST }, \ | |
| 1068 | { "f22", 22 + FP_REG_FIRST }, \ | |
| 1069 | { "f23", 23 + FP_REG_FIRST }, \ | |
| 1070 | { "f24", 24 + FP_REG_FIRST }, \ | |
| 1071 | { "f25", 25 + FP_REG_FIRST }, \ | |
| 1072 | { "f26", 26 + FP_REG_FIRST }, \ | |
| 1073 | { "f27", 27 + FP_REG_FIRST }, \ | |
| 1074 | { "f28", 28 + FP_REG_FIRST }, \ | |
| 1075 | { "f29", 29 + FP_REG_FIRST }, \ | |
| 1076 | { "f30", 30 + FP_REG_FIRST }, \ | |
| 1077 | { "f31", 31 + FP_REG_FIRST }, \ | |
| 1078 | } | |
| 1079 | ||
| 1080 | /* Globalizing directive for a label. */ | |
| 1081 | #define GLOBAL_ASM_OP "\t.globl\t" | |
| 1082 | ||
| 1083 | /* This is how to store into the string LABEL | |
| 1084 | the symbol_ref name of an internal numbered label where | |
| 1085 | PREFIX is the class of label and NUM is the number within the class. | |
| 1086 | This is suitable for output with `assemble_name'. */ | |
| 1087 | ||
| 1088 | #undef ASM_GENERATE_INTERNAL_LABEL | |
| 1089 | #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \ | |
| 1090 | sprintf ((LABEL), "*%s%s%ld", (LOCAL_LABEL_PREFIX), (PREFIX), (long)(NUM)) | |
| 1091 | ||
| 1092 | /* This is how to output an element of a case-vector that is absolute. */ | |
| 1093 | ||
| 1094 | #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \ | |
| 1095 | fprintf (STREAM, "\t.word\t%sL%d\n", LOCAL_LABEL_PREFIX, VALUE) | |
| 1096 | ||
| 1097 | /* This is how to output an element of a PIC case-vector. */ | |
| 1098 | ||
| 1099 | #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \ | |
| 1100 | fprintf (STREAM, "\t.word\t%sL%d-%sL%d\n", \ | |
| 1101 | LOCAL_LABEL_PREFIX, VALUE, LOCAL_LABEL_PREFIX, REL) | |
| 1102 | ||
| 1103 | /* This is how to output an assembler line | |
| 1104 | that says to advance the location counter | |
| 1105 | to a multiple of 2**LOG bytes. */ | |
| 1106 | ||
| 1107 | #define ASM_OUTPUT_ALIGN(STREAM,LOG) \ | |
| 1108 | fprintf (STREAM, "\t.align\t%d\n", (LOG)) | |
| 1109 | ||
| 1110 | /* Define the strings to put out for each section in the object file. */ | |
| 1111 | #define TEXT_SECTION_ASM_OP "\t.text" /* instructions */ | |
| 1112 | #define DATA_SECTION_ASM_OP "\t.data" /* large data */ | |
| 1113 | #define READONLY_DATA_SECTION_ASM_OP "\t.section\t.rodata" | |
| 1114 | #define BSS_SECTION_ASM_OP "\t.bss" | |
| 1115 | #define SBSS_SECTION_ASM_OP "\t.section\t.sbss,\"aw\",@nobits" | |
| 1116 | #define SDATA_SECTION_ASM_OP "\t.section\t.sdata,\"aw\",@progbits" | |
| 1117 | ||
| 1118 | #define ASM_OUTPUT_REG_PUSH(STREAM,REGNO) \ | |
| 1119 | do \ | |
| 1120 | { \ | |
| 1121 | fprintf (STREAM, "\taddi\t%s,%s,-8\n\t%s\t%s,0(%s)\n", \ | |
| 1122 | reg_names[STACK_POINTER_REGNUM], \ | |
| 1123 | reg_names[STACK_POINTER_REGNUM], \ | |
| 1124 | TARGET_64BIT ? "sd" : "sw", \ | |
| 1125 | reg_names[REGNO], \ | |
| 1126 | reg_names[STACK_POINTER_REGNUM]); \ | |
| 1127 | } \ | |
| 1128 | while (0) | |
| 1129 | ||
| 1130 | #define ASM_OUTPUT_REG_POP(STREAM,REGNO) \ | |
| 1131 | do \ | |
| 1132 | { \ | |
| 1133 | fprintf (STREAM, "\t%s\t%s,0(%s)\n\taddi\t%s,%s,8\n", \ | |
| 1134 | TARGET_64BIT ? "ld" : "lw", \ | |
| 1135 | reg_names[REGNO], \ | |
| 1136 | reg_names[STACK_POINTER_REGNUM], \ | |
| 1137 | reg_names[STACK_POINTER_REGNUM], \ | |
| 1138 | reg_names[STACK_POINTER_REGNUM]); \ | |
| 1139 | } \ | |
| 1140 | while (0) | |
| 1141 | ||
| 1142 | #define ASM_COMMENT_START "#" | |
| 1143 | ||
| 4abcc500 LD |
1144 | /* Add output .variant_cc directive for specific function definition. */ |
| 1145 | #undef ASM_DECLARE_FUNCTION_NAME | |
| 1146 | #define ASM_DECLARE_FUNCTION_NAME(STR, NAME, DECL) \ | |
| 1147 | riscv_declare_function_name (STR, NAME, DECL) | |
| 1148 | ||
| 5f110561 KC |
1149 | #undef ASM_DECLARE_FUNCTION_SIZE |
| 1150 | #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL) \ | |
| 1151 | riscv_declare_function_size (FILE, FNAME, DECL) | |
| 1152 | ||
| 4abcc500 LD |
1153 | /* Add output .variant_cc directive for specific alias definition. */ |
| 1154 | #undef ASM_OUTPUT_DEF_FROM_DECLS | |
| 1155 | #define ASM_OUTPUT_DEF_FROM_DECLS(STR, DECL, TARGET) \ | |
| 1156 | riscv_asm_output_alias (STR, DECL, TARGET) | |
| 1157 | ||
| 1158 | /* Add output .variant_cc directive for specific extern function. */ | |
| 1159 | #undef ASM_OUTPUT_EXTERNAL | |
| 1160 | #define ASM_OUTPUT_EXTERNAL(STR, DECL, NAME) \ | |
| 1161 | riscv_asm_output_external (STR, DECL, NAME) | |
| 1162 | ||
| 09cae750 PD |
1163 | #undef SIZE_TYPE |
| 1164 | #define SIZE_TYPE (POINTER_SIZE == 64 ? "long unsigned int" : "unsigned int") | |
| 1165 | ||
| 1166 | #undef PTRDIFF_TYPE | |
| 1167 | #define PTRDIFF_TYPE (POINTER_SIZE == 64 ? "long int" : "int") | |
| 1168 | ||
| 76715c32 | 1169 | /* The maximum number of bytes copied by one iteration of a cpymemsi loop. */ |
| 6ed01e6b AW |
1170 | |
| 1171 | #define RISCV_MAX_MOVE_BYTES_PER_LOOP_ITER (UNITS_PER_WORD * 4) | |
| 1172 | ||
| 1173 | /* The maximum number of bytes that can be copied by a straight-line | |
| 76715c32 | 1174 | cpymemsi implementation. */ |
| 09cae750 | 1175 | |
| 6ed01e6b AW |
1176 | #define RISCV_MAX_MOVE_BYTES_STRAIGHT (RISCV_MAX_MOVE_BYTES_PER_LOOP_ITER * 3) |
| 1177 | ||
| 1178 | /* If a memory-to-memory move would take MOVE_RATIO or more simple | |
| 76715c32 | 1179 | move-instruction pairs, we will do a cpymem or libcall instead. |
| 6ed01e6b AW |
1180 | Do not use move_by_pieces at all when strict alignment is not |
| 1181 | in effect but the target has slow unaligned accesses; in this | |
| 76715c32 | 1182 | case, cpymem or libcall is more efficient. */ |
| 6ed01e6b AW |
1183 | |
| 1184 | #define MOVE_RATIO(speed) \ | |
| fb5621b1 | 1185 | (!STRICT_ALIGNMENT && riscv_slow_unaligned_access_p ? 1 : \ |
| 6ed01e6b AW |
1186 | (speed) ? RISCV_MAX_MOVE_BYTES_PER_LOOP_ITER / UNITS_PER_WORD : \ |
| 1187 | CLEAR_RATIO (speed) / 2) | |
| 09cae750 PD |
1188 | |
| 1189 | /* For CLEAR_RATIO, when optimizing for size, give a better estimate | |
| 1190 | of the length of a memset call, but use the default otherwise. */ | |
| 1191 | ||
| 1192 | #define CLEAR_RATIO(speed) ((speed) ? 16 : 6) | |
| 1193 | ||
| 1194 | /* This is similar to CLEAR_RATIO, but for a non-zero constant, so when | |
| 1195 | optimizing for size adjust the ratio to account for the overhead of | |
| 1196 | loading the constant and replicating it across the word. */ | |
| 1197 | ||
| 1198 | #define SET_RATIO(speed) (CLEAR_RATIO (speed) - ((speed) ? 0 : 2)) | |
| 1199 | ||
| 1200 | #ifndef USED_FOR_TARGET | |
| 1201 | extern const enum reg_class riscv_regno_to_class[]; | |
| fb5621b1 | 1202 | extern bool riscv_slow_unaligned_access_p; |
| 68b0742a | 1203 | extern bool riscv_vector_unaligned_access_p; |
| 6e23440b | 1204 | extern bool riscv_user_wants_strict_align; |
| fb5621b1 | 1205 | extern unsigned riscv_stack_boundary; |
| 3496ca4e | 1206 | extern unsigned riscv_bytes_per_vector_chunk; |
| 1207 | extern poly_uint16 riscv_vector_chunks; | |
| 7e924ba3 | 1208 | extern poly_int64 riscv_v_adjust_nunits (enum machine_mode, int); |
| 879c52c9 | 1209 | extern poly_int64 riscv_v_adjust_nunits (machine_mode, bool, int, int); |
| 247cacc9 | 1210 | extern poly_int64 riscv_v_adjust_precision (enum machine_mode, int); |
| 3a982e07 | 1211 | extern poly_int64 riscv_v_adjust_bytesize (enum machine_mode, int); |
| 59a869d7 MC |
1212 | extern bool is_zicfiss_p (); |
| 1213 | extern bool is_zicfilp_p (); | |
| dc76aa0e | 1214 | extern bool need_shadow_stack_push_pop_p (); |
| 3496ca4e | 1215 | /* The number of bits and bytes in a RVV vector. */ |
| 1216 | #define BITS_PER_RISCV_VECTOR (poly_uint16 (riscv_vector_chunks * riscv_bytes_per_vector_chunk * 8)) | |
| 1217 | #define BYTES_PER_RISCV_VECTOR (poly_uint16 (riscv_vector_chunks * riscv_bytes_per_vector_chunk)) | |
| 09cae750 PD |
1218 | #endif |
| 1219 | ||
| 1220 | #define ASM_PREFERRED_EH_DATA_FORMAT(CODE,GLOBAL) \ | |
| 1221 | (((GLOBAL) ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel | DW_EH_PE_sdata4) | |
| 1222 | ||
| 1223 | #define XLEN_SPEC \ | |
| 1224 | "%{march=rv32*:32}" \ | |
| 1225 | "%{march=rv64*:64}" \ | |
| 1226 | ||
| 1227 | #define ABI_SPEC \ | |
| 1228 | "%{mabi=ilp32:ilp32}" \ | |
| 09baee1a | 1229 | "%{mabi=ilp32e:ilp32e}" \ |
| 09cae750 PD |
1230 | "%{mabi=ilp32f:ilp32f}" \ |
| 1231 | "%{mabi=ilp32d:ilp32d}" \ | |
| 1232 | "%{mabi=lp64:lp64}" \ | |
| 006e90e1 | 1233 | "%{mabi=lp64e:lp64e}" \ |
| 09cae750 PD |
1234 | "%{mabi=lp64f:lp64f}" \ |
| 1235 | "%{mabi=lp64d:lp64d}" \ | |
| 1236 | ||
| 09cae750 PD |
1237 | /* ISA constants needed for code generation. */ |
| 1238 | #define OPCODE_LW 0x2003 | |
| 1239 | #define OPCODE_LD 0x3003 | |
| 1240 | #define OPCODE_AUIPC 0x17 | |
| 1241 | #define OPCODE_JALR 0x67 | |
| 1242 | #define OPCODE_LUI 0x37 | |
| 1243 | #define OPCODE_ADDI 0x13 | |
| 1244 | #define SHIFT_RD 7 | |
| 1245 | #define SHIFT_RS1 15 | |
| 1246 | #define SHIFT_IMM 20 | |
| 1247 | #define IMM_BITS 12 | |
| de6320a8 | 1248 | #define C_S_BITS 5 |
| 10789329 | 1249 | #define C_SxSP_BITS 6 |
| 09cae750 PD |
1250 | |
| 1251 | #define IMM_REACH (1LL << IMM_BITS) | |
| 1252 | #define CONST_HIGH_PART(VALUE) (((VALUE) + (IMM_REACH/2)) & ~(IMM_REACH-1)) | |
| 1253 | #define CONST_LOW_PART(VALUE) ((VALUE) - CONST_HIGH_PART (VALUE)) | |
| 1254 | ||
| 10789329 JW |
1255 | #define SWSP_REACH (4LL << C_SxSP_BITS) |
| 1256 | #define SDSP_REACH (8LL << C_SxSP_BITS) | |
| 1257 | ||
| de6320a8 CB |
1258 | /* This is the maximum value that can be represented in a compressed load/store |
| 1259 | offset (an unsigned 5-bit value scaled by 4). */ | |
| f95bd50b | 1260 | #define CSW_MAX_OFFSET (((4LL << C_S_BITS) - 1) & ~3) |
| de6320a8 | 1261 | |
| e53b6e56 | 1262 | /* Called from RISCV_REORG, this is defined in riscv-sr.cc. */ |
| e18a6d14 AB |
1263 | |
| 1264 | extern void riscv_remove_unneeded_save_restore_calls (void); | |
| 1265 | ||
| e0a5b313 KC |
1266 | #define HARD_REGNO_RENAME_OK(FROM, TO) riscv_hard_regno_rename_ok (FROM, TO) |
| 1267 | ||
| 16f7fcad PT |
1268 | #define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) \ |
| 1269 | ((VALUE) = GET_MODE_UNIT_BITSIZE (MODE), 2) | |
| 1270 | #define CTZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) \ | |
| 1271 | ((VALUE) = GET_MODE_UNIT_BITSIZE (MODE), 2) | |
| 1272 | ||
| ef85d150 VG |
1273 | #define TARGET_SUPPORTS_WIDE_INT 1 |
| 1274 | ||
| 7d935cdd JZZ |
1275 | #define REGISTER_TARGET_PRAGMAS() riscv_register_pragmas () |
| 1276 | ||
| f556cd8b JZZ |
1277 | #define REGMODE_NATURAL_SIZE(MODE) riscv_regmode_natural_size (MODE) |
| 1278 | ||
| 89367e79 KC |
1279 | #define DWARF_FRAME_REGISTERS (FIRST_PSEUDO_REGISTER + 1 /* VLENB */) |
| 1280 | ||
| 1281 | #define DWARF_REG_TO_UNWIND_COLUMN(REGNO) \ | |
| 1282 | ((REGNO == RISCV_DWARF_VLENB) ? (FIRST_PSEUDO_REGISTER + 1) : REGNO) | |
| 1283 | ||
| 3365956d PL |
1284 | /* Like s390, riscv also defined this macro for the vector comparision. Then |
| 1285 | the simplify-rtx relational_result will canonicalize the result to the | |
| 1286 | CONST1_RTX for the simplification. */ | |
| 1287 | #define VECTOR_STORE_FLAG_VALUE(MODE) CONSTM1_RTX (GET_MODE_INNER (MODE)) | |
| 1288 | ||
| e682d300 JZ |
1289 | /* Mode switching (Lazy code motion) for RVV rounding mode instructions. */ |
| 1290 | #define OPTIMIZE_MODE_SWITCHING(ENTITY) (TARGET_VECTOR) | |
| 4cede0de | 1291 | #define NUM_MODES_FOR_MODE_SWITCHING {VXRM_MODE_NONE, riscv_vector::FRM_NONE} |
| e682d300 | 1292 | |
| 0f40e59f KC |
1293 | /* The size difference between different RVV modes can be up to 64 times. |
| 1294 | e.g. RVVMF64BI vs RVVMF1BI on zvl512b, which is [1, 1] vs [64, 64]. */ | |
| 1295 | #define MAX_POLY_VARIANT 64 | |
| 1296 | ||
| 2d65622f CM |
1297 | #define HAVE_POST_MODIFY_DISP TARGET_XTHEADMEMIDX |
| 1298 | #define HAVE_PRE_MODIFY_DISP TARGET_XTHEADMEMIDX | |
| 1299 | ||
| 97069657 TI |
1300 | /* Check TLS Descriptors mechanism is selected. */ |
| 1301 | #define TARGET_TLSDESC (riscv_tls_dialect == TLS_DESCRIPTORS) | |
| 1302 | ||
| b82d173d RMZ |
1303 | /* This value is the amount of bytes a caller is allowed to drop the stack |
| 1304 | before probing has to be done for stack clash protection. */ | |
| 1305 | #define STACK_CLASH_CALLER_GUARD 1024 | |
| 1306 | ||
| 1307 | /* This value controls how many pages we manually unroll the loop for when | |
| 1308 | generating stack clash probes. */ | |
| 1309 | #define STACK_CLASH_MAX_UNROLL_PAGES 4 | |
| 1310 | ||
| 180ede35 RMZ |
1311 | /* This value represents the minimum amount of bytes we expect the function's |
| 1312 | outgoing arguments to be when stack-clash is enabled. */ | |
| 1313 | #define STACK_CLASH_MIN_BYTES_OUTGOING_ARGS 8 | |
| 1314 | ||
| 1315 | /* Allocate a minimum of STACK_CLASH_MIN_BYTES_OUTGOING_ARGS bytes for the | |
| 1316 | outgoing arguments if stack clash protection is enabled. This is essential | |
| 1317 | as the extra arg space allows us to skip a check in alloca. */ | |
| 1318 | #undef STACK_DYNAMIC_OFFSET | |
| 1319 | #define STACK_DYNAMIC_OFFSET(FUNDECL) \ | |
| 1320 | ((flag_stack_clash_protection \ | |
| 1321 | && cfun->calls_alloca \ | |
| 1322 | && known_lt (crtl->outgoing_args_size, \ | |
| 1323 | STACK_CLASH_MIN_BYTES_OUTGOING_ARGS)) \ | |
| 1324 | ? ROUND_UP (STACK_CLASH_MIN_BYTES_OUTGOING_ARGS, \ | |
| 1325 | STACK_BOUNDARY / BITS_PER_UNIT) \ | |
| 1326 | : (crtl->outgoing_args_size + STACK_POINTER_OFFSET)) | |
| 1327 | ||
| 9bf0dbe6 YC |
1328 | /* According to the RISC-V C API, the arch string may contains ','. To avoid |
| 1329 | the conflict with the default separator, we choose '#' as the separator for | |
| 1330 | the target attribute. */ | |
| 1331 | #define TARGET_CLONES_ATTR_SEPARATOR '#' | |
| 1332 | ||
| bd975bd1 YC |
1333 | #define TARGET_HAS_FMV_TARGET_ATTRIBUTE 0 |
| 1334 | ||
| ef5f0e9c UK |
1335 | /* mips pref valid offset range. */ |
| 1336 | #define MIPS_RISCV_9BIT_OFFSET_P(OFFSET) (IN_RANGE (OFFSET, 0, 511)) | |
| 1337 | ||
| 1338 | /* mips pref cache hint type. */ | |
| 1339 | typedef enum { | |
| 1340 | ICACHE_HINT = 0 << 3, | |
| 1341 | DCACHE_HINT = 1 << 3, | |
| 1342 | SCACHE_HINT = 2 << 3, | |
| 1343 | TCACHE_HINT = 3 << 3 | |
| 1344 | } CacheHint; | |
| 1345 | ||
| 09cae750 | 1346 | #endif /* ! GCC_RISCV_H */ |