RISC-V: Add -mpreferred-stack-boundary option.
[official-gcc.git] / gcc / config / riscv / riscv.opt
blob581a26bb5c1e108fd950183ec6655ace3ae47f59
1 ; Options for the RISC-V port of the compiler
3 ; Copyright (C) 2011-2018 Free Software Foundation, Inc.
5 ; This file is part of GCC.
7 ; GCC is free software; you can redistribute it and/or modify it under
8 ; the terms of the GNU General Public License as published by the Free
9 ; Software Foundation; either version 3, or (at your option) any later
10 ; version.
12 ; GCC is distributed in the hope that it will be useful, but WITHOUT
13 ; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 ; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15 ; License for more details.
17 ; You should have received a copy of the GNU General Public License
18 ; along with GCC; see the file COPYING3.  If not see
19 ; <http://www.gnu.org/licenses/>.
21 HeaderInclude
22 config/riscv/riscv-opts.h
24 mbranch-cost=
25 Target RejectNegative Joined UInteger Var(riscv_branch_cost)
26 -mbranch-cost=N Set the cost of branches to roughly N instructions.
28 mplt
29 Target Report Var(TARGET_PLT) Init(1)
30 When generating -fpic code, allow the use of PLTs. Ignored for fno-pic.
32 mabi=
33 Target Report RejectNegative Joined Enum(abi_type) Var(riscv_abi) Init(ABI_ILP32)
34 Specify integer and floating-point calling convention.
36 mpreferred-stack-boundary=
37 Target RejectNegative Joined UInteger Var(riscv_preferred_stack_boundary_arg)
38 Attempt to keep stack aligned to this power of 2.
40 Enum
41 Name(abi_type) Type(enum riscv_abi_type)
42 Supported ABIs (for use with the -mabi= option):
44 EnumValue
45 Enum(abi_type) String(ilp32) Value(ABI_ILP32)
47 EnumValue
48 Enum(abi_type) String(ilp32f) Value(ABI_ILP32F)
50 EnumValue
51 Enum(abi_type) String(ilp32d) Value(ABI_ILP32D)
53 EnumValue
54 Enum(abi_type) String(lp64) Value(ABI_LP64)
56 EnumValue
57 Enum(abi_type) String(lp64f) Value(ABI_LP64F)
59 EnumValue
60 Enum(abi_type) String(lp64d) Value(ABI_LP64D)
62 mfdiv
63 Target Report Mask(FDIV)
64 Use hardware floating-point divide and square root instructions.
66 mdiv
67 Target Report Mask(DIV)
68 Use hardware instructions for integer division.
70 march=
71 Target Report RejectNegative Joined
72 -march= Generate code for given RISC-V ISA (e.g. RV64IM).  ISA strings must be
73 lower-case.
75 mtune=
76 Target RejectNegative Joined Var(riscv_tune_string)
77 -mtune=PROCESSOR        Optimize the output for PROCESSOR.
79 msmall-data-limit=
80 Target Joined Separate UInteger Var(g_switch_value) Init(8)
81 -msmall-data-limit=N    Put global and static data smaller than <number> bytes into a special section (on some targets).
83 msave-restore
84 Target Report Mask(SAVE_RESTORE)
85 Use smaller but slower prologue and epilogue code.
87 mcmodel=
88 Target Report RejectNegative Joined Enum(code_model) Var(riscv_cmodel) Init(TARGET_DEFAULT_CMODEL)
89 Specify the code model.
91 mstrict-align
92 Target Report Mask(STRICT_ALIGN) Save
93 Do not generate unaligned memory accesses.
95 Enum
96 Name(code_model) Type(enum riscv_code_model)
97 Known code models (for use with the -mcmodel= option):
99 EnumValue
100 Enum(code_model) String(medlow) Value(CM_MEDLOW)
102 EnumValue
103 Enum(code_model) String(medany) Value(CM_MEDANY)
105 mexplicit-relocs
106 Target Report Mask(EXPLICIT_RELOCS)
107 Use %reloc() operators, rather than assembly macros, to load addresses.
109 Mask(64BIT)
111 Mask(MUL)
113 Mask(ATOMIC)
115 Mask(HARD_FLOAT)
117 Mask(DOUBLE_FLOAT)
119 Mask(RVC)