annotate gcc/config/iq2000/iq2000.opt @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 ; Options for the Vitesse IQ2000 port of the compiler.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
3 ; Copyright (C) 2005-2020 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 ;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 ; This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 ;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 ; GCC is free software; you can redistribute it and/or modify it under
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 ; the terms of the GNU General Public License as published by the Free
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 ; Software Foundation; either version 3, or (at your option) any later
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 ; version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 ;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 ; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 ; WARRANTY; without even the implied warranty of MERCHANTABILITY or
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 ; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 ; for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 ;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 ; You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 ; along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 ; <http://www.gnu.org/licenses/>.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20
111
kono
parents: 0
diff changeset
21 HeaderInclude
kono
parents: 0
diff changeset
22 config/iq2000/iq2000-opts.h
kono
parents: 0
diff changeset
23
kono
parents: 0
diff changeset
24 ; The target cpu for optimization and scheduling.
kono
parents: 0
diff changeset
25 Variable
kono
parents: 0
diff changeset
26 enum processor_type iq2000_tune = PROCESSOR_DEFAULT
kono
parents: 0
diff changeset
27
kono
parents: 0
diff changeset
28 ; This option has no effect at the moment.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29 march=
111
kono
parents: 0
diff changeset
30 Target RejectNegative Joined Enum(iq2000_arch)
kono
parents: 0
diff changeset
31 Specify CPU for code generation purposes.
kono
parents: 0
diff changeset
32
kono
parents: 0
diff changeset
33 Enum
kono
parents: 0
diff changeset
34 Name(iq2000_arch) Type(int)
kono
parents: 0
diff changeset
35
kono
parents: 0
diff changeset
36 EnumValue
kono
parents: 0
diff changeset
37 Enum(iq2000_arch) String(default) Value(0)
kono
parents: 0
diff changeset
38
kono
parents: 0
diff changeset
39 EnumValue
kono
parents: 0
diff changeset
40 Enum(iq2000_arch) String(DEFAULT) Value(0)
kono
parents: 0
diff changeset
41
kono
parents: 0
diff changeset
42 EnumValue
kono
parents: 0
diff changeset
43 Enum(iq2000_arch) String(iq2000) Value(0)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 mcpu=
111
kono
parents: 0
diff changeset
46 Target RejectNegative Joined Enum(iq2000_tune) Var(iq2000_tune)
kono
parents: 0
diff changeset
47 Specify CPU for scheduling purposes.
kono
parents: 0
diff changeset
48
kono
parents: 0
diff changeset
49 Enum
kono
parents: 0
diff changeset
50 Name(iq2000_tune) Type(enum processor_type)
kono
parents: 0
diff changeset
51 Known IQ2000 CPUs (for use with the -mcpu= option):
kono
parents: 0
diff changeset
52
kono
parents: 0
diff changeset
53 EnumValue
kono
parents: 0
diff changeset
54 Enum(iq2000_tune) String(iq10) Value(PROCESSOR_IQ10)
kono
parents: 0
diff changeset
55
kono
parents: 0
diff changeset
56 EnumValue
kono
parents: 0
diff changeset
57 Enum(iq2000_tune) String(iq2000) Value(PROCESSOR_IQ2000)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 membedded-data
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60 Target Mask(EMBEDDED_DATA)
111
kono
parents: 0
diff changeset
61 Use ROM instead of RAM.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
62
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 mgpopt
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
64 Target Mask(GPOPT)
111
kono
parents: 0
diff changeset
65 Use GP relative sdata/sbss sections.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
66
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
67 ; Not used by the compiler proper.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
68 mno-crt0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
69 Target RejectNegative
111
kono
parents: 0
diff changeset
70 No default crt0.o.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
71
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 muninit-const-in-rodata
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
73 Target Mask(UNINIT_CONST_IN_RODATA)
111
kono
parents: 0
diff changeset
74 Put uninitialized constants in ROM (needs -membedded-data).