diff options
author | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-30 19:47:22 +0000 |
---|---|---|
committer | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-30 19:47:22 +0000 |
commit | b8c0043c7dc2199bf35c99ecf874cde086c2c3d5 (patch) | |
tree | d7081e2edcaaae25aaa2c0cdc2115d8f8931eae5 /gcc/doc | |
parent | 53b2c31f6465e5c1c65a2e046b9673dcc72691cd (diff) | |
download | ppe42-gcc-b8c0043c7dc2199bf35c99ecf874cde086c2c3d5.tar.gz ppe42-gcc-b8c0043c7dc2199bf35c99ecf874cde086c2c3d5.zip |
* config.gcc [s390*-*-*]: Support --with-arch, --with-tune, and
--with-mode configure options.
* config/s390/s390.h (OPTION_DEFAULT_SPECS): Define.
(DRIVER_SELF_SPECS): Define.
* config/s390/linux.h (ASM_SPEC): Pass architecture mode and cpu
architecture to assembler.
(LINK_SPEC): Merge 31-bit and 64-bit variants.
(LINK_ARCH31_SPEC, LINK_ARCH64_SPEC, EXTRA_SPECS): Remove.
* config/s390/s390.c (override_options): New default rules for
architecture mode and cpu architecture selection.
* doc/invoke.texi (-mesa, -mzarch, -march, -mtune): Document
new default rules.
* config/s390/s390.h (enum processor_type): Add PROCESSOR_2084_Z990.
* config/s390/s390.md (attr "cpu"): Add "z990" processor type.
* config/s390/s390.c (override_options): Add "z990" to
processor_alias_table.
* doc/invoke.texi (-march): Document "z990" processor type.
* config/s390/s390.c (s390_tune_flags, s390_arch_flags): New variables.
* config/s390/s390.h (s390_tune_flags, s390_arch_flags): Declare.
(enum processor_flags, TARGET_CPU_IEEE_FLOAT, TARGET_CPU_ZARCH,
TARGET_CPU_LONG_DISPLACEMENT, TARGET_LONG_DISPLACEMENT): New.
* config/s390/s390.c (override_options): Replace enum pta_flags by
enum processor_flags. Fill in s390_tune_flags and s390_arch_flags.
* config/s390/s390.c (s390_cpu): Rename to ...
(s390_tune): ... this.
* config/s390/s390.h (s390_cpu, s390_tune): Likewise.
* config/s390/s390.c (s390_issue_rate, override_options): Likewise.
* config/s390/s390.md (attr "cpu"): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68736 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/invoke.texi | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index a751d8e419f..184a2d2ed2a 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -10134,8 +10134,9 @@ instructions available on z/Architecture. When @option{-mesa} is specified, generate code using the instructions available on ESA/390. Note that @option{-mesa} is not possible with @option{-m64}. -For the @samp{s390} targets, the default is @option{-mesa}, -while the @samp{s390x} targets default to @option{-mzarch}. +When generating code compliant to the Linux for S/390 ABI, +the default is @option{-mesa}. When generating code compliant +to the Linux for zSeries ABI, the default is @option{-mzarch}. @item -mmvcle @itemx -mno-mvcle @@ -10152,17 +10153,21 @@ use a @code{mvc} loop instead. This is the default. Print (or do not print) additional debug information when compiling. The default is to not print debug information. -@item -march=@var{arch} +@item -march=@var{cpu-type} @opindex march -Generate code that will run on @var{arch}, which is the name of system +Generate code that will run on @var{cpu-type}, which is the name of a system representing a certain processor type. Possible values for -@var{cpu-type} are @samp{g5}, @samp{g6} and @samp{z900}. +@var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}. +When generating code using the instructions available on z/Architecture, +the default is @option{-march=z900}. Otherwise, the default is +@option{-march=g5}. -@item -mtune=@var{arch} +@item -mtune=@var{cpu-type} @opindex mtune Tune to @var{cpu-type} everything applicable about the generated code, - except for the ABI and the set of available instructions. -The list of @var{arch} values is the same as for @option{-march}. +except for the ABI and the set of available instructions. +The list of @var{cpu-type} values is the same as for @option{-march}. +The default is the value used for @option{-march}. @end table |