|
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <!-- Copyright (C) 1988-2020 Free Software Foundation, Inc.
-
- Permission is granted to copy, distribute and/or modify this document
- under the terms of the GNU Free Documentation License, Version 1.3 or
- any later version published by the Free Software Foundation; with the
- Invariant Sections being "Funding Free Software", the Front-Cover
- Texts being (a) (see below), and with the Back-Cover Texts being (b)
- (see below). A copy of the license is included in the section entitled
- "GNU Free Documentation License".
-
- (a) The FSF's Front-Cover Text is:
-
- A GNU Manual
-
- (b) The FSF's Back-Cover Text is:
-
- You have freedom to copy and modify this GNU Manual, like GNU
- software. Copies published by the Free Software Foundation raise
- funds for GNU development. -->
- <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>RISC-V Options (Using the GNU Compiler Collection (GCC))</title>
-
- <meta name="description" content="RISC-V Options (Using the GNU Compiler Collection (GCC))">
- <meta name="keywords" content="RISC-V Options (Using the GNU Compiler Collection (GCC))">
- <meta name="resource-type" content="document">
- <meta name="distribution" content="global">
- <meta name="Generator" content="makeinfo">
- <link href="index.html#Top" rel="start" title="Top">
- <link href="Option-Index.html#Option-Index" rel="index" title="Option Index">
- <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
- <link href="Submodel-Options.html#Submodel-Options" rel="up" title="Submodel Options">
- <link href="RL78-Options.html#RL78-Options" rel="next" title="RL78 Options">
- <link href="PRU-Options.html#PRU-Options" rel="prev" title="PRU Options">
- <style type="text/css">
- <!--
- a.summary-letter {text-decoration: none}
- blockquote.indentedblock {margin-right: 0em}
- blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
- blockquote.smallquotation {font-size: smaller}
- div.display {margin-left: 3.2em}
- div.example {margin-left: 3.2em}
- div.lisp {margin-left: 3.2em}
- div.smalldisplay {margin-left: 3.2em}
- div.smallexample {margin-left: 3.2em}
- div.smalllisp {margin-left: 3.2em}
- kbd {font-style: oblique}
- pre.display {font-family: inherit}
- pre.format {font-family: inherit}
- pre.menu-comment {font-family: serif}
- pre.menu-preformatted {font-family: serif}
- pre.smalldisplay {font-family: inherit; font-size: smaller}
- pre.smallexample {font-size: smaller}
- pre.smallformat {font-family: inherit; font-size: smaller}
- pre.smalllisp {font-size: smaller}
- span.nolinebreak {white-space: nowrap}
- span.roman {font-family: initial; font-weight: normal}
- span.sansserif {font-family: sans-serif; font-weight: normal}
- ul.no-bullet {list-style: none}
- -->
- </style>
-
-
- </head>
-
- <body lang="en">
- <a name="RISC_002dV-Options"></a>
- <div class="header">
- <p>
- Next: <a href="RL78-Options.html#RL78-Options" accesskey="n" rel="next">RL78 Options</a>, Previous: <a href="PRU-Options.html#PRU-Options" accesskey="p" rel="prev">PRU Options</a>, Up: <a href="Submodel-Options.html#Submodel-Options" accesskey="u" rel="up">Submodel Options</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
- </div>
- <hr>
- <a name="RISC_002dV-Options-1"></a>
- <h4 class="subsection">3.19.42 RISC-V Options</h4>
- <a name="index-RISC_002dV-Options"></a>
-
- <p>These command-line options are defined for RISC-V targets:
- </p>
- <dl compact="compact">
- <dt><code>-mbranch-cost=<var>n</var></code></dt>
- <dd><a name="index-mbranch_002dcost-3"></a>
- <p>Set the cost of branches to roughly <var>n</var> instructions.
- </p>
- </dd>
- <dt><code>-mplt</code></dt>
- <dt><code>-mno-plt</code></dt>
- <dd><a name="index-plt"></a>
- <p>When generating PIC code, do or don’t allow the use of PLTs. Ignored for
- non-PIC. The default is <samp>-mplt</samp>.
- </p>
- </dd>
- <dt><code>-mabi=<var>ABI-string</var></code></dt>
- <dd><a name="index-mabi-3"></a>
- <p>Specify integer and floating-point calling convention. <var>ABI-string</var>
- contains two parts: the size of integer types and the registers used for
- floating-point types. For example ‘<samp>-march=rv64ifd -mabi=lp64d</samp>’ means that
- ‘<samp>long</samp>’ and pointers are 64-bit (implicitly defining ‘<samp>int</samp>’ to be
- 32-bit), and that floating-point values up to 64 bits wide are passed in F
- registers. Contrast this with ‘<samp>-march=rv64ifd -mabi=lp64f</samp>’, which still
- allows the compiler to generate code that uses the F and D extensions but only
- allows floating-point values up to 32 bits long to be passed in registers; or
- ‘<samp>-march=rv64ifd -mabi=lp64</samp>’, in which no floating-point arguments will be
- passed in registers.
- </p>
- <p>The default for this argument is system dependent, users who want a specific
- calling convention should specify one explicitly. The valid calling
- conventions are: ‘<samp>ilp32</samp>’, ‘<samp>ilp32f</samp>’, ‘<samp>ilp32d</samp>’, ‘<samp>lp64</samp>’,
- ‘<samp>lp64f</samp>’, and ‘<samp>lp64d</samp>’. Some calling conventions are impossible to
- implement on some ISAs: for example, ‘<samp>-march=rv32if -mabi=ilp32d</samp>’ is
- invalid because the ABI requires 64-bit values be passed in F registers, but F
- registers are only 32 bits wide. There is also the ‘<samp>ilp32e</samp>’ ABI that can
- only be used with the ‘<samp>rv32e</samp>’ architecture. This ABI is not well
- specified at present, and is subject to change.
- </p>
- </dd>
- <dt><code>-mfdiv</code></dt>
- <dt><code>-mno-fdiv</code></dt>
- <dd><a name="index-mfdiv"></a>
- <p>Do or don’t use hardware floating-point divide and square root instructions.
- This requires the F or D extensions for floating-point registers. The default
- is to use them if the specified architecture has these instructions.
- </p>
- </dd>
- <dt><code>-mdiv</code></dt>
- <dt><code>-mno-div</code></dt>
- <dd><a name="index-mdiv-4"></a>
- <p>Do or don’t use hardware instructions for integer division. This requires the
- M extension. The default is to use them if the specified architecture has
- these instructions.
- </p>
- </dd>
- <dt><code>-march=<var>ISA-string</var></code></dt>
- <dd><a name="index-march-12"></a>
- <p>Generate code for given RISC-V ISA (e.g. ‘<samp>rv64im</samp>’). ISA strings must be
- lower-case. Examples include ‘<samp>rv64i</samp>’, ‘<samp>rv32g</samp>’, ‘<samp>rv32e</samp>’, and
- ‘<samp>rv32imaf</samp>’.
- </p>
- </dd>
- <dt><code>-mtune=<var>processor-string</var></code></dt>
- <dd><a name="index-mtune-11"></a>
- <p>Optimize the output for the given processor, specified by microarchitecture
- name. Permissible values for this option are: ‘<samp>rocket</samp>’,
- ‘<samp>sifive-3-series</samp>’, ‘<samp>sifive-5-series</samp>’, ‘<samp>sifive-7-series</samp>’,
- and ‘<samp>size</samp>’.
- </p>
- <p>When <samp>-mtune=</samp> is not specified, the default is ‘<samp>rocket</samp>’.
- </p>
- <p>The ‘<samp>size</samp>’ choice is not intended for use by end-users. This is used
- when <samp>-Os</samp> is specified. It overrides the instruction cost info
- provided by <samp>-mtune=</samp>, but does not override the pipeline info. This
- helps reduce code size while still giving good performance.
- </p>
- </dd>
- <dt><code>-mpreferred-stack-boundary=<var>num</var></code></dt>
- <dd><a name="index-mpreferred_002dstack_002dboundary"></a>
- <p>Attempt to keep the stack boundary aligned to a 2 raised to <var>num</var>
- byte boundary. If <samp>-mpreferred-stack-boundary</samp> is not specified,
- the default is 4 (16 bytes or 128-bits).
- </p>
- <p><strong>Warning:</strong> If you use this switch, then you must build all modules with
- the same value, including any libraries. This includes the system libraries
- and startup modules.
- </p>
- </dd>
- <dt><code>-msmall-data-limit=<var>n</var></code></dt>
- <dd><a name="index-msmall_002ddata_002dlimit"></a>
- <p>Put global and static data smaller than <var>n</var> bytes into a special section
- (on some targets).
- </p>
- </dd>
- <dt><code>-msave-restore</code></dt>
- <dt><code>-mno-save-restore</code></dt>
- <dd><a name="index-msave_002drestore"></a>
- <p>Do or don’t use smaller but slower prologue and epilogue code that uses
- library function calls. The default is to use fast inline prologues and
- epilogues.
- </p>
- </dd>
- <dt><code>-mstrict-align</code></dt>
- <dt><code>-mno-strict-align</code></dt>
- <dd><a name="index-mstrict_002dalign-2"></a>
- <p>Do not or do generate unaligned memory accesses. The default is set depending
- on whether the processor we are optimizing for supports fast unaligned access
- or not.
- </p>
- </dd>
- <dt><code>-mcmodel=medlow</code></dt>
- <dd><a name="index-mcmodel_003dmedlow"></a>
- <p>Generate code for the medium-low code model. The program and its statically
- defined symbols must lie within a single 2 GiB address range and must lie
- between absolute addresses -2 GiB and +2 GiB. Programs can be
- statically or dynamically linked. This is the default code model.
- </p>
- </dd>
- <dt><code>-mcmodel=medany</code></dt>
- <dd><a name="index-mcmodel_003dmedany"></a>
- <p>Generate code for the medium-any code model. The program and its statically
- defined symbols must be within any single 2 GiB address range. Programs can be
- statically or dynamically linked.
- </p>
- </dd>
- <dt><code>-mexplicit-relocs</code></dt>
- <dt><code>-mno-exlicit-relocs</code></dt>
- <dd><p>Use or do not use assembler relocation operators when dealing with symbolic
- addresses. The alternative is to use assembler macros instead, which may
- limit optimization.
- </p>
- </dd>
- <dt><code>-mrelax</code></dt>
- <dt><code>-mno-relax</code></dt>
- <dd><p>Take advantage of linker relaxations to reduce the number of instructions
- required to materialize symbol addresses. The default is to take advantage of
- linker relaxations.
- </p>
- </dd>
- <dt><code>-memit-attribute</code></dt>
- <dt><code>-mno-emit-attribute</code></dt>
- <dd><p>Emit (do not emit) RISC-V attribute to record extra information into ELF
- objects. This feature requires at least binutils 2.32.
- </p>
- </dd>
- <dt><code>-malign-data=<var>type</var></code></dt>
- <dd><a name="index-malign_002ddata"></a>
- <p>Control how GCC aligns variables and constants of array, structure, or union
- types. Supported values for <var>type</var> are ‘<samp>xlen</samp>’ which uses x register
- width as the alignment value, and ‘<samp>natural</samp>’ which uses natural alignment.
- ‘<samp>xlen</samp>’ is the default.
- </p></dd>
- </dl>
-
- <hr>
- <div class="header">
- <p>
- Next: <a href="RL78-Options.html#RL78-Options" accesskey="n" rel="next">RL78 Options</a>, Previous: <a href="PRU-Options.html#PRU-Options" accesskey="p" rel="prev">PRU Options</a>, Up: <a href="Submodel-Options.html#Submodel-Options" accesskey="u" rel="up">Submodel Options</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
- </div>
-
-
-
- </body>
- </html>
|