annotate gcc/config/arc/arc-modes.def @ 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
111
kono
parents: 0
diff changeset
1 /* Definitions of target machine for GNU compiler, Synopsys DesignWare ARC cpu.
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
2 Copyright (C) 2002-2020 Free Software Foundation, Inc.
111
kono
parents: 0
diff changeset
3 Contributor: Joern Rennecke <joern.rennecke@embecosm.com>
kono
parents: 0
diff changeset
4 on behalf of Synopsys Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 GCC is free software; you can redistribute it and/or modify
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 the Free Software Foundation; either version 3, or (at your option)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 any later version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 GCC is distributed in the hope that it will be useful,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 GNU General Public License for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 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
19 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22 /* Some insns set all condition code flags, some only set the ZNC flags, and
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23 some only set the ZN flags. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
24
111
kono
parents: 0
diff changeset
25 CC_MODE (CC_ZN);
kono
parents: 0
diff changeset
26 CC_MODE (CC_Z);
kono
parents: 0
diff changeset
27 CC_MODE (CC_C);
kono
parents: 0
diff changeset
28 CC_MODE (CC_FP_GT);
kono
parents: 0
diff changeset
29 CC_MODE (CC_FP_GE);
kono
parents: 0
diff changeset
30 CC_MODE (CC_FP_ORD);
kono
parents: 0
diff changeset
31 CC_MODE (CC_FP_UNEQ);
kono
parents: 0
diff changeset
32 CC_MODE (CC_FPX);
kono
parents: 0
diff changeset
33
kono
parents: 0
diff changeset
34 /* Vector modes. */
kono
parents: 0
diff changeset
35 VECTOR_MODES (INT, 4); /* V4QI V2HI */
kono
parents: 0
diff changeset
36 VECTOR_MODES (INT, 8); /* V8QI V4HI V2SI */
kono
parents: 0
diff changeset
37 VECTOR_MODES (INT, 16); /* V16QI V8HI V4SI V2DI */
kono
parents: 0
diff changeset
38
kono
parents: 0
diff changeset
39 /* FPU condition flags. */
kono
parents: 0
diff changeset
40 CC_MODE (CC_FPU);
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
41 CC_MODE (CC_FPUE);
111
kono
parents: 0
diff changeset
42 CC_MODE (CC_FPU_UNEQ);