OpenCores
URL https://opencores.org/ocsvn/zipcpu/zipcpu/trunk

Subversion Repositories zipcpu

[/] [zipcpu/] [trunk/] [sw/] [gcc-zippatch.patch] - Blame information for rev 126

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 102 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/config.sub gcc-5.3.0-zip/config.sub
2
--- gcc-5.3.0-original/config.sub       2015-01-02 04:30:21.000000000 -0500
3
+++ gcc-5.3.0-zip/config.sub    2016-01-30 12:27:56.023073747 -0500
4
@@ -316,7 +316,7 @@
5
        | visium \
6
        | we32k \
7
        | x86 | xc16x | xstormy16 | xtensa \
8
-       | z8k | z80)
9
+       | z8k | z80 | zip)
10
                basic_machine=$basic_machine-unknown
11
                ;;
12
        c54x)
13
@@ -1547,6 +1547,9 @@
14
 # system, and we'll never get to this point.
15
 
16
 case $basic_machine in
17
+       zip-*)
18
+               os=-elf
19
+               ;;
20
        score-*)
21
                os=-elf
22
                ;;
23
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/configure gcc-5.3.0-zip/configure
24
--- gcc-5.3.0-original/configure        2015-05-03 13:29:57.000000000 -0400
25
+++ gcc-5.3.0-zip/configure     2016-01-30 16:19:48.264867231 -0500
26
@@ -3927,6 +3927,8 @@
27
   vax-*-*)
28
     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
29
     ;;
30
+  zip*)
31
+    noconfigdirs="$noconfigdirs target-libffi target-boehm-gc gdb gprof"
32
 esac
33
 
34
 # If we aren't building newlib, then don't build libgloss, since libgloss
35
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/configure.ac gcc-5.3.0-zip/configure.ac
36
--- gcc-5.3.0-original/configure.ac     2015-05-03 13:29:57.000000000 -0400
37
+++ gcc-5.3.0-zip/configure.ac  2016-02-12 10:47:23.847194843 -0500
38
@@ -1274,6 +1274,10 @@
39
   vax-*-*)
40
     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
41
     ;;
42
+  zip*)
43
+    noconfigdirs="$noconfigdirs target-libffi target-boehm-gc gdb gprof"
44
+    unsupported_languages="$unsupported_languages fortran java"
45
+    ;;
46
 esac
47
 
48
 # If we aren't building newlib, then don't build libgloss, since libgloss
49 117 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/cfgexpand.c gcc-5.3.0-zip/gcc/cfgexpand.c
50
--- gcc-5.3.0-original/gcc/cfgexpand.c  2015-07-23 06:39:26.000000000 -0400
51
+++ gcc-5.3.0-zip/gcc/cfgexpand.c       2016-04-01 06:40:17.288326711 -0400
52
@@ -108,6 +108,14 @@
53
 #include "tree-chkp.h"
54
 #include "rtl-chkp.h"
55
 
56
+#ifdef DO_ZIP_DEBUGS
57
+#include <stdio.h>
58
+#define ZIP_DEBUG_LINE(STR,RTX) do{fprintf(stderr,"%s:%d/%s\n",__FILE__,__LINE__,STR); zip_debug_rtx(RTX);} while(0)
59
+extern void    zip_debug_rtx(const_rtx);
60
+#else
61
+#define        ZIP_DEBUG_LINE(STR,RTX)
62
+#endif
63
+
64
 /* Some systems use __main in a way incompatible with its use in gcc, in these
65
    cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
66
    give the same symbol without quotes for an alternative entry point.  You
67 111 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/cgraphbuild.c gcc-5.3.0-zip/gcc/cgraphbuild.c
68
--- gcc-5.3.0-original/gcc/cgraphbuild.c        2015-01-09 15:18:42.000000000 -0500
69
+++ gcc-5.3.0-zip/gcc/cgraphbuild.c     2016-03-24 22:13:24.815287808 -0400
70
@@ -62,6 +62,13 @@
71
 #include "ipa-prop.h"
72
 #include "ipa-inline.h"
73
 
74
+#ifdef DO_ZIP_DEBUGS
75
+extern void zip_debug_rtx(const_rtx);
76
+#define        ZIP_DEBUG_LINE(STR,RTX) do { fprintf(stderr, "%s:%d/%s\n", __FILE__,__LINE__,STR); zip_debug_rtx(RTX); } while(0)
77
+#else
78
+#define        ZIP_DEBUG_LINE(STR,RTX)
79
+#endif
80
+
81
 /* Context of record_reference.  */
82
 struct record_reference_ctx
83
 {
84 102 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/common/config/zip/zip-common.c gcc-5.3.0-zip/gcc/common/config/zip/zip-common.c
85
--- gcc-5.3.0-original/gcc/common/config/zip/zip-common.c       1969-12-31 19:00:00.000000000 -0500
86
+++ gcc-5.3.0-zip/gcc/common/config/zip/zip-common.c    2016-02-14 00:54:31.821055716 -0500
87
@@ -0,0 +1,52 @@
88
+////////////////////////////////////////////////////////////////////////////////
89
+//
90
+// Filename:   common/config/zip/zip-common.c
91
+//
92
+// Project:    Zip CPU backend for the GNU Compiler Collection
93
+//
94
+// Purpose:    To eliminate the frame register automatically.
95
+//
96
+// Creator:    Dan Gisselquist, Ph.D.
97
+//             Gisselquist Technology, LLC
98
+//
99
+////////////////////////////////////////////////////////////////////////////////
100
+//
101
+// Copyright (C) 2016, Gisselquist Technology, LLC
102
+//
103
+// This program is free software (firmware): you can redistribute it and/or
104
+// modify it under the terms of  the GNU General Public License as published
105
+// by the Free Software Foundation, either version 3 of the License, or (at
106
+// your option) any later version.
107
+//
108
+// This program is distributed in the hope that it will be useful, but WITHOUT
109
+// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
110
+// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
111
+// for more details.
112
+//
113
+// You should have received a copy of the GNU General Public License along
114
+// with this program.  (It's in the $(ROOT)/doc directory, run make with no
115
+// target there if the PDF file isn't present.)  If not, see
116
+// <http://www.gnu.org/licenses/> for a copy.
117
+//
118
+// License:    GPL, v3, as defined and found on www.gnu.org,
119
+//             http://www.gnu.org/licenses/gpl.html
120
+//
121
+//
122
+////////////////////////////////////////////////////////////////////////////////
123
+#include "config.h"
124
+#include "system.h"
125
+#include "coretypes.h"
126
+#include "tm.h"
127
+#include "common/common-target.h"
128
+#include "common/common-target-def.h"
129
+
130
+static const struct default_options zip_option_optimization_table[] =
131
+  {
132
+    { OPT_LEVELS_1_PLUS, OPT_fomit_frame_pointer, NULL, 1 },
133
+    { OPT_LEVELS_NONE, 0, NULL, 0 }
134
+  };
135
+
136
+#undef TARGET_OPTION_OPTIMIZATION_TABLE
137
+#define        TARGET_OPTION_OPTIMIZATION_TABLE        zip_option_optimization_table
138
+
139
+struct gcc_targetm_common      targetm_common = TARGETM_COMMON_INITIALIZER;
140
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/aarch64/aarch64-linux.h gcc-5.3.0-zip/gcc/config/aarch64/aarch64-linux.h
141 125 dgisselq
--- gcc-5.3.0-original/gcc/config/aarch64/aarch64-linux.h       2016-04-13 12:14:18.252711082 -0400
142 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/aarch64/aarch64-linux.h    2015-07-24 12:00:26.000000000 -0400
143
@@ -21,7 +21,7 @@
144
 #ifndef GCC_AARCH64_LINUX_H
145
 #define GCC_AARCH64_LINUX_H
146
 
147
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
148
+#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
149
 
150
 #undef  ASAN_CC1_SPEC
151
 #define ASAN_CC1_SPEC "%{%:sanitize(address):-funwind-tables}"
152
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/alpha/linux-elf.h gcc-5.3.0-zip/gcc/config/alpha/linux-elf.h
153 125 dgisselq
--- gcc-5.3.0-original/gcc/config/alpha/linux-elf.h     2016-04-13 12:14:18.252711082 -0400
154 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/alpha/linux-elf.h  2015-01-05 07:33:28.000000000 -0500
155
@@ -23,8 +23,8 @@
156
 #define EXTRA_SPECS \
157
 { "elf_dynamic_linker", ELF_DYNAMIC_LINKER },
158
 
159
-#define GLIBC_DYNAMIC_LINKER   "/tools/lib/ld-linux.so.2"
160
-#define UCLIBC_DYNAMIC_LINKER "/tools/lib/ld-uClibc.so.0"
161
+#define GLIBC_DYNAMIC_LINKER   "/lib/ld-linux.so.2"
162
+#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
163
 #if DEFAULT_LIBC == LIBC_UCLIBC
164
 #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
165
 #elif DEFAULT_LIBC == LIBC_GLIBC
166
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/arm/linux-eabi.h gcc-5.3.0-zip/gcc/config/arm/linux-eabi.h
167 125 dgisselq
--- gcc-5.3.0-original/gcc/config/arm/linux-eabi.h      2016-04-13 12:14:18.252711082 -0400
168 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/arm/linux-eabi.h   2015-01-05 07:33:28.000000000 -0500
169
@@ -68,8 +68,8 @@
170
    GLIBC_DYNAMIC_LINKER_DEFAULT and TARGET_DEFAULT_FLOAT_ABI.  */
171
 
172
 #undef  GLIBC_DYNAMIC_LINKER
173
-#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "/tools/lib/ld-linux.so.3"
174
-#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT "/tools/lib/ld-linux-armhf.so.3"
175
+#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "/lib/ld-linux.so.3"
176
+#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT "/lib/ld-linux-armhf.so.3"
177
 #define GLIBC_DYNAMIC_LINKER_DEFAULT GLIBC_DYNAMIC_LINKER_SOFT_FLOAT
178
 
179
 #define GLIBC_DYNAMIC_LINKER \
180
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/arm/linux-elf.h gcc-5.3.0-zip/gcc/config/arm/linux-elf.h
181 125 dgisselq
--- gcc-5.3.0-original/gcc/config/arm/linux-elf.h       2016-04-13 12:14:18.252711082 -0400
182 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/arm/linux-elf.h    2015-06-23 05:26:54.000000000 -0400
183
@@ -62,7 +62,7 @@
184
 
185
 #define LIBGCC_SPEC "%{mfloat-abi=soft*:-lfloat} -lgcc"
186
 
187
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld-linux.so.2"
188
+#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
189
 
190
 #define LINUX_TARGET_LINK_SPEC  "%{h*} \
191
    %{static:-Bstatic} \
192
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/bfin/linux.h gcc-5.3.0-zip/gcc/config/bfin/linux.h
193 125 dgisselq
--- gcc-5.3.0-original/gcc/config/bfin/linux.h  2016-04-13 12:14:18.252711082 -0400
194 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/bfin/linux.h       2015-01-05 07:33:28.000000000 -0500
195
@@ -45,7 +45,7 @@
196
   %{shared:-G -Bdynamic} \
197
   %{!shared: %{!static: \
198
    %{rdynamic:-export-dynamic} \
199
-   -dynamic-linker /tools/lib/ld-uClibc.so.0} \
200
+   -dynamic-linker /lib/ld-uClibc.so.0} \
201
    %{static}} -init __init -fini __fini"
202
 
203
 #undef TARGET_SUPPORTS_SYNC_CALLS
204
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/cris/linux.h gcc-5.3.0-zip/gcc/config/cris/linux.h
205 125 dgisselq
--- gcc-5.3.0-original/gcc/config/cris/linux.h  2016-04-13 12:14:18.252711082 -0400
206 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/cris/linux.h       2015-01-05 07:33:28.000000000 -0500
207
@@ -102,7 +102,7 @@
208
 #undef CRIS_DEFAULT_CPU_VERSION
209
 #define CRIS_DEFAULT_CPU_VERSION CRIS_CPU_NG
210
 
211
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld.so.1"
212
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
213
 
214
 #undef CRIS_LINK_SUBTARGET_SPEC
215
 #define CRIS_LINK_SUBTARGET_SPEC \
216
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/freebsd-spec.h gcc-5.3.0-zip/gcc/config/freebsd-spec.h
217 125 dgisselq
--- gcc-5.3.0-original/gcc/config/freebsd-spec.h        2016-04-13 12:14:18.252711082 -0400
218 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/freebsd-spec.h     2015-06-25 13:53:14.000000000 -0400
219
@@ -129,9 +129,9 @@
220
 #endif
221
 
222
 #if FBSD_MAJOR < 6
223
-#define FBSD_DYNAMIC_LINKER "/tools/libexec/ld-elf.so.1"
224
+#define FBSD_DYNAMIC_LINKER "/usr/libexec/ld-elf.so.1"
225
 #else
226
-#define FBSD_DYNAMIC_LINKER "/tools/libexec/ld-elf.so.1"
227
+#define FBSD_DYNAMIC_LINKER "/libexec/ld-elf.so.1"
228
 #endif
229
 
230
 /* NOTE: The freebsd-spec.h header is included also for various
231
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/frv/linux.h gcc-5.3.0-zip/gcc/config/frv/linux.h
232 125 dgisselq
--- gcc-5.3.0-original/gcc/config/frv/linux.h   2016-04-13 12:14:18.256711056 -0400
233 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/frv/linux.h        2015-01-05 07:33:28.000000000 -0500
234
@@ -34,7 +34,7 @@
235
 #define ENDFILE_SPEC \
236
   "%{shared|pie:crtendS.o%s;:crtend.o%s} crtn.o%s"
237
 
238
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld.so.1"
239
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
240
 
241
 #undef LINK_SPEC
242
 #define LINK_SPEC "\
243
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/i386/gnu.h gcc-5.3.0-zip/gcc/config/i386/gnu.h
244 125 dgisselq
--- gcc-5.3.0-original/gcc/config/i386/gnu.h    2016-04-13 12:14:18.256711056 -0400
245 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/i386/gnu.h 2015-01-05 07:33:28.000000000 -0500
246
@@ -22,7 +22,7 @@
247
 #define GNU_USER_LINK_EMULATION "elf_i386"
248
 
249
 #undef GNU_USER_DYNAMIC_LINKER
250
-#define GNU_USER_DYNAMIC_LINKER "/tools/lib/ld.so"
251
+#define GNU_USER_DYNAMIC_LINKER "/lib/ld.so"
252
 
253
 #undef STARTFILE_SPEC
254
 #if defined HAVE_LD_PIE
255
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/i386/kfreebsd-gnu64.h gcc-5.3.0-zip/gcc/config/i386/kfreebsd-gnu64.h
256 125 dgisselq
--- gcc-5.3.0-original/gcc/config/i386/kfreebsd-gnu64.h 2016-04-13 12:14:18.256711056 -0400
257 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/i386/kfreebsd-gnu64.h      2015-01-05 07:33:28.000000000 -0500
258
@@ -22,6 +22,6 @@
259
 #define GNU_USER_LINK_EMULATION64 "elf_x86_64_fbsd"
260
 #define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64_fbsd"
261
 
262
-#define GLIBC_DYNAMIC_LINKER32 "/tools/lib/ld.so.1"
263
-#define GLIBC_DYNAMIC_LINKER64 "/tools/lib/ld-kfreebsd-x86-64.so.1"
264
-#define GLIBC_DYNAMIC_LINKERX32 "/tools/lib/ld-kfreebsd-x32.so.1"
265
+#define GLIBC_DYNAMIC_LINKER32 "/lib/ld.so.1"
266
+#define GLIBC_DYNAMIC_LINKER64 "/lib/ld-kfreebsd-x86-64.so.1"
267
+#define GLIBC_DYNAMIC_LINKERX32 "/lib/ld-kfreebsd-x32.so.1"
268
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/i386/kfreebsd-gnu.h gcc-5.3.0-zip/gcc/config/i386/kfreebsd-gnu.h
269 125 dgisselq
--- gcc-5.3.0-original/gcc/config/i386/kfreebsd-gnu.h   2016-04-13 12:14:18.256711056 -0400
270 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/i386/kfreebsd-gnu.h        2015-01-05 07:33:28.000000000 -0500
271
@@ -19,4 +19,4 @@
272
 <http://www.gnu.org/licenses/>.  */
273
 
274
 #define GNU_USER_LINK_EMULATION "elf_i386_fbsd"
275
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld.so.1"
276
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
277
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/i386/linux64.h gcc-5.3.0-zip/gcc/config/i386/linux64.h
278 125 dgisselq
--- gcc-5.3.0-original/gcc/config/i386/linux64.h        2016-04-13 12:14:18.256711056 -0400
279 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/i386/linux64.h     2015-01-05 07:33:28.000000000 -0500
280
@@ -27,6 +27,6 @@
281
 #define GNU_USER_LINK_EMULATION64 "elf_x86_64"
282
 #define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64"
283
 
284
-#define GLIBC_DYNAMIC_LINKER32 "/tools/lib/ld-linux.so.2"
285
-#define GLIBC_DYNAMIC_LINKER64 "/tools/lib64/ld-linux-x86-64.so.2"
286
-#define GLIBC_DYNAMIC_LINKERX32 "/tools/libx32/ld-linux-x32.so.2"
287
+#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
288
+#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
289
+#define GLIBC_DYNAMIC_LINKERX32 "/libx32/ld-linux-x32.so.2"
290
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/i386/linux.h gcc-5.3.0-zip/gcc/config/i386/linux.h
291 125 dgisselq
--- gcc-5.3.0-original/gcc/config/i386/linux.h  2016-04-13 12:14:18.256711056 -0400
292 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/i386/linux.h       2015-01-05 07:33:28.000000000 -0500
293
@@ -20,4 +20,4 @@
294
 <http://www.gnu.org/licenses/>.  */
295
 
296
 #define GNU_USER_LINK_EMULATION "elf_i386"
297
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld-linux.so.2"
298
+#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
299
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/ia64/linux.h gcc-5.3.0-zip/gcc/config/ia64/linux.h
300 125 dgisselq
--- gcc-5.3.0-original/gcc/config/ia64/linux.h  2016-04-13 12:14:18.256711056 -0400
301 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/ia64/linux.h       2015-01-05 07:33:28.000000000 -0500
302
@@ -55,7 +55,7 @@
303
 /* Define this for shared library support because it isn't in the main
304
    linux.h file.  */
305
 
306
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld-linux-ia64.so.2"
307
+#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-ia64.so.2"
308
 
309
 #undef LINK_SPEC
310
 #define LINK_SPEC "\
311
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/knetbsd-gnu.h gcc-5.3.0-zip/gcc/config/knetbsd-gnu.h
312 125 dgisselq
--- gcc-5.3.0-original/gcc/config/knetbsd-gnu.h 2016-04-13 12:14:18.256711056 -0400
313 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/knetbsd-gnu.h      2015-01-05 07:33:28.000000000 -0500
314
@@ -32,4 +32,4 @@
315
 
316
 
317
 #undef GNU_USER_DYNAMIC_LINKER
318
-#define GNU_USER_DYNAMIC_LINKER "/tools/lib/ld.so.1"
319
+#define GNU_USER_DYNAMIC_LINKER "/lib/ld.so.1"
320
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/kopensolaris-gnu.h gcc-5.3.0-zip/gcc/config/kopensolaris-gnu.h
321 125 dgisselq
--- gcc-5.3.0-original/gcc/config/kopensolaris-gnu.h    2016-04-13 12:14:18.256711056 -0400
322 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/kopensolaris-gnu.h 2015-01-05 07:33:28.000000000 -0500
323
@@ -31,5 +31,4 @@
324
   while (0)
325
 
326
 #undef GNU_USER_DYNAMIC_LINKER
327
-#define GNU_USER_DYNAMIC_LINKER "/tools/lib/ld.so.1"
328
-
329
+#define GNU_USER_DYNAMIC_LINKER "/lib/ld.so.1"
330
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/linux.h gcc-5.3.0-zip/gcc/config/linux.h
331 125 dgisselq
--- gcc-5.3.0-original/gcc/config/linux.h       2016-04-13 12:14:18.256711056 -0400
332 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/linux.h    2015-01-05 07:33:28.000000000 -0500
333
@@ -73,10 +73,10 @@
334
    GLIBC_DYNAMIC_LINKER must be defined for each target using them, or
335
    GLIBC_DYNAMIC_LINKER32 and GLIBC_DYNAMIC_LINKER64 for targets
336
    supporting both 32-bit and 64-bit compilation.  */
337
-#define UCLIBC_DYNAMIC_LINKER "/tools/lib/ld-uClibc.so.0"
338
-#define UCLIBC_DYNAMIC_LINKER32 "/tools/lib/ld-uClibc.so.0"
339
-#define UCLIBC_DYNAMIC_LINKER64 "/tools/lib/ld64-uClibc.so.0"
340
-#define UCLIBC_DYNAMIC_LINKERX32 "/tools/lib/ldx32-uClibc.so.0"
341
+#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
342
+#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
343
+#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
344
+#define UCLIBC_DYNAMIC_LINKERX32 "/lib/ldx32-uClibc.so.0"
345
 #define BIONIC_DYNAMIC_LINKER "/system/bin/linker"
346
 #define BIONIC_DYNAMIC_LINKER32 "/system/bin/linker"
347
 #define BIONIC_DYNAMIC_LINKER64 "/system/bin/linker64"
348
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/lm32/uclinux-elf.h gcc-5.3.0-zip/gcc/config/lm32/uclinux-elf.h
349 125 dgisselq
--- gcc-5.3.0-original/gcc/config/lm32/uclinux-elf.h    2016-04-13 12:14:18.256711056 -0400
350 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/lm32/uclinux-elf.h 2015-01-05 07:33:28.000000000 -0500
351
@@ -67,7 +67,7 @@
352
    %{shared:-shared} \
353
    %{symbolic:-Bsymbolic} \
354
    %{rdynamic:-export-dynamic} \
355
-   -dynamic-linker /tools/lib/ld-linux.so.2"
356
+   -dynamic-linker /lib/ld-linux.so.2"
357
 
358
 #define TARGET_OS_CPP_BUILTINS() GNU_USER_TARGET_OS_CPP_BUILTINS()
359
 
360
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/m68k/linux.h gcc-5.3.0-zip/gcc/config/m68k/linux.h
361 125 dgisselq
--- gcc-5.3.0-original/gcc/config/m68k/linux.h  2016-04-13 12:14:18.256711056 -0400
362 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/m68k/linux.h       2015-01-05 07:33:28.000000000 -0500
363
@@ -71,7 +71,7 @@
364
    When the -shared link option is used a final link is not being
365
    done.  */
366
 
367
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld.so.1"
368
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
369
 
370
 #undef LINK_SPEC
371
 #define LINK_SPEC "-m m68kelf %{shared} \
372
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/microblaze/linux.h gcc-5.3.0-zip/gcc/config/microblaze/linux.h
373 125 dgisselq
--- gcc-5.3.0-original/gcc/config/microblaze/linux.h    2016-04-13 12:14:18.256711056 -0400
374 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/microblaze/linux.h 2015-05-28 10:08:19.000000000 -0400
375
@@ -28,7 +28,7 @@
376
 #undef TLS_NEEDS_GOT
377
 #define TLS_NEEDS_GOT 1
378
 
379
-#define DYNAMIC_LINKER "/tools/lib/ld.so.1"
380
+#define DYNAMIC_LINKER "/lib/ld.so.1"
381
 #undef  SUBTARGET_EXTRA_SPECS
382
 #define SUBTARGET_EXTRA_SPECS \
383
   { "dynamic_linker", DYNAMIC_LINKER }
384
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/mips/linux.h gcc-5.3.0-zip/gcc/config/mips/linux.h
385 125 dgisselq
--- gcc-5.3.0-original/gcc/config/mips/linux.h  2016-04-13 12:14:18.256711056 -0400
386 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/mips/linux.h       2015-01-05 07:33:28.000000000 -0500
387
@@ -22,20 +22,20 @@
388
 #define GNU_USER_LINK_EMULATIONN32 "elf32%{EB:b}%{EL:l}tsmipn32"
389
 
390
 #define GLIBC_DYNAMIC_LINKER32 \
391
-  "%{mnan=2008:/tools/lib/ld-linux-mipsn8.so.1;:/tools/lib/ld.so.1}"
392
+  "%{mnan=2008:/lib/ld-linux-mipsn8.so.1;:/lib/ld.so.1}"
393
 #define GLIBC_DYNAMIC_LINKER64 \
394
-  "%{mnan=2008:/tools/lib64/ld-linux-mipsn8.so.1;:/tools/lib64/ld.so.1}"
395
+  "%{mnan=2008:/lib64/ld-linux-mipsn8.so.1;:/lib64/ld.so.1}"
396
 #define GLIBC_DYNAMIC_LINKERN32 \
397
-  "%{mnan=2008:/tools/lib32/ld-linux-mipsn8.so.1;:/tools/lib32/ld.so.1}"
398
+  "%{mnan=2008:/lib32/ld-linux-mipsn8.so.1;:/lib32/ld.so.1}"
399
 
400
 #undef UCLIBC_DYNAMIC_LINKER32
401
 #define UCLIBC_DYNAMIC_LINKER32 \
402
-  "%{mnan=2008:/tools/lib/ld-uClibc-mipsn8.so.0;:/tools/lib/ld-uClibc.so.0}"
403
+  "%{mnan=2008:/lib/ld-uClibc-mipsn8.so.0;:/lib/ld-uClibc.so.0}"
404
 #undef UCLIBC_DYNAMIC_LINKER64
405
 #define UCLIBC_DYNAMIC_LINKER64 \
406
-  "%{mnan=2008:/tools/lib/ld64-uClibc-mipsn8.so.0;:/tools/lib/ld64-uClibc.so.0}"
407
+  "%{mnan=2008:/lib/ld64-uClibc-mipsn8.so.0;:/lib/ld64-uClibc.so.0}"
408
 #define UCLIBC_DYNAMIC_LINKERN32 \
409
-  "%{mnan=2008:/tools/lib32/ld-uClibc-mipsn8.so.0;:/tools/lib32/ld-uClibc.so.0}"
410
+  "%{mnan=2008:/lib32/ld-uClibc-mipsn8.so.0;:/lib32/ld-uClibc.so.0}"
411
 
412
 #define BIONIC_DYNAMIC_LINKERN32 "/system/bin/linker32"
413
 #define GNU_USER_DYNAMIC_LINKERN32 \
414
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/mn10300/linux.h gcc-5.3.0-zip/gcc/config/mn10300/linux.h
415 125 dgisselq
--- gcc-5.3.0-original/gcc/config/mn10300/linux.h       2016-04-13 12:14:18.256711056 -0400
416 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/mn10300/linux.h    2015-01-05 07:33:28.000000000 -0500
417
@@ -32,7 +32,7 @@
418
 #undef  ASM_SPEC
419
 #define ASM_SPEC ""
420
 
421
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld.so.1"
422
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
423
 
424
 #undef  LINK_SPEC
425
 #define LINK_SPEC "%{mrelax:--relax} %{shared:-shared} \
426
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/pa/pa-linux.h gcc-5.3.0-zip/gcc/config/pa/pa-linux.h
427 125 dgisselq
--- gcc-5.3.0-original/gcc/config/pa/pa-linux.h 2016-04-13 12:14:18.256711056 -0400
428 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/pa/pa-linux.h      2015-09-24 20:04:26.000000000 -0400
429
@@ -37,7 +37,7 @@
430
 /* Define this for shared library support because it isn't in the main
431
    linux.h file.  */
432
 
433
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld.so.1"
434
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
435
 
436
 #undef LINK_SPEC
437
 #define LINK_SPEC "\
438
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/rs6000/linux64.h gcc-5.3.0-zip/gcc/config/rs6000/linux64.h
439 125 dgisselq
--- gcc-5.3.0-original/gcc/config/rs6000/linux64.h      2016-04-13 12:14:18.256711056 -0400
440 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/rs6000/linux64.h   2015-03-09 19:18:57.000000000 -0400
441
@@ -357,14 +357,14 @@
442
 #undef LINK_OS_DEFAULT_SPEC
443
 #define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
444
 
445
-#define GLIBC_DYNAMIC_LINKER32 "/tools/lib/ld.so.1"
446
+#define GLIBC_DYNAMIC_LINKER32 "/lib/ld.so.1"
447
 #ifdef LINUX64_DEFAULT_ABI_ELFv2
448
-#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv1:/tools/lib64/ld64.so.1;:/tools/lib64/ld64.so.2}"
449
+#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv1:/lib64/ld64.so.1;:/lib64/ld64.so.2}"
450
 #else
451
-#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv2:/tools/lib64/ld64.so.2;:/tools/lib64/ld64.so.1}"
452
+#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv2:/lib64/ld64.so.2;:/lib64/ld64.so.1}"
453
 #endif
454
-#define UCLIBC_DYNAMIC_LINKER32 "/tools/lib/ld-uClibc.so.0"
455
-#define UCLIBC_DYNAMIC_LINKER64 "/tools/lib/ld64-uClibc.so.0"
456
+#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
457
+#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
458
 #if DEFAULT_LIBC == LIBC_UCLIBC
459
 #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
460
 #elif DEFAULT_LIBC == LIBC_GLIBC
461
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/rs6000/sysv4.h gcc-5.3.0-zip/gcc/config/rs6000/sysv4.h
462 125 dgisselq
--- gcc-5.3.0-original/gcc/config/rs6000/sysv4.h        2016-04-13 12:14:18.256711056 -0400
463 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/rs6000/sysv4.h     2015-09-24 09:46:45.000000000 -0400
464
@@ -757,8 +757,8 @@
465
 
466
 #define LINK_START_LINUX_SPEC ""
467
 
468
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld.so.1"
469
-#define UCLIBC_DYNAMIC_LINKER "/tools/lib/ld-uClibc.so.0"
470
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
471
+#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
472
 #if DEFAULT_LIBC == LIBC_UCLIBC
473
 #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
474
 #elif !defined (DEFAULT_LIBC) || DEFAULT_LIBC == LIBC_GLIBC
475
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/s390/linux.h gcc-5.3.0-zip/gcc/config/s390/linux.h
476 125 dgisselq
--- gcc-5.3.0-original/gcc/config/s390/linux.h  2016-04-13 12:14:18.256711056 -0400
477 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/s390/linux.h       2015-05-11 03:14:10.000000000 -0400
478
@@ -60,8 +60,8 @@
479
 #define MULTILIB_DEFAULTS { "m31" }
480
 #endif
481
 
482
-#define GLIBC_DYNAMIC_LINKER32 "/tools/lib/ld.so.1"
483
-#define GLIBC_DYNAMIC_LINKER64 "/tools/lib/ld64.so.1"
484
+#define GLIBC_DYNAMIC_LINKER32 "/lib/ld.so.1"
485
+#define GLIBC_DYNAMIC_LINKER64 "/lib/ld64.so.1"
486
 
487
 #undef  LINK_SPEC
488
 #define LINK_SPEC \
489
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/sh/linux.h gcc-5.3.0-zip/gcc/config/sh/linux.h
490 125 dgisselq
--- gcc-5.3.0-original/gcc/config/sh/linux.h    2016-04-13 12:14:18.256711056 -0400
491 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/sh/linux.h 2015-01-05 07:33:28.000000000 -0500
492
@@ -43,7 +43,7 @@
493
 
494
 #define TARGET_ASM_FILE_END file_end_indicate_exec_stack
495
 
496
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld-linux.so.2"
497
+#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
498
 
499
 #undef SUBTARGET_LINK_EMUL_SUFFIX
500
 #define SUBTARGET_LINK_EMUL_SUFFIX "_linux"
501
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/sparc/linux64.h gcc-5.3.0-zip/gcc/config/sparc/linux64.h
502 125 dgisselq
--- gcc-5.3.0-original/gcc/config/sparc/linux64.h       2016-04-13 12:14:18.256711056 -0400
503 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/sparc/linux64.h    2015-01-05 07:33:28.000000000 -0500
504
@@ -84,8 +84,8 @@
505
    When the -shared link option is used a final link is not being
506
    done.  */
507
 
508
-#define GLIBC_DYNAMIC_LINKER32 "/tools/lib/ld-linux.so.2"
509
-#define GLIBC_DYNAMIC_LINKER64 "/tools/lib64/ld-linux.so.2"
510
+#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
511
+#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux.so.2"
512
 
513
 #ifdef SPARC_BI_ARCH
514
 
515
@@ -193,7 +193,7 @@
516
 #else /* !SPARC_BI_ARCH */
517
 
518
 #undef LINK_SPEC
519
-#define LINK_SPEC "-m elf64_sparc -Y P,%R/tools/lib64 %{shared:-shared} \
520
+#define LINK_SPEC "-m elf64_sparc -Y P,%R/usr/lib64 %{shared:-shared} \
521
   %{!shared: \
522
     %{!static: \
523
       %{rdynamic:-export-dynamic} \
524
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/sparc/linux.h gcc-5.3.0-zip/gcc/config/sparc/linux.h
525 125 dgisselq
--- gcc-5.3.0-original/gcc/config/sparc/linux.h 2016-04-13 12:14:18.256711056 -0400
526 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/sparc/linux.h      2015-01-05 07:33:28.000000000 -0500
527
@@ -83,7 +83,7 @@
528
    When the -shared link option is used a final link is not being
529
    done.  */
530
 
531
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld-linux.so.2"
532
+#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
533
 
534
 #undef  LINK_SPEC
535
 #define LINK_SPEC "-m elf32_sparc %{shared:-shared} \
536
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/vax/linux.h gcc-5.3.0-zip/gcc/config/vax/linux.h
537 125 dgisselq
--- gcc-5.3.0-original/gcc/config/vax/linux.h   2016-04-13 12:14:18.256711056 -0400
538 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/vax/linux.h        2015-01-05 07:33:28.000000000 -0500
539
@@ -41,7 +41,7 @@
540
   %{!shared: \
541
     %{!static: \
542
       %{rdynamic:-export-dynamic} \
543
-      -dynamic-linker /tools/lib/ld.so.1} \
544
+      -dynamic-linker /lib/ld.so.1} \
545
     %{static:-static}}"
546
 
547
 #undef  WCHAR_TYPE
548
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/xtensa/linux.h gcc-5.3.0-zip/gcc/config/xtensa/linux.h
549 125 dgisselq
--- gcc-5.3.0-original/gcc/config/xtensa/linux.h        2016-04-13 12:14:18.256711056 -0400
550 102 dgisselq
+++ gcc-5.3.0-zip/gcc/config/xtensa/linux.h     2015-01-05 07:33:28.000000000 -0500
551
@@ -44,7 +44,7 @@
552
   %{mlongcalls:--longcalls} \
553
   %{mno-longcalls:--no-longcalls}"
554
 
555
-#define GLIBC_DYNAMIC_LINKER "/tools/lib/ld.so.1"
556
+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
557
 
558
 #undef LINK_SPEC
559
 #define LINK_SPEC \
560
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/zip/netbsd.h gcc-5.3.0-zip/gcc/config/zip/netbsd.h
561
--- gcc-5.3.0-original/gcc/config/zip/netbsd.h  1969-12-31 19:00:00.000000000 -0500
562
+++ gcc-5.3.0-zip/gcc/config/zip/netbsd.h       2016-01-30 15:04:14.796899050 -0500
563
@@ -0,0 +1,82 @@
564
+////////////////////////////////////////////////////////////////////////////////
565
+//
566
+// Filename:   netbsd.h
567
+//
568
+// Project:    Zip CPU backend for the GNU Compiler Collection
569
+//
570
+// Purpose:
571
+//
572
+// Creator:    Dan Gisselquist, Ph.D.
573
+//             Gisselquist Technology, LLC
574
+//
575
+////////////////////////////////////////////////////////////////////////////////
576
+//
577
+// Copyright (C) 2016, Gisselquist Technology, LLC
578
+//
579
+// This program is free software (firmware): you can redistribute it and/or
580
+// modify it under the terms of  the GNU General Public License as published
581
+// by the Free Software Foundation, either version 3 of the License, or (at
582
+// your option) any later version.
583
+//
584
+// This program is distributed in the hope that it will be useful, but WITHOUT
585
+// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
586
+// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
587
+// for more details.
588
+//
589
+// You should have received a copy of the GNU General Public License along
590
+// with this program.  (It's in the $(ROOT)/doc directory, run make with no
591
+// target there if the PDF file isn't present.)  If not, see
592
+// <http://www.gnu.org/licenses/> for a copy.
593
+//
594
+// License:    GPL, v3, as defined and found on www.gnu.org,
595
+//             http://www.gnu.org/licenses/gpl.html
596
+//
597
+//
598
+////////////////////////////////////////////////////////////////////////////////
599
+#ifndef        ZIP_NETBSD_H
600
+#define        ZIP_NETBSD_H
601
+
602
+/* Define default target values. */
603
+
604
+#undef MACHINE_TYPE
605
+#define        MACHINE_TYPE    "NetBSD/Zip ELF"
606
+
607
+#undef TARGET_OS_CPP_BUILTINS
608
+#define        TARGET_OS_CPP_BUILTINS()        \
609
+       do { NETBSD_OS_CPP_BUILTINS_ELF();              \
610
+       builtin_define("__ZIPCPU__");                   \
611
+       builtin_assert("cpu=zip");                      \
612
+       builtin_assert("machine=zip");                  \
613
+       } while(0);
614
+
615
+#undef CPP_SPEC
616
+#define        CPP_SPEC        NETBSD_CPP_SPEC
617
+
618
+#undef STARTFILE_SPEC
619
+#define        STARTFILE_SPEC  NETBSD_STARTFILE_SPEC
620
+
621
+#undef ENDFILE_SPEC
622
+#define        ENDFILE_SPEC    NETBSD_ENDFILE_SPEC
623
+
624
+#undef LIB_SPEC
625
+#define        LIB_SPEC        NETBSD_LIB_SPEC
626
+
627
+#undef TARGET_VERSION
628
+#define        TARGET_VERSION  fprintf(stderr, " (%s)", MACHINE_TYPE);
629
+
630
+/* Make gcc agree with <machine/ansi.h> */
631
+
632
+#undef WCHAR_TYPE
633
+#define        WCHAR_TYPE      "int"
634
+
635
+#undef WCHAR_TYPE_SIZE
636
+#define        WCHAR_TYPE_SIZE 32
637
+
638
+#undef WINT_TYPE
639
+#define        WINT_TYPE       "int"
640
+
641
+/* Clean up after the generic Zip/ELF configuration. */
642
+#undef MD_EXEC_PREFIX
643
+#undef MD_STARTFILE_PREFIX
644
+
645
+#endif /* ZIP_NETBSD_H */
646
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/zip/t-zip gcc-5.3.0-zip/gcc/config/zip/t-zip
647
--- gcc-5.3.0-original/gcc/config/zip/t-zip     1969-12-31 19:00:00.000000000 -0500
648
+++ gcc-5.3.0-zip/gcc/config/zip/t-zip  2016-02-04 19:00:59.939652587 -0500
649
@@ -0,0 +1,47 @@
650
+################################################################################
651
+##
652
+## Filename:   t-zip
653
+##
654
+## Project:    Zip CPU backend for the GNU Compiler Collection
655
+##
656
+## Purpose:
657
+##
658
+## Creator:    Dan Gisselquist, Ph.D.
659
+##             Gisselquist Technology, LLC
660
+##
661
+################################################################################
662
+##
663
+## Copyright (C) 2016, Gisselquist Technology, LLC
664
+##
665
+## This program is free software (firmware): you can redistribute it and/or
666
+## modify it under the terms of  the GNU General Public License as published
667
+## by the Free Software Foundation, either version 3 of the License, or (at
668
+## your option) any later version.
669
+##
670
+## This program is distributed in the hope that it will be useful, but WITHOUT
671
+## ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
672
+## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
673
+## for more details.
674
+##
675
+## You should have received a copy of the GNU General Public License along
676
+## with this program.  (It's in the $(ROOT)/doc directory, run make with no
677
+## target there if the PDF file isn't present.)  If not, see
678
+## <http://www.gnu.org/licenses/> for a copy.
679
+##
680
+## License:    GPL, v3, as defined and found on www.gnu.org,
681
+##             http://www.gnu.org/licenses/gpl.html
682
+##
683
+##
684
+################################################################################
685
+
686
+FPBIT = fp-bit.c
687
+DPBIT = dp-bit.c
688
+
689
+# dp-bit.c: $(srcdir)/config/fp-bit.c
690
+       # cat $(srcdir)/config/fp-bit.c > dp-bit.c
691
+#
692
+# fp-bit.c: $(srcdir)/config/fp-bit.c
693
+       # echo '#define FLOAT" > fp-bit.c
694
+       # cat $(srcdir)/config/fp-bit.c >> fp-bit.c
695
+
696
+
697
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/zip/zip.c gcc-5.3.0-zip/gcc/config/zip/zip.c
698
--- gcc-5.3.0-original/gcc/config/zip/zip.c     1969-12-31 19:00:00.000000000 -0500
699 124 dgisselq
+++ gcc-5.3.0-zip/gcc/config/zip/zip.c  2016-04-07 16:23:35.651592937 -0400
700
@@ -0,0 +1,2126 @@
701 102 dgisselq
+////////////////////////////////////////////////////////////////////////////////
702
+//
703
+// Filename:   zip.c
704
+//
705
+// Project:    Zip CPU backend for the GNU Compiler Collection
706
+//
707
+// Purpose:
708
+//
709
+// Creator:    Dan Gisselquist, Ph.D.
710
+//             Gisselquist Technology, LLC
711
+//
712
+////////////////////////////////////////////////////////////////////////////////
713
+//
714
+// Copyright (C) 2016, Gisselquist Technology, LLC
715
+//
716
+// This program is free software (firmware): you can redistribute it and/or
717
+// modify it under the terms of  the GNU General Public License as published
718
+// by the Free Software Foundation, either version 3 of the License, or (at
719
+// your option) any later version.
720
+//
721
+// This program is distributed in the hope that it will be useful, but WITHOUT
722
+// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
723
+// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
724
+// for more details.
725
+//
726
+// You should have received a copy of the GNU General Public License along
727
+// with this program.  (It's in the $(ROOT)/doc directory, run make with no
728
+// target there if the PDF file isn't present.)  If not, see
729
+// <http://www.gnu.org/licenses/> for a copy.
730
+//
731
+// License:    GPL, v3, as defined and found on www.gnu.org,
732
+//             http://www.gnu.org/licenses/gpl.html
733
+//
734
+//
735
+////////////////////////////////////////////////////////////////////////////////
736
+#include "config.h"
737
+#include "system.h"
738
+#include "coretypes.h"
739
+#include "tm.h"
740
+#include "rtl.h"
741
+#include "dominance.h"
742
+#include "cfg.h"
743
+#include "cfgrtl.h"
744
+#include "cfganal.h"
745
+#include "lcm.h"
746
+#include "cfgbuild.h"
747
+#include "cfgcleanup.h"
748
+#include "predict.h"
749
+#include "basic-block.h"
750
+#include "df.h"
751
+#include "hashtab.h"
752
+#include "hash-set.h"
753
+#include "machmode.h"
754
+#include "symtab.h"
755
+#include "rtlhash.h"
756
+#include "tree.h"
757
+#include "regs.h"
758
+#include "hard-reg-set.h"
759
+#include "real.h"
760
+#include "insn-config.h"
761
+#include "conditions.h"
762
+#include "output.h"
763
+#include "insn-attr.h"
764
+#include "flags.h"
765
+#include "expr.h"
766
+#include "function.h"
767
+#include "recog.h"
768
+#include "toplev.h"
769
+#include "ggc.h"
770
+#include "builtins.h"
771
+#include "calls.h"
772
+#include "langhooks.h"
773
+#include "optabs.h"
774
+#include "explow.h"
775
+#include "emit-rtl.h"
776 122 dgisselq
+#include "ifcvt.h"
777 102 dgisselq
+
778
+// #include "tmp_p.h"
779
+#include "target.h"
780
+#include "target-def.h"
781
+// #include "tm-constrs.h"
782 122 dgisselq
+#include "tm-preds.h"
783 102 dgisselq
+
784
+#include "diagnostic.h"
785
+// #include "integrate.h"
786
+
787
+// static int  zip_arg_partial_bytes(CUMULATIVE_ARGS *, enum machine_mode, tree, bool);
788
+// static      bool    zip_pass_by_reference(CUMULATIVE_ARGS *, enum machine_mode, const_tree, bool);
789
+static bool    zip_return_in_memory(const_tree, const_tree);
790
+static bool    zip_frame_pointer_required(void);
791
+
792
+static void zip_function_arg_advance(cumulative_args_t ca, enum machine_mode mode,
793
+               const_tree type, bool named);
794
+static rtx zip_function_arg(cumulative_args_t ca, enum machine_mode mode, const_tree type, bool named);
795
+
796
+static void    zip_asm_trampoline_template(FILE *);
797
+static void    zip_trampoline_init(rtx, tree, rtx);
798
+static void    zip_init_builtins(void);
799
+static tree zip_builtin_decl(unsigned, bool);
800
+// static void zip_asm_output_anchor(rtx x);
801
+       void    zip_asm_output_def(FILE *s, const char *n, const char *v);
802
+static rtx     zip_expand_builtin(tree exp, rtx target, rtx subtarget,
803
+                       enum machine_mode tmode, int    ignore);
804
+static bool    zip_scalar_mode_supported_p(enum machine_mode mode);
805
+static bool    zip_libgcc_floating_mode_supported_p(enum machine_mode mode);
806
+static int     zip_address_cost(rtx addr, enum machine_mode mode, addr_space_t as, bool spd);
807
+static bool    zip_mode_dependent_address_p(const_rtx addr, addr_space_t);
808
+static unsigned HOST_WIDE_INT  zip_const_anchor = 0x20000;
809 122 dgisselq
+static          HOST_WIDE_INT  zip_min_opb_imm = -0x20000;
810
+static          HOST_WIDE_INT  zip_max_opb_imm =  0x1ffff;
811 102 dgisselq
+static          HOST_WIDE_INT  zip_min_anchor_offset = -0x20000;
812
+static          HOST_WIDE_INT  zip_max_anchor_offset =  0x1ffff;
813
+static          HOST_WIDE_INT  zip_min_mov_offset = -0x1000;
814
+static          HOST_WIDE_INT  zip_max_mov_offset =  0x0fff;
815
+static int     zip_sched_issue_rate(void) { return 1; }
816
+static bool    zip_legitimate_address_p(machine_mode, rtx, bool);
817
+static bool    zip_legitimate_move_operand_p(machine_mode, rtx, bool);
818
+       void    zip_debug_rtx_pfx(const char *, const_rtx x);
819
+       void    zip_debug_rtx(const_rtx x);
820
+static void    zip_override_options(void);
821
+static bool    zip_can_eliminate(int from ATTRIBUTE_UNUSED, int to);
822
+static int     zip_memory_move_cost(machine_mode, reg_class_t, bool);
823 111 dgisselq
+static rtx     zip_legitimize_address(rtx x, rtx oldx, machine_mode mode);
824 117 dgisselq
+static bool    zip_cannot_modify_jumps_p(void);
825 122 dgisselq
+#ifdef HAVE_cc0
826
+       void    zip_update_cc_notice(rtx exp, rtx_insn *insn);
827
+#error "We're not supposed to have CC0 anymore"
828
+#else
829
+static bool    zip_fixed_condition_code_regs(unsigned int *a, unsigned int *b);
830
+#endif
831 102 dgisselq
+
832
+
833 103 dgisselq
+#define        ALL_DEBUG_OFF   false
834 102 dgisselq
+#define        ALL_DEBUG_ON    false
835
+
836
+enum ZIP_BUILTIN_ID_CODE {
837
+       ZIP_BUILTIN_RTU,
838
+       ZIP_BUILTIN_HALT,
839
+       ZIP_BUILTIN_IDLE,
840
+       ZIP_BUILTIN_SYSCALL,
841
+       ZIP_BUILTIN_SAVE_CONTEXT,
842
+       ZIP_BUILTIN_RESTORE_CONTEXT,
843
+       ZIP_BUILTIN_BITREV,
844
+       ZIP_BUILTIN_CC,
845 117 dgisselq
+       ZIP_BUILTIN_UCC,
846 102 dgisselq
+       ZIP_BUILTIN_MAX
847
+};
848
+
849
+static GTY (()) tree   zip_builtins[(int)ZIP_BUILTIN_MAX];
850
+static enum insn_code  zip_builtins_icode[(int)ZIP_BUILTIN_MAX];
851
+
852
+
853
+#include "gt-zip.h"
854
+
855
+/* The Global 'targetm' Variable. */
856
+struct gcc_target      targetm = TARGET_INITIALIZER;
857
+
858
+
859
+enum   reg_class zip_reg_class(int);
860
+
861
+#define        LOSE_AND_RETURN(msgid, x)               \
862
+       do {                                    \
863
+               zip_operand_lossage(msgid, x);  \
864
+               return;                         \
865
+       } while(0)
866
+
867
+/* Per-function machine data. */
868
+struct GTY(()) machine_function
869
+{
870
+       /* number of pretented arguments for varargs */
871
+       int     pretend_size;
872
+
873
+       /* Number of bytes saved on the stack for local variables. */
874
+       int     local_vars_size;
875
+
876
+       /* Number of bytes saved on stack for register save area */
877
+       int     saved_reg_size;
878
+       int     save_ret;
879
+
880
+       int     sp_fp_offset;
881
+       bool    fp_needed;
882
+       int     size_for_adjusting_sp;
883
+};
884
+
885
+/* Allocate a chunk of memory for per-function machine-dependent data. */
886
+
887
+static struct machine_function *
888
+zip_init_machine_status(void) {
889
+       return ggc_cleared_alloc<machine_function>();
890
+}
891
+
892
+static void
893
+zip_override_options(void)
894
+{
895
+       init_machine_status = zip_init_machine_status;
896
+}
897
+
898
+enum   reg_class
899
+zip_reg_class(int regno)
900
+{
901
+       if (is_ZIP_GENERAL_REG(regno)) {
902
+               return GENERAL_REGS;
903
+       } else if (is_ZIP_REG(regno)) {
904
+               return ALL_REGS;
905
+       } return NO_REGS;
906
+}
907
+
908
+/* Worker function for TARGET_RETURN_IN_MEMORY. */
909
+static bool
910
+zip_return_in_memory(const_tree type, const_tree fntype ATTRIBUTE_UNUSED) {
911
+       const   HOST_WIDE_INT size = int_size_in_bytes(type);
912
+       return (size == -1)||(size > UNITS_PER_WORD);
913
+}
914
+
915
+/* Emit an error emssage when we're in an asm, and a fatal error for "normal"
916
+ * insn.  Formatted output isn't easily implemented, since we use output operand
917
+ * lossage to output the actual message and handle the categorization of the
918
+ * error.  */
919
+
920
+static void
921
+zip_operand_lossage(const char *msgid, rtx op) {
922
+       fprintf(stderr, "Operand lossage??\n");
923
+       debug_rtx(op);
924
+       zip_debug_rtx(op);
925
+       output_operand_lossage("%s", msgid);
926
+}
927
+
928
+/* The PRINT_OPERAND_ADDRESS worker.   */
929
+void
930
+zip_print_operand_address(FILE *file, rtx x) {
931
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
932
+
933
+       if (dbg) zip_debug_rtx(x);
934
+       switch(GET_CODE(x)) {
935
+               case REG:
936
+                       fprintf(file, "(%s)", reg_names[REGNO(x)]);
937
+                       break;
938
+               case SYMBOL_REF:
939
+                       fprintf(file, "%s", XSTR(x,0));
940
+                       break;
941
+               case LABEL_REF:
942
+                       x = LABEL_REF_LABEL(x);
943
+               case CODE_LABEL:
944
+                       { char buf[256];
945
+                       ASM_GENERATE_INTERNAL_LABEL(buf, "L", CODE_LABEL_NUMBER(x));
946
+#ifdef ASM_OUTPUT_LABEL_REF
947
+                       ASM_OUTPUT_LABEL_REF(file, buf);
948
+#else
949
+                       assemble_name(file, buf);
950
+#endif
951
+                       }
952
+                       break;
953
+               case PLUS:
954 111 dgisselq
+                       if (!REG_P(XEXP(x, 0))) {
955
+                               fprintf(stderr, "Unsupported address construct\n");
956
+                               zip_debug_rtx(x);
957 102 dgisselq
+                               abort();
958 111 dgisselq
+                       } if (CONST_INT_P(XEXP(x, 1))) {
959 102 dgisselq
+                               if (INTVAL(XEXP(x,1))!=0) {
960
+                                       fprintf(file, "%ld(%s)",
961
+                                       INTVAL(XEXP(x, 1)),
962
+                                       reg_names[REGNO(XEXP(x, 0))]);
963
+                               } else {
964
+                                       fprintf(file, "(%s)",
965
+                                       reg_names[REGNO(XEXP(x, 0))]);
966
+                               }
967
+                       } else if (GET_CODE(XEXP(x,1)) == SYMBOL_REF) {
968
+                               fprintf(file, "%s(%s)", XSTR(x,0),
969
+                                       reg_names[REGNO(XEXP(x, 0))]);
970
+                       } else if ((GET_CODE(XEXP(x, 1)) == MINUS)
971
+                               && (GET_CODE(XEXP(XEXP(x, 1), 0))==SYMBOL_REF)
972
+                               && (GET_CODE(XEXP(XEXP(x, 1), 1))==SYMBOL_REF)) {
973
+                               fprintf(file, "%s-%s(%s)",
974
+                                       XSTR(XEXP(XEXP(x, 1),0),0),
975
+                                       XSTR(XEXP(XEXP(x, 1),1),0),
976
+                                       reg_names[REGNO(XEXP(x, 0))]);
977
+                       } else
978
+                               fprintf(file, "#INVALID(%s)",
979
+                                       reg_names[REGNO(XEXP(x, 0))]);
980
+                       /*
981
+                       else if (GET_CODE(XEXP(addr, 1)) == LABEL)
982
+                               fprintf(file, "%s(%s)",
983
+                                       GET_CODE(XEXP(addr, 1)),
984
+                                       reg_names[REGNO(GET_CODE(XEXP(addr, 0)))]);
985
+                       else if ((GET_CODE(XEXP(addr, 1)) == MINUS)
986
+                               && (GET_CODE(XEXP(GET_CODE(XEXP(addr, 1)), 0))==LABEL)
987
+                               && (GET_CODE(XEXP(GET_CODE(XEXP(addr, 1)), 1))==LABEL)) {
988
+                               fprintf(file, "%s-%s(%s)",
989
+                                       reg_names[REGNO(GET_CODE(XEXP(addr, 0)))]);
990
+                                       reg_names[REGNO(GET_CODE(XEXP(addr, 0)))]);
991
+                                       reg_names[REGNO(GET_CODE(XEXP(addr, 0)))]);
992
+                       }
993
+                       */
994
+                       break;
995
+               // We don't support direct memory addressing within our
996
+               // instruction set, even though the instructions themselves
997
+               // would support direct memory addressing of the lower 18 bits
998
+               // of memory space.
999
+               case MEM:
1000
+                       if (dbg) zip_debug_rtx(x);
1001
+                       zip_print_operand_address(file, XEXP(x, 0));
1002
+                       break;
1003 111 dgisselq
+               case CONST_INT:
1004
+                       fprintf(file, "%ld",INTVAL(x));
1005
+                       break;
1006 102 dgisselq
+               default:
1007 111 dgisselq
+                       fprintf(stderr, "Unknown address format\n");
1008
+                       zip_debug_rtx(x);
1009 102 dgisselq
+                       abort(); break;
1010
+                       // output_addr_const(file, x);
1011
+               break;
1012
+       }
1013
+}
1014
+
1015
+/* The PRINT_OPERAND worker. */
1016
+
1017
+void
1018
+zip_print_operand(FILE *file, rtx x, int code)
1019
+{
1020
+       rtx operand = x;
1021
+       int     rgoff = 0;
1022
+
1023
+       // fprintf(file, "Print Operand!\n");
1024
+
1025
+       /* New code entries should just be added to the switch below.  If
1026
+        * handling is finished, just return.  If handling was just a
1027
+        * modification of the operand, the modified operand should be put in
1028
+        * "operand", and then do a break to let default handling
1029
+        * (zero-modifier) output the operand.
1030
+        */
1031
+       switch(code) {
1032
+               case 0:
1033
+                       /* No code, print as usual. */
1034
+                       break;
1035
+               case 'L':
1036
+                       /* Lower of two registers, print one up */
1037
+                       rgoff = 1;
1038
+                       break;
1039
+               case 'R':
1040
+               case 'H':
1041
+                       /* Higher of a register pair, print normal */
1042
+                       break;
1043
+
1044
+               default:
1045
+                       LOSE_AND_RETURN("invalid operand modifier letter", x);
1046
+       }
1047
+
1048
+       /* Print an operand as without a modifier letter. */
1049
+       switch (GET_CODE(operand)) {
1050
+       case REG:
1051
+               if (REGNO(operand)+rgoff >= FIRST_PSEUDO_REGISTER)
1052
+                       internal_error("internal error: bad register: %d", REGNO(operand));
1053
+               fprintf(file, "%s", reg_names[REGNO(operand)+rgoff]);
1054
+               return;
1055
+       case SCRATCH:
1056
+               LOSE_AND_RETURN("Need a scratch register", x);
1057
+               return;
1058
+
1059
+       case CODE_LABEL:
1060
+       case LABEL_REF:
1061
+       case SYMBOL_REF:
1062
+       case PLUS:
1063
+               PRINT_OPERAND_ADDRESS(file, operand);
1064
+               return;
1065
+       case MEM:
1066
+               PRINT_OPERAND_ADDRESS(file, XEXP(operand, 0));
1067
+               return;
1068
+
1069
+       default:
1070
+               /* No need to handle all strange variants, let
1071
+                * output_addr_const do it for us.
1072
+                */
1073
+               if (CONSTANT_P(operand)) {
1074
+                       output_addr_const(file, operand);
1075
+                       return;
1076
+               }
1077
+
1078
+               LOSE_AND_RETURN("unexpected operand", x);
1079
+       }
1080
+}
1081
+
1082
+static bool
1083
+zip_frame_pointer_required(void)
1084
+{
1085
+       // This should really depend upon whether we have variable sized
1086
+       // arguments in our frame or not.  Once this fails, let's look
1087
+       // at what the problem was and then whether or not we can detect
1088
+       // it.
1089
+       //
1090
+       // Use a GCC global to determine our answer
1091 103 dgisselq
+       if (cfun->calls_alloca)
1092
+               return true;
1093 102 dgisselq
+       return (frame_pointer_needed);
1094
+/*
1095
+*/
1096
+}
1097
+
1098
+/* Determine whether or not a register needs to be saved on the stack or not.
1099
+ */
1100
+static bool
1101
+zip_save_reg(int regno) {
1102
+       if (regno == 0)
1103
+               return ((!crtl->is_leaf)
1104
+                       ||((df_regs_ever_live_p(0))&&(!call_used_regs[0])));
1105
+       else if ((regno == zip_GOT)&&(!ZIP_PIC))
1106
+               return  ((df_regs_ever_live_p(regno))
1107
+                               &&(!call_used_regs[regno]));
1108
+       else if (regno == zip_FP)
1109
+               return((zip_frame_pointer_required())||((df_regs_ever_live_p(regno))
1110
+                               &&(!call_used_regs[regno])));
1111
+       else if (regno < zip_FP)
1112
+               return  ((df_regs_ever_live_p(regno))
1113
+                               &&(!call_used_regs[regno]));
1114
+       return false;
1115
+}
1116
+
1117
+/* Compute the size of the local area and the size to be adjusted by the
1118
+ * prologue and epilogue.
1119
+ *
1120
+ * Here's what we are looking at (top is the current, bottom is the last ...)
1121
+ *
1122
+ *     Stack Pointer ->
1123 124 dgisselq
+ *                     Outgoing arguments
1124 102 dgisselq
+ *                     Local variables (could be variable size)
1125
+ *     Frame Pointer ->        (= Stack Pointer + sp_fp_offset)
1126
+ *                     Saved return address, if saved
1127
+ *                     Other Saved registers
1128
+ *                     Saved frame pointer (if used)
1129
+ *                     Saved R12, if used
1130
+ *                     (Stack pointer is not saved)
1131
+ *     Original stack pointer ->       (= Stack_Pointer +size_for_adjusting_sp)
1132
+ *                     Called arguments (not passed in registers)
1133
+ *                     Return arguments (not R1, args.pretend_args_size)
1134
+ *             (Prior function's stack frame ... )
1135
+ *
1136
+ */
1137
+static void
1138
+zip_compute_frame(void) {
1139
+       int     regno;
1140
+       int     args_size;
1141 124 dgisselq
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
1142 102 dgisselq
+
1143 124 dgisselq
+       if (dbg) fprintf(stderr, "ZIP-COMPUTE-FRAME\n");
1144 102 dgisselq
+       // gcc_assert(crtl);
1145
+       gcc_assert(cfun);
1146
+       gcc_assert(cfun->machine);
1147
+
1148
+       args_size=(ACCUMULATE_OUTGOING_ARGS ? crtl->outgoing_args_size : 0);
1149
+
1150
+       if(crtl->args.pretend_args_size > 0) {
1151
+               args_size += crtl->args.pretend_args_size;
1152
+               // printf("%s pretend_args_size : %d\n", current_function_name(),
1153
+                       // crtl->args.pretend_args_size);
1154
+               cfun->machine->pretend_size = crtl->args.pretend_args_size;
1155
+       }
1156
+
1157
+       cfun->machine->local_vars_size = get_frame_size();
1158
+
1159
+       // Save callee-saved registers.
1160
+       cfun->machine->saved_reg_size = 0;
1161
+       for(regno=0; regno < FIRST_PSEUDO_REGISTER; regno++) {
1162
+               if (zip_save_reg(regno))
1163
+                       cfun->machine->saved_reg_size ++;
1164
+       }
1165
+
1166
+       cfun->machine->fp_needed = (zip_frame_pointer_required());
1167
+
1168
+       if ((cfun->machine->fp_needed)&&
1169
+                       (!df_regs_ever_live_p(zip_FP))) {
1170
+               cfun->machine->saved_reg_size ++;
1171
+       }
1172
+
1173
+       cfun->machine->sp_fp_offset = args_size + cfun->machine->local_vars_size;
1174
+       cfun->machine->size_for_adjusting_sp = cfun->machine->local_vars_size
1175
+                       + cfun->machine->saved_reg_size
1176
+                       + args_size;
1177 124 dgisselq
+       if(dbg) {
1178
+               fprintf(stderr, "\tFRAME-POINTR: %s\n",
1179
+                       cfun->machine->fp_needed?"Yes":"No");
1180
+               fprintf(stderr, "\tARGS-SIZE   : %d\n",
1181
+                       args_size);
1182
+               fprintf(stderr, "\tLOCALS-SIZE : %d\n",
1183
+                       cfun->machine->local_vars_size);
1184
+               fprintf(stderr, "\tREGISTERS   : %d\n",
1185
+                       cfun->machine->saved_reg_size);
1186
+               fprintf(stderr, "\tSP_FP_OFFSET: %d\n",
1187
+                       cfun->machine->sp_fp_offset);
1188
+               fprintf(stderr, "\tSP-ADJUSTMNT: %d\n",
1189
+                       cfun->machine->size_for_adjusting_sp);
1190
+       }
1191 102 dgisselq
+}
1192
+
1193
+void
1194
+zip_expand_prologue(void) {
1195
+       rtx     insn;
1196
+
1197
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
1198
+       zip_compute_frame();
1199
+
1200 124 dgisselq
+       if (dbg)  fprintf(stderr, "PROLOGUE: Computing Prologue instructions\n");
1201 102 dgisselq
+       if (cfun->machine->size_for_adjusting_sp != 0) {
1202
+               insn = emit_insn(gen_subsi3(stack_pointer_rtx,
1203
+                               stack_pointer_rtx,
1204
+                       gen_int_mode(cfun->machine->size_for_adjusting_sp,
1205
+                               SImode)));
1206
+                       // cfun->machine->sp_fp_offset
1207
+
1208
+               RTX_FRAME_RELATED_P(insn) = 1;
1209
+       }
1210
+
1211
+       {
1212
+               int offset = 0, regno;
1213
+               for(regno=0; regno < FIRST_PSEUDO_REGISTER; regno++) {
1214
+                       if (zip_save_reg(regno)) {
1215 124 dgisselq
+                               insn=emit_insn(gen_movsi_sto_off(
1216
+                                       stack_pointer_rtx,
1217
+                                       GEN_INT(cfun->machine->sp_fp_offset
1218
+                                               +offset++),
1219 102 dgisselq
+                                       gen_rtx_REG(SImode, regno)));
1220
+                               RTX_FRAME_RELATED_P(insn) = 1;
1221
+                       }
1222
+               }
1223 103 dgisselq
+               if (dbg)  fprintf(stderr, "%d registers saved%s\n", offset,
1224
+                       (crtl->saves_all_registers)?", should be all of them":", less than all");
1225 102 dgisselq
+       }
1226
+
1227
+       if (cfun->machine->fp_needed) {
1228
+               if (dbg) zip_debug_rtx(stack_pointer_rtx);
1229
+               if (dbg) zip_debug_rtx(frame_pointer_rtx);
1230
+               insn = emit_insn(gen_movsi_reg_off(frame_pointer_rtx,
1231 124 dgisselq
+                               stack_pointer_rtx,
1232
+                               GEN_INT(cfun->machine->sp_fp_offset)));
1233 102 dgisselq
+               RTX_FRAME_RELATED_P(insn) = 1;
1234 103 dgisselq
+               if (dbg)  fprintf(stderr, "sp_fp_offset is %d\n", cfun->machine->sp_fp_offset);
1235 102 dgisselq
+       }
1236
+}
1237
+
1238
+bool
1239
+zip_use_return_insn(void)
1240
+{
1241
+       if ((!reload_completed)||(cfun->machine->fp_needed)
1242
+                       ||(get_frame_size()!=0)) {
1243
+               // If R0 ever gets pushed to the stack, then we cannot
1244
+               // use a master return from anywhere.  We need to clean up the
1245
+               // stack first.
1246
+               if ((!crtl->is_leaf)||((df_regs_ever_live_p(0))
1247
+                                               &&(!call_used_regs[0]))) {
1248
+                       return false;
1249
+               }
1250
+       }
1251
+       zip_compute_frame();
1252
+       return (cfun->machine->size_for_adjusting_sp == 0);
1253
+}
1254
+
1255
+/* As per the notes in M68k.c, quote the function epilogue should not depend
1256
+ * upon the current stack pointer.  It should use the frame poitner only,
1257
+ * if there is a frame pointer.  This is mandatory because of alloca; we also
1258
+ * take advantage of it to omit stack adjustments before returning ...
1259
+ *
1260
+ * Let's see if we can use their approach here.
1261
+ *
1262
+ * We can't.  Consider our choices:
1263
+ *     LOD (FP),R0
1264
+ *     LOD 1(FP),R4
1265
+ *     LOD 2(FP),R5
1266
+ *     LOD 3(FP),R6
1267
+ *     LOD 4(FP),FP
1268
+ *     ... Then what is the stack pointer?
1269
+ * or
1270
+ *     LOD (FP),R0
1271
+ *     LOD 1(FP),R4
1272
+ *     LOD 2(FP),R5
1273
+ *     LOD 3(FP),R6
1274
+ *     MOV FP,SP
1275
+ *     LOD 4(SP),FP
1276
+ *     ... Which suffers unnecessary pipeline stalls, and certainly doesn't
1277
+ *     exploit our pipeline memory function
1278
+ * or
1279
+ *     MOV FP,SP
1280
+ *     LOD (SP),R0
1281
+ *     LOD 1(SP),R4
1282
+ *     LOD 2(SP),R5
1283
+ *     LOD 3(SP),R6
1284
+ *     LOD 4(SP),FP
1285
+ * Which will be our choice.  Note that we do use the stack pointer, eventually.
1286
+ *
1287
+ */
1288
+void
1289
+zip_expand_epilogue(void) {
1290
+       int     regno, offset;
1291
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
1292
+
1293
+       zip_compute_frame();
1294
+
1295
+       if (dbg) fprintf(stderr, "EPILOG::\n");
1296
+       if (cfun->machine->fp_needed) {
1297 124 dgisselq
+               // This is done special--if you can't trust the stack pointer
1298
+               // enough so that you must have a frame pointer, then you can't
1299
+               // trust its offset enough to restore from it.  Hence, we start
1300
+               // by moving the frame pointer to the stack pointer to recover
1301
+               // the stack pointer back to a usable value.
1302 102 dgisselq
+               if (dbg) fprintf(stderr, "EPILOG::Moving frame pointer to stack register\n");
1303
+               emit_insn(gen_movsi_reg(stack_pointer_rtx, frame_pointer_rtx));
1304
+       }
1305
+
1306
+       if (cfun->machine->saved_reg_size != 0) {
1307 124 dgisselq
+               if (cfun->machine->fp_needed)
1308
+                       offset = 0;
1309
+               else
1310
+                       offset = cfun->machine->sp_fp_offset;
1311 102 dgisselq
+               if (dbg) fprintf(stderr, "EPILOG::Saved_REG_Size = %d\n", cfun->machine->saved_reg_size);
1312
+               for(regno=0; regno < FIRST_PSEUDO_REGISTER; regno++) {
1313
+                       if (zip_save_reg(regno)) {
1314
+                               if (dbg) fprintf(stderr, "EPILOG::RESTORING R%d\n", regno);
1315 124 dgisselq
+                               emit_insn(gen_movsi_lod_off(
1316 102 dgisselq
+                                               gen_rtx_REG(SImode, regno),
1317 124 dgisselq
+                                               stack_pointer_rtx,
1318
+                                               GEN_INT(offset++)));
1319 102 dgisselq
+                       }
1320
+               }
1321
+       }
1322
+
1323 124 dgisselq
+       if (cfun->machine->fp_needed) {
1324
+               // Restore the stack pointer back to the original, the
1325
+               // difference being the difference from the frame pointer
1326
+               // to the original stack
1327
+               emit_insn(gen_addsi3(stack_pointer_rtx, stack_pointer_rtx,
1328
+                       GEN_INT(cfun->machine->size_for_adjusting_sp
1329
+                               -cfun->machine->sp_fp_offset)));
1330
+       } else {
1331
+               // else now the difference is between the stack pointer and
1332
+               // the original stack pointer.
1333 102 dgisselq
+               if (dbg) fprintf(stderr, "EPILOG::ADDSI3(StackPtr, %d)\n",
1334
+                               cfun->machine->size_for_adjusting_sp);
1335
+               emit_insn(gen_addsi3(stack_pointer_rtx, stack_pointer_rtx,
1336 124 dgisselq
+                       GEN_INT(cfun->machine->size_for_adjusting_sp)));
1337 102 dgisselq
+       }
1338
+       if (dbg) fprintf(stderr, "EPILOG::EMITTING-RETURN\n");
1339
+
1340
+       emit_jump_insn(ret_rtx);
1341
+}
1342
+
1343
+/* Implement RETURN_ADDR_RTX(COUNT, FRAMEADDR).
1344
+ *
1345
+ * We currently only support calculating the return address for the current
1346
+ * frame.
1347
+ */
1348
+
1349
+/*
1350
+rtx
1351
+zip_return_addr_rtx(int count, rtx frame ATTRIBUTE_UNUSED)
1352
+{
1353
+       if (count)
1354
+               return NULL_RTX;
1355
+
1356
+       zip_compute_frame();
1357
+
1358
+       // saved return address for current function is at fp - 1
1359
+       if (cfun->machine->save_ret)
1360
+               return gen_rtx_MEM(Pmode, plus_constant(frame_pointer_rtx,
1361
+                               -UNITS_PER_WORD));
1362
+       return get_hard_reg_initial_val(Pmode, RETURN_ADDRESS_REGNUM);
1363
+}
1364
+*/
1365
+
1366
+/* Implements the macro INITIAL_ELIMINATION_OFFSET,
1367
+ * return the OFFSET.
1368
+ */
1369
+int
1370
+zip_initial_elimination_offset(int from, int to) {
1371
+       int     ret = 0;
1372
+       zip_compute_frame();
1373
+
1374
+       if (((from) == FRAME_POINTER_REGNUM)&&((to) == STACK_POINTER_REGNUM)) {
1375
+               ret = cfun->machine->sp_fp_offset;
1376 117 dgisselq
+       } else if (((from)=ARG_POINTER_REGNUM)&&((to)==STACK_POINTER_REGNUM)) {
1377
+               ret = cfun->machine->sp_fp_offset;
1378 102 dgisselq
+       } else if (((from)=ARG_POINTER_REGNUM)&&((to)==FRAME_POINTER_REGNUM)) {
1379 117 dgisselq
+               // ret = cfun->machine->local_vars_size;
1380
+               ret = 0;
1381 102 dgisselq
+       } else {
1382
+               abort();
1383
+       }
1384
+
1385
+       return ret;
1386
+}
1387
+
1388
+/*
1389
+ * Code taken from m68k ...
1390
+ */
1391
+static bool
1392
+zip_can_eliminate(int from, int to)
1393
+{
1394
+       // fprintf(stderr, "CAN_ELIMINATE::QUERYING(%d,%d)\n", from, to);
1395
+       if ((from == zip_FP)&&(to == zip_SP))
1396
+               return !cfun->machine->fp_needed;
1397
+       return true;
1398
+}
1399
+
1400
+/*
1401
+static void
1402
+zip_basic_check(void)
1403
+{
1404
+       gcc_assert(mode_base_align[SImode]==4);
1405
+       if ((BITS_PER_UNIT != 32)
1406
+                       ||(GET_MODE_SIZE(SImode)!=1)
1407
+                       ||(GET_MODE_SIZE(DImode)!=1)
1408
+                       ||(HARD_REGNO_NREGS(0,SImode)!=1)) {
1409
+               printf("SIZEOF(SIMode) == %d\n", GET_MODE_SIZE(SImode));
1410
+               printf("BITS_PER_UNIT  == %d\n", BITS_PER_UNIT);
1411
+               gcc_assert(BITS_PER_UNIT==32);
1412
+               gcc_assert(GET_MODE_SIZE(SImode)==1);
1413
+               gcc_assert(HARD_REGNO_NREGS(0,SImode)==1);
1414
+       }
1415
+}
1416
+*/
1417
+
1418
+#define        zip_basic_check()
1419
+
1420
+/* Compute the number of word sized regiters needed to hold a function
1421
+ * argument of mode INT_MODE and tree type TYPE.
1422
+ */
1423
+int
1424
+zip_num_arg_regs(enum machine_mode mode, const_tree type) {
1425
+       int     size;
1426
+
1427
+       zip_basic_check();
1428
+
1429
+       if (targetm.calls.must_pass_in_stack(mode, type))
1430
+               return 0;
1431
+
1432
+       if ((type)&&(mode == BLKmode))
1433
+               size = int_size_in_bytes(type);
1434
+       else
1435
+               size = GET_MODE_SIZE(mode);
1436
+
1437
+       return (size + UNITS_PER_WORD - 1)/UNITS_PER_WORD;
1438
+}
1439
+
1440
+/* pushed in function prologue */
1441
+/*
1442
+static int
1443
+zip_arg_partial_bytes(CUMULATIVE_ARGS *cum, enum machine_mode mode,
1444
+               tree type, bool name ATTRIBUTE_UNUSED) {
1445
+       int     words;
1446
+       unsigned int    regs = zip_num_arg_regs(mode, type);
1447
+
1448
+       if (*cum >= ZIP_LAST_ARG_REGNO + 1)
1449
+               words = 0;
1450
+       else if ((*cum + regs) > ZIP_LAST_ARG_REGNO + 1)
1451
+               words = (*cum + regs) - ZIP_LAST_ARG_REGNO + 1;
1452
+       else
1453
+               words = 0;
1454
+
1455
+       return words * UNITS_PER_WORD;
1456
+}
1457
+*/
1458
+
1459
+static void
1460
+zip_function_arg_advance(cumulative_args_t ca, machine_mode mode,
1461
+               const_tree type, bool named ATTRIBUTE_UNUSED) {
1462
+       CUMULATIVE_ARGS *cum;
1463
+       int     nreg;
1464
+
1465
+       zip_basic_check();
1466
+
1467
+       cum = get_cumulative_args(ca);
1468
+       nreg = zip_num_arg_regs(mode, type);
1469
+       if (((*cum)+nreg) > NUM_ARG_REGS)
1470
+               (*cum) = NUM_ARG_REGS;
1471
+       else
1472
+               (*cum) += nreg;
1473
+}
1474
+
1475
+static rtx
1476
+zip_function_arg(cumulative_args_t ca, machine_mode mode,
1477
+               const_tree type ATTRIBUTE_UNUSED, bool named) {
1478
+       CUMULATIVE_ARGS *cum;
1479
+
1480
+       zip_basic_check();
1481
+
1482
+
1483
+       if (!named)
1484
+               return NULL_RTX;
1485
+       //if (targetm.calls.must_pass_in_stack(mode, type))
1486
+               //return NULL_RTX;
1487
+       cum = get_cumulative_args(ca);
1488
+
1489
+       if ((*cum) >= NUM_ARG_REGS)
1490
+               return NULL_RTX;
1491
+       return
1492
+               gen_rtx_REG(mode, (*cum)+1);
1493
+}
1494
+
1495 122 dgisselq
+#ifdef HAVE_cc0
1496 102 dgisselq
+/* NOTICE_UPDATE_CC sends us here
1497
+ */
1498
+void
1499
+zip_update_cc_notice(rtx exp, rtx_insn *insn)
1500
+{
1501 122 dgisselq
+#error "The CC0 code was supposed to be removed"
1502 102 dgisselq
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
1503
+       enum    attr_ccresult  ccr;
1504
+       enum    attr_conditional  conditionally_executed;
1505
+
1506
+       // The default is that nothing has changed.
1507
+       // cc_status = cc_status_prev;
1508
+       rtx     src, dest;
1509
+
1510
+       if (dbg) fprintf(stderr, "CC-NOTICE ...\n");
1511
+       if (dbg) zip_debug_rtx_pfx("CC :", exp);
1512
+       if (dbg) debug_rtx(exp);
1513
+
1514
+       ccr = get_attr_ccresult(insn);
1515
+       if (ccr == CCRESULT_UNKNOWN) {
1516
+               CC_STATUS_INIT;
1517
+               if (dbg) fprintf(stderr, "\tINIT-CC\n");
1518
+               return;
1519
+       }
1520
+
1521
+       if ((GET_CODE(exp) == PARALLEL)&&(GET_CODE(XVECEXP(exp, 0, 0))==SET)) {
1522
+               // This works up and until we add cc0 parallel instructions
1523
+               // to our instruction set.
1524
+               dest = SET_DEST(XVECEXP(exp, 0, 0));
1525
+               src  = SET_SRC (XVECEXP(exp, 0, 0));
1526
+       } else if (GET_CODE(exp) == SET) {
1527
+               dest = SET_DEST(exp);
1528
+               src  = SET_SRC (exp);
1529
+       } else {
1530
+               // First, do nothing if we haven't touched the condition codes.
1531
+               // Condition codes can only be changed as a result of a set
1532
+               // expression ...?
1533
+               if (dbg) fprintf(stderr, "Non-set expression, doesn\'t touch condition codes\n");
1534
+               return;
1535
+       }
1536
+
1537 111 dgisselq
+
1538
+       if (ccr == CCRESULT_UNCHANGED) {
1539
+               if (dbg) fprintf(stderr, "\tUnchanged CC\n");
1540
+
1541
+               // We can't just run away here ... even though the CC result
1542
+               // hasn't changed, GCC's ability to recognize it as a valid
1543
+               // result has changed.  In other words, if we just 'set' a
1544
+               // value contained within either value1 or value2, then we'll
1545
+               // need to update those values so that they are no longer looked
1546
+               // upon as potentially containing the current CC values.
1547
+
1548
+               if (dest) {
1549
+                       if (dest == cc0_rtx)
1550
+                               CC_STATUS_INIT;
1551
+                       else if ((REG_P(dest))&&(dest != pc_rtx)) {
1552
+                               // An example here might be a load instruction
1553
+                               if (reg_mentioned_p(dest, cc_status.value1))
1554
+                                       cc_status.value1 = NULL_RTX;
1555
+                               if (reg_mentioned_p(dest, cc_status.value2))
1556
+                                       cc_status.value2 = NULL_RTX;
1557
+                       }
1558
+               }
1559
+               return;
1560
+       }
1561
+
1562 102 dgisselq
+       // Gotta wait on this test, until we know whether or not the
1563
+       // conditionally executed instruction was designed to set the
1564
+       // CC0 register.
1565
+       conditionally_executed = get_attr_conditional(insn);
1566
+       if ((conditionally_executed == CONDITIONAL_YES)&&(dest != cc0_rtx)) {
1567
+               // cc_status is unchanged
1568 111 dgisselq
+               // However, GCC's vision of it may have changed
1569
+               //
1570
+               // Initialize CC_STATUS
1571 102 dgisselq
+               if (dbg) fprintf(stderr, "\tCC -- unchanged (conditional exec)\n");
1572 111 dgisselq
+               CC_STATUS_INIT;
1573 102 dgisselq
+               return;
1574 111 dgisselq
+       } else if (GET_CODE(src)==IF_THEN_ELSE) {
1575
+               // Same thing as above
1576
+               CC_STATUS_INIT;
1577
+               return;
1578 102 dgisselq
+       }
1579
+
1580
+       if (ccr == CCRESULT_VALIDZN)
1581
+               cc_status.flags = CC_NO_OVERFLOW;
1582
+       else
1583
+               cc_status.flags = 0;
1584
+       cc_status.value1 = dest;
1585
+       if (dest == cc0_rtx)
1586
+               cc_status.value2 = src;
1587
+       else if((REG_P(dest))&&(!reg_mentioned_p(dest, src)))
1588
+               cc_status.value2 = src;
1589
+       else if((SUBREG_P(dest))&&(!reg_mentioned_p(XEXP(dest,0), src)))
1590
+               cc_status.value2 = src;
1591
+       else
1592
+               cc_status.value2 = 0;
1593
+       if (dbg) fprintf(stderr, "\tCC -- Set flags for\n");
1594
+       if (dbg) zip_debug_rtx_pfx("V1: ", dest);
1595
+       if ((dbg)&&(cc_status.value2)) zip_debug_rtx_pfx("V2: ", src);
1596
+       else if (dbg)   fprintf(stderr, "V2: (No SRC)\n");
1597
+       if ((dbg)&&(REG_P(dest))) fprintf(stderr, "src refers to dest ?? %s\n",
1598
+               refers_to_regno_p(REGNO(dest),REGNO(dest),src,NULL)?"Yes":"No");
1599
+       if ((dbg)&&(REG_P(dest))) fprintf(stderr, "Occurrs %d times\n",
1600
+               count_occurrences(dest,src,0));
1601
+       if ((dbg)&&(REG_P(dest))) fprintf(stderr, "%s mentioned\n",
1602
+               reg_mentioned_p(dest,src)?"Is":"Is not");
1603
+       if ((dbg)&&(REG_P(dest))) fprintf(stderr, "%s referenced\n",
1604
+               reg_referenced_p(dest,src)?"Is":"Is not");
1605
+
1606
+//
1607
+// These results are only used in final.c, where they are used to remove
1608
+// compare instructions if the optimizer is on.  If I produce nothing, no
1609
+// compare instructions will be removed.  If I produce something, a smart
1610
+// decision may be made to remove compare instructions.
1611
+//
1612
+// cc_status will be compared  with subsequent
1613
+//     (set (cc0) (something)) (i.e. compare only) instructions
1614
+//
1615
+//     (set (cc0) (compare (x) (y)))
1616
+//     dst = cc0 -- the destination of the set is ignored, save that it must be
1617
+//             cc0
1618
+//     src1 = (compare (x) (y))
1619
+//     if (src1 == compare)&&(y == (const_int 0))
1620
+//             src2 = (x)
1621
+//     else
1622
+//             src2 = null
1623
+//
1624
+//     Four conditions:
1625
+//     1. if (val1)&&(src1 == val1)
1626
+//             This would be true if I had seen a (set (val1) (src1)) insn
1627
+//             If I have seen a (set (val1) (src1))
1628
+//                     or equivalently a (set (val1) (compare (x) (y)))
1629
+//     or
1630
+//     2. if (val2)&&(src1 == val2)
1631
+//             This would be true if I had seen a (set (val1) (src1)) insn,
1632
+//             and only if val2 was still valid.
1633
+//     or
1634
+//     3. if (src2)&&(value1)&&(src2 == value1)
1635
+//             This would be true if we are comparing against zero, and the
1636
+//             number we are comparing against zero is value 1
1637
+//     or
1638
+//     4. if (src2)&&(value2)&&(src2 == value2)
1639
+//             ... or value2.  This is the common ZipCPU case.
1640
+//
1641
+//             then delete the compare.
1642
+//
1643
+}
1644 122 dgisselq
+#else
1645 102 dgisselq
+
1646 122 dgisselq
+void   zip_canonicalize_comparison(int *code, rtx *op0, rtx *op1,
1647
+               bool preserve_op0)
1648
+{
1649
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
1650 102 dgisselq
+
1651 122 dgisselq
+       if (dbg) fprintf(stderr, "CANONICALIZE ...%s\n", (preserve_op0)?"(Preserve Op0)":"");
1652
+       if (dbg) zip_debug_rtx_pfx("CODE", gen_rtx_fmt_ee((rtx_code)*code, VOIDmode, gen_rtx_REG(CCmode,zip_CC), const0_rtx));
1653
+       if (dbg) zip_debug_rtx_pfx("OP0 ", *op0);
1654
+       if (dbg) zip_debug_rtx_pfx("OP1 ", *op1);
1655
+
1656
+       if ((!preserve_op0)&&((*code == LE)||(*code == GTU)||(*code == GEU))) {
1657
+               rtx tem = *op0;
1658
+               *op0 = *op1;
1659
+               *op1 = tem;
1660
+               *code = (int)swap_condition((enum rtx_code)*code);
1661
+       }
1662
+
1663
+       if ((*code == LE)||(*code == LEU)||(*code == GTU)) {
1664
+               int offset = 1; // (*code == GTU) ? 1 : -1;
1665
+               bool    swap = false;
1666
+
1667
+               if (CONST_INT_P(*op1)) {
1668
+                       *op1 = GEN_INT(INTVAL(*op1)+offset);
1669
+                       swap = true;
1670
+               } else if (REG_P(*op1)) {
1671
+                       *op1 = plus_constant(SImode, *op1, offset, true);
1672
+                       swap = true;
1673
+               } else if ((GET_CODE(*op1)==PLUS)&&(CONST_INT_P(XEXP(*op1,1)))){
1674
+                       *op1 = plus_constant(GET_MODE(*op1),XEXP(*op1,0),
1675
+                               INTVAL(XEXP(*op1,1))+offset);
1676
+                       swap = true;
1677
+               } if (swap) {
1678
+                       if (*code == LE)
1679
+                               (*code)= LT;
1680
+                       else if (*code == LEU)
1681
+                               (*code)= LTU;
1682
+                       else // (*code == GTU)
1683
+                               (*code) = GEU;
1684
+               }
1685
+       }
1686
+}
1687
+
1688
+static bool
1689
+zip_fixed_condition_code_regs(unsigned int *a, unsigned int *b) {
1690
+       *a = zip_CC;
1691
+       *b = INVALID_REGNUM;
1692
+       return true;
1693
+}
1694
+
1695
+#endif
1696
+
1697
+
1698 102 dgisselq
+/* totally buggy - we can't return pointers to nested functions */
1699
+static void
1700
+zip_asm_trampoline_template(FILE *f) {
1701
+       // Whereas at one time I thought I wouldn't need it, now I know I
1702
+       // need this trampoline function, although it is for a completely
1703
+       // different purpose than the one I was familiar with.
1704
+       fprintf(f, "\tldihi 0,r1\n");
1705
+       fprintf(f, "\tldilo 0,r1\n");
1706
+       fprintf(f, "\tjmp r1\n");
1707
+}
1708
+
1709
+/* Worker function for TARGET_TRAMPOLINE_INIT. */
1710
+static void
1711
+zip_trampoline_init(rtx m_tramp ATTRIBUTE_UNUSED,
1712
+       tree fndecl ATTRIBUTE_UNUSED,
1713
+       rtx chain_value ATTRIBUTE_UNUSED) {
1714
+// #warning "This needs to be filled out"
1715
+       abort();
1716
+}
1717
+
1718
+static tree
1719
+def_builtin(const char *name, enum insn_code icode, enum ZIP_BUILTIN_ID_CODE code,
1720
+       tree type)
1721
+{
1722
+       tree t = add_builtin_function(name,type,code,BUILT_IN_MD, NULL, NULL_TREE);
1723
+       zip_basic_check();
1724
+
1725
+       if(t) {
1726
+               zip_builtins[code] = t;
1727
+               zip_builtins_icode[code] = icode;
1728
+       }
1729
+
1730
+       return t;
1731
+
1732
+}
1733
+
1734
+void   zip_init_builtins(void) {
1735
+       zip_basic_check();
1736
+
1737
+  tree void_ftype_void = build_function_type_list(void_type_node, NULL_TREE);
1738
+#ifdef HAVE_zip_rtu
1739
+  def_builtin("zip_rtu", CODE_FOR_zip_rtu, ZIP_BUILTIN_RTU, void_ftype_void);
1740
+#endif
1741
+#ifdef HAVE_zip_halt
1742
+  def_builtin("zip_halt",  CODE_FOR_zip_halt,  ZIP_BUILTIN_HALT, void_ftype_void);
1743
+#endif
1744
+#ifdef HAVE_zip_idle
1745
+  def_builtin("zip_idle", CODE_FOR_zip_idle, ZIP_BUILTIN_IDLE, void_ftype_void);
1746
+#endif
1747
+
1748
+#ifdef HAVE_zip_syscall
1749
+// Support int SYSCALL(callID, int a, int b, int c);
1750
+  def_builtin("zip_syscall", CODE_FOR_zip_syscall, ZIP_BUILTIN_SYSCALL,
1751
+                       build_function_type_list(void_type_node, NULL_TREE));
1752
+#endif
1753
+
1754
+#ifdef HAVE_zip_save_context
1755
+  def_builtin("zip_save_context", CODE_FOR_zip_save_context, ZIP_BUILTIN_SAVE_CONTEXT,
1756
+               build_function_type_list(void_type_node, ptr_type_node, 0));
1757
+#endif
1758
+
1759
+#ifdef HAVE_zip_restore_context
1760
+  def_builtin("zip_restore_context", CODE_FOR_zip_restore_context, ZIP_BUILTIN_RESTORE_CONTEXT,
1761
+       build_function_type_list(void_type_node, ptr_type_node, 0));
1762
+#endif
1763
+
1764
+#ifdef HAVE_zip_bitrev
1765
+  def_builtin("zip_bitrev", CODE_FOR_zip_bitrev, ZIP_BUILTIN_BITREV,
1766
+       build_function_type_list(unsigned_type_node, unsigned_type_node,
1767
+               NULL_TREE));
1768
+#endif
1769
+
1770
+#ifdef HAVE_zip_cc
1771
+  def_builtin("zip_cc", CODE_FOR_zip_cc, ZIP_BUILTIN_CC,
1772
+       build_function_type_list(unsigned_type_node, NULL_TREE));
1773
+#endif
1774
+
1775 117 dgisselq
+#ifdef HAVE_zip_ucc
1776
+  def_builtin("zip_ucc", CODE_FOR_zip_ucc, ZIP_BUILTIN_UCC,
1777
+       build_function_type_list(unsigned_type_node, NULL_TREE));
1778
+#endif
1779
+
1780 102 dgisselq
+}
1781
+
1782
+static tree
1783
+zip_builtin_decl(unsigned zip_builtin_code, bool initialize_p ATTRIBUTE_UNUSED)
1784
+{
1785
+  if (zip_builtin_code >= ZIP_BUILTIN_MAX)
1786
+    return error_mark_node;
1787
+
1788
+  return zip_builtins[zip_builtin_code];
1789
+}
1790
+
1791
+static rtx
1792
+zip_expand_builtin(tree exp, rtx target,
1793
+               rtx subtarget ATTRIBUTE_UNUSED,
1794
+               machine_mode tmode ATTRIBUTE_UNUSED,
1795
+               int     ignore ATTRIBUTE_UNUSED) {
1796
+
1797
+       tree    fndecl = TREE_OPERAND(CALL_EXPR_FN(exp), 0);
1798
+       bool    nonvoid = (TREE_TYPE(TREE_TYPE(fndecl)) != void_type_node);
1799
+       enum    ZIP_BUILTIN_ID_CODE code=(enum ZIP_BUILTIN_ID_CODE)DECL_FUNCTION_CODE(fndecl);
1800
+       enum    insn_code icode = zip_builtins_icode[code];
1801
+       rtx     pat, op[5];
1802
+       call_expr_arg_iterator  iter;
1803
+       tree    arg;
1804
+
1805
+       if ((code == ZIP_BUILTIN_SAVE_CONTEXT)
1806
+                       ||(code == ZIP_BUILTIN_RESTORE_CONTEXT)) {
1807
+               arg = first_call_expr_arg(exp, &iter);
1808
+               if (arg == error_mark_node)
1809
+                       return NULL_RTX;
1810
+               op[0] = expand_normal(arg);
1811
+               if (GET_CODE(op[0]) != REG)
1812
+                       op[0] = force_reg(Pmode, op[0]);
1813
+               pat = GEN_FCN(icode)(op[0]);
1814
+       } else if (code == ZIP_BUILTIN_BITREV) {
1815
+               arg = first_call_expr_arg(exp, &iter);
1816
+               if (arg == error_mark_node) {
1817
+                       return NULL_RTX;
1818
+               }
1819
+               op[0] = expand_normal(arg);
1820
+               if (!target)
1821
+                       target = gen_reg_rtx(SImode);
1822
+               pat = GEN_FCN(icode)(target, op[0]);
1823 117 dgisselq
+       } else if ((code == ZIP_BUILTIN_CC)||(code == ZIP_BUILTIN_UCC)) {
1824 102 dgisselq
+               if (!target)
1825
+                       target = gen_reg_rtx(SImode);
1826
+               pat = GEN_FCN(icode)(target);
1827
+       } else // RTU, HALT, IDLE
1828
+               pat = GEN_FCN(icode)();
1829
+       if (!pat)
1830
+               return NULL_RTX;
1831
+       emit_insn(pat);
1832
+       return (nonvoid ? target : const0_rtx);
1833
+}
1834
+
1835
+static bool
1836
+zip_scalar_mode_supported_p(enum machine_mode mode) {
1837
+       zip_basic_check();
1838
+
1839
+       return ((mode)==SImode)||((mode)==DImode); // ||((mode)==SFmode);
1840
+}
1841
+
1842
+static bool
1843
+zip_libgcc_floating_mode_supported_p(enum machine_mode mode) {
1844
+       return ((mode)==SFmode)||((mode)==DFmode);
1845
+}
1846
+
1847
+static int
1848
+zip_address_cost(rtx addr ATTRIBUTE_UNUSED,
1849
+       enum machine_mode mode ATTRIBUTE_UNUSED,
1850
+       addr_space_t as ATTRIBUTE_UNUSED, bool spd ATTRIBUTE_UNUSED) {
1851
+       return 1;
1852
+}
1853
+
1854
+static bool
1855
+zip_mode_dependent_address_p(const_rtx addr ATTRIBUTE_UNUSED,
1856
+       addr_space_t as ATTRIBUTE_UNUSED) {
1857
+       return false;
1858
+}
1859
+
1860
+/*
1861
+static void
1862
+zip_asm_output_anchor(rtx x) {
1863
+       printf("ANCHOR: OP(%d)\n", GET_CODE(x));
1864
+}
1865
+*/
1866
+
1867
+static void
1868
+zip_debug_print(const char *pfx, int lvl, const char *str) {
1869
+       int     i;
1870
+       i = lvl;
1871
+       if ((true)||(lvl == 0))
1872
+               fprintf(stderr, "%s", pfx);
1873
+       else
1874
+               i += strlen(pfx);
1875
+       while(i-->0)
1876
+               fprintf(stderr, "  ");
1877
+       fprintf(stderr, "%s\n", str);
1878
+}
1879
+
1880
+static void
1881
+zip_debug_print_m(const char *pfx, int lvl, const char *str, enum machine_mode m) {
1882
+       int     i;
1883
+
1884
+       i = lvl;
1885
+       if ((true)||(lvl == 0))
1886
+               fprintf(stderr, "%s", pfx);
1887
+       else
1888
+               i = lvl+strlen(pfx);
1889
+       while(i-->0)
1890
+               fprintf(stderr, "  ");
1891
+       switch(m) {
1892
+               case VOIDmode:
1893
+                       fprintf(stderr, "%s:V\n", str);
1894
+                       break;
1895
+               case BLKmode:
1896
+                       fprintf(stderr, "%s:BLK\n", str);
1897
+                       break;
1898
+               case BImode:
1899
+                       fprintf(stderr, "%s:BI\n", str);
1900
+                       break;
1901
+#ifdef HAVE_QImode
1902
+               case QImode:
1903
+                       fprintf(stderr, "%s:QI\n", str);
1904
+                       break;
1905
+#endif
1906
+#ifdef HAVE_HImode
1907
+               case HImode:
1908
+                       fprintf(stderr, "%s:HI\n", str);
1909
+                       break;
1910
+#endif
1911
+               case SImode:
1912
+                       fprintf(stderr, "%s:SI\n", str);
1913
+                       break;
1914 122 dgisselq
+               case CCmode:
1915
+                       fprintf(stderr, "%s:CC\n", str);
1916
+                       break;
1917 102 dgisselq
+               case DImode:
1918
+                       fprintf(stderr, "%s:DI\n", str);
1919
+                       break;
1920
+               default:
1921
+                       fprintf(stderr, "%s:?\n", str);
1922
+       }
1923
+}
1924
+
1925
+static void
1926
+zip_debug_rtx_1(const char *pfx, const_rtx x, int lvl) {
1927
+       if (x == NULL_RTX) {
1928
+               zip_debug_print(pfx, lvl, "(NULL-RTX)");
1929
+               return;
1930
+       } else if (GET_CODE(x) > NUM_RTX_CODE) {
1931
+               char    buf[64];
1932
+               sprintf(buf, "(BAD-RTX-CODE %d)", GET_CODE(x));
1933
+               zip_debug_print(pfx, lvl, buf);
1934 117 dgisselq
+               gcc_assert(0 && "Bad RTX Code");
1935 102 dgisselq
+               return;
1936
+       } switch(GET_CODE(x)) { // rtl.def
1937 122 dgisselq
+       case PARALLEL:
1938
+               zip_debug_print(pfx, lvl, "(PARALLEL");
1939
+               for(int j=0; j<XVECLEN(x,0);j++)
1940
+                       zip_debug_rtx_1(pfx, XVECEXP(x,0,j), lvl+1);
1941
+               zip_debug_print(pfx, lvl, ")");
1942
+               debug_rtx(x);
1943
+               break;
1944 102 dgisselq
+       case INT_LIST: zip_debug_print(pfx, lvl, "(INT-LIST"); break;
1945 122 dgisselq
+       case SEQUENCE:
1946
+               zip_debug_print(pfx, lvl, "(SEQUENCE");
1947
+               for(int j=0; j<XVECLEN(x,0);j++)
1948
+                       zip_debug_rtx_1(pfx, XVECEXP(x,0,j), lvl+1);
1949
+               zip_debug_print(pfx, lvl, ")");
1950
+               debug_rtx(x);
1951
+               break;
1952 102 dgisselq
+       case ADDRESS: zip_debug_print(pfx, lvl, "(ADDRESS"); break;
1953
+       case DEBUG_INSN: zip_debug_print(pfx, lvl, "(DEBUG-INSN"); break;
1954
+       case INSN:
1955
+               zip_debug_print(pfx, lvl, "(INSN");
1956
+               /*
1957
+               { const rtx_insn *tmp_rtx;
1958
+               for(tmp_rtx = as_a <const rtx_insn *>(x); tmp_rtx != 0; tmp_rtx = NEXT_INSN(tmp_rtx)) {
1959
+                       zip_debug_rtx_1(tmp_rtx, lvl+1);
1960
+               }}
1961
+               */
1962
+               zip_debug_rtx_1(pfx, PATTERN(x), lvl+1);
1963
+               zip_debug_print(pfx, lvl, ")");
1964 117 dgisselq
+               debug_rtx(x);
1965 102 dgisselq
+               break;
1966
+       case JUMP_INSN: zip_debug_print(pfx, lvl, "(JUMP-INSN");
1967 111 dgisselq
+               zip_debug_rtx_1(pfx, PATTERN(x), lvl+1);
1968
+               zip_debug_print(pfx, lvl, ")");
1969
+               /*
1970 102 dgisselq
+               if (JUMP_LABEL(x)) {
1971 111 dgisselq
+                       if (GET_CODE(JUMP_LABEL(x)) == LABEL_REF) {
1972
+                               char    buf[64];
1973
+                               sprintf(buf, "(LABEL *.L%d))", CODE_LABEL_NUMBER(LABEL_REF_LABEL(JUMP_LABEL(x))));
1974
+                               zip_debug_print(pfx, lvl+1, buf);
1975
+                       } else if (GET_CODE(JUMP_LABEL(x))==CODE_LABEL) {
1976
+                               char    buf[64];
1977
+                               sprintf(buf, "(CODE_LABEL *.L%d))", CODE_LABEL_NUMBER(JUMP_LABEL(x)));
1978
+                               zip_debug_print(pfx, lvl+1, buf);
1979
+                       } else
1980
+                       zip_debug_print(pfx, lvl+1, "(w/Label))");
1981 102 dgisselq
+               } else
1982 111 dgisselq
+                       zip_debug_print(pfx, lvl+1, "(NO label))");
1983
+               debug_rtx(x);
1984
+               */
1985 102 dgisselq
+               break;
1986
+       case CALL:
1987
+               zip_debug_print(pfx, lvl, "(CALL (Adr) (Args)");
1988
+               zip_debug_rtx_1(pfx, XEXP(x,0), lvl+1);
1989
+               zip_debug_rtx_1(pfx, XEXP(x,1), lvl+1);
1990
+               zip_debug_print(pfx, lvl, ")");
1991
+               break;
1992
+       case CALL_INSN: zip_debug_print(pfx, lvl, "(CALL-INSN");
1993
+               debug_rtx(x);
1994
+               break;
1995
+       case BARRIER: zip_debug_print(pfx, lvl, "(BARRIER)"); break;
1996
+       case RETURN: zip_debug_print(pfx, lvl, "(RETURN)"); break;
1997
+       case NOTE:
1998
+               {       char buf[128];
1999
+                       sprintf(buf, "(NOTE %s)", GET_REG_NOTE_NAME(GET_MODE(x)));
2000
+                       zip_debug_print(pfx, lvl, buf);
2001
+               }break;
2002
+       case COND_EXEC: zip_debug_print(pfx, lvl, "(COND_EXEC)");
2003
+               debug_rtx(x);
2004
+               break;
2005
+       case ASM_INPUT: zip_debug_print(pfx, lvl, "(ASM INPUT)"); break;
2006
+       case ASM_OPERANDS: zip_debug_print(pfx, lvl, "(ASM OPERANDS)"); break;
2007
+       case UNSPEC: zip_debug_print(pfx, lvl, "(UNSPEC)"); break;
2008
+       case UNSPEC_VOLATILE: zip_debug_print(pfx, lvl, "(UNSPEC_VOLATILE)"); break;
2009
+       case CODE_LABEL:
2010
+               {
2011
+                       char    buf[64];
2012 111 dgisselq
+                       sprintf(buf, "(CODE_LABEL *.L%d)", CODE_LABEL_NUMBER(x));
2013 102 dgisselq
+                       zip_debug_print_m(pfx, lvl, buf, GET_MODE(x));
2014
+               } break;
2015
+       case SET:
2016
+               zip_debug_print_m(pfx, lvl, "(SET", GET_MODE(x));
2017 117 dgisselq
+               zip_debug_rtx_1(pfx, SET_DEST(x),lvl+1);
2018
+               zip_debug_rtx_1(pfx, SET_SRC(x),lvl+1);
2019 102 dgisselq
+               zip_debug_print(pfx, lvl, ")");
2020 117 dgisselq
+               debug_rtx(x);
2021 102 dgisselq
+               break;
2022 122 dgisselq
+       case REG: {
2023
+               char buf[25];
2024 102 dgisselq
+               if (REGNO(x) == zip_PC)
2025 122 dgisselq
+                       sprintf(buf, "(PC)");
2026 102 dgisselq
+               else if (REGNO(x) == zip_CC)
2027 122 dgisselq
+                       sprintf(buf, "(CC)");
2028 102 dgisselq
+               else if (REGNO(x) == zip_SP)
2029 122 dgisselq
+                       sprintf(buf, "(SP)");
2030 102 dgisselq
+               else if (REGNO(x) == zip_FP)
2031 122 dgisselq
+                       sprintf(buf, "(REG FP)");
2032 102 dgisselq
+               else if (REGNO(x) == zip_GOT)
2033 122 dgisselq
+                       sprintf(buf, "(REG GBL)");
2034 102 dgisselq
+               else if (FUNCTION_VALUE_REGNO_P(REGNO(x)))
2035 122 dgisselq
+                       sprintf(buf, "(REG RTN-VL)");
2036 102 dgisselq
+               else if (REGNO(x) == RETURN_ADDRESS_REGNUM)
2037 122 dgisselq
+                       sprintf(buf, "(REG RTN-AD)");
2038
+               else
2039
+                       sprintf(buf, "(REG %d)", REGNO(x));
2040 102 dgisselq
+               zip_debug_print_m(pfx, lvl, buf, GET_MODE(x));
2041
+               } break;
2042
+       case IF_THEN_ELSE: // 51
2043
+               zip_debug_print(pfx, lvl, "(IF-THEN-ELSE");
2044
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2045
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2046
+               zip_debug_rtx_1(pfx, XEXP(x,2),lvl+1);
2047
+               zip_debug_print(pfx, lvl, ")");
2048
+               break;
2049
+       case PC:
2050
+               zip_debug_print(pfx, lvl, "(PC)");
2051
+               break;
2052
+       case CC0:
2053
+               zip_debug_print(pfx, lvl, "(CC0)");
2054
+               break;
2055
+       case COMPARE:
2056
+               zip_debug_print(pfx, lvl, "(COMPARE");
2057
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2058
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2059
+               zip_debug_print(pfx, lvl, ")");
2060
+               break;
2061 111 dgisselq
+       case CONST:
2062
+               zip_debug_print_m(pfx, lvl, "(CONST", GET_MODE(x));
2063
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2064
+               zip_debug_print(pfx, lvl, ")");
2065
+               break;
2066 102 dgisselq
+       case CONST_INT:
2067
+               { char buf[25];
2068
+               if (GET_MODE(x)==SImode)
2069 111 dgisselq
+                       sprintf(buf, "(CONST_INT:SI %ld)", INTVAL(x));
2070 102 dgisselq
+               else if (GET_MODE(x)==VOIDmode)
2071 111 dgisselq
+                       sprintf(buf, "(CONST_INT:V %ld)", INTVAL(x));
2072 102 dgisselq
+               else
2073 111 dgisselq
+                       sprintf(buf, "(CONST_INT:? %ld)", INTVAL(x));
2074 102 dgisselq
+               zip_debug_print(pfx, lvl, buf);
2075
+               } break;
2076
+       case LABEL_REF:
2077 122 dgisselq
+               { char buf[256];
2078 111 dgisselq
+               sprintf(buf, "(LABEL *.L%d)", CODE_LABEL_NUMBER(LABEL_REF_LABEL(x)));
2079
+               zip_debug_print(pfx, lvl, buf);
2080
+               }
2081 102 dgisselq
+               break;
2082
+       case SYMBOL_REF:
2083
+               {
2084
+                       char buf[64];
2085
+                       sprintf(buf, "(SYMBOL: %s)", XSTR(x,0));
2086
+                       // fprintf(file, "%s", XSTR(x,0));
2087
+                       zip_debug_print(pfx, lvl, buf);
2088
+               }
2089
+               break;
2090
+       case MEM:
2091
+               zip_debug_print_m(pfx, lvl, "(MEM", GET_MODE(x));
2092
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2093
+               zip_debug_print(pfx, lvl, ")");
2094
+               break;
2095
+       /*
2096
+       case VALUE:
2097
+               {
2098
+                       char buf[64];
2099
+                       sprintf(buf, "(VALUE: %d)", INTVAL(XEXP,0));
2100
+                       zip_debug_print_m(pfx, lvl, "buf", GET_MODE(x));
2101
+               }
2102
+               break;
2103
+       */
2104
+       case PLUS:
2105
+               zip_debug_print_m(pfx, lvl, "(PLUS", GET_MODE(x));
2106
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2107
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2108
+               zip_debug_print(pfx, lvl, ")");
2109
+               break;
2110
+       case MINUS:
2111
+               zip_debug_print_m(pfx, lvl, "(MINUS", GET_MODE(x));
2112
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2113
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2114
+               zip_debug_print(pfx, lvl, ")");
2115
+               break;
2116
+       case AND:
2117
+               zip_debug_print_m(pfx, lvl, "(AND", GET_MODE(x));
2118
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2119
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2120
+               zip_debug_print(pfx, lvl, ")");
2121
+               break;
2122
+       case IOR:
2123
+               zip_debug_print_m(pfx, lvl, "(OR", GET_MODE(x));
2124
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2125
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2126
+               zip_debug_print(pfx, lvl, ")");
2127
+               break;
2128
+       case XOR:
2129
+               zip_debug_print_m(pfx, lvl, "(XOR", GET_MODE(x));
2130
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2131
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2132
+               zip_debug_print(pfx, lvl, ")");
2133
+               break;
2134
+       case MULT:
2135
+               zip_debug_print_m(pfx, lvl, "(MULT", GET_MODE(x));
2136
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2137
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2138
+               zip_debug_print(pfx, lvl, ")");
2139
+               break;
2140
+       case EQ:        //
2141
+               zip_debug_print_m(pfx, lvl, "(EQ", GET_MODE(x));
2142
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2143
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2144
+               zip_debug_print(pfx, lvl, ")");
2145
+               break;
2146
+       case NE:        //
2147
+               zip_debug_print_m(pfx, lvl, "(NE", GET_MODE(x));
2148
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2149
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2150
+               zip_debug_print(pfx, lvl, ")");
2151
+               break;
2152
+       case GE:        //
2153
+               zip_debug_print_m(pfx, lvl, "(GE", GET_MODE(x));
2154
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2155
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2156
+               zip_debug_print(pfx, lvl, ")");
2157
+               break;
2158
+       case GT:        //
2159
+               zip_debug_print_m(pfx, lvl, "(GT", GET_MODE(x));
2160
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2161
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2162
+               zip_debug_print(pfx, lvl, ")");
2163
+               break;
2164
+       case LE:        //
2165
+               zip_debug_print_m(pfx, lvl, "(LE", GET_MODE(x));
2166
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2167
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2168
+               zip_debug_print(pfx, lvl, ")");
2169
+               break;
2170
+       case LT:        //
2171
+               zip_debug_print_m(pfx, lvl, "(LT", GET_MODE(x));
2172
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2173
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2174
+               zip_debug_print(pfx, lvl, ")");
2175
+               break;
2176
+       case GEU:       //
2177
+               zip_debug_print_m(pfx, lvl, "(GEU", GET_MODE(x));
2178
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2179
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2180
+               zip_debug_print(pfx, lvl, ")");
2181
+               break;
2182
+       case GTU:       //
2183
+               zip_debug_print_m(pfx, lvl, "(GTU", GET_MODE(x));
2184
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2185
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2186
+               zip_debug_print(pfx, lvl, ")");
2187
+               break;
2188
+       case LEU:       //
2189
+               zip_debug_print_m(pfx, lvl, "(LEU", GET_MODE(x));
2190
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2191
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2192
+               zip_debug_print(pfx, lvl, ")");
2193
+               break;
2194
+       case LTU:       //
2195
+               zip_debug_print_m(pfx, lvl, "(LTU", GET_MODE(x));
2196
+               zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2197
+               zip_debug_rtx_1(pfx, XEXP(x,1),lvl+1);
2198
+               zip_debug_print(pfx, lvl, ")");
2199
+               break;
2200
+       case SCRATCH:   //
2201
+               zip_debug_print_m(pfx, lvl, "(SCRATCH)", GET_MODE(x));
2202
+               break;
2203
+       case SUBREG:
2204
+               { char buf[25];
2205 111 dgisselq
+               if (REG_P(XEXP(x,0))) {
2206
+                       sprintf(buf, "(SUBREG %d/%d)", REGNO(XEXP(x,0)),
2207
+                               SUBREG_BYTE(x));
2208
+                       zip_debug_print(pfx, lvl, buf);
2209
+               } else if (MEM_P(XEXP(x,0))) {
2210
+                       sprintf(buf, "(SUBREG /%d", SUBREG_BYTE(x));
2211
+                       zip_debug_print(pfx, lvl, buf);
2212
+                       zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2213
+                       zip_debug_print(pfx, lvl, ")");
2214
+               } else {
2215
+                       sprintf(buf, "(SUBREG UNK /%d", SUBREG_BYTE(x));
2216
+                       zip_debug_print(pfx, lvl, buf);
2217
+                       zip_debug_rtx_1(pfx, XEXP(x,0),lvl+1);
2218
+                       zip_debug_print(pfx, lvl, ")");
2219
+               }}
2220
+               break;
2221 102 dgisselq
+       default:
2222 111 dgisselq
+               { char buf[128];
2223 102 dgisselq
+               sprintf(buf, "(? = %d) -- calling DEBUG-RTX", GET_CODE(x));
2224
+               zip_debug_print(pfx, lvl, buf);
2225
+               debug_rtx(x);
2226
+               } break;
2227
+       }
2228
+}
2229
+
2230
+void
2231
+zip_debug_rtx_pfx(const char *pfx, const_rtx x) {
2232
+       zip_debug_rtx_1(pfx, x, 0);
2233
+}
2234
+
2235
+void
2236
+zip_debug_rtx(const_rtx x) {
2237
+       zip_debug_rtx_pfx("", x);
2238
+}
2239
+
2240
+void
2241
+zip_debug_insn(rtx_insn *insn ATTRIBUTE_UNUSED) {
2242
+}
2243
+
2244
+void
2245
+zip_debug_bb(basic_block bb) {
2246
+       rtx_insn        *insn;
2247
+
2248
+       fprintf(stderr, "************ BASIC-BLOCK ***************\n");
2249
+       FOR_BB_INSNS(bb, insn)
2250
+       {
2251
+               zip_debug_rtx(insn);
2252
+       }
2253
+}
2254
+
2255
+
2256
+static bool
2257 122 dgisselq
+zip_legitimate_opb(rtx x, bool strict)
2258 102 dgisselq
+{
2259 103 dgisselq
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2260 102 dgisselq
+
2261 111 dgisselq
+       if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB\n");
2262 102 dgisselq
+       if (dbg) zip_debug_rtx_pfx("Test: ", x);
2263
+
2264
+       if (NULL_RTX == x)
2265
+               return false;
2266 122 dgisselq
+       else if ((GET_MODE(x) != SImode)&&(GET_MODE(x) != VOIDmode)) {
2267
+               if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB -> Mode failure\n");
2268 102 dgisselq
+               return false;
2269 122 dgisselq
+       } else if ((strict)&&(REG_P(x))) {
2270
+               if (REGNO(x)<zip_CC) {
2271
+                       if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB -> (Reg)\n");
2272
+                       return true;
2273
+               } else return false;
2274
+       } else if (register_operand(x, GET_MODE(x))) {
2275
+               // This also handles subregs
2276
+               if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB -> (Reg)\n");
2277
+               return true;
2278 111 dgisselq
+       } else if ((CONST_INT_P(x))
2279
+               &&(INTVAL(x) >= zip_min_opb_imm)
2280
+               &&(INTVAL(x) <= zip_max_opb_imm)) {
2281 122 dgisselq
+               if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB -> YES! (Const) %ld <= %ld <= %ld\n", zip_min_opb_imm, INTVAL(x), zip_max_opb_imm);
2282 111 dgisselq
+               return true;
2283 122 dgisselq
+       // } else if ((GET_CODE(x) == LABEL_REF)||(GET_CODE(x)==CODE_LABEL)) {
2284
+               // return true;
2285 102 dgisselq
+       } else if (GET_CODE(x) == PLUS) {
2286
+               // Is it a valid register?
2287 122 dgisselq
+               if ((!strict)&&(!register_operand((rtx)XEXP((rtx)x,0), GET_MODE(x)))) {
2288 111 dgisselq
+                       if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB -> No (No reg in +%s)\n",
2289 102 dgisselq
+                       (GET_CODE(XEXP(x,1))==REG)?", reg in op[1]":"");
2290
+                       return false;
2291 122 dgisselq
+               } else if ((strict)&&((!REG_P(XEXP(x,0)))||(REGNO(XEXP(x,0))>=zip_CC))) {
2292 102 dgisselq
+                       return false;
2293
+               } if ((GET_CODE(XEXP(x, 1)) == CONST_INT)
2294
+                       &&(INTVAL(XEXP(x, 1)) <= zip_max_anchor_offset)
2295
+                       &&(INTVAL(XEXP(x, 1)) >= zip_min_anchor_offset)) {
2296 111 dgisselq
+                       if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB -> YES! (reg+int)\n");
2297 103 dgisselq
+                       // if((INTVAL(XEXP(x,1))<0)&&(REGNO(XEXP(x,0))==zip_SP))
2298
+                               // gcc_unreachable();
2299 102 dgisselq
+                       return true;
2300
+               } if ((GET_CODE(XEXP(x, 1)) == LABEL_REF)
2301 122 dgisselq
+                       ||(GET_CODE(XEXP(x, 1)) == CODE_LABEL)
2302 102 dgisselq
+                       ||(GET_CODE(XEXP(x, 1)) == SYMBOL_REF)) {
2303
+                       // While we can technically support this, the problem
2304
+                       // is that the symbol address could be anywhere, and we
2305
+                       // have no way of recovering if it's outside of our
2306
+                       // 14 allowable bits.
2307 111 dgisselq
+                       if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB -> No. (reg+lbl)\n");
2308 102 dgisselq
+                       return false;
2309
+               }
2310
+       }
2311
+
2312 111 dgisselq
+       if (dbg) fprintf(stderr, "ZIP-LEGITIMATE-OPB -> No\n");
2313 102 dgisselq
+       if (dbg) zip_debug_rtx(x);
2314
+       return false;
2315
+}
2316
+
2317
+static bool
2318
+zip_legitimate_move_operand_p(machine_mode mode ATTRIBUTE_UNUSED, rtx x, bool strict) {
2319
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2320
+
2321
+       if (dbg) fprintf(stderr, "ZIP-VALID-MOVE-OPERAND\n");
2322
+       if (dbg) zip_debug_rtx_pfx("VMov?: ", x);
2323
+
2324 122 dgisselq
+       if (!zip_legitimate_opb(x, strict))
2325 102 dgisselq
+               return false;
2326 122 dgisselq
+       else if ((GET_CODE(x)==PLUS)&&(CONST_INT_P(XEXP(x,1)))) {
2327
+               if ((INTVAL(XEXP(x, 1)) > zip_max_mov_offset)
2328
+                       ||(INTVAL(XEXP(x, 1)) < zip_min_mov_offset)) {
2329 124 dgisselq
+                       if (dbg) fprintf(stderr, "ZIP-VALID-MOVE-OPERAND -> NO! (reg+int), int out of bounds: %ld\n", INTVAL(XEXP(x,1)));
2330 102 dgisselq
+                       return false;
2331
+               }
2332
+       }
2333
+
2334 122 dgisselq
+       if (dbg) fprintf(stderr, "ZIP-VALID-MOVE-OPERAND -> Yes\n");
2335 102 dgisselq
+       if (dbg) zip_debug_rtx(x);
2336 122 dgisselq
+       return true;
2337 102 dgisselq
+}
2338
+
2339
+int
2340
+zip_pd_mov_operand(rtx op)
2341
+{
2342
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2343
+
2344
+       if (dbg) fprintf(stderr, "ZIP-VALID-MOV(predicate) for OPERAND\n");
2345
+       return zip_legitimate_move_operand_p(VOIDmode, op, !can_create_pseudo_p());
2346
+}
2347
+
2348
+int
2349 111 dgisselq
+zip_pd_mvimm_operand(rtx op)
2350
+{
2351
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2352
+
2353
+       if (dbg) fprintf(stderr, "ZIP-VALID-MVIMM(predicate) for OPERAND\n");
2354
+       if (!CONST_INT_P(op))
2355
+               return false;
2356
+       if (INTVAL(op) > zip_max_mov_offset)
2357
+               return false;
2358
+       if (INTVAL(op) < zip_min_mov_offset)
2359
+               return false;
2360
+       return true;
2361
+}
2362
+
2363
+int
2364
+zip_pd_imm_operand(rtx op)
2365
+{
2366
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2367
+
2368
+       if (dbg) fprintf(stderr, "ZIP-VALID-IMM(predicate) for OPERAND\n");
2369
+       if (!CONST_INT_P(op))
2370
+               return false;
2371
+       if (INTVAL(op) > zip_max_anchor_offset)
2372
+               return false;
2373
+       if (INTVAL(op) < zip_min_anchor_offset)
2374
+               return false;
2375
+       return true;
2376
+}
2377
+
2378
+int
2379 102 dgisselq
+zip_address_operand(rtx op)
2380
+{
2381
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2382
+
2383
+       if (dbg) fprintf(stderr, "ZIP-ADDRESS for OPERAND\n");
2384 111 dgisselq
+       if ((REG_P(op))&&(REGNO(op)==zip_CC))
2385
+               return false;
2386
+       else if ((GET_CODE(op) == PLUS)&&(REG_P(XEXP(op,0)))
2387
+                       &&(REGNO(XEXP(op,0))==zip_CC))
2388
+               return false;
2389
+       else
2390
+               return zip_legitimate_opb(op, !can_create_pseudo_p());
2391 102 dgisselq
+}
2392
+
2393
+int
2394 111 dgisselq
+zip_pd_opb_operand(rtx op)
2395 102 dgisselq
+{
2396
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2397
+
2398 111 dgisselq
+       if (dbg) fprintf(stderr, "ZIP-OPB(predicate) for OPERAND\n");
2399 122 dgisselq
+       return zip_legitimate_opb(op, false); //, !can_create_pseudo_p());
2400 102 dgisselq
+}
2401
+
2402
+int
2403
+zip_ct_address_operand(rtx op)
2404
+{
2405
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2406
+
2407
+       if (dbg) fprintf(stderr, "ZIP-ADDRESS(constraint) for OPERAND\n");
2408 111 dgisselq
+       return zip_legitimate_opb(op, !can_create_pseudo_p());
2409 102 dgisselq
+}
2410
+
2411
+int
2412
+zip_const_address_operand(rtx x) {
2413
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2414
+
2415
+       if (dbg) fprintf(stderr, "is ZIP-CONST-ADDRESS?\n");
2416
+       if (dbg) zip_debug_rtx(x);
2417
+       if ((GET_MODE(x) != SImode)&&(GET_MODE(x) != VOIDmode))
2418
+               return false;
2419
+       if ((GET_CODE(x) == LABEL_REF)
2420
+                       ||(GET_CODE(x) == CODE_LABEL)
2421
+                       ||(GET_CODE(x) == SYMBOL_REF)) {
2422
+               if (dbg) fprintf(stderr, "is ZIP-CONST-ADDRESS? -> YES!\n");
2423
+               return true;
2424
+       } else if (CONST_INT_P(x)) {
2425
+               if (dbg) fprintf(stderr, "is ZIP-CONST-ADDRESS? -> YES!\n");
2426
+               return true;
2427
+       } else if (GET_CODE(x) == PLUS) {
2428
+               if (dbg) fprintf(stderr, "is ZIP-CONST-ADDRESS(PLUS)\n");
2429
+               return ((zip_const_address_operand(XEXP(x,0)))
2430
+                       &&(CONST_INT_P(XEXP(x,1))));
2431
+       } else if (GET_CODE(x) == MINUS) {
2432
+               if (dbg) fprintf(stderr, "is ZIP-CONST-ADDRESS(MINUS)\n");
2433
+               return ((zip_const_address_operand(XEXP(x,0)))
2434
+                       &&(zip_const_address_operand(XEXP(x,1))));
2435
+       }
2436
+
2437
+       if (dbg) fprintf(stderr, "is ZIP-CONST-ADDRESS? -> No\n");
2438
+       if (dbg) zip_debug_rtx(x);
2439
+       return false;
2440
+}
2441
+
2442
+int
2443
+zip_ct_const_address_operand(rtx x) {
2444
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2445
+
2446
+       if (dbg) fprintf(stderr, "ZIP-CONST-ADDRESS(constraint)\n");
2447
+       return zip_const_address_operand(x);
2448
+}
2449
+
2450
+int
2451
+zip_pd_const_address_operand(rtx x) {
2452
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2453
+
2454
+       if (dbg) fprintf(stderr, "ZIP-CONST-ADDRESS(predicate)\n");
2455
+       return zip_const_address_operand(x);
2456
+}
2457
+
2458
+
2459
+static bool
2460
+zip_legitimate_address_p(machine_mode mode ATTRIBUTE_UNUSED, rtx x, bool strict)
2461
+{
2462
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2463
+
2464
+       if (dbg) fprintf(stderr, "Zip-LEGITIMATE-ADDRESS-P\n");
2465
+       if (dbg) zip_debug_rtx(x);
2466
+
2467
+       // Only insist the register be a valid register if strict is true
2468 111 dgisselq
+       if (zip_legitimate_opb(x, strict))
2469 102 dgisselq
+               return true;
2470 111 dgisselq
+       // else if (zip_const_address_operand(x))
2471
+               // return true;
2472 102 dgisselq
+
2473
+       return false;
2474
+}
2475
+
2476 111 dgisselq
+static rtx
2477
+zip_legitimize_address(rtx x, rtx oldx ATTRIBUTE_UNUSED, machine_mode mode ATTRIBUTE_UNUSED) {
2478
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2479
+
2480
+       if (dbg) zip_debug_rtx_pfx("LEGITIMIZE: ", x);
2481
+       if (zip_legitimate_address_p(mode, x, !can_create_pseudo_p()))
2482
+               return x;
2483
+
2484
+       if (GET_CODE(x)==PLUS) {
2485
+               if (!REG_P(XEXP(x,0)))
2486
+                       XEXP(x,0) = force_reg(GET_MODE(x),XEXP(x,0));
2487
+               if ((!zip_legitimate_address_p(mode, x, !can_create_pseudo_p()))
2488
+                       &&(!CONST_INT_P(XEXP(x,1))))
2489
+                       x = force_reg(GET_MODE(x),x);
2490
+       } else if (MEM_P(x))
2491
+               x = force_reg(GET_MODE(x),x);
2492
+
2493
+       if (dbg) zip_debug_rtx_pfx("LEGITIMATE: ", x);
2494
+       return x;
2495
+}
2496
+
2497 102 dgisselq
+void
2498
+zip_asm_output_def(FILE *stream, const char *name, const char *value)
2499
+{
2500
+       assemble_name(stream, name);
2501
+       fprintf(stream, "\t.equ ");
2502
+       assemble_name(stream, value);
2503
+       fputc('\n', stream);
2504
+}
2505
+
2506 111 dgisselq
+#define        USE_SUBREG
2507
+#ifdef USE_SUBREG
2508
+#define        SREG_P(RTX) ((SUBREG_P(RTX))&&(REG_P(XEXP(RTX,0))))
2509
+#define        SMEM_P(RTX) ((SUBREG_P(RTX))&&(MEM_P(XEXP(RTX,0))))
2510
+#else
2511
+#define        SREG_P(RTX)     false
2512
+#define        SMEM_P(RTX)     false
2513
+#endif
2514 102 dgisselq
+
2515
+const char *zip_set_zero_or_one(rtx condition, rtx dst) {
2516 103 dgisselq
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2517 102 dgisselq
+       if (dbg) fprintf(stderr, "ZIP::SET-ZERO-OR-ONE\n");
2518
+       if (dbg) zip_debug_rtx_pfx("CND", condition);
2519
+       if (dbg) zip_debug_rtx_pfx("REG", dst);
2520
+       switch(GET_CODE(condition)) {
2521
+       case EQ:        return "LDI\t0,%0\n\tLDILO.Z\t1,%0";
2522
+       case NE:        return "LDI\t0,%0\n\tLDILO.NZ\t1,%0";
2523
+       case LT:        return "LDI\t0,%0\n\tLDILO.LT\t1,%0";
2524
+       case GT:        return "LDI\t0,%0\n\tLDILO.GT\t1,%0";
2525
+       case LE:        return "LDI\t1,%0\n\tLDILO.GT\t0,%0";
2526
+       case GE:        return "LDI\t0,%0\n\tLDILO.GE\t1,%0";
2527
+       case LTU:       return "LDI\t0,%0\n\tLDILO.C\t1,%0";
2528
+       case GTU:       return "LDI\t1,%0\n\tLDILO.C\t0,%0\n\tLDILO.Z\t0,%0";
2529
+       case LEU:       return "LDI\t0,%0\n\tLDILO.C\t1,%0\n\tLDILO.Z\t1,%0";
2530
+       case GEU:       return "LDI\t1,%0\n\tLDILO.C\t0,%0";
2531
+       default:
2532
+               zip_debug_rtx(condition);
2533
+               internal_error("CSTORE Unsupported condition");
2534
+               return NULL;
2535
+       }
2536
+}
2537
+
2538
+const char *zip_binary_movsicc(rtx_code condition, const char *op, const int opno) {
2539
+       static char     result[64] = "";
2540
+       switch(condition) {
2541
+               //
2542
+               // Result already exists in the iffalse register
2543
+               // Can't change it.  Therefore, on the
2544
+               // condition ... move true register to the
2545
+               // destination
2546
+               //
2547
+               case EQ:        sprintf(result, "%s.Z\t%%%d,%%0", op, opno); break;
2548
+               case NE:        sprintf(result, "%s.NZ\t%%%d,%%0", op, opno); break;
2549
+               case LT:        sprintf(result, "%s.LT\t%%%d,%%0", op, opno); break;
2550
+               case GT:        sprintf(result, "%s.GT\t%%%d,%%0", op, opno); break;
2551
+               // .LE doesn't exist on Zip CPU--turn this into two instructions
2552
+               case LE:        sprintf(result, "%s.LT\t%%%d,%%0\n\t%s.Z\t%%%d,%%0", op, opno, op, opno); break;
2553
+               case GE:        sprintf(result, "%s.GE\t%%%d,%%0", op, opno); break;
2554
+               case LTU:       sprintf(result, "%s.C\t%%%d,%%0", op, opno); break;
2555
+               //
2556
+               // .GTU doesn't exist on the Zip CPU either. We also note that
2557
+               // .C will never be set on an equal condition.  Therefore, we
2558
+               // turn this into a XOR.NZ 2,CC, which will set the .C condition
2559
+               // as long as .Z wasn't true.  We then undo this when we're
2560
+               // done.  This is possible since none of these instructions
2561
+               // (LDI/MOV/Lod conditional, nor Xor conditional) will ever set
2562
+               // the condition codes.
2563
+               //
2564
+               // This is obviously not very optimal.  Avoid this by all means
2565
+               // if you can
2566
+               case GTU:       sprintf(result, "XOR.NZ\t2,CC\n%s.C\t%%%d,%%0\n\tXOR.NZ\t2,CC", op, opno); break;
2567
+               // .LEU doesn't exist on Zip CPU either--turn this into another
2568
+               // two instructions
2569
+               case LEU:       sprintf(result, "%s.C\t%%%d,%%0\n\t%s.Z\t%%%d,%%0", op, opno, op, opno); break;
2570
+               //
2571
+               // .GEU doesn't exist on Zip CPU.  Implementing it her is
2572
+               // painful.  We can change the condition codes to make it so,
2573
+               // but the instruction requires the condition codes not be
2574
+               // changed.  Hence, we must change them back if we do so.
2575
+               //
2576
+               // .C will be set on less than but not equal.  Hence !.C will
2577
+               // be true on greater than or equal.
2578
+               case GEU:       sprintf(result, "XOR\t2,CC\n%s.C\t%%%d,%%0\n\tXOR\t2,CC", op, opno); break;
2579
+               default:
2580
+                       internal_error("MOVSICC(BINARY) Unsupported condition");
2581
+                       return NULL;
2582
+       } return result;
2583
+}
2584
+
2585
+const char *zip_tertiary_movsicc(rtx condition, const char *optrue, const char *opfalse) {
2586
+       static  char    result[64] = "";
2587
+       switch(GET_CODE(condition)) {
2588
+               case EQ:        sprintf(result,"%s\t%%3,%%0\n\t%s.Z\t%%2,%%0", opfalse, optrue); break;
2589
+               case NE:        sprintf(result,"%s\t%%3,%%0\n\t%s.NZ\t%%2,%%0", opfalse, optrue); break;
2590
+               case LT:        sprintf(result,"%s\t%%3,%%0\n\t%s.LT\t%%2,%%0", opfalse, optrue); break;
2591
+               case GT:        sprintf(result,"%s\t%%3,%%0\n\t%s.GT\t%%2,%%0", opfalse, optrue); break;
2592
+               // LE doesn't exist on a Zip CPU.  Accomplish this by
2593
+               // reversing the condition: i.e., load the false value into
2594
+               // the register, and the on condition load the true value.
2595
+               case LE:        sprintf(result,"%s\t%%2,%%0\n\t%s.GT\t%%3,%%0", optrue, opfalse); break;
2596
+               case GE:        sprintf(result,"%s\t%%3,%%0\n\t%s.GE\t%%2,%%0", opfalse, optrue); break;
2597
+               case LTU:       sprintf(result,"%s\t%%3,%%0\n\t%s.C\t%%2,%%0", opfalse, optrue); break;
2598
+               //
2599
+               case GTU:       sprintf(result,"%s\t%%2,%%0\n\t%s.C\t%%3,%%0\n\t%s.Z\t%%3,%%0", optrue, opfalse, opfalse); break;
2600
+               case LEU:       sprintf(result,"%s\t%%3,%%0\n\t%s.C\t%%2,%%0\n\t%s.Z\t%%2,%%0", opfalse, optrue, optrue); break;
2601
+               case GEU:       sprintf(result,"%s\t%%2,%%0\n\t%s.C\t%%3,%%0\n", optrue, opfalse); break;
2602
+               default:
2603
+                       internal_error("MOVSICC Unsupported condition");
2604
+                       return NULL;
2605
+       } return result;
2606
+}
2607
+
2608
+const char *zip_movsicc(rtx dst, rtx condition, rtx iftrue, rtx iffalse) {
2609 103 dgisselq
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2610 102 dgisselq
+       if (dbg) fprintf(stderr, "ZIP::MOVSICC\n");
2611
+       if (dbg) zip_debug_rtx_pfx("DST", dst);
2612
+       if (dbg) zip_debug_rtx_pfx("CND", condition);
2613
+       if (dbg) zip_debug_rtx_pfx("TRU", iftrue);
2614
+       if (dbg) zip_debug_rtx_pfx("FAL", iffalse);
2615
+       if ((REG_P(iftrue))&&(REGNO(dst)==REGNO(iftrue))) {
2616
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- CASE if(X) -> R\n");
2617
+               if (zip_legitimate_move_operand_p(SImode, iffalse, true))
2618
+                       return zip_binary_movsicc(reverse_condition(GET_CODE(condition)), "MOV", 3);
2619
+               else if (zip_const_address_operand(iffalse))
2620
+                       return zip_binary_movsicc(reverse_condition(GET_CODE(condition)), "LDI", 3);
2621
+               else if (zip_const_address_operand(iffalse))
2622
+                       return zip_binary_movsicc(reverse_condition(GET_CODE(condition)), "LDI", 3);
2623 111 dgisselq
+               else if ((MEM_P(iffalse))&&(zip_legitimate_opb(XEXP(iffalse,0), true)))
2624 102 dgisselq
+                       return zip_binary_movsicc(reverse_condition(GET_CODE(condition)), "LOD", 3);
2625
+               else {
2626
+                       internal_error("MOVSICC Unsupported mode");
2627
+                       return NULL;
2628
+               }
2629
+       } if ((REG_P(iftrue))&&(REGNO(dst)==REGNO(iftrue))) {
2630
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- CASE if(!X) -> R\n");
2631
+               if (zip_legitimate_move_operand_p(SImode, iftrue, true))
2632
+                       return zip_binary_movsicc(GET_CODE(condition), "MOV",2);
2633
+               else if (zip_const_address_operand(iffalse))
2634
+                       return zip_binary_movsicc(GET_CODE(condition), "LDI",2);
2635
+               else if (zip_const_address_operand(iffalse))
2636
+                       return zip_binary_movsicc(GET_CODE(condition), "LDI",2);
2637 111 dgisselq
+               else if ((MEM_P(iffalse))&&(zip_legitimate_opb(XEXP(iffalse,0), true)))
2638 102 dgisselq
+                       return zip_binary_movsicc(GET_CODE(condition), "LOD",2);
2639
+               else {
2640
+                       internal_error("MOVSICC Unsupported mode");
2641
+                       return NULL;
2642
+               }
2643
+       } if ((zip_const_address_operand(iftrue))&&(zip_const_address_operand(iffalse))) {
2644
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) #1 ELSE #2\n");
2645
+               return zip_tertiary_movsicc(condition, "LDI", "LDI");
2646
+       } if ((zip_const_address_operand(iftrue))&&(zip_legitimate_move_operand_p(SImode, iffalse, true))) {
2647
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) #1 ELSE A+B\n");
2648
+               return zip_tertiary_movsicc(condition, "LDI", "MOV");
2649
+       } if ((zip_legitimate_move_operand_p(SImode, iftrue, true))&&(zip_const_address_operand(iffalse))) {
2650
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) A+B ELSE #x\n");
2651
+               return zip_tertiary_movsicc(condition, "MOV", "LDI");
2652
+       } if ((zip_legitimate_move_operand_p(SImode, iftrue, true))
2653
+                       &&(zip_legitimate_move_operand_p(SImode, iffalse, true))) {
2654
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) A+B ELSE C+D\n");
2655
+               return zip_tertiary_movsicc(condition, "MOV", "MOV");
2656
+       }
2657
+       if ((MEM_P(iftrue))
2658 111 dgisselq
+               &&(zip_legitimate_opb(XEXP(iftrue,0), true))
2659 102 dgisselq
+               &&(zip_legitimate_move_operand_p(SImode, iffalse, true))) {
2660
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) A[B] ELSE C+D\n");
2661
+               return zip_tertiary_movsicc(condition, "LOD", "MOV");
2662
+       } if ((zip_legitimate_move_operand_p(SImode, iftrue, true))
2663 111 dgisselq
+               &&(MEM_P(iffalse))&&(zip_legitimate_opb(XEXP(iffalse,0), true))) {
2664 102 dgisselq
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) A+B ELSE C[D]\n");
2665
+               return zip_tertiary_movsicc(condition, "MOV", "LOD");
2666 111 dgisselq
+       } if ((MEM_P(iftrue))&&(zip_legitimate_opb(XEXP(iftrue,0), true))
2667
+               &&(MEM_P(iffalse))&&(zip_legitimate_opb(XEXP(iffalse,0), true))) {
2668 102 dgisselq
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) A[B] ELSE C[D]\n");
2669
+               return zip_tertiary_movsicc(condition, "LOD", "LOD");
2670 111 dgisselq
+       } if ((MEM_P(iftrue))
2671
+               &&(zip_legitimate_opb(XEXP(iftrue,0),true))
2672
+               &&(zip_const_address_operand(iffalse))) {
2673
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) A[B] ELSE #x\n");
2674
+               return zip_tertiary_movsicc(condition, "LOD", "LDI");
2675
+       } if ((MEM_P(iffalse))
2676
+               &&(zip_legitimate_opb(XEXP(iffalse,0),true))
2677
+               &&(zip_const_address_operand(iftrue))) {
2678
+               if (dbg) fprintf(stderr, "ZIP::MOVSICC -- IF(X) #x ELSE A[B]\n");
2679
+               return zip_tertiary_movsicc(condition, "LDI", "LOD");
2680 102 dgisselq
+       }
2681
+
2682
+       internal_error("MOVSICC Operands not supported");
2683
+}
2684
+
2685
+const char *zip_addsicc(rtx dst, rtx condition, rtx ifsrc, rtx addv ATTRIBUTE_UNUSED) {
2686
+       // We know upon entry that REG_P(dst) must be true
2687
+       if (!REG_P(dst))
2688
+               internal_error("%s","ADDSICC into something other than register");
2689
+       if ((REG_P(ifsrc))&&(REGNO(dst)==REGNO(ifsrc))) {
2690
+               switch (GET_CODE(condition)) {
2691
+               case EQ: return "ADD.Z\t%3,%0";
2692
+               case NE: return "ADD.NZ\t%3,%0";
2693
+               case LT: return "ADD.LT\t%3,%0";
2694
+               case GT: return "ADD.GT\t%3,%0";
2695
+               case LE: return "ADD.LT\t%3,%0\n\tADD.Z\t%3,%0";
2696
+               case GE: return "ADD.GE\t%3,%0";
2697
+               case LTU: return "ADD.C\t%3,%0";
2698
+               case LEU: return "ADD.C\t%3,%0\n\tADD.Z\t%3,%0";
2699
+               case GEU: return "XOR\t2,CC\n\tADD.C\t%3,%0\n\tXOR\t2,CC";
2700
+               // Can do a GEU comparison, and then undo on the Zero condition
2701
+               case GTU: return "XOR\t2,CC\n\tADD.C\t%3,%0\n\tSUB.Z\t%3,%0\n\tXOR\t2,CC";
2702
+               default:
2703
+                       internal_error("%s", "Zip/No usable addsi expansion");
2704
+                       break;
2705
+               }
2706
+       } else {
2707
+               // MOV A+REG,REG
2708
+               switch (GET_CODE(condition)) {
2709
+               case EQ: return "MOV.Z\t%3+%2,%0";
2710
+               case NE: return "MOV.NZ\t%3+%2,%0";
2711
+               case LT: return "MOV.LT\t%3+%2,%0";
2712
+               case GT: return "MOV.GT\t%3+%2,%0";
2713
+               case LE: return "MOV.LT\t%3+%2,%0\n\tMOV.Z\t%3+%2,%0";
2714
+               case GE: return "MOV.GE\t%3+%2,%0";
2715
+               case LTU: return "MOV.C\t%3+%2,%0";
2716
+               case LEU: return "MOV.C\t%3+%2,%0\n\tMOV.Z\t%3+%2,%0";
2717
+               case GEU: return "XOR\t2,CC\n\tMOV.C\t%3+%2,%0\n\tXOR\t2,CC";
2718
+               // Can do a GEU comparison, and then undo on the Zero condition
2719
+               // EXCEPT: with a move instruction, what's there to undo?  We
2720
+               // just clobbered our register!
2721
+               // case GTU: return "XOR\t2,CC\n\tMOV.C\t%3,%0\n\tSUB.Z\t%3,%0XOR\t2,CC";
2722
+               default:
2723
+                       internal_error("%s", "Zip/No usable addsi(reg,reg) expansion");
2724
+                       break;
2725
+               }
2726
+       }
2727
+
2728
+       return "BREAK";
2729
+}
2730
+
2731 103 dgisselq
+static int     zip_memory_move_cost(machine_mode mode, reg_class_t ATTRIBUTE_UNUSED, bool in ATTRIBUTE_UNUSED) {
2732 102 dgisselq
+       int     rv = 14;
2733
+       if ((mode == DImode)||(mode == DFmode))
2734
+               rv += 2;
2735
+       return rv;
2736
+}
2737
+
2738 103 dgisselq
+// #warning "How do we tell the compiler LDI label is expensive as 2 ops"?
2739 117 dgisselq
+static bool    zip_cannot_modify_jumps_p(void) {
2740
+       // Let's try their suggested approach, keeping us from modifying jumps
2741
+       // after reload.  This should also allow our peephole2 optimizations
2742
+       // to adjust things back to what they need to be if necessary.
2743
+       return (reload_completed || reload_in_progress);
2744
+}
2745 122 dgisselq
+
2746
+rtx_insn       *zip_ifcvt_info;
2747
+
2748
+void
2749
+zip_ifcvt_modify_tests(ce_if_block *ce_info ATTRIBUTE_UNUSED, rtx *true_expr, rtx *false_expr) {
2750
+       const bool      dbg = ((ALL_DEBUG_ON)||(false))&&(!ALL_DEBUG_OFF);
2751
+       if (dbg) fprintf(stderr, "IFCVT-MODIFY-TESTS\n");
2752
+       if (*true_expr) switch(GET_CODE(*true_expr)) {
2753
+               case LE:
2754
+               case GTU:
2755
+               case GEU:
2756
+               case LEU:
2757
+                       if (dbg) fprintf(stderr, "TRUE, missing expr\n");
2758
+                       if (dbg) zip_debug_rtx(*true_expr);
2759
+                       *true_expr = NULL_RTX;
2760
+                       break;
2761
+               default: // LT, GT, GTE, LTU, NE, EQ
2762
+                       break;
2763
+       }
2764
+
2765
+       if (*false_expr) switch(GET_CODE(*false_expr)) {
2766
+               case LE:
2767
+               case GTU:
2768
+               case GEU:
2769
+               case LEU:
2770
+                       if (dbg) fprintf(stderr, "FALSE, missing expr\n");
2771
+                       if (dbg) zip_debug_rtx(*false_expr);
2772
+                       *false_expr = NULL_RTX;
2773
+               default:
2774
+                       break;
2775
+       }
2776
+       if ((dbg)&&((!*true_expr)||(!*false_expr)))
2777
+               fprintf(stderr, "IFCVT-MODIFY-TESTS -- FAIL\n");
2778
+}
2779
+
2780
+void
2781
+zip_ifcvt_modify_cancel(struct ce_if_block *ceinfo ATTRIBUTE_UNUSED) {
2782
+/*
2783
+       fprintf(stderr, "IFCVT -- CANCEL\n");
2784
+       zip_ifcvt_info = NULL;
2785
+*/
2786
+}
2787
+
2788
+void
2789
+zip_ifcvt_modify_final(struct ce_if_block *ceinfo ATTRIBUTE_UNUSED) {
2790
+/*
2791
+rtx_insn *insn;
2792
+FOR_BB_INSNS(ceinfo->test_bb, insn)
2793
+       fprintf(stderr, "IFCVT -- FINAL\n");
2794
+       zip_debug_rtx_pfx("FINAL-TEST-BB", insn);
2795
+       zip_ifcvt_info = NULL;
2796
+*/
2797
+}
2798
+
2799
+void
2800
+zip_ifcvt_machdep_init(struct ce_if_block *ceinfo ATTRIBUTE_UNUSED) {
2801
+/*
2802
+       zip_ifcvt_info = NULL;
2803
+       rtx_insn *insn, *ifinsn = NULL;
2804
+       FOR_BB_INSNS(ceinfo->test_bb, insn) {
2805
+               rtx     p;
2806
+               p = single_set(insn);
2807
+               if (!p) continue;
2808
+               if (SET_DEST(p)==pc_rtx) {
2809
+                       ifinsn = insn;
2810
+               }
2811
+               if (!REG_P(SET_DEST(p)))
2812
+                       continue;
2813
+               if (GET_MODE(SET_DEST(p))!=CCmode)
2814
+                       continue;
2815
+               if (REGNO(SET_DEST(p))!=zip_CC)
2816
+                       continue;
2817
+               zip_ifcvt_info = insn;
2818
+       }
2819
+
2820
+       if (zip_ifcvt_info)
2821
+               zip_debug_rtx_pfx("PUTATIVE-CMP",zip_ifcvt_info);
2822
+       if (ifinsn)
2823
+               zip_debug_rtx_pfx("PRIOR-JMP",ifinsn);
2824
+*/
2825
+}
2826
+
2827 102 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/zip/zip.h gcc-5.3.0-zip/gcc/config/zip/zip.h
2828
--- gcc-5.3.0-original/gcc/config/zip/zip.h     1969-12-31 19:00:00.000000000 -0500
2829 125 dgisselq
+++ gcc-5.3.0-zip/gcc/config/zip/zip.h  2016-04-12 22:10:09.239940653 -0400
2830
@@ -0,0 +1,3987 @@
2831 102 dgisselq
+////////////////////////////////////////////////////////////////////////////////
2832
+//
2833
+// Filename:   gcc/config/zip/zip.h
2834
+//
2835
+// Project:    Zip CPU backend for the GNU Compiler Collection
2836
+//
2837
+// Purpose:
2838
+//
2839
+// Creator:    Dan Gisselquist, Ph.D.
2840
+//             Gisselquist Technology, LLC
2841
+//
2842
+////////////////////////////////////////////////////////////////////////////////
2843
+//
2844
+// Copyright (C) 2016, Gisselquist Technology, LLC
2845
+//
2846
+// This program is free software (firmware): you can redistribute it and/or
2847
+// modify it under the terms of  the GNU General Public License as published
2848
+// by the Free Software Foundation, either version 3 of the License, or (at
2849
+// your option) any later version.
2850
+//
2851
+// This program is distributed in the hope that it will be useful, but WITHOUT
2852
+// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
2853
+// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2854
+// for more details.
2855
+//
2856
+// You should have received a copy of the GNU General Public License along
2857
+// with this program.  (It's in the $(ROOT)/doc directory, run make with no
2858
+// target there if the PDF file isn't present.)  If not, see
2859
+// <http://www.gnu.org/licenses/> for a copy.
2860
+//
2861
+// License:    GPL, v3, as defined and found on www.gnu.org,
2862
+//             http://www.gnu.org/licenses/gpl.html
2863
+//
2864
+//
2865
+////////////////////////////////////////////////////////////////////////////////
2866
+#ifndef        GCC_ZIP_H
2867
+#define        GCC_ZIP_H
2868
+
2869
+
2870
+//
2871
+//
2872
+// Zip CPU configuration registers
2873
+//
2874
+//
2875
+#define        ZIP_USER        0        // Assume we are in supervisor mode
2876
+#define        ZIP_MULTIPLY    1       // Assume we have multiply instructions
2877
+#define        ZIP_DIVIDE      1       // Assume we have divide instructions
2878
+#define        ZIP_FPU         0        // Assume we have no floating point instructions
2879
+#define        ZIP_PIPELINED   1       // Assume our instructions are pipelined
2880
+#define        ZIP_VLIW        1       // Assume we have the VLIW feature
2881
+#define        ZIP_ATOMIC      ((ZIP_PIPELINED)&&(ZIP_VLIW))
2882
+#define        ZIP_PIC         0        // Attempting to produce PIC code, with GOT
2883
+#define        ZIP_HAS_DI      1
2884
+
2885
+// Zip has 16 registers in each user mode.
2886
+//     Register 15 is the program counter (PC)
2887
+//     Register 14 is the condition codes (CC)
2888
+//     Register 13 is the stack pointer   (SP)
2889
+//     Register 12 (may be) the Global Offset Table pointer (GOT)
2890
+//     Register  0 (may be) the return address pointer
2891
+// Registers 16-31 may only be used in supervisor mode.
2892
+#define        is_ZIP_GENERAL_REG(REGNO)       ((REGNO)<13)
2893
+#define        is_ZIP_REG(REGNO)               ((REGNO)<16)
2894
+
2895 103 dgisselq
+// #define     zip_FP_PSEUDO   16
2896
+#define        zip_PC          15
2897
+#define        zip_CC          14
2898
+#define        zip_SP          13
2899
+#define        zip_FP          12
2900
+#define        zip_GOT         11
2901
+#define        zip_AP          10
2902
+#define        zip_R1          1
2903
+#define        zip_R0          0
2904 102 dgisselq
+
2905
+#define        ZIP_FIRST_ARG_REGNO     1
2906
+#define        ZIP_LAST_ARG_REGNO      5
2907 111 dgisselq
+#define        NUM_ARG_REGS            (ZIP_LAST_ARG_REGNO-ZIP_FIRST_ARG_REGNO+1)
2908
+#define        MAX_PARM_REGS           (ZIP_LAST_ARG_REGNO-ZIP_FIRST_ARG_REGNO+1)
2909 102 dgisselq
+
2910
+/* The overall framework of an assembler file */
2911
+
2912
+#define        ASM_COMMENT_START       ";"
2913
+#define        ASM_APP_ON              ""
2914
+#define        ASM_APP_OFF             ""
2915
+
2916
+#define        FILE_ASM_OP             "\t.file\n"
2917
+
2918
+/* Output and Generation of Labels */
2919
+#define        GLOBAL_ASM_OP           "\t.global\t"
2920
+
2921
+#undef BITS_PER_UNIT
2922
+#define        BITS_PER_UNIT   (32)
2923
+
2924
+/* Assembler Commands for Alignment */
2925
+#define        ASM_OUTPUT_ALIGN(STREAM,POWER)  \
2926
+               { int pwr = POWER; fprintf(STREAM, "\t.p2align %d\n", (pwr<2)?2:pwr); }
2927
+
2928
+
2929
+/* A C compound statement to output to stdio stream STREAM the assembler syntax
2930
+ * for an instruction operand X. */
2931
+#define        PRINT_OPERAND(STREAM, X, CODE)  zip_print_operand(STREAM, X, CODE)
2932
+#define        PRINT_OPERAND_ADDRESS(STREAM, X) zip_print_operand_address(STREAM, X)
2933
+
2934
+/* Passing arguments in registers */
2935
+#define        FUNCTION_VALUE_REGNO_P(REGNO)   ((REGNO)==zip_R1)
2936
+
2937
+/* Define how to find the value returned by a function.  VALTYPE is the data
2938
+ * type of the value (as a tree).  If the precise function being called is known
2939
+ * FUNC is its FUNCTION_DECL; otherwise, FUNC is 0. */
2940
+#define        FUNCTION_VALUE(VALTYPE, FUNC) gen_rtx_REG(TYPE_MODE(VALTYPE), zip_R1)
2941
+
2942
+/* Define how to find the value returned by a library function assuming the
2943
+ * value has mode MODE.
2944
+ */
2945
+#define        LIBCALL_VALUE(MODE)     gen_rtx_REG(MODE, zip_R1)
2946
+
2947
+
2948
+/* STACK AND CALLING */
2949
+
2950
+
2951
+/* Define this macro as a C expression that is nonzero for registers that are
2952
+ * used by the epilogue or the return pattern.  The stack and frame pointer
2953
+ * registers are already assumed to be used as needed.
2954
+ */
2955
+#define        EPILOGUE_USES(R)        (R == RETURN_ADDRESS_REGNUM)
2956
+
2957
+
2958
+/* Normal alignment required for function parameters on the stack, in bits.  All
2959
+ * stack parameters receive at leaswt this much alignment regardless of data
2960
+ * type. */
2961
+#define        PARM_BOUNDARY   32
2962
+
2963
+/* Alignment of field after 'int : 0' in a structure. */
2964
+#define        EMPTY_FIELD_BOUNDARY    32
2965
+
2966
+/* No data type wants to be aligned rounder than this. */
2967
+#define        BIGGEST_ALIGNMENT       32
2968
+
2969
+/* The best alignment to use in cases where we have a choice. */
2970
+#define        FASTEST_ALIGNMENT       32
2971
+
2972
+/* Every structures size must be a multiple of 32-bits. */
2973
+#define        STRUCTURE_SIZE_BOUNDARY 32
2974
+
2975
+/* PCC_BITFIELD_TYPE_MATTERS -- define this if you wish to imitate the the way
2976
+ * other C compilers handle alignment of bit-fields and the structures that
2977
+ * contain them.
2978
+ *
2979
+ * The behavior is that the type written for a named bit-field (int, short, or
2980
+ * other integer type) imposes an alignment for the entire structure, as if the
2981
+ * structure really did contain an ordinary field of that type.  In addition,
2982
+ * the bit-field is placed within the structure so that it would fit within
2983
+ * such a field, not crossing a boundary for it.
2984
+ *
2985
+ * Thus, no most machines, a named bit-field whose type is written as int would
2986
+ * not cross a four-byte boundary, and would force four-byte alignment for the
2987
+ * whole structure.  (The alignment used may not be four bytes; it is controlled
2988
+ * by other alignment parameters.)
2989
+ *
2990
+ * An unnamed bit-field will not affect the alignment of the containing
2991
+ * structure.
2992
+ *
2993
+ * If thhe macro is defined, its definition should be a C expression, a non
2994
+ * zero value for the expression enables this behavior.
2995
+ * Look at the fundamental type that is used for a bit-field and use that to
2996
+ * impose alignment on the enclosing structure.  struct s{int a:8}; should
2997
+ * have the same alignment as 'int', not 'char'.
2998
+ */
2999
+#undef PCC_BITFIELD_TYPE_MATTERS
3000
+#define        PCC_BITFIELD_TYPE_MATTERS       0
3001
+
3002
+/* MAX_FIXED_MODE_SIZE -- An integer expression for the size in bits of the
3003
+ * largest integer machine mode that should actually be used.  All integer
3004
+ * machine modes of this size and smaller can be used for structures and unions
3005
+ * with the appropriate sizes.  If this macro is undefined,
3006
+ * GET_MODE_BITSIZE(DImode) is assumed.
3007
+ *
3008
+ * ZipCPU -- The default looks good enough for us.
3009
+ */
3010
+
3011
+/* Make strings word-aligned so strcpy from constants will be faster. */
3012
+#define        CONSTANT_ALIGNMENT(EXP, ALIGN)  (((TREE_CODE(EXP)==STRING_CST)  \
3013
+       && ((ALIGN) < FASTEST_ALIGNMENT)) ? FASTEST_ALIGNMENT : (ALIGN))
3014
+
3015
+/* Make arrays of chars word-aligned for the same reasons. */
3016
+#define        DATA_ALIGNMENT(TYPE, ALIGN)     ((TREE_CODE(TYPE) == ARRAY_TYPE) \
3017
+       && (TYPE_MODE(TREE_TYPE(TYPE)) == QImode)               \
3018
+       && ((ALIGN < FASTEST_ALIGNMENT) ? FASTEST_ALIGNMENT : (ALIGN)))
3019
+
3020
+/* Generate Code for Profiling
3021
+ */
3022
+#define        FUNCTION_PROFILER(FILE,LABELNO)         (abort(), 0)
3023
+
3024
+
3025
+/* A C expression which is nonzero if register number NUM is suitable for use
3026
+ * as an index register in operand addresses.
3027
+ */
3028
+#define        REGNO_OK_FOR_INDEX_P(NUM)       0
3029
+
3030
+
3031
+/* A C compound statement with a conditional 'goto LABEL;' executed if X
3032
+ * (an RTX) is a legitimate memory address on the target machine for a memory
3033
+ * operand of mode MODE.
3034
+ */
3035 111 dgisselq
+/* 17.03 Controlling the Compilation Driver, 'gcc' */
3036
+// DRIVER_SELF_SPECS
3037
+// OPTION_DEFAULT_SPECS
3038
+// CPP_SPEC
3039
+// CPLUSPLUS_CPP_SPEC
3040
+// CC1_SPEC
3041
+// CC1PLUS_SPEC
3042
+/* ASM_SPEC ... A C string constant that tells the GCC driver program options
3043
+ * to pass to the assembler.  It can also specify how to translate options you
3044
+ * give to GCC into options for GCC to pass to the assembler.  See the file
3045
+ * 'sun3.h' for an example of this.
3046
+ *
3047
+ * Do not define thismacro if it does not need to do anything.
3048
+ */
3049
+// #undef      ASM_SPEC
3050
+// ASM_FINAL_SPEC
3051
+// ASM_NEEDS_DASH_FOR_PIPED_INPUT
3052
+
3053
+/* LINK_SPEC ... A C string constant that tells the GCC driver program options
3054
+ * to pass to the linker.  It can also specify how to translate options you give
3055
+ * to GCC into options for GCC to pass to the linker.
3056
+ *
3057
+ * Do not define this macro if it does not need to do anything.
3058
+ */
3059
+
3060
+/* LIB_SPEC ... Another C string constant very much like LINK_SPEC.  The
3061
+ * difference between the two is that LIB_SPEC is used at the end of the
3062
+ * command given to the linker.
3063
+ *
3064
+ * If this macro is not defined, a default is provided that loads the standard
3065
+ * C library from the usual place.  See 'gcc.c'.
3066
+ */
3067
+#undef LIB_SPEC
3068
+// #define     LIB_SPEC        "%{!g:-lc} %{g:-lg} -lzip"
3069
+#define        LIB_SPEC        ""
3070
+
3071
+/* LIBGCC_SPEC ... Another C string constant that tells the GCC driver program
3072
+ * hoow and when to place a reference to 'libgcc.a' into the linker command
3073
+ * line.  This constant is placed both before and after the value of LIB_SPEC.
3074
+ *
3075
+ * If this macro is not defined, the GCC driver provides a default that passes
3076
+ * the string '-lgcc' to the linker.
3077
+ */
3078
+#undef LIBGCC_SPEC
3079
+#define        LIBGCC_SPEC     ""
3080
+
3081
+/* REAL_LIBGCC_SPEC ... By default, if ENABLE_SHARED_LIBGCC is defined, the
3082
+ * LIBGCC_SPEC is not directly used by the driver program but is instead
3083
+ * modified to refer to different versions of 'libgcc.a' depending on the
3084
+ * values of the command line flags '-static', '-shared', '-static-libgcc',
3085
+ * and '-shared-libgcc'.  On targets where these modifications are
3086
+ * inappropriate, define REAL_LIBGCC_SPEC instead.  REAL_LIBGCC_SPEC tells the
3087
+ * driver how to place a reference to 'libgcc' on the link command line, but
3088
+ * unlike LIBGCC_SPEC, it is used unmodified.
3089
+ */
3090
+#define        REAL_LIBGCC_SPEC        ""
3091
+
3092
+// USE_LD_AS_NEEDED
3093
+// LINK_EH_SPEC
3094
+
3095
+/* STARTFILE_SPEC ... Another C string constant used much like LINK_SPEC.  The
3096
+ * difference between the two is that STARTFILE_SPEC is used at the very
3097
+ * beginning of the command given to the linker.
3098
+ *
3099
+ * If this macro is not defined, a default is provided that loads the standard
3100
+ * C startup file from the usual place.  See 'gcc.c'
3101
+ */
3102
+#undef STARTFILE_SPEC
3103
+#define        STARTFILE_SPEC  ""
3104
+
3105
+/* ENDFILE_SPEC ... Another C string constant used much like LINK_SPEC.  The
3106
+ * difference between the two is that ENDFILE_SPEC is used at the very end
3107
+ * of the command given to the linker.
3108
+ *
3109
+ * Do not define this macro if it does not do anything.
3110
+ */
3111
+// #undef      ENDFILE_SPEC
3112
+// #define     ENDFILE_SPEC    ""
3113
+
3114
+// THREAD_MODEL_SPEC
3115
+// SYSROOT_SUFFIX_SPEC
3116
+// SYSROOT_HEADERS_SUFFIX_SPEC
3117
+// EXTRA_SPECS
3118
+// LINK_LIBGCC_SPECIAL_1
3119
+// LINK_GCC_C_SEQUENCE_SPEC
3120
+// LINK_COMMAND_SPEC
3121
+// TARGET_ALWAYS_STRIP_DOTDOT
3122
+// MULTILIB_DEFAULTS
3123
+// RELATIVE_PREFIX_NOT_LINKDIR
3124
+// MD_EXEC_PREFIX
3125
+// STANDARD_STARTFILE_PREFIX
3126
+// STANDARD_STARTFILE_PREFIX_1
3127
+// STANDARD_STARTFILE_PREFIX_2
3128
+// MD_STARTFILE_PREFIX
3129
+// MD_STARTFILE_PREFIX_1
3130
+// INIT_ENVIRONMENT
3131
+// LOCAL_INCLUDE_DIR
3132
+#undef LOCAL_INCLUDE_DIR
3133
+
3134
+// NATIVE_SYSTEM_HEADER_COMPONENT
3135
+// INCLUDE_DEFAULTS
3136
+
3137 102 dgisselq
+/* 17.03 Run-time Target Specification */
3138
+
3139
+/* TARGET_CPU_CPP_BUILTINS() ... This function-like macro expands to a block of
3140
+ * code that defines built-in preprocessor macros and assertions for the target
3141
+ * CPU, using the functions builtin_define, builtin_define_std, and
3142
+ * builtin_assert.  When the front end calls this macro it provides a trailing
3143
+ * semicolon, and since it has finished command line option proccessing your
3144
+ * code can use those results freely.
3145
+ *
3146
+ * ZipCPU --- We should probably capture in this macro what capabilities the
3147
+ * command line parameters we've been given indicate that our CPU has.  That
3148
+ * way, code can be adjusted depending upon the CPU's capabilities.
3149
+ */
3150
+#define        TARGET_CPU_CPP_BUILTINS()                       \
3151
+       { builtin_define("__ZIPCPU__");                 \
3152
+       if (ZIP_FPU) builtin_define("__ZIPFPU__");      \
3153
+       if (ZIP_ATOMIC) builtin_define("__ZIPATOMIC__");        \
3154
+       }
3155
+       // If (zip_param_has_fpu)  builtin_define("__ZIPFPU__");
3156
+       // If (zip_param_has_div)  builtin_define("__ZIPDIV__");
3157
+       // If (zip_param_has_mpy)  builtin_define("__ZIPMPY__");
3158
+       // If (zip_param_has_lock) builtin_define("__ZIPLOCK__");
3159
+       // If (zip_param_supervisor) builtin_define("__ZIPUREGS__");
3160
+       // If (we support int64s) builtin_define("___int64_t_defined");
3161
+
3162
+/* TARGET_OS_CPP_BUILTINS() ... Similarly to TARGET_CPU_CPP_BUILTINS but this
3163
+ * macro is optional and is used for the target operating system instead.
3164
+ */
3165
+
3166
+/* Option macros: (we need to define these eventually ... )
3167
+ *
3168
+ *     TARGET_HANDLE_OPTION
3169
+ *     TARGET_HANDLE_C_OPTION
3170
+ *     TARGET_OBJ_CONSTRUCT_STRING_OBJECT
3171
+ *     TARGET_OBJ_DECLARE_UNRESOLVED_CLASS_REFERENCE
3172
+ *     TARGET_OBJ_DECLARE_CLASS_DEFINITION
3173
+ *     TARGET_STRING_OBJECT_REF_TYPE_P
3174
+ *     TARGET_CHECK_STRING_OBJECT_FORMAT_ARG
3175
+ *     TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE(VOID)
3176
+ *     C_COMMON_OVERRIDE_OTPTIONS
3177
+ *     TARGET_OPTION_OPTIMIZATION_TABLE
3178
+ *     TARGET_OPTION_INIT_STRUCT
3179
+ *     TARGET_OPTION_DEFAULT_PARAMS
3180
+ */
3181
+
3182
+/* SWITCHABLE_TARGET
3183
+ *
3184
+ * Zip CPU doesn't need this, so it defaults to zero.  No need to change it
3185
+ * here.
3186
+ */
3187
+
3188
+/* TARGET_FLOAT_EXCEPTIONS_ROUNDING_SUPPORTED_P(VOID) ... Returns true if the
3189
+ * target supports IEEE 754 floating-point exceptions and rounding modes, false
3190
+ * otherwise.  This is intended to relate to the float and double types, but not
3191
+ * necessarily "long double".  By default, returns true if the adddf3
3192
+ * instruction pattern is available and false otherwise, on the assumption that
3193
+ * hardware floating point supports exceptions and rounding modes but software
3194
+ * floating point does not.
3195
+ *
3196
+ * ZipCPU floating point is barely going to be functional, I doubt it will
3197
+ * support all of these bells and whistles when full functionality is even
3198
+ * achieved.  Therefore, we won't support these modes.  However, we can't just
3199
+ * set this to zero, so let's come back to this.
3200
+ */
3201
+// #warning "Wrong answer encoded to date"
3202 103 dgisselq
+// #undef      TARGET_FLOAT_EXCEPTIONS_ROUNDING_SUPPORTED_P
3203 102 dgisselq
+// #define     TARGET_FLOAT_EXCEPTIONS_ROUNDING_SUPPORTED_P(X) 0
3204
+
3205
+/* 17.04 Defining data structures for per-function information */
3206
+
3207
+/* INIT_EXPANDERS ... Macro called to initialize any target specific
3208
+ * information.  This macro is called once per function, before generation of
3209
+ * any RTL has begun.  The intention is to allow the initialization of the
3210
+ * function pointer init_machine_status.
3211
+ */
3212
+// #warning "I may need to define this to handle function return addresses ..."
3213
+
3214
+/* 17.05 Storage Layout */
3215
+
3216
+/* Storage Layout */
3217
+#define        BITS_BIG_ENDIAN         0        // MSB has highest number
3218
+#define        BYTES_BIG_ENDIAN        1       // 1 if MSB is lowest number
3219
+#define        WORDS_BIG_ENDIAN        1       // 1 if MSW is lowest number
3220
+#define        FLOAT_WORDS_BIG_ENDIAN  1
3221
+#define        BITS_PER_WORD           32
3222
+// #define     MAX_BITS_PER_WORD       // defaults to BITS_PER_WORD
3223
+#define        UNITS_PER_WORD          1       // Storage units in a word, pwr of 2:1-8
3224
+#define        MIN_UNITS_PER_WORD      1       // Default is UNITS_PER_WORD
3225
+/* POINTER_SIZE ... Width of a pointer in bits.  You must specify a value no
3226
+ * wider than the width of Pmode.  If it is not equal to the width of Pmode,
3227
+ * you must define POINTERS_EXTEND_UNSIGNED. If you do not specify a value the
3228
+ * default is BITS_PER_WORD.
3229
+ *
3230
+ * ZipCPU --- All of our pointers are 32-bits, the width of our address bus.
3231
+ */
3232
+#define        POINTER_SIZE            32      // Ptr width in bits
3233
+/* POINTERS_EXTEND_UNSIGNED ... A C expression that determines how pointers
3234
+ * should be extended from ptr_mode to either Pmode or word_mode.  It is greater
3235
+ * than zero if pointers should be zero-extended, zero if they should be sign
3236
+ * extended, and negative if some other conversion is needed.  In the last case,
3237
+ * the extension is done by the target's ptr_extend instruction.
3238
+ *
3239
+ * You need not define this macro if the ptr_mode, Pmode, and word_mode are all
3240
+ * the same width.
3241
+ *
3242
+ * ZipCPU --- While we shouldn't need this, QImode and HImode have the same
3243
+ * number of bits as SImode.  Therefore, one might wish to convert between the
3244
+ * two.  Hence, we specify how we would do that here.
3245
+ */
3246
+#define        POINTERS_EXTEND_UNSIGNED        0
3247
+
3248
+/* PROMOTE_MODE(m,unsignedp,type) ... A macro to update m and unsignedp when an
3249
+ * object whose type is type and which has he specified mode and signedness is
3250
+ * to be stored in a register.  This macro is only called when type is a scalar
3251
+ * type.
3252
+ *
3253
+ * On most RISC machines, which only have operations that operate on a full
3254
+ * register, define this macro to set m to word_mode if m is an integer mode
3255
+ * narrower than BITS_PER_WORD.  In most cases, only integer modes should be
3256
+ * widened because wider precision floating-point operations are usually more
3257
+ * expensive than their narrower counterparts.
3258
+ *
3259
+ * For most machines, the macro definition does not change unsigndep.  However,
3260
+ * some machines, have instructions that preferentially handle either signed or
3261
+ * unsigned quantities of certain modes.  For example, on the DEC Alpha, 32-bit
3262
+ * loads from memory and 32-bit add instructions sign-extend the result to
3263
+ * 64-bits. On such machines, set unsignedp according to which kind of extension
3264
+ * is more efficient.
3265
+ *
3266
+ * Do not define this macro if it would never modify m.
3267
+ *
3268
+ * ZipCPU --- We need to always (if possible) promote everything to SImode where
3269
+ * we can handle things.  HImode and QImode just don't make sense on this CPU.
3270
+ */
3271
+#define        PROMOTE_MODE(M,U,T)     if ((GET_MODE_CLASS(M)==MODE_INT)&&(GET_MODE_SIZE(M)<2)) (M)=SImode;
3272
+
3273
+// TARGET_PROMOTE_FUNCTION_MODE
3274
+/* PARM_BOUNDARY ... Normal alignment required for function parameters on the
3275
+ * stack, in bits.  All stack parameters receive at least this much alignment
3276
+ * regardless of data type.  On most machines, this is the same as the size of
3277
+ * an integer.
3278
+ */
3279
+#define        PARM_BOUNDARY   32
3280
+
3281
+/* STACK_BOUNDARY ... Define this macro to the minimum alignment enforced by
3282
+ * hardware for the stack pointer on this machine.  The definition is a C
3283
+ * expression for the desired alignment (measured in bits).  This value is used
3284
+ * as a default if PREFERRED_STACK_BOUNDARY is not defined.  On most machines,
3285
+ * this should be the same as PARM_BOUNDARY.
3286
+ */
3287
+#define        STACK_BOUNDARY  PARM_BOUNDARY
3288
+
3289
+/* PREFERRED_STACK_BOUNDARY ... Define this ... */
3290
+
3291
+/* INCOMING_STACK_BOUNDARY
3292
+ */
3293
+
3294
+/* FUNCTION_BOUNDARY ... Alignment required for a function entry point, in bits.
3295
+ */
3296
+#define        FUNCTION_BOUNDARY       32
3297
+
3298
+/* BIGGEST_ALIGNMENT ... Biggest alignment that any data type can require on
3299
+ * this machine, in bits.  Note that this is not the biggest alignment that is
3300
+ * supported, just the biggest alignment that, when violated, may cause a fault.
3301
+ */
3302
+#define BIGGEST_ALIGNMENT      32
3303
+
3304
+/* MINIMUM_ATOMIC_ALIGNMENT ... If defined, the smallest alignment, that can be
3305
+ * given to an object that can be referenced in one operation, without
3306
+ * disturbing any nearby object.  Normally, this is BITS_PER_UNIT, but may be
3307
+ * larger on machines that don't have byte or halfword store operations.
3308
+ */
3309
+#define        MINIMUM_ATOMIC_ALIGNMENT        BITS_PER_UNIT
3310
+
3311
+/* STRICT_ALIGNMENT ... Set this nonzero if move instructions will actually
3312
+ * fail to work when given unaligned data.  If instructions will merely go
3313
+ * slower in that case, define this macro as 0.
3314 125 dgisselq
+ *
3315
+ * ZipCPU -- Since we have defined our smallest addressable unit to be a 32-bit
3316
+ * word (one byte, on our machine), and since reading any amount of 32-bit words
3317
+ * is easy, then there really are no instructions that will ever fail.
3318 102 dgisselq
+ */
3319 125 dgisselq
+#define        STRICT_ALIGNMENT        0
3320 102 dgisselq
+
3321
+/* MAX_FIXED_MODE_SIZE ... An integer expression for the size in bits of the
3322
+ * largest integer machine mode that should actually be used.  All integer
3323
+ * machine modes of this size or smaller can be used for structures and unions
3324
+ * with the appropriate sizes.  If this macro is undefined,
3325
+ * GET_MODE_BITSIZE(DImode) is assumed.
3326
+ *
3327
+ * ZipCPU ... Get_MOD_BITSIZE(DImode) will be 64, and this is really not the
3328
+ * size on bits of the largest integer machine mode.  However, that's the case
3329
+ * with most DI implementations: A long is two words, spliced together.  We'd
3330
+ * like to support that eventually, but we need to get there.  Hence, let's use
3331
+ * compile time flag (ZIP_HAS_DI) that we can enable when we're ready.
3332
+ */
3333
+#if (ZIP_HAS_DI != 0)
3334
+#define        MAX_FIXED_MODE_SIZE     64
3335
+#else
3336
+#define        MAX_FIXED_MODE_SIZE     32
3337
+#endif
3338
+
3339
+
3340
+/* 17.06 Layout of Source Language Data Types */
3341
+
3342
+#undef CHAR_TYPE_SIZE
3343
+#undef SHORT_TYPE_SIZE
3344
+#undef INT_TYPE_SIZE
3345
+#undef LONG_TYPE_SIZE
3346
+#undef LONG_LONG_TYPE_SIZE
3347
+//
3348
+#define        CHAR_TYPE_SIZE  32
3349
+#define        SHORT_TYPE_SIZE 32
3350
+#define        INT_TYPE_SIZE   32
3351
+#define        LONG_TYPE_SIZE  32
3352
+#define        LONG_LONG_TYPE_SIZE     64
3353
+// BOOL_TYPE_SIZE defaults to CHAR_TYPE_SIZE
3354
+#undef FLOAT_TYPE_SIZE
3355
+#undef DOUBLE_TYPE_SIZE
3356
+#undef LONG_DOUBLE_TYPE_SIZE
3357
+#define        FLOAT_TYPE_SIZE         32
3358
+#define        DOUBLE_TYPE_SIZE        FLOAT_TYPE_SIZE // Zip CPU doesn't support dbls
3359
+#define        LONG_DOUBLE_TYPE_SIZE   64      // This'll need to be done via emulation
3360
+// SHORT_FRAC_TYPE_SIZE
3361
+// LONG_FFRACT_TYPE_SIZE
3362
+// LONG_LONG_FRACT_TIME_SIZE
3363
+#undef SHORT_ACCUM_TYPE_SIZE
3364
+#undef ACCUM_TYPE_SIZE
3365
+#undef LONG_ACCUM_TYPE_SIZE
3366
+#define        SHORT_ACCUM_TYPE_SIZE   SHORT_TYPE_SIZE
3367
+#define        ACCUM_TYPE_SIZE         INT_TYPE_SIZE
3368
+#define        LONG_ACCUM_TYPE_SIZE    LONG_TYPE_SIZE
3369
+
3370
+/* LIBGCC2_GNU_PREFIX ... This macro corresponds to the TARGET_GNU_PREFIX target
3371
+ * hook and should be defined if that hook is overriden to be true.  It causes
3372
+ * function names in libgcc to be changed to use a __gnu_ prefix for their name
3373
+ * rather than the default __.  A port which uses this macro should also arrange
3374
+ * to use t-gnu-prefix in the libgcc config.host.
3375
+ *
3376
+ * ZipCPU -- I see no reason to define and therefore change this behavior.
3377
+ */
3378
+
3379
+/* TARGET_FLT_EVAL_METHOD ... A C expression for the value for FLT_EVAL_METHOD
3380
+ * in float.h,, assuming, if applicable, that the floating-point control word
3381
+ * is in its default state.  If you do not define this macro the value of
3382
+ * FLT_EVAL_METHOD will be zero.
3383
+ *
3384
+ * ZipCPU --- ???
3385
+ */
3386
+
3387
+/* WIDEST_HARDWARE_FP_SIZE ... A C expression for the size in bits of the widest
3388
+ * floating-point format supported by the hardware.  If you define this macro,
3389
+ * you must specify a value less than or equal to the value of LONG_DOUBLE_...
3390
+ * If you do not define this macro, the value of LONG_DOUBLE_TYPE_SIZE is the
3391
+ * default.
3392
+ *
3393
+ * ZipCPU supports 32-bit IEEE floats--IF THE SUPPORT IS COMPILED IN!  This
3394
+ * really needs to be determined, then, based upon a compile time parameter
3395
+ * where the one compiling the code states whether or not the H/W even has
3396
+ * floating point support.
3397
+ *
3398
+ * For now, we'll assume it does--but once we implement GCC parameters, we'll
3399
+ * need to change this.
3400
+ */
3401
+#undef WIDEST_HARDWARE_FP_SIZE
3402
+// #warning "Definition needs to change if no FPU present"
3403
+#define        WIDEST_HARDWARE_FP_SIZE FLOAT_TYPE_SIZE
3404
+
3405
+/* DEFAULT_SIGNED_CHAR ... An expression whose value is 1 or 0, according to
3406
+ * whether the type char should be signed or unsigned by default.  The user
3407
+ * can always override this default with the options -fsigned-char and
3408
+ * -funsigned-char.
3409
+ *
3410
+ * ZipCPU--let's go with the default behavior.
3411
+ */
3412
+#define        DEFAULT_SIGNED_CHAR     1
3413
+
3414
+/* TARGET_DEFAULT_SHORT_ENUMS(VOID) ... This target hook should return true if
3415 103 dgisselq
+ * the compiler should give an enum type only as many bytes as it takes to
3416 102 dgisselq
+ * represent the range of possible values of that type.  It should return
3417
+ * false if all enum types should be allocated like int.
3418
+ *
3419
+ * The default is to return false.  This is what the ZipCPU needs, so we won't
3420
+ * override it.
3421
+ */
3422
+
3423
+/* SIZE_TYPE ... A C expression for a string describing the name of the data
3424
+ * type to use for size values.  The typedef name size_t is defined using the
3425
+ * contents of the string.
3426
+ *
3427
+ * If you don't define this macro, the default is "long unsigned int".  Since
3428
+ * on the ZipCPU this is a 32-bit number, and all ZipCPU values are 32-bits,
3429
+ * the default seems perfect for us.
3430
+ */
3431
+#define        SIZE_TYPE       "unsigned int"
3432
+
3433
+/* SIZETYPE ... GCC defines internal types () for expressions dealing with size.
3434
+ * This macro is a C expression for a string describing the name of the data
3435
+ * type from which the precision of sizetype is extracted.  The string has the
3436
+ * same restrictions as SIZE_TYPE string.  If you don't define this macro, the
3437
+ * default is SIZE_TYPE --- which seems good enough for us.
3438
+ */
3439
+
3440
+/* PTRDIFF_TYPE ... A C expression for a string describing the name of the data
3441
+ * type to use fo rthe result of subtracting two pointers.  The typedef name
3442
+ * ptrdiff_t is defined using the contents of the string.  See SIZE_TYPE for
3443
+ * more information.
3444
+ *
3445
+ * The default is "long int" which for the ZipCPU is 32-bits---still good enough
3446
+ * for us.
3447
+ */
3448
+#define        PTRDIFF_TYPE    "int"
3449
+
3450
+/* WCHAR_TYPE ... A C expression for a string describing the name of the data
3451
+ * type to use for wide characters.  The typedef name wchar_t is defined using
3452
+ * the contents of  the string.  If you don't define this macro, the default is
3453
+ * 'int'--good enough for ZipCPU.
3454
+ */
3455
+
3456
+/* WCHAR_TYPE_SIZE ... A C expression for the size in bits of the data type for
3457
+ * wide characters.  This is used in cpp, which cannot make use of WCHAR_TYPE.
3458
+ */
3459
+#undef WCHAR_TYPE_SIZE
3460
+#define        WCHAR_TYPE_SIZE 32
3461
+
3462
+/* WINT_TYPE ... A C expression for a string describing the name of the data
3463
+ * type to use for wide characters passed to printf and returned from getwc.
3464
+ * The typedef name wint_t is defined using the contents of the string.  See
3465
+ *
3466 103 dgisselq
+ * ZipCPU -- If you don't define this macro, the default is "unsigned int"--also
3467
+ * best for us again.
3468 102 dgisselq
+ */
3469
+
3470
+/* INTMAX_TYPE ... A C expression for a string describing the name of the
3471
+ * data type that can represent any value of any standard or extended signed
3472
+ * integer type.  The typedef name intmax_t is defined using the contents of
3473
+ * the string.
3474
+ *
3475
+ * If you don't define this macro, the default is the first of "int", "long int"
3476
+ * or "long long int" that has as much precision as "long long int".
3477
+ */
3478
+
3479
+/* UINTMAX_TYPE ... same as INTMAX_TYPE, but for unsigned
3480
+ */
3481
+
3482
+#undef SIG_ATOMIC_TYPE
3483
+#if (ZIP_ATOMIC != 0)
3484
+#define        SIG_ATOMIC_TYPE "int"
3485
+#else
3486
+#define        SIG_ATOMIC_TYPE NULL    // We have no atomic types, but registers
3487
+#endif
3488
+#undef INT8_TYPE
3489
+#define        INT8_TYPE               NULL    // We have no 8-bit integer type
3490
+#undef INT16_TYPE
3491
+#define        INT16_TYPE              NULL
3492
+#undef INT32_TYPE
3493
+#define        INT32_TYPE              "int"
3494
+#undef UINT8_TYPE
3495
+#define        UINT8_TYPE              NULL
3496
+#undef UINT16_TYPE
3497
+#define        UINT16_TYPE             NULL
3498
+#undef UINT32_TYPE
3499
+#define        UINT32_TYPE             "unsigned int"
3500
+#undef INT_LEAST8_TYPE
3501
+#define        INT_LEAST8_TYPE         "int"
3502
+#undef INT_LEAST16_TYPE
3503
+#define        INT_LEAST16_TYPE        "int"
3504
+#undef INT_LEAST32_TYPE
3505
+#define        INT_LEAST32_TYPE        "int"
3506
+#undef UINT_LEAST8_TYPE
3507
+#define        UINT_LEAST8_TYPE        "unsigned int"
3508
+#undef UINT_LEAST16_TYPE
3509
+#define        UINT_LEAST16_TYPE       "unsigned int"
3510
+#undef UINT_LEAST32_TYPE
3511
+#define        UINT_LEAST32_TYPE       "unsigned int"
3512
+#undef INT_FAST8_TYPE
3513
+#define        INT_FAST8_TYPE          "int"
3514
+#undef INT_FAST16_TYPE
3515
+#define        INT_FAST16_TYPE         "int"
3516
+#undef INT_FAST32_TYPE
3517
+#define        INT_FAST32_TYPE         "int"
3518
+#undef UINT_FAST8_TYPE
3519
+#define        UINT_FAST8_TYPE         "unsigned int"
3520
+#undef UINT_FAST16_TYPE
3521
+#define        UINT_FAST16_TYPE        "unsigned int"
3522
+#undef UINT_FAST32_TYPE
3523
+#define        UINT_FAST32_TYPE        "unsigned int"
3524
+#undef INTPTR_TYPE
3525
+#define        INTPTR_TYPE             "unsigned int"
3526
+#undef UINTPTR_TYPE
3527
+#define        UINTPTR_TYPE            "unsigned int"
3528
+
3529
+#undef INT64_TYPE
3530
+#undef UINT64_TYPE
3531
+#undef INT_LEAST64_TYPE
3532
+#undef UINT_LEAST64_TYPE
3533
+#undef INT_FAST64_TYPE
3534
+#undef UINT_FAST64_TYPE
3535
+
3536
+#if (ZIP_HAS_DI != 0)
3537
+#define        INT64_TYPE              "long int"
3538
+#define        UINT64_TYPE             "long unsigned int"
3539
+#define        INT_LEAST64_TYPE        "long int"
3540
+#define        UINT_LEAST64_TYPE       "long unsigned int"
3541
+#define        INT_FAST64_TYPE         "long int"
3542
+#define        UINT_FAST64_TYPE        "long unsigned int"
3543
+#else
3544
+#define        INT64_TYPE              NULL
3545
+#define        UINT64_TYPE             NULL
3546
+#define        INT_LEAST64_TYPE        NULL
3547
+#define        UINT_LEAST64_TYPE       NULL
3548
+#define        INT_FAST64_TYPE         NULL
3549
+#define        UINT_FAST64_TYPE        NULL
3550
+#endif
3551
+
3552
+#define        TARGET_PTRMEMFUNC_VBI_LOCATION  ptrmemfunc_vbit_in_pfn
3553
+
3554
+
3555
+/* 17.07 Register Usage / Register definitions */
3556
+
3557
+/* FIRST_PSEUDO_REGISTER ... Number of hardware registers known to the compiler.
3558
+ * They receive numbers 0 through FIRST_PSEUDO_REGISTER-1; thus the first
3559
+ * pseudo register's numbrer really is assigned the number
3560
+ * FIRST_PSEUDO_REGISTER.
3561
+ *
3562
+ * ZipCPU---There are 16 registers in the ZipCPU, numbered 0-15 with the CC
3563
+ * and PC register being numbered 14 and 15 respectively.  Therefore, the
3564
+ * compiler can take register number 16 and above and do whatever it wants
3565
+ * with it.
3566
+ */
3567
+#ifdef DEFINE_USER_REGS
3568 103 dgisselq
+#  define      FIRST_PSEUDO_REGISTER   32
3569 102 dgisselq
+#else
3570 103 dgisselq
+#  ifdef       zip_FP_PSEUDO
3571
+#    define    FIRST_PSEUDO_REGISTER   (zip_FP_PSEUDO+1)
3572
+#  else
3573
+#    define    FIRST_PSEUDO_REGISTER   16
3574
+#  endif
3575 102 dgisselq
+#endif
3576
+
3577
+/* FIXED_REGISTERS ... An initializer that says which registers are used for
3578
+ * fixed purposes all throughout the compiled code and are therefore not
3579
+ * available for general allocation.  These would include the stack pointer, the
3580
+ * frame pointer (except on machines where that can be used as a general
3581
+ * register when no frame pointer is needed), the program counter on machines
3582
+ * where that is considered one of the addressable registers, and any other
3583
+ * numbered register with a standard use.
3584
+ *
3585
+ * This information is expressed as a sequence of numbers, separated by commas,
3586
+ * and surrounded by braces.  The nth number is 1 if register n is fixed, 0
3587
+ * otherwise.
3588
+ *
3589
+ * For the Zip CPU, we have three fixed registers that are not available for
3590
+ * general allocation:
3591
+ *
3592
+ *     SP      The stack pointer
3593
+ *     CC      The condition codes and CPU state register
3594
+ *     PC      The program counter
3595
+ *
3596
+ * Other registers, such as FP (the frame pointer) or GBL (the global offset
3597
+ * table pointer) are registers that we hope will not be so fixed.
3598
+ */
3599 103 dgisselq
+#ifdef zip_FP_PSEUDO
3600
+#  define      FIXED_REGISTERS         { 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1 }
3601
+#else
3602
+#  define      FIXED_REGISTERS         { 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1 }
3603
+#endif
3604 102 dgisselq
+
3605
+/* CALL_USED_REGISTERS ... like FIXED_REGISTERS but has 1 for each register
3606
+ * that is clobbered (in general) by function calls as well as for fixed
3607
+ * registers.  This macro therefore identifies the registers that are not
3608
+ * available for general allocation of values that must live across function
3609
+ * calls.
3610
+ *
3611
+ * If a register has 0 in CALL_USED_REGISTERS, the compiler automatically saves
3612
+ * it on function entry and restores it on function exit, if the register is
3613
+ * used within the function.
3614
+ *
3615
+ * On the Zip CPU, we must save R0 (the return address), and (let's pick) any
3616
+ * register above R5.
3617
+ */
3618 103 dgisselq
+#ifdef zip_FP_PSEUDO
3619
+#  define      CALL_USED_REGISTERS     { 0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1 }
3620
+#else
3621
+#  define      CALL_USED_REGISTERS     { 0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1 }
3622
+#endif
3623 102 dgisselq
+
3624
+/* CALL_REALLY_USED_REGISTERS ...  optional macro that, if not defined, defaults
3625
+ * to the value of CALL_USED_REGISTERS.
3626
+ */
3627
+
3628
+/* HARD_REGNO_CALL_PART_CLOBBERED(REGNO,MODE) ... A C expression that is nonzero
3629
+ * if it is not permissible to store a value of mode MODE in hard register REGNO
3630
+ * across a call without some part of it being clobbbered.  For most machines,
3631
+ * this macro need not be defined.  It is only required for machines that do
3632 103 dgisselq
+ * not preserve the entire contents of a register across a call.
3633 102 dgisselq
+ *
3634
+ * In the Zip CPU, we clobber R0 with our return address during a call, so let's
3635
+ * make sure this gets included here.
3636
+ */
3637
+#define        HARD_REGNO_CALL_PART_CLOBBERED(REGNO,MODE)      (REGNO==0)
3638
+
3639
+/* TARGET_CONDITIONAL_REGISTER_USAGE(VOID) ... This hook may conditionally
3640
+ * modify five variables fixed_regs, call_used_regs, global_regs, reg_names, and
3641
+ * reg_class_contents, to take into account any dependence of these register
3642
+ * sets on target flags.  The first three of these are of type char[]
3643
+ * (interpreted as Boolean vectors).  global_regs is a const char *[] and
3644
+ * reg_class_contents is a HARD_REG_SET.  Before the macro is called,
3645
+ * fixed_regs, call_used_regs, reg_class_contents, and reg_names have been
3646
+ * initialized from FIXED_REGISTERS, CALL_USED_REGISTERS, REG_CLASS_CONTENTS,
3647
+ * and REGISTER_NAMES, respectively.  global_regs has been cleared, and any
3648
+ * -ffixed-reg, -fcall-used-reg, and -fcall-saved-reg command options have been
3649
+ * applied.
3650
+ *
3651
+ * ZipCPU -- I may need to return and define this depending upon how FP and
3652
+ * GBL register allocation go.  But for now, we'll leave this at its default
3653
+ * value.
3654
+ */
3655
+// #warning "Revisit me after FP and GBL allocation"
3656
+
3657
+/* INCOMING_REGNO(out) ... Define this macro if the target machine has register
3658
+ * windows. ...
3659
+ *
3660
+ * Zip CPU has no register windows.
3661
+ */
3662
+
3663
+/* OUTGOING_REGNO ... same thing.
3664
+ */
3665
+
3666
+/* LOCAL_REGNO ... same thing.
3667
+ */
3668
+
3669
+/* PC_REGNUM ... If the program counter has a register number, define this as
3670
+ * that register number.  Otherwise do not define it.
3671
+ */
3672
+#define        PC_REGNUM       zip_PC
3673
+
3674
+
3675
+/* REG_ALLOC_ORDER ... If defined, an initializer for a vector of integers,
3676
+ * containing the number of hard registers in the order in which GCC should
3677
+ * prefer to use them (from most preferred to least.
3678
+ *
3679 103 dgisselq
+ * If this macro is not defined, registers are used lowest numbered first (all
3680 102 dgisselq
+ * else being equal).
3681
+ *
3682
+ * Since the default is the ZipCPU desired case, we won't define this here.
3683
+ */
3684
+
3685
+/* ADJUST_REG_ALLOC_ORDER ... on most machines it is not necessary to define
3686
+ * this macro, so we won't either.
3687
+ */
3688
+
3689
+/* HONOR_REG_ALLOC_ORDER ...
3690
+ */
3691
+
3692
+/* HONOR_REG_ALLOC_ORDER ... on most machines it is not necessary to define
3693
+ * this macro, so we won't either.
3694
+ */
3695
+
3696
+/* HARD_REGNO_NREGS(REGNO, MODE) ... A C expression for the number of
3697
+ * consecutive hard registers, starting at register number REGNO, required to
3698
+ * hold a value of mode MODE.
3699
+ *
3700
+ * On a machine where all registers are exactly one word, a suitable definition
3701
+ * is given of ((GET_MODE_SIZE(MODE)+UNITS_PER_WORD-1)/UNITS_PER_WORD.
3702
+ *
3703
+ * On ZipCPU, we might do
3704
+ *     ((((MODE)==DImode)||((MODE)==DFmode))?2:1)
3705
+ * but I think the default (above) code should work as well.  Hence, let's stick
3706
+ * with the default, lest someone try to create larger modes (TImode, OImode,
3707
+ * XImode) and expect us to follow them properly some how.
3708
+ *
3709
+ * Okay, now in hind sight, we know that the default doesn't work for our
3710
+ * architecture, since GET_MODE_SIZE(SImode)=4, not 1.  Thus, let's rearrange
3711
+ * this expression to work in bits rather than in bytes and we'll know more
3712
+ * of what we are doing.
3713
+ */
3714
+#undef HARD_REGNO_NREGS
3715
+#define        HARD_REGNO_NREGS(REGNO, MODE)   ((GET_MODE_SIZE(MODE)+UNITS_PER_WORD-1)\
3716
+               / (UNITS_PER_WORD))
3717
+
3718
+/* HARD_REGNO_NREGS_HAS_PADDING(REGNO,MODE) ... A C expression that is nonzero
3719
+ * if a value of mode MODE, stored in memory, ends with padding that causes it
3720
+ * to take up more space than in registers starting at register number REGNO
3721
+ * (as determined by multiplying GCC's notion of the size of the register when
3722
+ * containing this mode by the number of registers returned by HARD_REGNO_NREGS)
3723
+ * By default this is zero.
3724
+ *
3725
+ * Zip CPU --- The default looks good enough to me.
3726
+ */
3727
+
3728
+/* HARD_REGNO_NREGS_WITH_PADDING(REGNO, MODE)
3729
+ *
3730
+ * ZipCPU ---
3731
+ */
3732
+
3733
+/* REGMODE_NATURAL_SIZE(MODE) -- Define this macro if the natural size of
3734
+ * registers that hold values of mode mode is not the word size.  It is a C
3735
+ * expression that should give the natural size in bytes for the specified mode.
3736
+ * It is used by the register allocator to try to optimize its results.
3737
+ *
3738
+ * ZipCPU ---
3739
+ */
3740
+// #define     REGMODE_NATURAL_SIZE(MODE)      (((MODE)==DImode)?2:1)
3741
+
3742
+/* HARD_REGNO_MODE_OK ... A C expression that is nonzero if it is permissible
3743 103 dgisselq
+ * to store a value of mode MODE in a hard register number REGNO (or in several
3744 102 dgisselq
+ * registers starting with that one).  For a machine where all registers are
3745
+ * equivalent, a suitable definition is '1'.  You need not include code to check
3746
+ * for the numbers of fixed registers, because the allocation mechanism
3747
+ * considered them to be always occupied.
3748
+ *
3749
+ * ZipCPU --- As long as you are already avoiding the fixed registers, the
3750
+ * suitable default definition mentioned above should be sufficient.
3751
+ */
3752
+#undef HARD_REGNO_MODE_OK
3753 103 dgisselq
+#define        HARD_REGNO_MODE_OK(R,M) (R<zip_CC)
3754 102 dgisselq
+
3755
+/* HARD_REGNO_RENAME_OK(FROM,TO) ... A C expression that is nonzero if it is
3756
+ * okay to rename a hard register FROM to another hard register TO.  One common
3757
+ * use of this macro is to prevernt renaming of a register to another register
3758
+ * that is not saved by a prologue in an interrupt handler.  The default is
3759
+ * always nonzero.
3760
+ *
3761
+ * ZipCPU --- The default looks good enough to us.
3762
+ */
3763
+#undef HARD_REGNO_RENAME_OK
3764
+#define        HARD_REGNO_RENAME_OK(FROM,TO)   ((is_ZIP_GENERAL_REG(FROM))&&(is_ZIP_GENERAL_REG(TO)))
3765
+
3766
+
3767
+/* MODES_TIABLE_P(M1, M2) ... A C expression that is nonzero if a value of mode
3768
+ * M1 is accessible in mode M2 without copying.
3769
+ *
3770
+ * ZipCPU --- well, that's true for us (although we support scant few modes) ...
3771
+ * so lets' set to one.
3772
+ */
3773
+#define        MODES_TIEABLE_P(M1,M2)  1
3774
+
3775
+/* TARGET_HARD_REGNO_SCRATCH_OK(REGNO)
3776
+ * This target hook should return true if it is OK to use a hard register
3777
+ * REGNO has a scratch register in peephole2.  One common use of this macro is
3778
+ * to prevent using of a register that is not saved by a prologue in an
3779
+ * interrupt handler.  The default version of this hook always returns true.
3780
+ *
3781
+ * ZipCPU --- the default works for us as well.  If you are in an interrupt
3782
+ * context, you have an entirely new set of registers (the supervisor set), so
3783
+ * this is a non-issue.
3784
+ */
3785
+
3786
+/* AVOID_CCMODE_COPIES ... define this macro if the compiler should avoid
3787
+ * copies to/from CCmode register(s).  You should only define this macro if
3788
+ * support for copying to/from CCmode is incomplete.
3789
+ *
3790
+ * ZipCPU --- CCmode register copies work like any other, so we'll keep with the
3791
+ * default definition.
3792
+ */
3793
+
3794
+/* STACK_REGS ... Define this if the machine has any stack-like registers.
3795
+ *
3796
+ * Zip CPU has no stack-like registers, as their definition is different from
3797
+ * the ZipCPU stack pointer register.
3798
+ */
3799
+
3800
+#define        ZIP_REG_BYTE_SIZE       1
3801
+
3802
+/* 17.08 Register Classes */
3803
+
3804
+/* enum reg_class ... An enumerate type that must be defined with all the
3805
+ * register class names as enumerated values.  NO_REGS must be first.  ALL_REGS
3806
+ * must be the last register class, followed by one more enumerated value,
3807
+ * LIM_REG_CLASSES, which is not a register class but rather tells how many
3808
+ * classes there are.
3809
+ *
3810
+ * ZipCPU --- We'll defined register 0-13 as general registers, 14-15 in
3811
+ * all_regs, and go from there.
3812
+ */
3813
+enum   reg_class {
3814
+       NO_REGS, GENERAL_REGS,
3815
+#ifdef DEFINE_USER_REGS
3816
+       USER_REGS,
3817
+#endif
3818
+       ALL_REGS, LIM_REG_CLASSES
3819
+};
3820
+
3821
+/* N_REG_CLASSES ... the number of distinct register classes, defined as follows
3822
+ */
3823
+#define        N_REG_CLASSES   (int)LIM_REG_CLASSES
3824
+
3825
+/* REG_CLASS_NAMES ... An initializer containing the names of the register
3826
+ * classes as C string constants.  These names are used in writing some of the
3827
+ * debugging dumps.
3828
+ */
3829
+#define        REG_CLASS_NAMES { "NO_REGS", "GENERAL_REGS", "ALL_REGS" }
3830
+
3831
+/* REG_CLASS_CONTENTS ... An initializer containing the contents of the register
3832
+ * classes, as integerss which are bit masks.  The nth integer specifies the
3833
+ * contents of class n.  That way the integer mask is interpreted as that
3834
+ * register r is in the class if (mask&(1<<r)) is 1.
3835
+ *
3836
+ * When the machine has more than 32 registers ... that's not us.
3837
+ *
3838
+ * ZipCPU --- This is straight forward, three register classes, etc.
3839
+ */
3840 103 dgisselq
+#ifdef zip_FP_PSEUDO
3841
+#define        REG_CLASS_CONTENTS { { 0x00000}, {0x13fff}, {0x1ffff} }
3842
+#else
3843 102 dgisselq
+#define        REG_CLASS_CONTENTS { { 0x00000}, {0x03fff}, {0x0ffff} }
3844 103 dgisselq
+#endif
3845 102 dgisselq
+
3846
+#ifdef DEFINE_USER_REGS
3847
+#define        REG_CLASS_NAMES { "NO_REGS", "GENERAL_REGS", "USER_REGS", "ALL_REGS" }
3848
+#define        REG_CLASS_CONTENTS { { 0x00000},{0x03fff},{0x0ffff0000},{0x0ffffffff} }
3849
+#define        FIXED_REGISTERS         { 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,  1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 }
3850
+#define        CALL_USED_REGISTERS     { 0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,  1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 }
3851
+#endif
3852
+
3853
+/* REGNO_REG_CLASS ... A C expression whose value is a register class
3854
+ * containing hard register REGNO.  In general there is more than one such
3855
+ * class;  Choose a class which is minimal, meaning that no smaller class also
3856
+ * contains the register.
3857
+ */
3858
+#undef REGNO_REG_CLASS
3859 103 dgisselq
+#ifdef zip_FP_PSEUDO
3860
+#define        REGNO_REG_CLASS(R)      (is_ZIP_REG(R)?((((R)<=13)||((R)==zip_FP_PSEUDO))?GENERAL_REGS:ALL_REGS):NO_REGS)
3861
+#else
3862 102 dgisselq
+#define        REGNO_REG_CLASS(R)      (is_ZIP_REG(R)?((R<=13)?GENERAL_REGS:ALL_REGS):NO_REGS)
3863 103 dgisselq
+#endif
3864 102 dgisselq
+
3865
+/* BASE_REG_CLASS ... A macro whose definition is the name of the class to which
3866
+ * a valid base register must belong.  A base register is one used in an address
3867
+ * which is the register value plus a displacement.
3868
+ */
3869
+#undef BASE_REG_CLASS
3870
+#define        BASE_REG_CLASS  GENERAL_REGS
3871
+
3872
+/* MODE_BASE_CLASS(MODE) ... This is a variation of the BASE_REG_CLASS macro
3873
+ * which allows the selection of a bse register in a mode dependent manner.  If
3874
+ * mode is VOIDmode then it should return the same value as BASE_REG_CLASS.
3875
+ */
3876
+#undef MODE_BASE_CLASS
3877
+#define        MODE_BASE_CLASS(MODE)   GENERAL_REGS
3878
+
3879
+/* MODE_BASE_REG_REG_CLASS(MODE) ... A C expression whose value is the register
3880
+ * class to which a valid base register must belong in order to be used in a
3881
+ * base plus index register address.  You should define this macro if base plus
3882
+ * index addresses have different requirements than other base register uses.
3883
+ *
3884
+ * Zip CPU does not support the base plus index addressing mode, thus ...
3885
+ */
3886 111 dgisselq
+// #undef      MODE_BASE_REG_REG_CLASS
3887
+// #define     MODE_BASE_REG_REG_CLASS(MODE)   NO_REGS
3888 102 dgisselq
+
3889
+/* INDEX_REG_CLASS ... A macro whose definition is the name of the class to
3890
+ * which a valid index register must belong.  An index register is one used in
3891
+ * an address where its value is either multiplied by a scale factor or added
3892
+ * to another register (as well as added to a displacement).
3893
+ *
3894
+ * ZipCPU -- Has no index registers.
3895
+ */
3896
+#undef INDEX_REG_CLASS
3897
+#define        INDEX_REG_CLASS NO_REGS
3898
+
3899
+/* REGNO_OK_FOR_BASE_P(NUM) ... A C expression which is nonzero if register
3900
+ * number num is suitable for use as a base register in operand addresses.
3901
+ */
3902
+#undef REGNO_OK_FOR_BASE_P
3903
+#ifdef DEFINE_USER_REGS
3904
+# define REGNO_OK_FOR_BASE_P(NUM)      ((NUM != zip_CC)&&(NUM < 16))
3905
+#else
3906
+# define REGNO_OK_FOR_BASE_P(NUM)      (NUM != zip_CC)
3907
+#endif
3908
+
3909
+/* REGNO_MODE_OK_FOR_BASE_P ... A C expressison that is just like
3910
+ * REGNO_OK_FOR_BASE_P, except that that expression may examine the mode of the
3911 111 dgisselq
+ * memory reference in MODE.  You should define this macro if the mode of the
3912 102 dgisselq
+ * memory reference affects whether a register may be used as a base register.
3913
+ *
3914
+ * ZipCPU --- the mode doesn't affect anything, so we don't define this.
3915
+ */
3916
+
3917
+/* REGNO_MODE_OK_FOR_REG_BASE_P(NUM, MODE) ... base plus index operand
3918
+ * addresses, accessing memory in mode mode.
3919
+ *
3920
+ * Use of this macro is deprecated.
3921
+ */
3922
+
3923 111 dgisselq
+/* REGNO_MODE_CODE_OK_FOR_BASE_P(N,M,AS,OC,IC) ... A C expression which is
3924 102 dgisselq
+ * nonzero if a register number N is suitable for use as a base register in
3925
+ * operand addresses, accessing memory in mode M in address space AS.  This is
3926
+ * similar to REGNO_MODE_OK_FOR_BASE_P, except that the expression may examine
3927
+ * the context in which the register appears in the memory reference.
3928
+ *
3929
+ * ZipCPU---We aren't specific in how we use our registers.
3930
+ */
3931
+#define        REGNO_MODE_CODE_OK_FOR_BASE_P(N,M,AS,OC,IC) REGNO_OK_FOR_BASE_P(N)
3932
+
3933
+/* REGNO_OK_FOR_INDEX_P(REGNO) ... A C expression which is nonzero if register
3934
+ * num is suitable for use as an index register in opernad addressess.  It may
3935
+ * be either a suitable hard register or a pseudo register that has been
3936 111 dgisselq
+ * allocated such as a hard register.
3937 102 dgisselq
+ *
3938
+ * ZipCPU has no index registers, therefore we declare this to be zero.
3939
+ */
3940
+#undef REGNO_OK_FOR_INDEX_P
3941
+#define        REGNO_OK_FOR_INDEX_P(REGNO)     0
3942
+
3943
+/* TARGET_PREFERRED_RENAME_CLASS(RCLASS) ... A target hook that places
3944
+ * additional preference on the register class to use when it is necessary to
3945
+ * rename a register in class RCLASS to another class, or perhaps NO_REGS, if no
3946
+ * preferred register class is found or hook preferred_rename_class is not
3947
+ * implemented.  SOmething returning a more restrictive class makes better code.
3948
+ * For example, on ARM, thumb-2 instructions using LO_REGS may be smaller than
3949
+ * instructions using GENERIC_REGS.  By returning LO_REGS from
3950
+ * preferred_rename_class, code size can be reduced.
3951
+ */
3952
+// #undef TARGET_PREFERRED_RENAME_CLASS
3953
+// #define     TARGET_PREFERRED_RENAME_CLASS(RCLASS)   RCLASS
3954
+
3955
+/* TARGET_PREFERRED_RELOAD_CLASS(X,RC) ... A target hook that places additional
3956
+ * restri tions on the register class to use when it is necessary to copy value
3957
+ * X into a register in class RC.  The value is a register class; rehaps RC, or
3958
+ * perhaps a smaller class.
3959
+ *
3960
+ * The default fversion of this hook always returns value of RC argument, which
3961
+ * sounds quite appropriate for the ZipCPU.
3962
+ */
3963
+
3964
+/* PREFERRED_RELOAD_CLASS(X,CLASS) ... A C expression that places additional
3965
+ * restrictions on the register class to use when it is necessary to copy
3966
+ * value X into a register in class CLASS.  On many machines, the following
3967
+ * definition is safe: PREFERRED_RELOAD_CLASS(X,CLASS) (CLASS)
3968
+ * Sometimes returning a more restrictive class makes better code.  For example,
3969
+ * on the 68k, when x is an integer constant that is in range for a moveq
3970
+ * instruction, the value of this macro is always DATA_REGS as long as CLASS
3971 111 dgisselq
+ * includes the data registers.  Requiring a data register guarantees that a
3972 102 dgisselq
+ * 'moveq' will be used.
3973
+ *
3974
+ * ZipCPU --- you can't load certain values into all members of ALL_REGS.  For
3975
+ * example, loading (sleep and !gie) into the CC register could halt the CPU.
3976
+ * Hence, we only allow loads into the GENERAL_REG class.
3977
+ */
3978
+#define        PREFERRED_RELOAD_CLASS(X, CLASS)        GENERAL_REGS
3979
+
3980
+/* TARGET_PREFERRED_OUTPUT_RELOAD_CLASS(RTX,RCLASS) ... Like TARGET_PREFERRED_..
3981
+ * RELOAD_CLASS, but for output instead of input reloads.
3982
+ *
3983
+ * ZipCPU --- there's gotta be a valid default behaviour for this.
3984
+ */
3985
+
3986
+/* LIMIT_RELOAD_CLASS(MODE, CL) ...
3987
+ *
3988
+ * Don't define this macro unless the target machine has limitations which
3989
+ * require the macro to do something nontrivial.  ZipCPU doesn't, so we won't.
3990
+ */
3991
+
3992
+/* TARGET_SECONDARY_RELOAD
3993
+ * SECONDARY_ ...
3994
+ * Don't think we need these ...
3995
+ */
3996
+
3997
+/* CLASS_MAX_NREGS(CLASS,MODE) ... A C expression for the maximum number of
3998
+ * consecutive registers of class CLASS needed to hold a value of mode MODE.
3999
+ *
4000
+ * This is closely related to the macro HARD_REGNO_NREGS.  In fact, the value
4001
+ * of the macro CLASS_MAX_REGS(CL,M) should be the maximum value of
4002
+ * HARD_REGNO_NREGS(REGNO,MODE) for all REGNO values in the class CLASS.
4003
+ *
4004
+ * This macro helps control the handling of multiple word values in the reload
4005
+ * pass.
4006
+ *
4007
+ * ZipCPU --- We'll just use HARDNO_REGNO_NREGS, since CLASS is independent for
4008
+ * us.  We'll also choose register R0, since ... well, since it simply doesn't
4009
+ * matter.  (HARD_REGNO_NREGS ignores this anyway)
4010
+ */
4011
+#define        CLASS_MAX_NREGS(CLASS, MODE)    HARD_REGNO_NREGS(0,MODE)
4012
+
4013
+/* CANNOT_CHANGE_MODE_CLASS
4014
+ * ???
4015
+ */
4016
+
4017
+/* TARGET_IRA_CHANGE_PSEUDO_ALLOCNO_CLASS
4018
+ */
4019
+
4020
+/* TARRGET_LRA_P
4021
+ * Default looks good.
4022
+ */
4023
+
4024
+/* TARGET_REGISTER_PRIORITY(INT) ... A target hook which returns the register
4025 111 dgisselq
+ * priority number to which the register HARD_REGNO belongs to.  The bigger the
4026 102 dgisselq
+ * number
4027
+ *
4028
+ * The default version of this target hook returns always zero---good enough for
4029
+ * the ZipCPU.
4030
+ */
4031
+
4032
+/* TARGET_REGISTER_USAGE_LEVELING_P(VOID) ... A target hook which returns true
4033
+ * if we need register usage leveling.  That means if a few hard registers are
4034
+ * equally good for the assignment, we choose the least used hard register.  The
4035
+ * register usage leveling may be profitable for some targets.  Don't use usage
4036
+ * leveling for targets with conditional execution or targets with big register
4037
+ * files as it hurts if-conversion and cross-jumping optimizations.  The default
4038
+ * version of this target hook returns always false.
4039
+ *
4040
+ * ZipCPU --- Default is the right answer.
4041
+ */
4042
+
4043
+/* TARGET_DIFFERENT_ADDR_DISPLACEMENT_P ...
4044
+ * Default looks good.
4045
+ */
4046
+
4047
+/* TARGET_CANNOT_SUBSTITUTE_MEM_EQUIV_P ...
4048
+ * Default looks good.
4049
+ */
4050
+
4051
+/* TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT ....
4052
+ */
4053
+
4054
+/* TARGET_SPILL_CLASS
4055
+ *
4056
+ * ZipCPU --- If we were running in supervisor mode only, this might be the
4057
+ * user set of registers.  However, we're not building for that mode (now),
4058
+ * so we'll leave this at the default of NO_REGS.
4059
+ */
4060
+
4061
+/* TARGET_CSTORE_MODE(ICODE) ... Defines the machine mode to use for the
4062
+ * boolean result of conditional store patterns.  The OCIDE argument is the
4063
+ * instruction code for the cstore being performed.  Not defining this hook is
4064
+ * the same as accepting the mode encoded into operand 0 of the cstore expander
4065
+ * patterns.
4066
+ *
4067
+ * ??? ZipCPU --- I don't follow this documentation.  We'll leave this at the
4068
+ * default therefore.
4069
+ */
4070
+
4071
+/* 17.09 Stack Layout and Calling Conventions */
4072
+
4073
+
4074
+/* STACK_GROWS_DOWNWARD ... Define this macro if pushing a word onto the stack
4075
+ * moves the stack pointer to a smaller address, and false otherwise.
4076
+ *
4077
+ * ZipCPU ... well, our stack does grow downward, but it doesn't do so auto-
4078
+ * magically.  We have to move the stack pointer ourselves.  However, since this
4079
+ * is our convention, we'll define it as such.
4080
+ */
4081
+#undef STACK_GROWS_DOWNWARD
4082
+#define        STACK_GROWS_DOWNWARD    1
4083
+
4084
+/* STACK_PUSH_CODE ... This macro defines the operation used when something is
4085
+ * pushed on the stack.  In RTL, a push operation will be
4086
+ * (set (mem( STACK_PUSH_CODE(reg sp))) ...) The choiecs are PRE_DEC, POST_DEC,
4087
+ * PRE_INC, and POST_INC.  Which of these is correct depends on the stack
4088
+ * direction and on whether the stack pointer points to the last item on the
4089
+ * stack or whether it points to the space for the next item on the stack.
4090
+ * The default is PRE_DECC when STACK_GROWS_DOWNWARD is true, which is almost
4091
+ * always right, and PRE_INC otherwise, which is often wrong.
4092
+ *
4093
+ * ZipCPU --- None of these is right, so let's leave this at the default and
4094
+ * see how badly we get mangled.  In particular, ZipCPU doesn't have any of the
4095
+ * PRE_DEC, POST_DEC, PRE_INC, or POST_INC addressing modes used here.
4096
+ */
4097
+
4098
+/* FRAME_GROWS_DOWNWARD ... Define this macro to nonzero if the addresses of
4099
+ * local variable slots are at negative offsets from the frame pointer.
4100
+ *
4101
+ * ZipCPU --- If the frame pointer is defined as the stack pointer upon the
4102 103 dgisselq
+ * start of function execution, and that stack pointer grows downward, then
4103 102 dgisselq
+ * this should be the case as well.
4104
+ */
4105
+#undef FRAME_GROWS_DOWNWARD
4106
+#define        FRAME_GROWS_DOWNWARD    1
4107
+// #define     FRAME_GROWS_DOWNWARD    0        // This was ECO32's value
4108
+
4109
+
4110
+/* ARGS_GROW_DOWNWARD ... Define this macro if successive arguments to a
4111
+ * function occupy decreasing addresses on the stack.
4112
+ *
4113
+ * ZipCPU -- we can leave this up to the compiler's preferred implementation,
4114
+ * it is of no consequence to the hardware.
4115
+ */
4116
+
4117
+/* STARTING_FRAME_OFFSET ... Offset from the frame pointer to the first local
4118
+ * variable slot to be allocated.  If FRAME_GROWS_DOWNWARD, find the next slot's
4119
+ * offset by subtracting the firstt slot's length from STARTING_FRAME_OFFSET.
4120
+ * Otherwise it is found by adding the length of the first slot to the value
4121
+ * START_FRAME_OFFSET.
4122
+ *
4123
+ * ZipCPU --- I'm not certain on this, let's come back after we look at how
4124
+ * the code is getting generated.  However, the ECO32 code I am copying from
4125
+ * suggests that 0 is the right value, so we'll use that here.
4126
+ */
4127
+// #warning "Re-evaluate me"
4128
+#define        STARTING_FRAME_OFFSET   0
4129
+
4130
+/* STACK_ALIGNMENT_NEEDED ... Define to zero to disable final alignment of the
4131
+ * stack during reload.  The nonzero default for this macro is suitable for most
4132
+ * ports.
4133
+ *
4134
+ * ZipCPU --- we'll leave this at the default, although if any alignment code
4135
+ * shows up on the stack we may need to adjust it.
4136
+ */
4137
+
4138
+/* STACK_POINTER_OFFSET ... Offset from the SP register to the first location at
4139
+ * which outgoing arguments are placed.  If not specified, the default value
4140
+ * of zero is used.  This is the proper value for most machines.
4141
+ */
4142
+#define        STACK_POINTER_OFFSET    0
4143
+
4144
+/* FIRST_PARM_OFFSET ... Offset from the argument pointer register to the first
4145
+ * argument's address.  On some machines it may depend on the data type of the
4146
+ * function.
4147
+ */
4148
+#define        FIRST_PARM_OFFSET(F)    0
4149
+
4150
+/* STACK_DYNAMIC_OFFSET(F) ... Offset from the stack pointer register to an item
4151
+ * dynamically allocated on the stack, e.g., by alloca.  The default value for
4152
+ * this macro is STACK_POINTER_OFFSET plus the length of the outgoing arguments.
4153
+ * The default is correct for most machines, ...
4154
+ *
4155
+ * ZipCPU --- so we'll use it for the ZipCPU.
4156
+ */
4157
+
4158
+/* INITIAL_FRAME_ADDRESS_RTX ... A C expression whose value is RTL representing
4159
+ * the address of the initial stack frame.  This address is passed to
4160
+ * RETURN_ADDR_RTX and DYNAMIC_CHAIN_ADDRESS.  If you don't define this macro,
4161
+ * a reasonable default value will be used.  Define this macro in order to make
4162
+ * frame pointer elimination work in the presence of __builtin_frame_address(C)
4163
+ * and __builtin_return_address(C) for (C) not equal to zero.
4164
+ *
4165
+ * ZipCPU --- Let's try the reasonable default and see what happens.
4166
+ */
4167
+
4168
+/* SETUP_FRAME_ADDRESSES ... A C expression that produces the machine-specific
4169
+ * code to setup the stack so that arbitrary frames can be accessed.  For
4170
+ * example, on the SPARC, we must flush all of the register windows to the stack
4171
+ * before we can access arbitrary stack frames.  You will seldom need to define
4172
+ * this macro.  The default is to do nothing.
4173
+ *
4174
+ * ZipCPU --- which is what we shall do here.
4175
+ */
4176
+
4177
+/* TARGET_BUILTIN_SETJMP_FRAME_VALUE(VOID) ... This target hook should return
4178
+ * an RTX that is used to store the address of the current frame into the
4179
+ * builtin setjmp buffer.  The default value, virtual_stack_vars_rtx, is correct
4180
+ * for most machines.  One reason you may need to define this target hook is if
4181
+ * hard_frame_pointer_rtx is the appropriate value on your machine.
4182
+ *
4183
+ * ZipCPU --- leave this undefined, since the default value should be correct
4184
+ * for "most" machines.
4185
+ */
4186
+
4187
+/* FRAME_ADDR_RTX ... most machines do not need to define it.
4188
+ */
4189
+
4190
+/* RETURN_ADDR_RTX(COUNT,FRAMEADDR) ... A C expression whose value is RTL
4191
+ * representing the value of the return address for the frame COUNT steps up
4192
+ * from the current frame, after the prologue.  FRAMEADDR is the frame pointer
4193
+ * of the COUNT frame, or the frame pointer of the COUNT-1 frame if
4194
+ * RETURN_ADDR_IN_PREVIOUS_FRAME is nonzero.  The value of the expression must
4195
+ * always be the correct address when COUNT is nonzero, but may be NULL_RTX if
4196
+ * there is no way to determine the return address of other frames.
4197
+ *
4198
+ * ZipCPU --- I have no idea how we'd do this, so let's just return NULL_RTX.
4199
+ */
4200
+#undef RETURN_ADDR_RTX
4201
+#define        RETURN_ADDR_RTX(COUNT,FRAMEADDR)        NULL_RTX
4202
+
4203
+/* RETURN_ADDR_IN_PREVIOUS_FRAME ... Define this macro to nonzero value if the
4204
+ * return address of a particular stack frame is accessed from the frame pointer
4205
+ * of the previous stack frame.  The zero default for this macro is suitable
4206
+ * for most ports.
4207
+ *
4208
+ * ZipCPU---Default works here as well.
4209
+ */
4210
+
4211
+/* INCOMING_RETURN_ADDR_RTX ... A C expression whose value is RTL representing
4212
+ * the location of the incoming return address at the beginning of any function,
4213
+ * before the prologue.  This RTL is either a REG, indicating that the return
4214
+ * value is saved in 'REG', or a MEM representing the location in the stack.
4215
+ * If this RTL is a REG, you should define DWARF_RETURN_COLUMN to
4216
+ * DWARF_FRAME_REGNUM(REGNO).
4217
+ *
4218
+ * ZipCPU --- While our incoming return address could theoretically be in any
4219
+ * register, our machine description file is going to place it into register
4220
+ * R0, so that's what we return here.
4221
+ */
4222
+#undef INCOMING_RETURN_ADDR_RTX
4223
+#define        INCOMING_RETURN_ADDR_RTX        gen_rtx_REG(SImode, zip_R0)
4224
+
4225
+
4226
+/* DWARF_ALT_FRAME_RETURN_COLUMN
4227
+ */
4228
+
4229
+/* DWARF_ZERO_REG ... A C exrpession whose value is an integer giving a DWARF2
4230
+ * register number that is considered to always have the value zero.  This
4231
+ * should only be defined if the target has an architected zero register (ZipCPU
4232
+ * does not), and someone decided it was a good idea to use that register number
4233
+ * to terminate the stack backtrace.  New ports should avoid this (so the
4234
+ * ZipCPU port will avoid it as well).
4235
+ *
4236
+ */
4237
+
4238
+/* TARGET_DWARF_HANDLE_FRAME_UNSPEC
4239
+ */
4240
+
4241
+/* INCOMING_FRAME_SP_OFFSET
4242
+ */
4243
+#define        INCOMING_FRAME_SP_OFFSET        0
4244
+
4245
+/* ARG_POINTER_CFA_OFFSET
4246
+ */
4247
+
4248
+/* FRAME_POINTER_CFA_OFFSET
4249
+ */
4250
+
4251
+/* CFA_FRAME_BASE_OFFSET
4252
+ */
4253
+
4254
+/* 17.09.02 Exception handling support */
4255
+
4256
+/* EH_RETURN_DATA_REGNO(N) ... A C expression whose value is the Nth register
4257
+ * number used for data by exception handlers, or INVALID_REGNUM if fewer than
4258
+ * N registers are usable.  The exception handling library routines communicate
4259
+ * with the exception handlers via a set of agreed upon registers.  Ideally
4260
+ * these registers should be call clobbered; it is possible to use call-saved
4261
+ * registers, but may negatively impact code size.  The target must support at
4262
+ * least 2 data registers, but should define 4 if their are enough free
4263
+ * registers.
4264
+ *
4265
+ * You must define this macro if you want to support call frame exception
4266
+ * handling like that provided by DWARF 2.
4267
+ */
4268
+#define        EH_RETURN_DATA_REGNO(N) (((N<ZIP_FIRST_ARG_REGNO)||(N>ZIP_LAST_ARG_REGNO))?(N-1):INVALID_REGNUM)
4269
+
4270
+/* EH_RETURN_STACKADJ_RTX ... A C expression whose value is RTL representing
4271
+ * a location in which to store a stack adjustment to be applied before function
4272
+ * return.  This is used to unwind the stack to an exception handler's call
4273
+ * frame.  It will be assigned zero on code paths that return normally.
4274
+ *
4275
+ * Do not define this macro if the stack pointer is saved and restored by the
4276
+ * regular prolog and epilog code in the call frame itself (which it is for the
4277
+ * ZipCPU); in this case, the exception handling library routines will update
4278
+ * the stack location to be restored in place.  Otherwise, you must define this
4279
+ * macro if you want to support call frame exception handling like that provided
4280
+ * by DWARF 2.
4281
+ *
4282
+ */
4283
+
4284
+/* EH_RETURN_HANDLER_RTX ... A C expression whose value is RTL representing a
4285
+ * location in which to store the address of an exception handler to which we
4286
+ * should return.  It will not be assigned on code paths that return normally.
4287
+ *
4288
+ * Typcally this is the location in the call frame at which the normal return
4289
+ * address is stored.  For targets that return by popping an address of the
4290
+ * stack, this might be a memory address just below the target callf rame
4291
+ * rather than inside the current call frame.  If defined,
4292
+ * EH_RETURN_STACKADJ_RTX will have already been assigned, so it may be used
4293
+ * to calculate the location of the target call frame.
4294
+ *
4295
+ * If you want to support call frame exception handling, you must define either
4296
+ * this macro or the eh_return instruction pattern.
4297
+ */
4298
+// #warning "I don't know what to do here."
4299
+
4300
+/*
4301
+ *
4302
+ *
4303
+ *
4304
+ *   REST OF SECTION SKIPPED ...
4305
+ *
4306
+ *
4307
+ *
4308
+ */
4309
+
4310
+/* 17.09.03 Specifying how stack checking is done */
4311
+
4312
+/* STACK_CHECK_BUILTIN ... a non-zero value if stack checking is done by the
4313
+ * configuration files in a machine-dependent manner.  You should define this
4314
+ * macro if stack checking is required by the ABI of your machine or if you
4315
+ * would like to do stack checking in some more efficient way than the generic
4316
+ * appraoch.  The default value of this macro is zero.
4317
+ *
4318
+ * ZipCPU --- The default makes sense for us.
4319
+ */
4320
+// #define STACK_CHECK_BUILTIN 0
4321
+
4322
+/* STACK_CHECK_STATIC_BUILTIN ... A nonzero value if static stack checking is
4323
+ * done by the configuration files in a machine-dependent manner.  You should
4324
+ * define this macro if you would like to do static stack checking in some more
4325
+ * efficient way than the generic approach.  The default value of this macro
4326
+ * is zero.
4327
+ *
4328
+ * ZipCPU --- The default makes sense for us.
4329
+ */
4330
+
4331
+/* STACK_CHECK_PROBE_INTERVAL_EXP ...  An integer specifying the interval at
4332
+ * which GCC must generate stack probe instructions, defined as 2 raised to this
4333
+ * interval.  You will normally define this macro so that the interval is no
4334
+ * larger than the size of the "guard pages" at the end of a stack area.  The
4335
+ * default value of 12 (4096-byte interval) is suitable for most systems.
4336
+ *
4337
+ * ZipCPU --- Default.
4338
+ */
4339
+
4340
+/* STACK_CHECK_MOVING_SP ... An integer which is non-zero if GCC should move
4341
+ * the stack pointer page by page when doing probes.  This can be necessary
4342
+ * on systems where the stack pointer contains the bottom address of the memory
4343
+ * area accessible to the executing thread at any point in time.  In this
4344
+ * situation, an alternate signal stack is required in order to be able to
4345
+ * recover from a stack overflow.  The default value of this macro is zero.
4346
+ *
4347
+ * ZipCPU -- Default.
4348
+ */
4349
+
4350
+/* STACK_CHECK_PROTECT
4351
+ */
4352
+/* STACK_CHECK_MAX_FRAME_SIZE
4353
+ * ... you should normally not change the default value of this macro.
4354
+ */
4355
+/* STACK_CHECK_FIXED_FRAME_SIZE
4356
+ * ... you ... will normally use the default of four words.
4357
+ */
4358
+
4359
+/* STACK_CHECK_MAX_VAR_SIZE
4360
+ * ... you will normally not need to override that default.
4361
+ */
4362
+
4363
+/* 17.09.04 Registers that Address the Stack Frame*/
4364
+
4365
+/* STACK_POINTER_REGNUM ... The register number of the stack pointer register,
4366
+ * which must also be a fixed register according to FIXED_REGISTERS.  On most
4367
+ * machines, the hardware determines which register this is.
4368
+ */
4369
+#undef STACK_POINTER_REGNUM
4370
+#define        STACK_POINTER_REGNUM    zip_SP
4371
+
4372
+/* FRAME_POINTER_REGNUM ... The register number of the frame pointer register,
4373
+ * which is used to access certain automatic variables in the stack frame.  On
4374
+ * some machines, the hardware determines which register this is.  On other
4375
+ * machines you can choose any register you wish for this purpose.
4376
+ *
4377
+ * ZipCPU --- While I'd like to dump this pointer, since I don't really see
4378
+ * a need for it, alloca() requires it.  Therefore let's assine a register to
4379
+ * this purpose and watch what the compiler does with it.
4380
+ */
4381 103 dgisselq
+#ifdef zip_FP_PSEUDO
4382
+#define        FRAME_POINTER_REGNUM    zip_FP_PSEUDO
4383
+#else
4384 102 dgisselq
+#define        FRAME_POINTER_REGNUM    zip_FP
4385 103 dgisselq
+#endif
4386 102 dgisselq
+
4387
+/* HARD_FRAME_POINTER_REGNUM ... On some machines the offset between the frame
4388
+ * pointer and starting offset of the automatic variables is not known until
4389
+ * after register allocation has been done (for example, because the saved
4390
+ * registers are between these two locations).  On those machines, define
4391
+ * FRAME_POINTER_REGNUM the number of a special, fixed register to be used
4392
+ * internally until the offset is known, and define HARD_FRAME_POINTER_REGNUM
4393
+ * to be the actual hard register number used for the frame pointer.
4394
+ *
4395
+ * Do not define this macro if it would be the same as FRAME_POINTER_REGNUM
4396
+ *
4397
+ * ZipCPU --- we do not define this macro.
4398
+ */
4399 103 dgisselq
+#if (zip_FP == FRAME_POINTER_REGNUM)
4400
+#define HARD_FRAME_POINTER_REGNUM      zip_FP
4401
+#endif
4402 102 dgisselq
+
4403
+/* ARG_POINTER_REGNUM ... The register number of the arg pointer register, which
4404
+ * is used to access the function's argument list.  On some machines, this is
4405
+ * the same as the frame pointer register.  On some machines, the hardware
4406
+ * determines which register this is.  On other machines, you can choose any
4407
+ * register you wish for this purpose.  If this is not the same register as the
4408
+ * frame pointer register, then you must mark it as a fixed register according
4409
+ * to FIXED_REGISTERs, or arrange to be able to eliminate it.
4410
+ *
4411
+ * ZipCPU --- We really don't want to lose another register to something
4412
+ * pointless, so let's set this to be the frame pointer register.  Especially
4413
+ * given the ZipCPU's ease of accessing things via offsets of registers, this
4414
+ * should work for a rather large stack frame.
4415
+ */
4416 103 dgisselq
+#define ARG_POINTER_REGNUM     FRAME_POINTER_REGNUM
4417 102 dgisselq
+
4418
+/* HARD_FRAME_POINTER_IS_FRAME_POINTER ... define this to be a preprocessor
4419
+ * constant that is nonzero if hard_frame_pointer_rtx and frame_pointer_rtx
4420
+ * should be the same.  The default definition is sufficient for us.
4421
+ */
4422
+
4423
+/* HARD_FRAME_POINTER_IS_ARG_POINTER ...
4424
+ * ZipCPU doesn't need this macro
4425
+ */
4426
+
4427
+/* RETURN_ADDRESS_POINTER_REGNUM ... The register number of the return address
4428
+ * pointer register, which is used to access the current function's return
4429
+ * address from the stack.  On some machines, the return address is not at a
4430
+ * fixed offset from the frame pointer or stack pointer or argument pointer.
4431
+ * This register can be defined to point to the return address on the stack, and
4432
+ * then to be converted by ELIMINABLE_REGS into either the frame pointer or the
4433
+ * stack pointer.
4434
+ *
4435
+ * Do not define this macro unless there is no other way to get the return
4436
+ * address from the stack.
4437
+ *
4438
+ * ZipCPU---we need this.
4439
+ */
4440
+#define        RETURN_ADDRESS_REGNUM   zip_R0
4441
+
4442
+
4443
+/* STATIC_CHAIN_REGNUM ... Register numbers used for passing a function's
4444
+ * static chain pointer.  If register windows are used, the register number as
4445
+ * seen by the called function is STATIC_CHAIN_INCOMING_REGNUM, while the
4446
+ * register number as seen by the calling function is STATIC_CHAIN_REGNUM.  If
4447
+ * these register are the same, STATIC_CHAIN_INCOMING_REGNUM need not be
4448
+ * defined.
4449
+ *
4450
+ * ZipCPU doesn't have register windows, so we don't need to define this.
4451
+ */
4452
+// #warning "I have no reason to believe this will even work"
4453
+#define        STATIC_CHAIN_REGNUM     zip_GOT
4454
+
4455
+/* TARGET_STATIC_CHAIN ... This hook replaces the use of STATIC_CHAIN_REGNUM et
4456
+ * al for targets that may use different static chain locations for different
4457
+ * nested functions.  This may be required if the target has function attributes
4458
+ * that affect the calling conventions of the function and those calling
4459
+ * conventions use different static chain locations.
4460
+ *
4461
+ * ZipCPU --- don't need this.
4462
+ */
4463
+// #define     STATIC_CHAIN_REGNUM     zip_R11
4464
+
4465
+
4466
+/* DWARF_FRAME_REGISTERS ... This macro specifies  the maximum number of hard
4467
+ * registers that can be saved in a call frame.  This is used to size data
4468
+ * structures used in DWARF2 exception handling.
4469
+ *
4470
+ * Prior to GCC 3.0, this macro was needed in order to establish a stable
4471
+ * exception handling ABI in the face of adding new hard registers for ISA
4472
+ * extensions.  In GCC 3.0 and later, the EH ABI is insulated from changes in
4473
+ * the number of hard registers.  Nevertheless, this macro can still be used to
4474
+ * reduce the runtime memory requirements of the exception handling routines,
4475
+ * which can be substantial if the ISA contains a lot of registers that are not
4476
+ * call-saved.
4477
+ *
4478
+ * If this macro is not defined, it defaults to FIRST_PSEUDO_REGISTER.
4479
+ *
4480
+ * ZipCPU --- The default is not sufficient.  The CC and PC registers need to
4481
+ * be saved and examined as well in any debug/exception context.  Hence, we
4482
+ * define this to be all of our registers.
4483
+ */
4484
+#undef DWARF_FRAME_REGISTERS
4485
+#define        DWARF_FRAME_REGISTERS   16
4486
+
4487
+/* PRE_GCC3_DWARF_FRAME_REGISTERS ... This macro is similar to DWARF_FRAME_REG..
4488
+ * but is provided for backward compatibility in pre GCC 3.0 compiled code.
4489
+ *
4490
+ * If not defined, it defaults to DWARF_FRAME_REGISTERS---which is perfect for
4491
+ * the ZipCPU.
4492
+ */
4493
+
4494
+/* DWARF_REG_TO_UNWIND_COLUMN(REGNO) ... Define this macro if the target's
4495
+ * representation for dwarf registers is different than the internal
4496
+ * representation for unwind column.  Given a dwarf register, this macro should
4497
+ * return the unwind column number to use instead.
4498
+ *
4499
+ * ... ???
4500
+ */
4501
+
4502
+/* DWARF_FRAME_REGNUM(REGNO) ... Define this macro is the target's
4503
+ * representation for dwarf registers used in .eh_frame or .debug_frame is
4504
+ * different from that used in other debug info sections.  Given a GCC hard
4505
+ * register number, this macro should return the .eh_frame register number.
4506
+ * The default is DBX_REGISTER_NUMBER(REGNO).
4507
+ *
4508
+ * ZipCPU --- provided we define DBX_REGISTER_NUMBER(REGNO) well, this default
4509
+ * should still work for us.
4510
+ */
4511
+
4512
+/* DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) ... Define this macro to map register
4513
+ * numbers held in the call frame info that GCC has collected using
4514
+ * DWARF_FRAME_REGNO to those that should be output in .debug_frame (for_eh is
4515
+ * zero) and .eh_frame (for_eh is non-zero). The default is to return REGNO.
4516
+ *
4517
+ * ZipCPU --- Default is good enough.
4518
+ */
4519
+
4520
+/* REG_VALUE_IN_UNWIND_CONTEXT ... Define this macro if the target stores
4521
+ * register values as _Unwind_Word type in unwind context.  It should be defined
4522
+ * if target register size is larger than the size of void *.  The default
4523
+ * is to store register values as void *type.
4524
+ *
4525
+ * ZipCPU --- Default is what we need.
4526
+ */
4527
+
4528
+/* ASSUME_EXTENDED_UNWIND_CONTEXT ... Define this macro to be 1 if the target
4529
+ * always uses extended unwind context with version, args_size, and by_value
4530
+ * fields.  If it is undefined, it will always be defined to 1 when REG_VALUE_IN_UNWIND_CONTEXT is defined and 0 otherwise.
4531
+ *
4532
+ */
4533
+
4534
+
4535
+/* 17.09.05 Eliminating Frame Pointer and Arg Pointer */
4536
+
4537
+/* TARGET_FRAME_POINTER_REQUIRED(VOID) ... This target hook should return true
4538
+ * if a function must have and use a frame pointer.  This target hook is
4539
+ * called in the reload pass.  If its return value is true, the function will
4540
+ * have a frame pointer.
4541
+ *
4542
+ * This target hook can in principle examine the current function and decide
4543
+ * according to the facts, but on most machines the constant false or the
4544
+ * constant true suffices.  Use false when the machine allows code to be
4545
+ * generated with no frame pointer, and doing so saves some time or space.
4546
+ * Use true when there is no possible advantage to avoiding a frame pointer.
4547
+ *
4548
+ * ZipCPU---if we add in a frame pointer, we become register starved.  Hence,
4549
+ * we'll treat this as a constant false--which is also the default value.
4550
+ */
4551
+#define        target_frame_pointer_required   zip_frame_pointer_required
4552
+
4553
+/* INITIAL_FRAME_POINTER_OFFSET ... A C statement to store in the variable
4554
+ * depth-var the difference between the frame pointer and the stack pointer
4555
+ * values immediately after the function prologue.  The value would be computed
4556
+ * from information such as the result of get_frame_size() and the tables of
4557
+ * registers regs_ever_live and call_used_regs.
4558
+ *
4559
+ * If ELIMINABLE_REGS is defined, this macro will not be used and need not be
4560
+ * defined.  Otherwise, it must be defined even if TARGET_FRAME_POINTER_REQD
4561
+ * always returns true; in that case you may set depth-var to anything.
4562
+ *
4563
+ * ZipCPU --- we intend to set ELIMINABLE_REGS, so this is not necessary.
4564
+ */
4565
+// #define     INITIAL_FRAME_POINTER_OFFSET(DEPTH)     (DEPTH) = 0
4566
+
4567
+
4568
+/* ELIMINABLE_REGS ... If defined, this macro specifies a table of register
4569
+ * pairs used to eliminate unneeded registers that point into the stack frame.
4570
+ * If it is not defined, the only elimination attempted by the compiler is to
4571
+ * replace references to the frame pointer with references to the stack pointer.
4572
+ *
4573
+ * On some machines, the position of the argument pointer is not known until
4574
+ * the compilation is completed.  In such a case, a separate hard register
4575
+ * must be used for the argument pointer.  This register can be eliminated by
4576
+ * replacing it with either the frame pointer or the argument pointer,
4577
+ * depending on whether or not the frame pointer has been eliminated.
4578
+ *
4579
+ * ZipCPU we'll take their suggestion and define this as:
4580
+ */
4581
+#undef ELIMINABLE_REGS
4582 103 dgisselq
+#ifdef zip_FP_PSEUDO
4583 102 dgisselq
+#define        ELIMINABLE_REGS \
4584 103 dgisselq
+        {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM},          \
4585
+         { ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM},     \
4586
+         { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM},        \
4587
+         { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}}
4588
+#else
4589
+# if (ARG_POINTER_REGNUM == FRAME_POINTER_REGNUM)
4590
+#  define      ELIMINABLE_REGS \
4591
+        {{ FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}}
4592
+# else
4593
+#  define      ELIMINABLE_REGS \
4594 102 dgisselq
+       {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM },  \
4595
+        { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM },  \
4596
+        { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}}
4597 103 dgisselq
+# endif
4598
+#endif
4599 102 dgisselq
+
4600
+/* bool TARGET_CAN_ELIMINATE(FROM,TO) ... This target function should return
4601
+ * true if the compiler is allowed to try to replace register number FROM with
4602
+ * register number TO.  This target hook need only be defined if ELIMINABLE_REGS
4603
+ * is defined, and will usually return true since most of the cases preventing
4604
+ * register elimination are things that the compiler  already knows about.
4605
+ *
4606
+ * ZipCPU ... does the compiler  know about my decision as to whether or not
4607 117 dgisselq
+ * the frame pointer was needed?  Yes it does, but it's kept separately.  We'll
4608
+ * just say everything can be eliminated.
4609 102 dgisselq
+ */
4610
+#define TARGET_CAN_ELIMINATE   zip_can_eliminate
4611
+
4612
+/* INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) ... This macro is similar to
4613
+ * INITIAL_FRAME_POINTER_OFFSET.  It specifies the initial difference between
4614
+ * the specified pair of registers.  This macro must be defined if
4615
+ * ELIMINABLE_REGS is defined.
4616
+ *
4617 117 dgisselq
+ * ZipCPU---We had at one time set this to a default offset of 0.  This didn't
4618
+ * work.  It turns out that this is not only the *initial* elimination offset,
4619
+ * but also the offset along the way.  Hence, when a variable needs to be
4620
+ * spilled to the stack, this offset must change.  Reload goes and checks for
4621
+ * this, and adjusts registers if the offset has changed.  Hence, without this,
4622
+ * we get negative (i.e. illegal) stack offsets.
4623 102 dgisselq
+ */
4624
+#define        INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET)            \
4625
+       do { (OFFSET) = zip_initial_elimination_offset((FROM), (TO)); } \
4626
+       while(0)                                        \
4627
+
4628
+/* 17.09.06 Passing function arguments on the stack */
4629
+
4630
+/* TARGET_PROMOTE_PROTOTYPES ... Returns true if an argument declared in a
4631
+ * prototype as an integral type smaller than int should actually be
4632
+ * passed as an int.  In addition to avoiding errors in certain cases of
4633
+ * mismatch, it also makes for better code on certain machines.  The default is
4634
+ * to not promote prototypes.
4635
+ *
4636
+ * Since everything is an int on the ZipCPU, let's promote anything smaller
4637
+ * (which should still be an int) up to an int anyway.
4638
+ */
4639
+#undef TARGET_PROMOTE_PROTOTYPES
4640
+#define        TARGET_PROMOTE_PROTOTYPES       hook_bool_const_tree_true
4641
+
4642
+/* PUSH_ARGS ... A C expression.  If nonzero, push instructions will be used to
4643
+ * pass outgoing arguments.  If the target machine does not have a push
4644
+ * instruction, set it to zero.  That directs GCC to use an alternate strategy:
4645
+ * to allocate the entire argument block and then store the arguments into it.
4646
+ * When PUSH_ARGS is nonzero, PUSH_ROUNDING must be defined too.
4647
+ *
4648
+ * ZipCPU does not have a push instruction, so we set this to zero.
4649
+ */
4650
+#undef PUSH_ARGS
4651
+#define        PUSH_ARGS       0
4652
+
4653
+/* PUSH_ARGS_REVERSED ... A C expression.  If nonzero, function arguments will
4654
+ * be evaluated last to first, rather than first to last.  If this macro is
4655
+ * not defined, it defaults to PUSH_ARGS on targets where the stack and args
4656
+ * grow in opposite directions, and zero otherwise.
4657
+ *
4658
+ * ZipCPU---Let's evaluate our arguments first to last.
4659
+ */
4660
+#define        PUSH_ARGS_REVERSED      1
4661
+
4662
+/* PUSH_ROUNDING(NPUSHED) ... A C expression that is the number of bytes
4663
+ * actually pushed onto the stack when an instruction attempts to push
4664
+ * (NPUSHED) bytes.
4665
+ *
4666
+ * ZipCPU---We cannot push bytes.  Let's leave this undefined and see what
4667
+ * happens.
4668
+ */
4669
+// #warning "No appropriate definition seemed right."
4670
+
4671
+/* ACCUMULATE_OUTGOING_ARGS ... A C expression.  If non-zero, the maximum amount
4672
+ * of space required for outgoing arguments will be computed and placed into
4673
+ * crtl->outgoing_args_size.  No space will be pushed onto the stack for each call; instead the function prologue should increase the stack frame size by this
4674
+ * amount.
4675
+ *
4676
+ * ZipCPU---This is *cool* and so necessary---it saves an extra two instructions
4677
+ * each time we try to call a function/routine.  Yes, we want and *need* this
4678
+ * for good performance.  I mean, think of it, free performance increase?  Who
4679
+ * could argue with that?
4680
+ */
4681
+#undef ACCUMULATE_OUTGOING_ARGS
4682
+#define        ACCUMULATE_OUTGOING_ARGS        1
4683
+
4684
+
4685
+/* REG_PARM_STACK_SPACCE(FN) ... Define this macro if functions should assume
4686
+ * that stack space has been allocated for arguments even when their values
4687
+ * are passed in registers.  The value of this macro is the size, in bytes, of
4688
+ * the area reserved for arguments passed in registers for the function
4689
+ * represented by FN, which can be zero if GCC is calling a library function.
4690
+ * The argument FN can be the FUNCTION_DECL, or the type itself of the function.
4691
+ *
4692
+ * This space can be allocated by the caller, or be part of the machine
4693
+ * dependent stack frame: OUTGOING_REG_PARM_STACK_SPACE says which.
4694
+ *
4695
+ * ZipCPU --- Why allocate space you won't use?  Let's leave this undefined
4696
+ * therefore.
4697
+ */
4698
+// #undef      REG_PARM_STACK_SPACE
4699
+
4700
+
4701
+
4702
+/* INCOMING_REG_PARM_STACK_SPACE(FN) ... Like REG_PARM_STACK_SPACE, but for
4703
+ * incoming register arguments.  Define this macro if space guaranteed when
4704
+ * compiling a function body is different to space required when making a call,
4705
+ * a situation that can arise with K&R style function definitions.
4706
+ *
4707
+ */
4708
+
4709
+/* OUTGOING_REG_PARM_STACK_SPACE(FN) ... Define this to a nonzero value if it
4710
+ * is the responsibility of the caller to allocate the area reserved for
4711
+ * arguments passed in registers when calling a function of FN.  FN may be NULL
4712
+ * if the function called is a library function.
4713
+ *
4714
+ * ZipCPU---Why allocate space you don't need?
4715
+ */
4716
+#define        OUTGOING_REG_PARM_STACK_SPACE(FNTYPE)   0
4717
+
4718
+
4719
+/* STACK_PARMS_IN_REG_PARM_AREA ... Define this macro if REG_PARM_STACK_SPACE
4720
+ * is defined, buyt the stack parameters don't skip the area specified by it.
4721
+ *
4722
+ * ZipCPU---We didn't define REG_PARM_STACK_SPACE, so we won't define this.
4723
+ */
4724
+
4725
+/* TARGET_RETURN_POPS_ARGS(DECL,FNTYPE,SZ) ... This target hook returns the
4726
+ * number of bytes of its own arguments that a function pops on returning, or 0
4727
+ * if the function pops no arguments and the caller must therefore pop them all
4728
+ * after the function returns.
4729
+ *
4730
+ * ZipCPU --- If we define this, we'll lose our gain from
4731
+ * ACCUMULATE_OUTOING_ARGS.  Thus, we leave this undefined.
4732
+ */
4733
+
4734
+/* CALL_POPS_ARGS(CUM) ... A C expression that should indicate the number of
4735
+ * bytes a call sequence pops off of the stack.  It is added to the value of
4736
+ * RETURN_POPS_ARGS when compiling a function call.  CUM is the variable in
4737
+ * which all arguments to the function have been accumulated.
4738
+ *
4739
+ * ZipCPU---The call sequence, by itself, doesn't touch the stack.  Therefore
4740
+ * this is zero.
4741
+ */
4742
+#undef CALL_POPS_ARGS
4743
+#define        CALL_POPS_ARGS(CUM)     0
4744
+
4745
+
4746
+/* 17.09.07 Passing arguments in registers */
4747
+
4748
+/* TARGET_FUNCTION_ARG ... Return an RTX indicating whether a function argument
4749
+ * is passed in a register, and if so, which register.
4750
+ */
4751
+/*
4752
+ * This has been poisoned ... so let's not define it anymore and look for
4753
+ * a better way to do this ...
4754
+ *
4755
+ * #define     FUNCTION_ARG(CUM, MODE, TYPE, NAMED) (((NAMED) == 0) ? NULL_RTX
4756
+ *     : targetm.calls.must_pass_in_stack(MODE, TYPE)  ? NULL_RTX
4757
+ *     : (CUM) > ZIP_LAST_ARG_REGNO                    ? NULL_RTX
4758
+ *     : gen_rtx_REG(MODE, CUM))
4759
+ */
4760
+#define        TARGET_FUNCTION_ARG     zip_function_arg
4761
+
4762
+
4763
+/* TARGET_MUST_PASS_IN_STACK ...
4764
+ */
4765
+// #undef      TARGET_MUST_PASS_IN_STACK
4766
+// #define     TARGET_MUST_PASS_IN_STACK       zip_must_pass_in_stack
4767
+
4768
+/* TARGET_FUNCTION_INCOMING_ARG ... Define this hook if the target machine
4769
+ * has register windows, ... which ZipCPU does not have.
4770
+ */
4771
+
4772
+/* TARGET_USE_PSEUDO_PIC_REG(void) ... This hook should return 1 in case
4773
+ * pseudo register should be created for pic_offset_table_rtx during function
4774
+ * expand.
4775
+ *
4776
+ * This should be defined by global parameters, isn't it?
4777
+ */
4778
+
4779
+/* TARGET_INIT_PIC_REG(v) ... Perform a target dependent initialization of
4780
+ * pic_offset_table_rtx.  This hook is called at the start of register
4781
+ * allocation.
4782
+ *
4783
+ * ZipCPU---Let's revisit this.
4784
+ */
4785
+// #warning "Come back and relook at relocations"
4786
+
4787
+/* TARGET_ARG_PARTIAL_BYTES ... This target hook returns the number of bytes
4788
+ * at the beginning of an argument that must be put in registers.  The value
4789
+ * must be zero for arguments that are passed entirely in registers or that
4790
+ * are entirely pushed on the stack.
4791
+ */
4792
+// #undef      TARGET_ARG_PARTIAL_BYTES
4793
+// #define     TARGET_ARG_PARTIAL_BYTES        zip_arg_partial_bytes
4794
+
4795
+/* TARGET_PASS_BY_REFERENCE(CUM,MOD,TREE,NAMED) ... This target hook should
4796
+ * return true if an argument at the position indicated by CUM should be passed
4797
+ * by reference.  This predicate is queried after target independent reasons
4798
+ * for being pssed by reference, such as TREE_ADDRESSABLE(TREE).
4799
+ *
4800
+ */
4801
+// #undef      TARGET_PASS_BY_REFERENCE
4802
+// #define     TARGET_PASS_BY_REFERENCE        zip_pass_by_reference
4803
+
4804
+/* CUMULATIVE ARGS ...  A C type for declaring a variable that is used as the
4805
+ * first argument of 'FUNCTION_ARG' and other related values.
4806
+ *
4807
+ * ZipCPU---We're in trouble if an 'int' won't work, so let's just use that.
4808
+ */
4809
+#define        CUMULATIVE_ARGS int
4810
+
4811
+/*
4812
+ * OVERRIDE_ABI_FORMAT
4813
+ */
4814
+
4815
+/* INIT_CUMULATIVE_ARGS ... A C statement (sans semicolon) for initializing the
4816
+ * variable CUM for the state at the beginning of the argument list.
4817
+ *
4818
+ *
4819
+ * ZipCPU---The first argument is passed in register ZIP_FIRST_ARG_REGNO, or
4820
+ * R1 (unless it has been redefined above ...)
4821
+ */
4822
+#define        INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,FNDECL,N_NAMED_ARGS) (CUM = 0)
4823
+
4824
+/* INIT_CUMULATIVE_LIBCALL_ARGS
4825
+ * INIT_CUMULATIVE_INCOMING_ARGS
4826
+ *
4827
+ * These default to the last INIT_CUM_ARGS value above.
4828
+ */
4829
+
4830
+/* TARGET_FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) .. This hook updates
4831
+ * the summarizer variable pointed to by CUM to advance past an argument in
4832
+ * the argument list.  The values MODE, TYPE, and NAMED describe that
4833
+ * argument.  Once this is done, the variable CUM is suitable for analyzing the
4834
+ * following argument with TARGET_FUNCTION_ARG, etc.  This hook need not do
4835
+ * anything if the argument in question was passed on the stack.  The compiler
4836
+ * knows how to track the amount of stack space used for arguments without
4837
+ * any special help.
4838
+ *
4839
+ * ZipCPU---Here we simply copy from ECO32.
4840
+ */
4841
+#define        TARGET_FUNCTION_ARG_ADVANCE     zip_function_arg_advance
4842
+
4843
+/*
4844
+ * TARGET_ARG_OFFSET --- not necessary
4845
+ * FUNCTION_ARG_PADDING        --- not necessary, since we shouldn't be padding
4846
+ * PAD_VARARGS_DOWN    --- not necessary, since we shouldn't be padding
4847
+ * BLOCK_REG_PADDING
4848
+ * TARGET_FUNCTION_ARG_BOUNDARY
4849
+ * TARGET_FUNCTION_ARG_ROUND_BOUNDARY
4850
+ */
4851
+
4852
+/* FUNCTION_ARG_REGNO_P(REGNO) ... A C expression that is nonzero if REGNO is
4853
+ * the number of a hard register in which function arguments are sometimes
4854
+ * passed.  This does not include implicit arguments such as the static chain
4855
+ * and the structure-value address.  On many machines, no registers can be used
4856
+ * for this purpose since all function arguments are pushed on the stack.
4857
+ */
4858
+#define        FUNCTION_ARG_REGNO_P(r) ((r >= ZIP_FIRST_ARG_REGNO)&&(r<=ZIP_LAST_ARG_REGNO))
4859
+
4860
+/* TARGET_SPLIT_COMPLEX_ARG(TYPE) ... This hook should return true if parameter
4861
+ * of type TYPE are passed as two scalar parameters.  By default, GCC will
4862
+ * attempt to pack complex arguments into the target's word size.  Some ABI's
4863
+ * require complex arguments to be split and treated as their individual
4864
+ * components.
4865
+ *
4866
+ * The default value of this hook is NULL, which is treated as always false,
4867
+ * and which should be good enough for ZipCPU--which can go either way.
4868
+ */
4869
+
4870
+/* TARGET_BUILD_BUILTIN_VA_LIST ... This hook returns a type node for va_list
4871
+ * for the target.  The default version of the hook returns void*.
4872
+ *
4873
+ */
4874
+
4875
+/* TARGET_ENUM_VA_LIST_P
4876
+ */
4877
+
4878
+/* TARGET_FN_ABI_VA_LIST ... This hook returns the va_list type of the calling
4879
+ * convention specified by FN.  The default version of this returns va_list_type_node.
4880
+ */
4881
+
4882
+/* TARGET_FN_ABI_VA_LIST
4883
+ */
4884
+
4885
+/* TARGET_CANONICAL_VA_LIST_TYPE
4886
+ */
4887
+
4888
+/* TARGET_GIMPLIFY_VA_ARG_EXPR
4889
+ */
4890
+
4891
+/* TARGET_VALID_POINTER_MODE(MODE) ... Define this to return nonzero if the
4892
+ * port can handle pointers with machine mode MODE.  The default version of this
4893
+ * hook returns true for both ptr_mode and Pmode.
4894
+ *
4895
+ * ZipCPU---if Pmode is properly defined (above, and I think it is), then the
4896
+ * default behavior is quite appropriate.
4897
+ */
4898
+
4899
+/* TARGET_REF_MAY_ALIAS_ERRNO(REFP) ... Define this to return nonzero if the
4900
+ * memory reference REF may alias with the system C library errno location.
4901
+ * The default version of this hook assumes the system C library errno location
4902
+ * is either a declaration of type int or accessed by dereferencing a pointer
4903
+ * to int.
4904
+ *
4905
+ * ZipCPU --- Default sounds good to me.
4906
+ */
4907
+
4908
+
4909
+/* TARGET_SCALAR_MODE_SUPPORTED_P(MODE) ... Define this to return nonzero if
4910
+ * the port is prepared to handl instructions involving scalar mode MODE.  For
4911
+ * a scalar mode to be considered supported, all the basic arithmetic and
4912
+ * comparisons must work.
4913
+ *
4914
+ * The default version of this hook returns true for any mode required to
4915
+ * handle the basic C types (as defined by the port).  Included here are the
4916
+ * double-word arithmetic supported by the code in optabs.c.
4917
+ */
4918
+#undef TARGET_SCALAR_MODE_SUPPORTED_P
4919
+#define        TARGET_SCALAR_MODE_SUPPORTED_P  zip_scalar_mode_supported_p
4920
+
4921
+/* TARGET_VECTOR_MODE_SUPPORTED_P(MODE) ... Define this to return nonzero if the
4922
+ * port is prepared to handle instructions involving vector mode MODE.  At the
4923
+ * very least, it must have move patterns for this mode.
4924
+ *
4925
+ * ZipCPU---does not support any vector modes.
4926
+ */
4927
+#undef TARGET_VECTOR_MODE_SUPPORTED_P
4928
+#define        TARGET_VECTOR_MODE_SUPPORTED_P  hook_bool_mode_false
4929
+
4930
+/* TARGET_ARRAY_MODE_SUPPORTED_P(MODE, NELEMS) ... Return true if GCC should
4931
+ * try to use a scalar mode to store an array of NELEMS elements, given that
4932
+ * each element has mode MODE.  Returning true here overrides the usual MAX_FIXED_MODE limit and allows GCC to use any defined integer mode.
4933
+ *
4934
+ * ZipCPU---Sounds good.
4935
+ */
4936
+// #undef      TARGET_ARRAY_MODE_SUPPORTED_P
4937
+// #define     TARGET_ARRAY_MODE_SUPPORTED_P   zip_array_mode_supported_p
4938
+
4939
+/* TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P(MODE) ... Define this to return
4940
+ * nonzero if libgcc provides support for the floating-point mode MODE, which is
4941
+ * known to pass TARGET_SCALAR_MODE_SUPPORTED_P.  The default version of this
4942
+ * hook returns true for all of SFmode, DFmode, XFmode, and TFmode, if such
4943
+ * modes exist.
4944
+ *
4945
+ * ZipCPU---We only support SFmode and DFmode, but for now only in emulation
4946
+ * (if we can).  Let's allow both of those and see how far we get.
4947
+ */
4948
+#undef TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P
4949
+#define        TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P zip_libgcc_floating_mode_supported_p
4950
+
4951
+/* TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P(MODE) ... Define this to return
4952
+ * nonzero for machine modes for which the port has small register classes.  If
4953
+ * target hook returns nonzero for a given MODE, the compiler will try to
4954
+ * minimize the lifetime of registers in MODE.  The hook may be called with
4955
+ * VOIDmode as an argument.  In this case, the hook is expected to return
4956
+ * nonzero if it returns nonzero for any mode.
4957
+ *
4958
+ * The default version of this hook returns false for any mode.
4959
+ *
4960
+ * ZipCPU---Default sounds good.
4961
+ */
4962
+
4963
+/* 17.09.08 How scalar function values are returned */
4964
+
4965
+/* TARGET_FUNCTION_VALUE
4966
+ */
4967
+
4968
+/* LIBCALL_VALUE
4969
+ */
4970
+
4971
+
4972
+/* 17.09.09 How large values are returned */
4973
+
4974
+/* TARGET_RETURN_IN_MEMORY(TYP,FNTYP) ... This target hook should return a
4975
+ * nonzero value to say to return the function value in memory, just as large
4976
+ * structures are always returned.  Here type will be the data type of the value
4977
+ * and FNTYP will be the type of the function doing the returning, or NULL
4978
+ * for libcalls.
4979
+ *
4980
+ */
4981
+#undef TARGET_RETURN_IN_MEMORY
4982
+#define        TARGET_RETURN_IN_MEMORY zip_return_in_memory
4983
+
4984
+/* DEFAULT_PCC_STRUCT_RETURN
4985
+ * TARGET_STRUCT_VALUE_RTX
4986
+ * PCC_STATIC_STRUCT_RETURN
4987
+ * TARGET_GET_RAW_RESULT_MODE
4988
+ * TARGET_GET_RAW_ARG_MODE
4989
+ */
4990
+
4991
+
4992
+/* 17.09.10 Caller-Saves Register Allocation */
4993
+/* 17.09.11 Function Entry and Exit */
4994 111 dgisselq
+// TARGET_ASM_FUNCTION_PROLOGUE
4995
+// TARGET_ASM_FUNCTION_END_PROLOGUE
4996
+// TARGET_ASM_FUNCCTION_BEGIN_EPILOGUE
4997
+// TARGET_ASM_FUNCTION_EPILOGUE
4998
+/* EXIT_IGNORE_STACK ... Define this macro as a C expression that is nonzero
4999
+ * if the return instruction or the function epilogue ignores the value of the
5000
+ * stack pointer; in other words, if it is safe to delete an instruction to
5001
+ * adjust the stack pointer before a return from the function.
5002
+ *
5003
+ * The default is 0.
5004
+ *
5005
+ * Note that this macro's value is relevant only for functions for which frame
5006
+ * pointers are maintained.  It is never safe to delete a final stack adjustment
5007
+ * in a function that has no frame pointer, and the compiler knows this
5008
+ * regardless of EXIT_IGNORE_STACK.
5009
+ *
5010
+ * ZipCPU -- Thanks to the example of the m68k, and a careful selection of what
5011
+ * our options otherwise could have been, our epilogue code does not use the
5012
+ * stack register at all, but rather starts by moving the frame register into
5013
+ * the stack register.
5014
+ */
5015
+#define EXIT_IGNORE_STACK      1
5016
+// EPILOGUE_USES(regno)
5017
+// EH_USES(regno)
5018
+// TARGET_ASM_OUTPUT_MI_THUNK
5019
+// TARGET_ASM_CAN_OUTPUT_MI_THUNK
5020
+
5021 102 dgisselq
+/* 17.09.12 Generating code for profiling */
5022 111 dgisselq
+// FUNCTION_PROFILER
5023
+// PROFILE_HOOK
5024
+// NO_PROFILE_COUNTERS
5025
+// PROFILE_BEFORE_PROLOGUE
5026
+// TARGET_KEEP_LEAF_WHEN_PROFILED
5027
+
5028 102 dgisselq
+/* 17.09.13 Permitting tail calls*/
5029 111 dgisselq
+
5030
+/* TARGET_FUNCTION_OK_FOR_SIBCALL(DECL,EXP) ... True if it is OK to do sibling
5031
+ * call optimizations for the specified call expression EXP.  DECL will be the
5032
+ * called function, or NULL if this is an indirect call.
5033
+ *
5034
+ * It is not uncommon for limitations of calling conventions to prevent tail
5035
+ * calls to functions outside the current unit of translation, or during PIC
5036
+ * compilation.  The hook is used to enforce these restrictions, as the sibcall
5037
+ * md pattern can not fail, or fall over to a 'normal' call.  The criteria for
5038
+ * successful sibling call optimization may vary greatly between different
5039
+ * architectures.
5040
+ *
5041
+ * ?? What's a sibling call?
5042
+ */
5043
+
5044
+// TARGET_EXTRA_LIVE_ON_ENTRY
5045
+// TARGET_SET_UP_BY_PROLOGUE
5046
+// TARGET_WARN_FUNC_RETURN
5047
+
5048 102 dgisselq
+/* 17.09.14 Stack smashing protection */
5049 111 dgisselq
+// TARGET_STACK_PROTECT_GUARD
5050
+// TARGET_STACK_PROTECT_FAIL
5051
+// TARGET_SUPPORTS_SPLIT_STACK
5052
+
5053 102 dgisselq
+/* 17.09.15 Miscellaneous register hooks */
5054
+
5055 111 dgisselq
+// TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS
5056
+
5057 102 dgisselq
+/* TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS
5058
+ * ZipCPU --- default is good enough for us.
5059
+ */
5060
+
5061
+/* 17.10 Implementing VARARGS MACROS */
5062
+
5063
+/* ...
5064
+ */
5065
+
5066
+/* void TARGET_SETUP_INCOMING_VARARGS(A,M,T,I,S) ... This target hook offers an
5067
+ * alternative to using __builtin_saveregs and defining the hook TARGET_EXPAND..
5068
+ * _BUILTIN_SAVEREGS.  Use it to store the anonymous register arguments into the
5069
+ * stack so that all the arguments appear to have been passed consecutively
5070
+ * on the stack.  Once this is done, you can use the standard implementation
5071
+ * of varargs that works for machines that pass all their arguments on the
5072
+ * stack.
5073
+ */
5074
+// #undef      TARGET_SETUP_INCOMING_VARARGS
5075
+// #define     TARGET_SETUP_INCOMING_VARARGS   zip_setup_incoming_varargs
5076
+
5077
+/* ...
5078
+ */
5079
+
5080
+/* 17.11 Trampolines for Nested Functions */
5081
+
5082
+/* TARGET_ASM_TRAMPOLINE_TEMPLATE ... This hook is called by
5083
+ * assemble_trampoline_template to output, on the stream f, assembler code for
5084
+ * a block of data that contains the constant parts of a trampoline.  This code
5085
+ * should not include a label--the label is taken care of automatically.
5086
+ *
5087
+ * ZipCPU -- looks like we need to do this.
5088
+ */
5089
+#undef TARGET_ASM_TRAMPOLINE_TEMPLATE
5090
+#define        TARGET_ASM_TRAMPOLINE_TEMPLATE  zip_asm_trampoline_template
5091
+
5092
+/* TRAMPOLINE_SECTION ... Return the section into which the trampoline template
5093
+ * is to be placed.  The default value is readonly_data_section.
5094
+ *
5095
+ * ZipCPU--default should be good enough.
5096
+ */
5097
+
5098
+/* TRAMPOLINE_SIZE ... A C expression for the size (in bytes) of the trampoline
5099
+ * as an integer.
5100
+ *
5101
+ * ZipCPU--it's three instructions, or 96 bits.  However, 32-bits is our minimal
5102
+ * addressible unit, so what size do we offer here?  We'll stick with the number
5103
+ * of bytes, but we may need to change this later.
5104
+ *
5105
+ */
5106
+// #warning "May need to redefine trampoline_size in words, not bytes"
5107
+#undef TRAMPOLINE_SIZE
5108
+#define        TRAMPOLINE_SIZE 3
5109
+
5110
+/* TRAMPOLINE_ALIGNMENT ... alignment required for trampolines, in bits.
5111
+ *
5112
+ * Well that's well known in ZipCPU --- 32-bits.
5113
+ */
5114
+#undef TRAMPOLINE_ALIGNMENT
5115
+#define        TRAMPOLINE_ALIGNMENT    32
5116
+
5117
+/* void TARGET_TRAMPOLINE_INIT(RTX,TREE,RTX CH) ... This hook is called to
5118
+ * initialize a trampoline.  m_tramp is an RTX for the memory block for the
5119
+ * trampoline; TREE is the FUNCTION_DECL for the nested fucntion;  CH is an
5120
+ * rtx for the static chain value that should be passed to the function when
5121
+ * it is called.
5122
+ *
5123
+ * ZipCPU ... Can we get by without this?
5124
+ */
5125
+#undef TARGET_TRAMPOLINE_INIT
5126
+#define        TARGET_TRAMPOLINE_INIT  zip_trampoline_init
5127
+
5128
+/* TARGET_TRAMPOLINE_ADJUST_ADDRESS(RTX) ... This hook should perform any
5129
+ * machine-specific adjustment in the address of the trampoline.  Its argument
5130
+ * contains the address of the memory block that was passed to
5131
+ * TARGET_TRAMPOLINE_INIT.  In case the address to be used for a function call
5132
+ * should be different from the address at which the template was stored, the
5133
+ * different address should be returned; otherwise addr should be returned
5134
+ * unchanged.  If the hook is not defined, RTX (addr) will be used for function
5135
+ * calls.
5136
+ *
5137
+ * ZipCPU--works for us!
5138
+ */
5139
+
5140
+/* CLEAR_INSN_CACHE(BEG,END) ... If defined, expands to a C expression clearing
5141
+ * the instruction cache in the specified interval.  The definition of this
5142
+ * macro would typically be a series of asm statements.   Both BEG and END are
5143
+ * pointer expressions.
5144
+ *
5145
+ * ZipCPU --- Ouch!  We have no way to do this (yet)!
5146
+ */
5147
+
5148
+/* TRANSFER_FROM_TRAMPOLINE ... Define this macro is trampolines need a special
5149 111 dgisselq
+ * subroutine to do their work.  The macro should expand to a series of asm
5150 102 dgisselq
+ * statements which will be compiled with GCC.  They go in a library function
5151
+ * named __transfer_from_trampoline.
5152
+ *
5153
+ * We may need to rethink trampolines on ZipCPU.
5154
+ */
5155
+
5156
+
5157
+/* 17.12 Implicit Calls to Library Routines */
5158
+
5159
+/* DECLARE_LIBRARY_RENAMES
5160
+ *
5161
+ * ZipCPU: Don't need it.
5162
+ */
5163
+
5164
+/* TARGET_INIT_LIBFUNCS(VOID) ... This hook should declare additional library
5165
+ * routines or rename existing ones, using the functions set_optab_libfunc and
5166
+ * init_one_libfunc defined in optabs.c.  init_optabs calls this macro after
5167
+ * initializing all the normal library routines.
5168
+ *
5169
+ * Most ports don't need to define this hook, so we won't either.
5170
+ */
5171
+
5172
+/* TARGET_LIBFUNC_GNU_PREFIX ... If false (the default), internal library
5173
+ * routines start with two underscores.  If set to true, these routines start
5174
+ * with __gnu_ instead.
5175
+ *
5176
+ * ZipCPU: No change necessary.
5177
+ */
5178
+
5179
+/* FLOAT_LIB_COMPARE_RETURNS_BOOL(MODE,COMPARISON) ... This macro should return
5180
+ * true if the library routine that implements the floating point comparison
5181
+ * operator comparison in mode mode will return a boolean and false if it will
5182
+ * return a tristate.
5183
+ *
5184
+ * Most ports don't need to define this macro, so Zip CPU won't either.
5185
+ */
5186
+
5187
+/* TARGET_HAS_NO_HW_DIVIDE ... This macro should be defined if the target has no
5188
+ * hardware divide instructions.  If this macro is defined, GCC will use an
5189
+ * algorithm which makes use of simple logical and arithmetic operations for
5190
+ * 64-bit division.  If the macro is not defined, GCC will use an algorithm
5191
+ * which makes use of a 64-bit by 32-bit divide primitive.
5192
+ *
5193
+ * Zip CPU, though, doesn't have the 64-bit by 32-bit divide primitive, thus
5194
+ * we have no HW DIVIDE (for now).
5195
+ */
5196
+#define        TARGET_HAS_NO_HW_DIVIDE
5197
+
5198
+/* TARGET_EDOM ... The value of EDOM on the target machine, as a C integer
5199
+ * expression.  If you don't define this macro, GCC does not attempt to deposit
5200
+ * the value of EDOM into errno directly.  Look in /usr/include/errno.h to find
5201
+ * the value of EDOM on your system.
5202
+ *
5203
+ * EDOM is the error created when a math argument is out of the domain of the
5204
+ * function.
5205
+ *
5206
+ * ZipCPU: Don't need it---I don't think.
5207
+ */
5208
+
5209
+/* GEN_ERRNO_RTX ... Define this macro as a C exrpession to create an rtl
5210
+ * expression that refers to the global "variable" errno.  (On certain
5211
+ * systems, errno may not actually be a variable.)  If you don't define this
5212
+ * macro, a reasonable default is used.
5213
+ *
5214
+ * ZipCPU --- if a reasonable default is used, we'll use that--especially since
5215
+ * I doubt we'll be using errno for a while.
5216
+ */
5217
+
5218
+/* NEXT_OBJC_RUNTIME ... Set this macro to 1 to use the "NeXT" Objective-C
5219
+ * message sending conventions by default.  This calling convention involves
5220
+ * passing the object, the selector and the method arguments all at once to the
5221
+ * method-lookup library function.  This is the usual setting when targetting
5222
+ * Darwin/Mac OS X systems, which have the NeXT runtime installed.
5223
+ *
5224
+ * If the macro is set to 0, ...
5225
+ *
5226
+ * Doesn't look relevant (yet) for the Zip CPU--especially since we don't have
5227
+ * an O/S yet.
5228
+ */
5229
+
5230
+
5231
+
5232
+/* 17.13 Addressing Modes */
5233
+
5234
+/* C expressions that are nonzero if the machine supports pre-increment,
5235
+ * pre-decrement, post-increment, or post-decrement addressing respectively.
5236
+ */
5237
+#define        HAVE_PRE_INCREMENT      (0)
5238
+#define        HAVE_PRE_DECREMENT      (0)
5239
+#define        HAVE_POST_INCREMENT     (0)
5240
+#define        HAVE_POST_DECREMENT     (0)
5241
+
5242
+/* C expression that is nonzero if the machine supports pre- or post- address
5243
+ * side-effect generation involving constants other than the size of the memory
5244
+ * operand.
5245
+ */
5246
+#define        HAVE_PRE_MODIFY_DISP    (0)
5247
+#define        HAVE_POST_MODIFY_DISP   (0)
5248
+
5249
+/* C expression that is non-zero if the machine supports pre- or post-address
5250
+ * side-effect generation involving a register displacement.
5251
+ */
5252
+#define        HAVE_PRE_MODIFY_REG     (0)
5253
+#define        HAVE_POST_MODIFY_REG    (0)
5254
+
5255
+/* CONSTANT_ADDRESS_P(X) ... A C expression that is 1 if the RTX X is a constant
5256
+ * which is a valid address.  On most machines the default definition ... is
5257
+ * acceptable, but a few machines are more restrictive as to which constant
5258
+ * addresses are supported.
5259
+ *
5260
+ * Zip CPU is designed for offset addresses, not constant addresses.  Although
5261
+ * the CPU will support 18-bit signed constant addresses, the assembler and
5262
+ * general programming model do not.  Further, without knowing where the final
5263
+ * address will be located, this is an unusable model.  Therefore we will
5264
+ * define this as not supported.
5265
+ *
5266
+ * In hindsight, this isn't true--labels and symbols are valid addresses, and
5267
+ * they are also constant addresses.  Hence, we leave this at its default.
5268
+ */
5269
+// #undef      CONSTANT_ADDRESS_P
5270
+// #define     CONSTANT_ADDRESS_P(X)   (0)
5271
+
5272 111 dgisselq
+/* CONSTANT_P(X) ... CONSTANT_P, which is defined by target-independent code,
5273
+ * accepts integer values expressions whose values are not explicitly known,
5274
+ * such as symbol_ref, label_ref, and high expressions and const arithmetic
5275
+ * expressions, in addition to const_int and const_double expressions.
5276 102 dgisselq
+ *
5277
+ * Huh???
5278
+ */
5279
+// #define CONSTANT_P(X) ???
5280
+
5281 111 dgisselq
+/* MAX_REGS_PER_ADDRESS ... A number, the maximum number of registers that can
5282
+ * appear in a valid memory address.  Note that it is up to you to specify a
5283
+ * value equal to the maximum number that TARGET_LEGITIMATE_ADDRESS_P would
5284
+ * ever accept.
5285 102 dgisselq
+ */
5286
+#define        MAX_REGS_PER_ADDRESS    1
5287
+
5288
+/* TARGET_LEGITIMATE_ADDRESS_P(MODE,RTX,STRICT) ... A function that returns
5289
+ * whether RTX is a legitimate memory address on the target machine for a
5290
+ * memory operation of mode MODE.
5291
+ */
5292
+#undef TARGET_LEGITIMATE_ADDRESS_P
5293
+#define TARGET_LEGITIMATE_ADDRESS_P    zip_legitimate_address_p
5294
+
5295
+/* TARGET_MEM_CONSTRAINT ... A single character to be used instead of the
5296
+ * default 'm' character for general memory addresses.  This defines the
5297
+ * constraint letter which matches the memory addresses accepted by
5298
+ * TARGET_LEGITIMATE_ADDRESS_P.  Define this macro if you want to support new
5299
+ * address format in your back end without changing the semantics of the 'm'
5300
+ * constraint.  This is necessary in order to preserve functionality of inline
5301
+ * assembly constructs using the 'm' constraint.
5302
+ *
5303
+ * ZipCPU--doesn't look like we need to define this at all.
5304
+ */
5305
+
5306
+/* FIND_BASE_TERM(X) ... A C expression to determine the base term of address
5307
+ * X or to provide a simplified version of X from which alias.c can easily find
5308
+ * the base term.  This macro is used in only two places: find_base_value and
5309
+ * find_base_term in alias.c.
5310
+ *
5311
+ * It is always safe for this macro  to not be defined.  It exists so that
5312
+ * alias analysis can understand machine-dependent addresses.
5313
+ *
5314
+ * ZipCPU: We'll skip this then.
5315
+ */
5316
+
5317
+/* TARGET_LEGITIMIZE_ADDRESS(RTX,OLD,MODE) ... This hook is given an invalid
5318
+ * memory address RTX for an operand of mode MODE and should try to return a
5319
+ * valid memory address.  RTX will always be the result of a call to
5320
+ * break_out_memory_refs, and OLD will be the operand that was given to that
5321
+ * function to produce RTX.
5322
+ *
5323 111 dgisselq
+ * ZipCPU --
5324 102 dgisselq
+ */
5325 111 dgisselq
+#undef TARGET_LEGITIMIZE_ADDRESS
5326
+#define        TARGET_LEGITIMIZE_ADDRESS       zip_legitimize_address
5327 102 dgisselq
+
5328
+/* LEGITIMIZE_RELOAD_ADDRESS(X,MODE,OP,TYPE,IND,WIN) ... A C compound statement
5329
+ * that attempts to replace X, which is an address that needs reloading, with
5330
+ * a valid memory address for an operand of mode MODE.  WIN will be a C
5331
+ * statement label elsewhere in the code.  It is not necessary to define this
5332
+ * macro, but it might be useful for performance reasons.
5333
+ *
5334
+ * ZipCPU: This is worth coming back to, according to the notes page, but it
5335
+ * may also be a difficult macro to use.  Look at other implementations before
5336
+ * we dive into this.
5337
+ */
5338
+// #undef LEGITIMIZE_RELOAD_ADDRESS
5339
+// #define LEGITIMIZE_RELOAD_ADDRESS
5340
+
5341
+/* TARGET_MODE_DEPENDENT_ADDRESS_P(ADDR,SPACE) ... This hook returns true
5342
+ * if memory address addr in address space addrspace can have different meanings
5343
+ * depending on the machine mode of the memory reference it is used for or if
5344
+ * the address is valid for some modes but not others.
5345
+ */
5346
+#undef TARGET_MODE_DEPENDENT_ADDRESS_P
5347
+#define        TARGET_MODE_DEPENDENT_ADDRESS_P         zip_mode_dependent_address_p
5348
+
5349 111 dgisselq
+/* TARGET_LEGITIMATE_CONSTANT_P(MODE,RTX) ... This hook returns true if x is a
5350
+ * legitimate constant for a MODE-mode immediate operand on the target machine.
5351
+ * You can assume the RTX satisfies CONSTANT_P, so you need not check this.
5352
+ *
5353
+ * The default definition returns true.
5354 102 dgisselq
+ */
5355
+
5356
+/* TARGET_DELIGITIMIZE_ADDRESS(RTX)
5357
+ */
5358
+
5359
+/* TARGET_CONST_NOT_OK_FOR_DEBUG_P(RTX) ... This hook should return true if RTX
5360
+ * should not be emitted into debug sections.
5361
+ */
5362
+
5363
+/* TARGET_CANNOT_FORCE_CONST_MEM(MODE,RTX) ... This hook should return true if
5364
+ * RTX is a form that cannot (or should not) be spilled to the constant pool.
5365
+ * MODE is the mode of X.  The default version returns false.
5366
+ */
5367 111 dgisselq
+// #define     TARGET_CANNOT_FORCE_CONST_MEM   hook_bool_mode_rtx_false
5368 102 dgisselq
+
5369
+/* TARGET_USE_BLOCKS_FOR_CONSTANT_P(MODE,RTX) ... This hook should return true
5370
+ * if pool entries for constant RTX can be placed in an object_block structure.
5371
+ * MODE is the mode of X.  The default version returns false for all constants.
5372
+ *
5373
+ *????
5374
+ */
5375
+// #warning "Huh?"
5376
+
5377
+/* TARGET_USE_BLOCKS_FOR_DECL_P(DECL) ... This hook should return true if pool
5378
+ * entries for DECL should be placed in an object_block structure.  The default
5379
+ * version returns true for all DECL's.
5380
+ *
5381
+ * Sounds good.
5382
+ */
5383
+
5384
+/* TARGET_BUILTIN_RECIPROCAL(TREE) ... This hook should return the DECL of a
5385
+ * function that implements the reciprocal of the machine specific builtin
5386
+ * function fndecl, or NULL_TREE if such a function is not available.
5387
+ */
5388
+
5389
+/* TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD(VOID) ... This hook should return the
5390
+ * DECL of a function f that given an address addr as an argument returns a mask
5391
+ * m that can be used to extrract from two vectors the relevant data that
5392
+ * resides in addr in case addr is not properly aligned.
5393
+ *
5394
+ * Zip CPU does not support vectorization.
5395
+ */
5396
+
5397
+/* Other vector, SIMD, and GOACC macros skipped as Zip CPU doesn't support
5398
+ * such data accesses and manipulation.
5399
+ */
5400
+
5401
+/* 17.14 Anchored Addresses */
5402
+
5403
+/* TARGET_MIN_ANCHOR_OFFSET ... The minimum offset that should be applied to
5404
+ * a section anchor.  On most targets, it should be the smallest offset that
5405
+ * can be applied to a base register while still giving a legitimate address for
5406
+ * every mode.  The default value is 0.
5407
+ *
5408
+ * On the Zip CPU, this is the minimum operand B offset to a LOD or STO
5409
+ * operation, which would be a signed 14 bit number.
5410
+ */
5411
+#undef TARGET_MIN_ANCHOR_OFFSET
5412
+#define TARGET_MIN_ANCHOR_OFFSET       zip_min_anchor_offset
5413
+
5414
+/* TARGET_MAX_ANCHOR_OFFSET ... Like TARGET_MIN_ANCHOR_OFFSET, but the maximum
5415
+ * (inclusive) offset that should be applied to section anchors.  The default
5416
+ * value is 0.
5417
+ */
5418
+#undef TARGET_MAX_ANCHOR_OFFSET
5419
+#define TARGET_MAX_ANCHOR_OFFSET       zip_max_anchor_offset
5420
+
5421
+/* TARGET_ASM_OUTPUT_ANCHOR(RTX) ... Write the assembly code to define section
5422
+ * anchor RTX, which is a SYMBOL_REF for which 'SYMBOL_REF_ANCHOR_P(RTL) is
5423
+ * true.  The hook is called with the assembly output position set to the
5424
+ * beginning of SYMBOL_REF_BLOCK(X).
5425
+ *
5426
+ * If ASM_OUTPUT_DEF is available, the hook's default definition uses it to
5427
+ * define the symbol as '. + SYMBOL_REF_BLOCK_OFFSET(RTL)'.  If ASM_OUTPUT_DEF
5428
+ * is not available, the hook's default definition is NULL, which disables the
5429
+ * use of section anchors altogether.
5430
+ *
5431
+ * Section anchors will be very valuable in Zip CPU assembly, therefore we
5432
+ * must define this hook.
5433
+ */
5434
+// #undef      TARGET_ASM_OUTPUT_ANCHOR
5435
+// #define     TARGET_ASM_OUTPUT_ANCHOR        zip_asm_output_anchor
5436
+
5437
+/* TARGET_USE_ANCHORS_FOR_SYMBOL_P(RTX) ... Return true if GCC should attempt
5438
+ * to use anchors to access SYMBOL_REF X.  You can assume SYMBOL_REF_HAS_BLOCK_INFO_P(X) and !SYMBOL_REF_ANCHOR_P(X).
5439
+ *
5440
+ * The default version is correct for most targets, but you might need to intercept this hook to handle things like target specific attributes or target-specific sections.
5441
+ *
5442
+ * Not knowing anything more, we'll leave the default as is for the Zip CPU.
5443
+ */
5444
+// #undef TARGET_USE_ANCHORS_FOR_SYMBOL_P
5445
+// #define TARGET_USE_ANCHORS_FOR_SYMBOL_P     zip_use_anchors_for_symbol_p
5446
+
5447
+/* 17.15 Condition Code Status */
5448
+
5449
+/* 17.15.1 Representation of condition codes using (cc0) --- that's us */
5450
+
5451
+/* CC_STATUS_MDEP ... C code for a data type which is used for declaring
5452
+ * the mdep component of cc_status.  It defaults to int.
5453
+ *
5454
+ * ZipCPU---Int is good for us.
5455
+ */
5456
+
5457
+/* CC_STATUS_MDEP_INIT ... A C expression to initialize the mdep field to
5458
+ * "empty".  The default definition does nothing, since most machines don't
5459
+ * use the field anyway.  If you want to use the field, you should probably
5460
+ * define  this macro to initialize it.
5461
+ */
5462
+
5463
+/* NOTICE_UPDATE_CC(EXP, INSN) ... A C compound statement to set the components
5464
+ * of cc_status appropriately for an insn insn whose body is exp.  It is this
5465
+ * macro's responsibility to recognize insns that set the condition code as
5466
+ * a byproduct of other activity as well as those that explicitly set (cc0).
5467
+ *
5468
+ * ZipCPU --- We need this, as not all expressions set (cc0).
5469
+ *
5470
+ */
5471 122 dgisselq
+#ifdef HAVE_cc0
5472 102 dgisselq
+#define        NOTICE_UPDATE_CC(EXP, INSN)     zip_update_cc_notice(EXP, INSN)
5473 122 dgisselq
+#endif
5474 102 dgisselq
+
5475
+
5476
+/* 17.15.2 Representation of condition codes using registers */
5477
+/* ... which the ZipCPU doesn't have.  The ZipCPU has a CC0 register, and hence
5478
+ * this section isn't supposed to apply.
5479
+ */
5480
+
5481 122 dgisselq
+/* SELECT_CC_MODE(op, x, y) ... On many machines, the condition code may be
5482
+ * produced by other instructions than compares, for example the branch can use
5483
+ * directyl the condition code set by a subtract instruction.  However, on some
5484
+ * machines when the condition code is set this way some bits (such as the
5485
+ * overflow bit) are not set in the same way as a test instruction, so that a
5486
+ * different branch instruction must be used for some conditional branches.
5487
+ * When this happens, use the machinemode of the condition code register to
5488
+ * record different formats of the condition code register.  Modes can also be
5489
+ * used to reccord which compare instruction (e.g. a signed or an unsigned
5490
+ * comparison) produced the condition codes.
5491
+ *
5492
+ * If other modes than CCmode are required, add them to 'machine-modes.def' and
5493
+ * define SELECT_CC_MODE to choose a mode given an operand of a compare.  This
5494
+ * is needed because the modes have to be chosen not only during RTL generation
5495
+ * but also, for example, by instruction combination.  The result of
5496
+ * SELECT_CC_MODE should be consistent with the mode used in the patterns; ...
5497
+ *
5498
+ * ZipCPU ... We have only one CC Mode, so we'll use the CCmode defined in
5499
+ * machine-modes.def and should be fine with it.  Hence, this doesn't need
5500
+ * to be defined.
5501 102 dgisselq
+ */
5502
+
5503
+/* TARGET_CANONICALIZE_COMPARISON(int,rtx *, rtx *, bool) ... On some machines
5504
+ * (such as the ZipCPU) not all possible comparisons are defined, but you can
5505
+ * convert an invalid comparison into a valid one.  For example, the Alpha
5506
+ * does not have a GT comparison, but you can use an LT comparison instead and
5507
+ * swap the order of the operands.
5508
+ *
5509
+ * On such machines, implement this hook to do any required conversions:  code
5510
+ * is the initial comparison code and op0 and op1 are the left and right
5511
+ * operands of the comparison, respectively.  If op0_preserve_value is true the
5512
+ * implementation is not allowed to change the value of op0 since the value
5513
+ * might be used in RTXs which aren't comparisons.  E.g. the implementation is
5514
+ * not allowed to swap operands in that case.
5515
+ *
5516
+ * GCC will not assume that the comparison resulting from this macro is valid
5517
+ * but will see if the resulting insn matches a pattern in the 'md' file.
5518
+ *
5519
+ * You need not implement this hook if it would never change the comparison
5520
+ * code or operands.
5521
+ *
5522
+ * In the case of the ZipCPU, the ZipCPU only keeps track of 8 possible
5523
+ * comparisons, and bastardizing other comparisons into those 8 is extremely
5524
+ * painful.  Therefore, we *need* this capability to make certain we can use
5525
+ * our comparisons successfully.
5526
+ *
5527
+ * The only problem is ... this hook appears to only be called on non-CC0
5528
+ * machines.  Hence, defining it hasn't done anything for us.
5529
+ */
5530 122 dgisselq
+#define        TARGET_CANONICALIZE_COMPARISON  zip_canonicalize_comparison
5531 102 dgisselq
+
5532 122 dgisselq
+/* REVERSIBLE_CC_MODE(MODE) ... A C expression whose value is one if it is
5533
+ * always safe to reverse a comparison whose mode is MODE.  If SELECT_CC_MODE
5534
+ * can ever return MODE for a floating-point inequality comparison, than
5535
+ * REVERSIBLE_CC_MODE(MODE) must be zero.
5536
+ *
5537
+ * You need not define this macro if it would always return zero or if the
5538
+ * floating-point format is anything other than IEEE_FLOAT_FORMAT.  For example,
5539
+ * here ...
5540
+ *
5541
+ * ZipCPU -- We'll always return zero, so this need not be defined.
5542
+ */
5543
+
5544
+/* REVERSE_CONDITION(CODE,MODE) ... A C expression whose value is reversed
5545
+ * condition code of thecode for comparison done in CC_MODE MODE.  This macro
5546
+ * is used only in case REVERSIBLE_CC_MODE(MODE) is nonzero. ...
5547
+ *
5548
+ * ZipCPU ... Since REVERSIBLE_CC_MODE(MODE) will always be zero, we'll leave
5549
+ * this undefined.
5550
+ */
5551
+
5552
+/* bool TARGET_FIXED_CONDITION_CODE_REGS(int *, int *) ... On targets which do
5553
+ * not use (cc0), and which use a hard register rather than a pseudo-register
5554
+ * to hold condition codes, the regular CSE passes are often not able to
5555
+ * identify cases in which the hard register is set to a common value.  Use this
5556
+ * hook to enable a small pass which optimizes such cases.  This hook should
5557
+ * return true to enable this pass, and it should set the integers to which its
5558
+ * arguments point to the hard register numbers used for condition codes.  When
5559
+ * there is only one such register, as is true on most systems, the integer
5560
+ * pointed to by p2 should  be set to INVALID_REGNUM.
5561
+ *
5562
+ * The default version of this hook returns false.
5563
+ *
5564
+ * ZipCPU --- I like the idea of enabling optimizations.  Let's return
5565
+ * something other than false.
5566
+ */
5567
+#define        TARGET_FIXED_CONDITION_CODE_REGS        zip_fixed_condition_code_regs
5568
+
5569
+/* machine_mode TARGET_CC_MODES_COMPATIBLE(M1,M2) .. On targets which use
5570
+ * multiple condition code modes in class MODE_CC, it is sometimes the case
5571
+ * that a comparison can be validly done in more than one mode.  On such a
5572
+ * system, define this target hook to take two mode arguments and to return a
5573
+ * mode in which both comparisons may be validly done.  If there is no such
5574
+ * mode, return VOIDmode.
5575
+ *
5576
+ * The default version of this hook checks whether the modes are the same.  If
5577
+ * they are, it returns that mode.  If they are different, it returns VOIDmode.
5578
+ *
5579
+ * ZipCPU--Given that we only have the one CCmode, the default definition works
5580
+ * well enough for us.
5581
+ */
5582
+
5583
+/* unsigned int TARGET_FLAGS_REGNUM ... If the target has a dedicated flags
5584
+ * register, and it needs to use the post-reload comparison elimination pass,
5585
+ * then this value should be set appropriately.
5586
+ *
5587
+ * ZipCPU---Looks like we can set this easily enough without any problems.
5588
+ */
5589
+#undef TARGET_FLAGS_REGNUM
5590
+#define        TARGET_FLAGS_REGNUM     zip_CC
5591
+
5592 102 dgisselq
+/* 17.16 Relative costs of operations */
5593
+
5594
+
5595
+// #define     REGISTER_MOVE_COST(MODE,FROM,TO)        ((MODE==DImode)||(MODE==DFmode))?4:2
5596
+// #define     TARGET_REGISTER_MOVE_COST
5597
+// #define     MEMORY_MOVE_COST(MODE, CLASS, IN)       ((MODE==DImode)||(MODE==DFmode))?8:7
5598
+/* TARGET_REGISTER_MOVE_COST(M,FRM,TO) ... This target hook should return the
5599
+ * cost of moving data of mode M from a register in class FRM to one in class
5600
+ * TO.  The classes are expressed using the enumeration values such as
5601
+ * GENERAL_REGS.  A value of 2 is the default; other values are interpreted
5602
+ * relative to that.
5603
+ *
5604
+ * It is not required that the cost always equal 2 when FROM is the same as TO;
5605
+ * on some machines it is expensive to move between registers if they are not
5606
+ * general registers.
5607
+ *
5608
+ * If reload sees ...
5609
+ *
5610
+ * ZipCPU ... We can leave this at its default value of 2.
5611
+ */
5612
+
5613
+/* TARGET_MEMORY_MOVE_COST(MOD,CL,IN) ... This target hook should return the
5614
+ * cost of moving data of mode MOD between a register of class CL and memory.
5615
+ * IN is false if the value is to be written to memory, true if it is to be
5616
+ * read in.  This cost is relative to those in TARGET_REGISTER_MOVE_COST.
5617
+ * If moving between registers and memory is more expensive that between two
5618
+ * registers, you should add this target hook to express the relative cost.
5619
+ *
5620
+ * If you do not add this target hook, GCC uses a default cost of 4 plus the
5621
+ * cost of copying via a secondary reload register, if one is needed.  If your
5622
+ * machine requires a secondary reload register to copy between memory and a
5623
+ * register of CL but the reload mechanism is more complex than copying via
5624
+ * an intermediate, use this target hook to reflect the actual cost of the
5625
+ * move.
5626
+ *
5627
+ * ZipCPU --- Memory moves are more expensive than twice the cost of register
5628
+ * moves, so let's make certain this is defined.
5629
+ */
5630
+#define        TARGET_MEMORY_MOVE_COST zip_memory_move_cost
5631
+
5632
+// #warning "This needs to be double checked, and annotated"
5633 111 dgisselq
+#define        BRANCH_COST(SPEED,PREDICTABLE)          ((PREDICTABLE)?2:5)
5634 102 dgisselq
+
5635
+/* Define this macro as a C expression which is nonzero if accessing less than
5636
+ * a word of memory (i.e. a 'char' or a 'short') is no faster than accessing
5637
+ * a word of memory.
5638
+ */
5639
+#define        SLOW_BYTE_ACCESS        1
5640
+
5641
+/* MOVE_RATIO(SPD) ... The threshold of number of scalar memory-to-memory move
5642
+ * instructions, below which a sequence of instructions should be generated
5643
+ * instead of a string move instruction or a library call.  Increasing the
5644
+ * value will always make code faster, but eventually incurs high cost in
5645
+ * increased code size.
5646
+ */
5647
+#define        MOVE_RATIO(SPD) 5
5648
+
5649
+/* TARGET_USE_BY_PIECES_INFRASTRUCTURE_P(SZ,ALGN,OP,SPD) ...
5650
+ */
5651
+// #undef      TARGET_USE_BY_PIECES_INFRASTRUCTURE_P(S,A,OP,SPD)
5652
+// #define     TARGET_USE_BY_PIECES_INFRASTRUCTURE_P(S,A,OP,SPD)// needs hook
5653
+
5654
+/* CLEAR_RATIO(SPD) ... The threshold number of scalar move instructions, below
5655
+ * which a sequence of instructions should be generated to clear memory instead
5656
+ * of a string clear instruction or a library call.  Increasing the value will
5657
+ * always make the code faster, but eventually incurs high cost in increased
5658
+ * code size.
5659
+ */
5660
+#define        CLEAR_RATIO(SPD)        MOVE_RATIO(SPD)
5661
+
5662
+/* NO_FUNCTION_CSE ... Define this macro to be true if it is as good or better
5663
+ * to call a constant function address than to call an address kept in a
5664
+ * register.
5665
+ *
5666
+ * On the Zip CPU, constant function addresses--especially relative ones,
5667
+ * can be optimized into a single cycle delay.  Register jumps will always
5668
+ * stall the whole (5-stage) pipeline.
5669
+ */
5670
+#define        NO_FUNCTION_CSE
5671
+
5672 111 dgisselq
+/* TARGET_RTX_COSTS(X,CODE,OUTER,OPNO,TOTAL,SPD) ... This target hook describes
5673
+ * the relative costs of RTL expressions.
5674
+ *
5675
+ * The cost may depend on the precise form of the expression, which is avaialble
5676
+ * for examination in X, and the fact that X appears as operand OPNO of an
5677
+ * expression with rtx code OUTER.  That is, the hook can assume that there is
5678
+ * some RTX Y such that GET_CODE(Y)==OUTER and such that either (a) XEXP(Y,OPNO)
5679
+ * == X or (b) XVEC(Y,OPNO) contains X.
5680
+ *
5681
+ * ...
5682
+ * The hook returns true when all subexpressions of x have been processed and
5683
+ * false when rtx_cost should recurse.
5684 102 dgisselq
+ */
5685 111 dgisselq
+
5686 102 dgisselq
+/* TARGET_ADDRESS_COST(ADDR,MODE,AS, SPD) ... This hook computes the cost of an
5687
+ * addressing mode that contains ADDR.  If not defined, the cost is computed
5688
+ * from the ADDR expression and the TARGET_RTX_COST hook.  In cases where more
5689
+ * than one form of an address is known, the form with the lowest cost will be
5690
+ * used.  If multiple forms have the same, lowest, cost, the one that is the
5691
+ * most complex will be used.
5692
+ *
5693
+ * ZipCPU really has only one address cost, the only type of address it
5694
+ * supports.  Sure, index addressing would cost us more, but we don't support
5695
+ * that so ... I think we're okay defining this as a constant.  Indeed, the
5696
+ * docs state that, "On RISC amchines, all instructions normally have the same
5697
+ * length and execution time.  Hence all addresses will have equal costs."
5698
+ */
5699
+#undef TARGET_ADDRESS_COST
5700
+#define        TARGET_ADDRESS_COST     zip_address_cost
5701
+
5702
+
5703
+/* TARGET_NO_SPECULATION_IN_DELAY_SLOTS_P ... This predicate controls the use
5704
+ * of the eager delay slot filler to disallow speculatively executed
5705
+ * instructions being placed in delay slots.  Targets such as certain MIPS
5706
+ * architectures posess both branches with and without delay slots.  As the
5707
+ * eager delay slot filler can decrease performance, disabling it is beneficial
5708
+ * when ordinary branches are available.  Use of delay slot branches filled
5709
+ * using basic filler is often still desirable as the delay slot can hide a
5710
+ * pipeline bubble.
5711
+ */
5712
+// How should Zip CPU define this--we have no delay slots.
5713
+
5714
+
5715
+/* 17.17 Instruction Scheduler */
5716
+
5717
+#define        TARGET_SCHED_ISSUE_RATE zip_sched_issue_rate
5718
+
5719
+/* 17.18 Dividing the Output into Sections */
5720
+
5721
+/* Switch to the text or data segment. */
5722
+#define        TEXT_SECTION_ASM_OP     "\t.text"
5723
+#define        DATA_SECTION_ASM_OP     "\t.data"
5724
+
5725
+// #undef      TARGET_LIBGCC_SDATA_SECTION
5726
+// #define     TARGET_LIBGCC_SDATA_SECTION     ".sdata"
5727
+
5728
+
5729
+/* 17.19 Position Independent Code */
5730
+
5731
+#define        PIC_OFFSET_TABLE_REGNUM                 zip_GOT
5732
+#define        PIC_OFFSET_TABLE_REG_CALL_CLOBBERED     0
5733
+// #define LEGITIMATE_PIC_OPERAND_P(X) should evaluate to X(GOT) only
5734
+
5735
+/* 17.20 Defining the Output Assembler Language */
5736
+
5737
+/* 17.20.4 Output and Generation of Labels */
5738
+
5739
+/* ASM_OUTPUT_LABEL
5740
+ * ... A default definition of this macro is provided which is correct for
5741
+ * most systems.
5742
+ */
5743
+
5744
+/* ASM_OUTPUT_FUNCTION_LABEL
5745
+ * ... if not defined, then the function name is defined in the usual manner
5746
+ * as a label.
5747
+ */
5748
+
5749
+/* ASM_OUTPUT_INTERNAL_LABEL ... Identical to ASM_OUTPUT_LABEL, except that name
5750
+ * is known to refer to a compiler-generated label.  The default definition
5751
+ * uses assemble_name_raw, which is like assemble_name except that it is more
5752
+ * efficient.
5753
+ */
5754
+
5755
+/* SIZE_ASM_OP ... A C string containing the appropriate assembler directive
5756
+ * to specify the size of a symbol, without any arguments.  ON systems that
5757
+ * use ELF, the dfault is "\t.size\t"; on other systems, the default is not to
5758
+ * define this macro.
5759
+ *
5760
+ * Define this amcro only if it is correct to use the default definitions of
5761
+ * ASM_OUTPUT_SIZE_DERECTIVE and ASM_OUTPUT_MEASURED_SIZE for your system.
5762
+ * If you need your own custom definitions of those macros, or if you do not
5763
+ * need explicit symbol sizes at all, do not define this macro.
5764
+ */
5765
+
5766
+/* ASM_OUTPUT_SIZE_DIRECTIVE
5767
+ * ASM_OUTPUT_MEASURED_SIZE
5768
+ */
5769
+
5770
+/* NO_DOLLAR_IN_LABEL ... Define this macro if the assembler does not accept
5771
+ * the character '$' in label names.  By default constructors and destructors
5772
+ * in G++ have "$" in the identifiers.  If this label is defined, '.' is
5773
+ * used instead.
5774
+ */
5775
+
5776
+/* NO_DOT_IN_LABEL ... Define this macro if the assembler does not accept the
5777
+ * character '.' in label names.  By default constructors and destructors in
5778
+ * G++ have names that use '.'.  If this macro is defined, these names are
5779
+ * rewritten to avoid '.'.
5780
+ */
5781
+
5782
+/* TYPE_ASM_OP ... A C string containing the appropriate assembler directive to
5783
+ * specify the type of a symbol, without any arguments.  On systems that use
5784
+ * ELF the default in config/elfos.h is "\t.type\t"; on other systems, the default is not to define this macro.
5785
+ *
5786
+ * Define this macro only if it is correct to use the default definition of
5787
+ * ASM_OUTPUT_TYPE_DIRECTIVE forr your system.  If you need your own custom
5788
+ * definition of this macr, or if you do not need explicit symbol types at all,
5789
+ * do not define this macro.
5790
+ */
5791
+
5792
+/* TYPE OPERAND_FMD ... A
5793
+ */
5794
+
5795
+/* ASM_OUTPUT_TYPE_DIRECTIVE
5796
+ */
5797
+
5798
+/* ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) ...
5799
+ * if this macro is not defined, then the function name is defined in the usual
5800
+ * manner as a label (by means of ASM_OUTPUT_FUNCTION_LABEL).
5801
+ */
5802
+
5803
+/* ASM_DECLARE_FUNCTION_SIZE
5804
+ * ASM_DECLARE_COLD_FUNCTION_NAME
5805
+ * ASM_DECLARE_COLD_FUNCTION_SIZE
5806
+ * ASM_DECLARE_OBJECT_NAME
5807
+ * TARGET_ASM_DECLARE_CONSTANT_NAME
5808
+ */
5809
+/* ASM_DECLARE_REGISTER_GLOBAL(STREAM, DECL, REGNO, NAME) ... A C statement
5810
+ * (sans semicolon) to output to the stdio stream STREAM any text necessary for
5811
+ * claiming a register REGNO for a global variable DECL with name NAME.
5812
+ *
5813
+ * If you don't defin this macro, that is equivalent to dfining it to do
5814
+ * nothing.
5815
+ */
5816
+
5817
+/* ASM_FINISH_DECLARE_OBJECT
5818
+ * TARGET_ASM_GLOBALIZE_LABEL
5819
+ * TARGET_ASM_GLOBALIZE_DECL_NAME
5820
+ * TARGET_ASM_ASSEMBLE_UNDEFINED_DECL
5821
+ * ASM_WEAKEN_LABEL
5822
+ * ASM_WEAKEN_DECL
5823
+ * ASM_OUTPUT_WEAKREF
5824
+ * SUPPORTS_WEAK
5825
+ * TARGET_SUPPORTS_WEAK
5826
+ * MAKE_DECL_ONE_ONLY
5827
+ * SUPPORTS_ONE_ONLY
5828
+ * TARGTE_ASM_ASSEMBLE_VISIBILITY
5829
+ * TARGET_WEAK_NOT_IN_ARCHIVE_TOC
5830
+ * ASM_OUTPUT_EXTERNAL
5831
+ * TARGET_ASM_EXTERNAL_LIBCALL
5832
+ * TARGET_ASM_MARK_DECLPRESERVED
5833
+ * ASM_OUTPUT_LABELREF
5834
+ * TARGET_MANGLE_ASSEMBLER_NAME
5835
+ * ASM_OUTPUT_SYMBOL_REF
5836
+ * ASM_OUTPUT_LABEL_REF
5837
+ * TARGET_ASM_INTERNAL_LABEL
5838
+ * ASM_OUTPUT_DEBUG_LABEL
5839
+ * ASM_GENERATE_INTERNAL_LABEL
5840
+ * ASM_FORMAT_PRIVATE_NAME
5841
+ */
5842
+
5843
+/* ASM_OUTPUT_DEF ... A C statement to output to the stdio stream STREAM
5844
+ * assembler code which defines (equates) the symbol NAME to have the value
5845
+ * VALUE.
5846
+ *
5847
+ * ZipCPU---So many other things that we need depend upon this, that we need
5848
+ * to implement a non-default version.
5849
+ */
5850
+#define        ASM_OUTPUT_DEF  zip_asm_output_def
5851
+
5852
+/* ASM_OUTPUT_DEF_FROM_DECLS
5853
+ * TARGET_DEFERRED_OUTPUT_DEFS
5854
+ * ASM_OUTPUT_WEAK_ALIAS
5855
+ * OBJ_GEN_METHOD_LABEL
5856
+ */
5857
+
5858
+
5859
+/* 17.20.7 Output of Assembler Instructions */
5860
+
5861
+#define        REGISTER_NAMES { "R0","R1","R2","R3","R4","R5","R6","R7","R8","R9", \
5862
+       "R10","R11","R12","SP","CC","PC" }
5863
+
5864
+/* REGISTER_PREFIX     (Undefined by default)
5865
+ * LOCAL_LABEL_PREFIX  (Undefined by default)
5866
+ * USER_LABEL_PREFIX   defaults to "*"
5867
+ * IMMEDIATE_PREFIX    (Undefined by default)
5868
+ *
5869
+ * If defined, C string expressions to be used for the '%R', '%L', '%U', and
5870
+ * '%I' options of asm_fprintf (see 'final.c').  These are useful when a single
5871
+ * 'md' file must support multiple assembler formats.  In that case, the various
5872
+ * 'tm.h' files can define these macros differently.
5873
+ */
5874
+// #define     USER_LABEL_PREFIX       "*"
5875
+
5876
+/* Defining memory operand address formats is in this section. */
5877
+
5878
+/* 17.20.10 Assembler Commands for Alignment */
5879
+
5880
+/* JUMP_ALIGN(label) ... The alignment (log base 2) to put in front of label,
5881
+ * which is a common destination of jumps and has no fallthru incoming
5882
+ * edge.  This macro need not be defined if you don't want any special alignment
5883
+ * to be done at such a time.  Most machine descriptions do not currently define
5884
+ * this macro.
5885
+ *
5886
+ * ZipCPU---The assembler should automatically deal with label alignment, so
5887
+ * let's not do anything about it here.
5888
+ */
5889
+
5890
+/* TARGET_ASM_JUMP_ALIGN_MAX_SKIP
5891
+ */
5892
+
5893
+/* LABEL_ALIGN_AFTER_BARRIER
5894
+ * TARGET_ASM_LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
5895
+ */
5896
+
5897
+/* LOOP_ALIGN(label)
5898
+ * TARGET_ASM_LOOP_ALIGN_MAX_SKIP
5899
+ * LABEL_ALIGN
5900
+ * TARGET_ASM_LABEL_ALIGN_MAX_SKIP
5901
+ */
5902
+
5903
+/* ASM_OUTPUT_SKIP(STREAM, NBYTES) A C statement to output to the stdio
5904
+ * stream an assembler instruction to advance the location counter by nbytes
5905
+ * bytes.
5906
+ */
5907
+
5908
+/* TARGET_ASM_LABEL_ALIGN */
5909
+/* Assembler Commands for Alignment */
5910
+#define        ASM_OUTPUT_ALIGN(STREAM,POWER)  \
5911
+               { int pwr = POWER; fprintf(STREAM, "\t.p2align %d\n", (pwr<2)?2:pwr); }
5912
+
5913
+
5914
+
5915
+/* 17.21 Controlling Debugging Information Format */
5916
+/* 17.22 Cross Compilation and Floating Point */
5917 111 dgisselq
+
5918
+// REAL_VALUE_TYPE
5919
+// REAL_VALUES_EQUAL
5920
+// REAL_VALUES_LESS ... Tess whether x is less than y
5921
+/* REAL_VALUE_FIX ... Truncates x to an unsigned integer, rouding toward zero.
5922
+ * If x is negative, returns zero.
5923
+ */
5924
+// REAL_VALUE_ATOF
5925
+// REAL_VALUE_NEGATIVE
5926
+// REAL_VALUE_ISINF
5927
+// REAL_VALUE_ISNAN
5928
+/* REAL_ARITHMETIC(OUT,CODE,X,Y) ... (Macro) Calculates an arithmetic operation
5929
+ * on two floating point values X and Y, storing the result in OUT (which must
5930
+ * be a variable).
5931
+ *
5932
+ * The operation to be performed is specified by CODE.  Only the following
5933
+ * codes are supported: PLUS_EXPR, MINUS_EXPR, MULT_EXPR, RDIV_EXPR, MAX_EXPR,
5934
+ * MIN_EXPR.
5935
+ *
5936
+ * If REAL_ARITHMETIC is asked to evaluate division by zero and the target's
5937
+ * floating point format cannot represent infinity, it will call abort().
5938
+ * Callers shoudl check for this situation first, using MODE_HAS_INFINITIES.
5939
+ */
5940
+/* REAL_VALUE_NEGATE(X) ... [Macro] Returns the negative of the floating point
5941
+ * value X.
5942
+ */
5943
+/* REAL_VALUE_ABS(X) ... [Macro] Returns the absolute value of X.
5944
+ */
5945 102 dgisselq
+/* 17.23 Mode switching instructions */
5946
+/* 17.24 Defining target-specific uses of __attribute__ */
5947
+#undef TARGET_OPTION_OVERRIDE
5948
+#define        TARGET_OPTION_OVERRIDE  zip_override_options
5949
+
5950
+/* 17.25 Emulating TLS */
5951
+/* 17.26 Defining coprocessor specifics for MIPS targets*/
5952
+
5953
+ // ZipCPU isn't MIPS.
5954
+
5955
+/* 17.27 Parameters for Precompiled Header Validity Checking */
5956
+/* 17.28 C++ ABI parameters */
5957
+/* 17.29 Adding support for named address spaces */
5958
+/* 17.30 Miscellaneous Parameters */
5959
+
5960
+/* HAS_LONG_COND_BRANCH ... Define this boolean macro to indicate whether or
5961
+ * not your architecture has conditional branches that can span all of memory.
5962
+ * It is used in conjunction with an optimization that partitions hot and
5963
+ * cold basic blocks into separate sections of the executable.  If this macro
5964
+ * is set to false, gcc will convert any conditional branches that attempt to
5965
+ * cross between sections into unconditional branches or indirect jumps.
5966
+ *
5967
+ * ZipCPU --- The assembler renders long unconditional branch code without
5968
+ * problems, so we can pretend that such long branches exist.
5969
+ */
5970
+#define        HAS_LONG_COND_BRANCH true
5971
+
5972
+/* HAS_LONG_UNCOND_BRANCH ... Define this boolean macro to indicate whether
5973
+ * or not your architecture has unconditional branches that can span all of
5974
+ * memory.  (ZipCPU does ... via the LOD (PC),PC instruction.)  It is used in
5975
+ * conjunction with an optimization that partitions hot and cold basic blocks
5976
+ * into separate sections of the executable.  If this macro is set to false,
5977
+ * gcc will convert any unconditional branches that attempt to cross between
5978
+ * sections into indirect jumps.
5979
+ *
5980
+ * ZipCPU has the LOD (PC),PC instruction which can be used to implement a long
5981
+ * jump.
5982
+ */
5983
+#define        HAS_LONG_UNCOND_BRANCH  true
5984
+
5985
+/* CASE_VECTOR_MODE ... An alias for a machine mode name.  This is the machine
5986
+ * mode that eleemnts of a jump-table should have.
5987
+ *
5988
+ */
5989
+#define        CASE_VECTOR_MODE        SImode
5990
+
5991
+/* CASE_VECTOR_SHORTEN_MODE(MIN,MAX,BODY) ... Optional: return the preferred
5992
+ * mode for an addr_diff_vec when the minimum and maximum offset are known.
5993
+ * If you define this, it enables extra code in branch shortening to deal with
5994
+ * addr_diff_vec.  To make this work, you also have to define INSN_ALIGN and
5995
+ * make the alignment for addr_diff_vec explicit.  The body argument is provided so that the offset_unsigned and scale flags can be updated.
5996
+ *
5997
+ * ZipCPU---No advantage here.
5998
+ */
5999
+
6000
+/* CASE_VECTOR_PC_RELATIVE ... Define this exrpession to indicate when
6001
+ * jump-tables should contain relative addresses.  You need not define this
6002
+ * macro if jump-tables never contain relative addresses, or jump-tables
6003
+ * should contain relative addresses only when -fPIC or -FPIC is in effect.
6004
+ *
6005
+ * ZipCPU---No advantage in PC-Relative jump tables--except in PIC relative
6006
+ * code.
6007
+ */
6008
+
6009
+/* TARGET_CASE_VALUES_THRESHOLD(VOID) ... This function returns the smallest
6010
+ * number of different values for which it is best to use a jump-table instead
6011
+ * of a tree of conditional branches.  The default is four for machines with a
6012
+ * casesi instruction and five otherwise.  This is best for most machines.
6013
+ *
6014
+ * ZipCPU---Leave at the default.
6015
+ */
6016
+
6017
+/* WORD_REGISTER_OPERATIONS ... Define this macro to 1 if operations between
6018
+ * registers with integral mode smaller than a word are always performed on the
6019
+ * entire register.  Most RISC machines have this property and most CISC
6020
+ * machines do not.
6021
+ *
6022
+ * ZipCPU---We have the property, 'cause we're fairly risk.
6023
+ */
6024
+#undef WORD_REGISTER_OPERATIONS
6025
+#define        WORD_REGISTER_OPERATIONS        1
6026
+
6027
+/* LOAD_EXTEND_OP(MEMODE) ... Define this macro to be a C expression indicating
6028
+ * when insns that read memory in MEMMODE, an integral mode narrower than a
6029
+ * word, set the bits outside of MEMMODE to be either the sign extension or
6030
+ * zero-extension of the data read.  Return SIGN_EXTEND for values of MEMMODE
6031
+ * for which the insn sign-extends, ZERO_EXTEND for which it zero-extends, and
6032
+ * UNKNOWN for other modes.
6033
+ *
6034
+ * Do not define this macro if it would always return UNKNOWN.
6035
+ *
6036
+ * ZipCPU---This should be irrelevant, so we leave it undefined.
6037
+ */
6038
+#undef LOAD_EXTEND_OP
6039
+#define        LOAD_EXTEND_OP(MEM)     SIGN_EXTEND
6040
+
6041
+/* SHORT_IMMEDIATES_SIGN_EXTEND ... Define this macro to 1 if loading short immediate values into registers sign extends.
6042
+ *
6043
+ * ZipCPU---All immediates are sign extended, so yes.
6044
+ */
6045
+#undef SHORT_IMMEDIATES_SIGN_EXTEND
6046
+#define        SHORT_IMMEDIATES_SIGN_EXTEND    1
6047
+
6048
+/* TARGET_MIN_DIVISIONS_FOR_RECIP_MUL
6049
+ */
6050
+
6051
+/* MOVE_MAX ... The maximum number of bytes that a single instruction can move
6052
+ * quickly between memory and registers or between two memory locations.
6053
+ *
6054
+ * ZipCPU --- Although we can move 32-bits at a time, and most people would call
6055
+ * this 4-bytes, the compiler defines a byte as the minimum addressable unit.
6056
+ * Therefore, this is defined to be one.
6057
+ */
6058
+#define        MOVE_MAX        1
6059
+
6060
+/* MAX_MOVE_MAX ... The maximum number of bytes that a single instruction can
6061
+ * move quickly between memory and registers or between two memory ...
6062
+ *
6063
+ * ZipCPU --- this sounds just the same as MOVE_MAX, which is the default
6064
+ * definition of this.
6065
+ */
6066
+
6067
+/* SHIFT_COUNT_TRUNCATED ... A C expression that is nonzero if on this machine
6068
+ * the number of bits actually used for the count of a shift operation is equal
6069
+ * to the number of bits needed to represent the size of the object being
6070
+ * shifted.
6071
+ *
6072
+ * You need not define this macro if it would have the value of zero.
6073
+ *
6074
+ * ZipCPU---A shift of 33 (or more) in either direction will wipe out the
6075
+ * value in the register, therefore this value should be zero, the default.
6076
+ */
6077
+
6078
+/* TARGET_SHIFT_TRUNCATION_MASK(MODE) ... This function describes how the
6079
+ * standard shift patterns for MODE deal with shifts by negative amounts or by
6080
+ * more than the width of the mode.
6081
+ *
6082
+ * ZipCPU---The default is zero, since we didn't define SHIFT_COUNT_TRUNCATED.
6083
+ * This is the case for the ZipCPU as well.
6084
+ */
6085
+
6086
+/* TRULY_NOOP_TRUNCATION(OUTPREC,INPREC) ... A C expression which is nonzero
6087
+ * if on this machine it is safe to "convert" an integer of INPREC bits to one
6088
+ * of OUTPREC bits (where OUTPREC is smaller than INPREC) by merely operating on
6089
+ * it as if it had OUTPREC bist.  On many machines, this expression can be 1.
6090
+ *
6091
+ * ZiPCPU ... If both values are 32-bit, what conversion takes place?  If one is
6092
+ * 64-bit and the other 32-bit ... I suppose it would then be safe.
6093
+ */
6094
+#undef TRULY_NOOP_TRUNCATION
6095
+#define TRULY_NOOP_TRUNCATION(O,I)     1
6096
+
6097
+/* TARGET_MODE_REP_EXTENDED(MODE,REPMODE) ... The representation of an integral
6098
+ * mode can be such that the values are always extended to a wider integral
6099
+ * mode.  Return SIGN_EXTEND if values of MODE are represented in sign-extended
6100
+ * form to REPMODE.  Return UNKNOWN otherwise.  (Currently none of the targets
6101
+ * use zero-extended.
6102
+ *
6103
+ */
6104
+// #undef      TARGET_MODE_REP_EXTENDED
6105
+// #define     TARGET_MODE_REP_EXTENDED(R,M)   SIGN_EXTEND
6106
+
6107
+/* STORE_FLAG_VALUE ... A C expression describing the value returned by a
6108
+ * comparison operator with an integral mode and stored by a store-flag
6109
+ * instruction (cstoremode4) when the condition is true.  This description
6110
+ * must apply to all the cstoremode4 patterns and all the comparison operators
6111
+ * whose results have MODE_INT mode.
6112
+ *
6113
+ * ZipCPU---Doesn't really have a STORE_FLAG_VALUE instruction ...
6114
+ */
6115
+
6116
+/* FLOAT_STORE_FLAG_VALUE
6117
+ *
6118
+ * ZipCPU
6119
+ */
6120
+
6121
+/* VECTOR_STORE_FLAG_VALUE ... define this macro on machines that have vector
6122
+ * comparison operations that return a vector result ...
6123
+ *
6124
+ * ZipCPU---Doesn't support vector operations.
6125
+ */
6126
+
6127
+/* CLZ_DEFINED_VALUE_AT_ZERO(MODE, VAL)
6128
+ * CTZ_DEFINED_VALUE_AT_ZERO(MODE, VAL)
6129
+ *
6130
+ * A C expression that indicates whetther the architecture defines a value for
6131
+ * clz or ctz with a zero operand.  A result of 0 indicates the value is
6132
+ * undefined.  If the value is defined for only the RTL expression, the macro should evaluate to 1.  If the value also applies to the corresponding optab
6133
+ * entry, then the macro should evaluate to 2.  In cases where the value is
6134
+ * defined, value should be set to this value.
6135
+ * If this macro is not defined, the value of clz or ctz at zero is assumed to
6136
+ * be undefined.
6137
+ *
6138
+ * ZipCPU---Has neither clz nor ctz instructions, so we don't need this.
6139
+ */
6140
+
6141
+/* Pmode ... An alias for the machine mode for pointers.  On most machines,
6142
+ * define this to be the integer mode corresponding to the width of a
6143
+ * hardware pointer.  SImode on 32-bits machines, or DImode on 64-bit machines.
6144
+ * On some machines you must define this to be one of the partial
6145
+ * integer modes, such as PSImode.
6146
+ */
6147
+#undef Pmode
6148
+#define        Pmode   SImode
6149
+
6150
+/* FUNCTION_MODE ... An alais for the machine mode used for memory references to
6151
+ * function being called, in call RTL expressions.  On most CISC machines, where
6152
+ * an instruction can begin at any byte address, this should be QImode.  On most
6153
+ * RISC machines, where all instructions have fixed size and alignment, this
6154
+ * should be a mode with the same size and alignment as the machine instruction
6155
+ * words--typically SImode or HImode.
6156
+ *
6157
+ * ZipCPU---Definitely SImode, as with Pmode.  (All words are 32-bits, including
6158
+ * addresses on the ZipCPU.
6159
+ */
6160
+#undef FUNCTION_MODE
6161
+#define        FUNCTION_MODE   SImode
6162
+
6163
+/* STDC_0_IN_SYSTEM_HEADERS
6164
+ */
6165
+
6166
+/* TARGET_C_PREINCLUDE(V) ... Define this hook to return the name of  a header
6167
+ * file to be included at the start of all compilations, as if it had been
6168
+ * included with #include <file>.  If this hook returns NULL, or is not defined,
6169
+ * or if the header is not found, or if the user specifies -ffreestanding or
6170
+ * -nostdinc, no header is included.
6171
+ *
6172
+ * ZipCPU --- We don't have a standard library defined yet, so we'll leave this
6173
+ * as NULL.
6174
+ */
6175
+#undef TARGET_C_PREINCLUDE
6176
+#define        TARGET_C_PREINCLUDE     NULL
6177
+
6178
+/* TARGET_CXX_IMPLICIT_EXTERN_C(CONST CHAR *) ... Define this hook to add target
6179
+ * specific C++ implicit extern C functions.  If this function returns true
6180
+ * for the name of a file-scope function, that function implicitly gets extern
6181
+ * "C" linkage rather than whatever linkage the declaration would normally have.
6182
+ * An example of such function is WinMain on Win32 targets.
6183
+ *
6184
+ * ZipCPU---Not ready to deal with this yet.
6185
+ */
6186
+
6187
+/* NO_IMPLICIT_EXTERN_C ... Define this macro if the system header files
6188
+ * support C++ as well as C.  This macro inhibits the usual method of using
6189
+ * system header files in C++, which is to pretend that the file's contents
6190
+ * are enclosed in 'extern "C" {...}'.
6191
+ *
6192
+ *
6193
+ * ZipCPU --- Don't have either C or C++ headers, so let's skip this for now.
6194
+ * Eventually, though, I think ZipCPU and C++ would go very well together.
6195
+ */
6196
+
6197
+/* REGISTER_TARGET_PRAGMAS ... Define this macro if you want to implement any
6198
+ * target specific pragmas.
6199
+ *
6200
+ * ZipCPU --- let's not.
6201
+ */
6202
+
6203
+/* HANDLE_PRAGMA_PACK_WITH_EXPANSION ... Define this macro if macros should be
6204
+ * expanded in the arguments of #pragma pack().
6205
+ *
6206
+ * ZipCPU ... why?
6207
+ */
6208
+
6209
+/* TARGET_DEFAULT_PACK_STRUCT ... If your target requires a struct packing
6210
+ * default other than 0 (meaning the machine default), define this macro to
6211
+ * the necessary value (in bytes).  This must be a value that would also be
6212
+ * valid to use with #pragma pack() (that is a small power of two.
6213
+ */
6214
+
6215
+/* DOLLARS_IN_IDENTIFIERS
6216
+ * ZipCPU --- Default (not changing C)
6217
+ */
6218
+
6219
+/* INSN_SETS_ARE_DELAYED(INSN) ... Define this macro as a C expression that
6220
+ * is nonzero if it is safe for the delay slot schedule to place instructions
6221
+ * in the delay slot of INSN, even if they appear to use a resource set or
6222
+ * clobbered in INSN.  INSN is always a ...
6223
+ *
6224
+ * ZipCPU --- You need not define this macro if it would always return zero.
6225
+ */
6226
+
6227
+/* INSN_REFERENCES_ARE_DELAYED(INSN) ... Define this macro as a C expression
6228
+ * that is nonzero if it is safe for the delay slot schedule to place
6229
+ * instructions in the delay slot of INSN, even if they appear to set or clobber
6230
+ * a resource referenced in INSN.  INSN is always a jump_insn or an insn.  On
6231
+ * machines where some insn or jump_insn is really a function call and ...
6232
+ *
6233
+ * ZipCPU --- You need not define this macro if it would always return zero.
6234
+ */
6235
+
6236
+/* MULTIPLE_SYMBOL_SPACES ... Define this macro as a C expression that is
6237
+ * nonzero if, in some cases, global symbols from one translation unit may not
6238
+ * be bound to undefined symbols in another translation unit without user
6239
+ * intervention.  For instance, under Microsoft Windows symbols must be
6240
+ * explicitly imported from shared libraries (DLLs).
6241
+ *
6242
+ * ZipCPU---You need not define this macro if it would always evaluate to zero,
6243
+ * so we won't.
6244
+ */
6245
+
6246
+/* TARGET_MD_ASM_ADJUST
6247
+ */
6248
+/* MATH_LIBRARY ... Define this macro as a C constant ... you only need to
6249
+ * define this macro if the default of "m" is wrong.
6250
+ *
6251
+ * ZipCPU --- as we don't have a math library yet, building one such that "m"
6252
+ * works doesn't sound like a problem.  Let's not define this.
6253
+ */
6254
+
6255
+/* LIBRARY_PATH_ENV ... Define this as a C string constant for the environment
6256
+ * variable that specifies where the linker should look for libraries.
6257
+ *
6258
+ * Just in case we want to add libraries for ZipCPU, let's place them in
6259
+ * /usr/local/zip/lib, so as not to confuse them with our local systems
6260
+ * libraries.
6261
+ */
6262
+#define        LIBRARY_PATH_ENV        "/usr/local/zip/lib"
6263
+
6264
+/* TARGET_POSIX_IO ... Define this macro if the target supports the following
6265
+ * POSIX file fucntions: access, mkdir, and file locking with fcntl/F_SETLKW.
6266
+ *
6267
+ * ZipCPU does not.
6268
+ */
6269
+
6270
+/* MAX_CONDITIONAL_EXECUTE ... A C expression for the maximum number of
6271
+ * instructions to execute via conditional execution instructions instead of a
6272
+ * branch.  A value of BRANCH_COST+1 is the default if the machine does not use
6273
+ * cc0 and 1 if it does use cc0.
6274
+ *
6275
+ * ZipCPU---This sounds good enough for the ZipCPU as well--as long as we have
6276
+ * BRANCH_COST defined.  However, BRANCH_COST is defined as conditionally to
6277
+ * something else, so let's keep looking into this.
6278
+ */
6279
+
6280
+/* IFCVT_MODIFY_TESTS(CEINFO,TRUE,FALSE) ... Used if the target needs to
6281 103 dgisselq
+ * perform machine-dependent modifications on the conditionals used for turning
6282 102 dgisselq
+ * basic blocks into conditionally executed code.  CEINFO points to a data
6283
+ * structure, struct ce_if_block, which contains information about the currently
6284
+ * processed blocks.  TRUE and FALSE are the tests that are used for
6285
+ * converting the then-block and the else-block, respectively.  Set either TRUE
6286
+ * or FALSE to a null pointer if the tests cannot be converted.
6287
+ *
6288
+ * ZipCPU --- I need to set this to properly take advantage of our conditional
6289
+ * execution and conditional testing capabilities.
6290
+ */
6291 122 dgisselq
+#define        IFCVT_MODIFY_TESTS(CI,TR,FL)    zip_ifcvt_modify_tests(CI,&TR,&FL)
6292 102 dgisselq
+
6293
+/* IFCVT_MODIFY_MULTIPLE_TESTS(CEINFO, BB, TRUE, FALSE) ... Like
6294
+ * IFCVT_MODIFY_TESTS, but used when converting more complicated if-statements
6295
+ * into conditions combined by and and or operations.  BB contains the basic
6296
+ * block that contains the test that is currently being processed and about to
6297
+ * be turned into a condition.
6298
+ *
6299
+ *
6300
+ * ZipCPU --- I need to set this to properly take advantage of our conditional
6301
+ * execution and conditional testing capabilities.
6302
+ */
6303
+// #warning "Need to come back to this."
6304 122 dgisselq
+#define        IFCVT_MODIFY_MULTIPLE_TESTS(CI,BB,TR,FL) TR=NULL_RTX
6305 102 dgisselq
+
6306
+
6307
+/* IFCVT_MODIFY_INSN(CEINFO, PATTERN, INSN) ... A C expression to modify the
6308
+ * PATTERN of an INSN that is to be converted to conditional execution format.
6309
+ * CEINFO points to a data structure, struct ce_if_block, which contains
6310
+ * information about the currently processed blocks.
6311
+ *
6312
+ *
6313
+ * ZipCPU --- I need to set this to properly take advantage of our conditional
6314
+ * execution and conditional testing capabilities.
6315
+ */
6316
+// #warning "Need to come back to this."
6317
+
6318
+
6319
+/* IFCVT_MODIFY_FINAL(CEINFO) ... A C expression to perform any final
6320
+ * machine dependent modifications in converting code to conditional
6321
+ * execution.  The involved basic blocks can be found in struct ce_if_block
6322
+ * structure pointed to be CEINFO.
6323
+ *
6324
+ *
6325
+ * ZipCPU --- I need to set this to properly take advantage of our conditional
6326
+ * execution and conditional testing capabilities.
6327
+ */
6328
+// #warning "Need to come back to this."
6329 122 dgisselq
+#define        IFCVT_MODIFY_FINAL(CEINFO)      zip_ifcvt_modify_final(CEINFO)
6330 102 dgisselq
+
6331
+
6332
+/* IFCVT_MODIFY_CANCEL(CEINFO) ... A C expression to cancel any machine
6333
+ * dependent modifications in converting code to conditional execution.  The
6334
+ * involved basic blocks can be found in the struct ce_if_block structure that
6335
+ * is pointed to by CEINFO.
6336
+ *
6337
+ *
6338
+ * ZipCPU --- I need to set this to properly take advantage of our conditional
6339
+ * execution and conditional testing capabilities.
6340
+ */
6341
+// #warning "Need to come back to this."
6342 122 dgisselq
+#define        IFCVT_MODIFY_CANCEL(CEINFO)     zip_ifcvt_modify_cancel(CEINFO)
6343 102 dgisselq
+
6344
+
6345
+/* IFCVT_MACHDEP_INIT(CEINFO) ... A C expression to initialize any machine
6346
+ * specific data for if-conversion of the if-block in the CEINFO block structure
6347
+ * that is pointed by CEINFO.
6348
+ *
6349
+ *
6350
+ * ZipCPU --- I need to set this to properly take advantage of our conditional
6351
+ * execution and conditional testing capabilities.
6352
+ */
6353
+// #warning "Need to come back to this."
6354 122 dgisselq
+#define        IFCVT_MACHDEP_INIT(CEINFO)      zip_ifcvt_machdep_init(CEINFO)
6355 102 dgisselq
+
6356
+
6357
+/* TARGET_MACHINE_DEPENDENT_REORG(VOID) ... If non-null, this hook performs a
6358
+ * target specific pass over the instruction stream.  The compiler will run it
6359
+ * at all optimization levels, just before the point at which it normally does
6360
+ * delayed branch scheduling.
6361
+ *
6362
+ * You need not implement the hook if it has nothing to do.
6363
+ *
6364
+ * ZipCPU---This may be part of a later upgrade, but shouldn't be needed to
6365
+ * just get us started.
6366
+ */
6367
+
6368
+
6369
+/* TARGET_INIT_BUILTINS(VOID) ... Define this hook if you ahve any machine
6370
+ * specific builtin functions that need to be defined.  It should be a function
6371
+ * that performs the necessary setup.  Machine specific builtin functions can be
6372
+ * useful to expand special machine instructions that would otherwise not
6373
+ * normally be generated because they have no equivalent in the source language.
6374
+ *
6375
+ * To create a built in function, call the function lang_hooks.builtin_function
6376
+ * which is defined by the language front end.  You can use any type nodes
6377
+ * set up by build_common_tree_nodes; only language front ends that use those
6378
+ * two functions will call "TARGET_INIT_BUILTINS".
6379
+ *
6380
+ * ZipCPU---We need to come back to this.  We should have several built-ins
6381
+ * defined: rtu(), wait(), halt(), save_context(cstackregno), and
6382
+ * restore_context(cstackregno).
6383
+ *
6384
+ */
6385
+#undef TARGET_INIT_BUILTINS
6386
+#define        TARGET_INIT_BUILTINS    zip_init_builtins
6387
+
6388
+/* TARGET_BUILTIN_DECL(CODE,INITP) ... Define this hook if you have any
6389
+ * machine specific builtin functions that need to be defined.  It should be a
6390
+ * function that returns the builtin function declaration for the builtin
6391
+ * function code code.  If there is no such builtin and it cannot be initialized
6392
+ * at this time if INITP is true the function should return NULL_TREE.  If
6393
+ * CODE is out of range the fucntion should return error-mark_node.
6394
+ *
6395
+ * ZipCPU ... needs to be done, don't know how to do it yet.
6396
+ */
6397
+#undef TARGET_BUILTIN_DECL
6398
+#define        TARGET_BUILTIN_DECL     zip_builtin_decl
6399
+
6400
+
6401
+/* TARGET_EXPAND_BUILTIN(TREE,TGT,SUB,MODE,IGNORE) ... Expand a call to a
6402
+ * machine specific built-in function that was set up by TARGET_INIT_BUILTINS.
6403
+ * TREE is the expression for the function call; the result should go to
6404
+ * TGT if that is convenient, and have mode MODE if that is convenient.  SUB
6405
+ * may be used as the target for computing one of EXP's operands.  IGNORE is
6406
+ * non-zero if the value is to be ignored.  This function should return the
6407
+ * result of the call to the built-in function.
6408
+ *
6409
+ * ZipCPU ... needs to do it, just to get our special intrinsic functions
6410
+ */
6411
+#define        TARGET_EXPAND_BUILTIN   zip_expand_builtin
6412
+
6413
+
6414
+/* TARGET_BUILTIN_CHKP_FUNCTION(FCODE) ... Allows the target to redefine
6415
+ * builtin functions used by Pointer Bounds Checker for code instrumentation.
6416
+ *
6417
+ * ZipCPU --- not interested.
6418
+ */
6419
+/* TARGET_CHKP_BOUND_TYPE
6420
+ * TARGET_CHKP_MAKE_BOUNDS_CONSTANT
6421
+ * TARGET_CHKP_INITIALIZE_BOUNDS
6422
+ *
6423
+ * ZipCPU --- Same as last one.
6424
+ */
6425
+
6426
+
6427
+/* TARGET_RESOLVE_OVERLOADED_BUILTIN(LOC, FN, ARGS) ... Select a replacement
6428
+ * for a machine specific built-in function that was set up by
6429
+ * TARGET_INIT_BUILTINS.
6430
+ *
6431
+ * ZipCPU --- If I go to the trouble to create a builtin, why would I want
6432
+ * to then overload it?
6433
+ */
6434
+
6435
+/* TARGET_FOLD_BUILTIN(FN,NARGS,ARGP,IGNORE) ... Fold a call to a machine
6436
+ * specific built-in function that was set up by 'TARGET_INIT_BUILTINS'  FN
6437
+ * is the declaration of the built-in function.  NARGS is the number of
6438
+ * arguments passed to the function; the arguments themselves are pointed to by
6439
+ * ARGP.  The result is another tree, valid for both GIMPLE and GENERIC,
6440
+ * containing as simplified expression for the call's result.  If IGNORE is
6441
+ * true the value will be ignored.
6442
+ *
6443
+ * ZipCPU --- You know, this and the previous couple sound like something
6444
+ * whereby I might be able replace bit-reversal code with my bit reverse
6445
+ * instruction.  That would be very useful, but not necessary to get me
6446
+ * started.
6447
+ */
6448
+
6449
+/* TARGET_GIMPLE_FOLD_BUILTIN
6450
+ * TARGET_COMPARE_VERSION_PRIORITY
6451
+ * TARGET_GET_FUNCTION_VERSIONS_DISPATCHER
6452
+ * TARGET_GENERATE_VERSION_DISPATCHER_BODY
6453
+ * TARGET_CAN_USE_DOLOOP_P
6454
+ * TARGET_INVALID_WITHIN_DOOLOOP
6455
+ * TARGET_LEGITIMATE_COMBINED_INSN
6456
+ * TARGET_CAN_FOLLOW_JUMP
6457
+ * TARGET_COMMUTATIVE_P
6458
+ */
6459
+
6460
+/* TARGET_ALLOCATE_INITIAL_VALUE(REGNO)  ... When the initial value of a hard
6461
+ * register has been copied in a pseudo register, it is often not necessary
6462
+ * ...
6463
+ */
6464
+/* TARGET_UNSPEC_MAY_TRAP_P(RTX,FLAGS)  ... This target hook returns nonzero in
6465
+ * RTX, un unspec or unspec_volatile operation, might cause a trap.  Targets
6466
+ * can use this hook to enhance precision of analysis for unspec and
6467
+ * unspec_volatile operations.  You may call may_trap_p_1 to analyze inner
6468
+ * elements of RTX in which case flags should be passed along.
6469
+ */
6470
+
6471
+/* TARGET_SET_CURRENT_FUNCTION(TREE)  The compiler invokes this hook whenever
6472
+ * it changes its current function context (CFUN).  You can define this
6473
+ * function if the back end needs to perform any initialization or reset
6474
+ * actions on a per-function basis.  For example, it may be used to implement
6475
+ * function attributes that affect register usage or code generation patterns.
6476
+ */
6477
+
6478
+/* TARGET_OBJECT_SUFFIX ... Define this macro to be a C string representing the
6479
+ * suffix for object files on your target machine.  If you do not define this
6480
+ * macro, GCC will use ".o" as the suffix for object files.
6481
+ */
6482
+#define        TARGET_OBJECT_SUFFIX    ".o"
6483
+
6484
+/* TARGET_EXECUTABLE_SUFFIX
6485
+ */
6486
+#define        TARGET_EXECUTABLE_SUFFIX        ""
6487
+
6488
+/* COLLECT_EXPORT_LIST ... If defined, collect2 will scan the individual object
6489
+ * files specified on its command line and create an export list for the linker.
6490
+ * Define this macro for systems like AIX, where the linker discards object
6491
+ * files that are not referenced from main and uses export lists.
6492
+ *
6493
+ * ZipCPU --- shoudln't need this.
6494
+ */
6495
+
6496
+/* MODIFY_JNI_METHOD_CALL(MDECL)  ... Define this macro to a C expression
6497
+ * representing a variant of the method call mdecl, if Java Native Interface
6498
+ * (JNI) methods must be invoked differently from other methods on your
6499
+ * target.  For example, on 32-bit MSWindows, JNI methods must be invoked
6500
+ * using the stdcall calling convention and this macro is then ...
6501
+ *
6502
+ * ZipCPU----Don't need this.  (yet)
6503
+ */
6504
+
6505
+
6506
+/* TARGET_CANNOT_MODIFY_JUMPS_P ... This target hook returns true past the
6507
+ * point in which a new jump instructions could be created.  On machines that
6508
+ * require a register for every jump such as the SHmedia ISA of SH5, this point
6509
+ * would typically be reload, so thiss target hook should be defined to a
6510
+ * function such as:
6511
+ *
6512 117 dgisselq
+ * ZipCPU --- I don't get what this is for.
6513
+ *     Actually, in hind sight, ZipCPU needs this.  Without this, the
6514
+ * compiler will try to reorder basic blocks, shuffling logic around and so
6515
+ * fortch, preventing our comparison optimizations from being used.  By setting
6516
+ * this function appropriately, we can prevent it from reversing conditions into
6517
+ * conditions we don't support.
6518 102 dgisselq
+ */
6519 117 dgisselq
+#define        TARGET_CANNOT_MODIFY_JUMPS_P    zip_cannot_modify_jumps_p
6520 102 dgisselq
+
6521
+/* TARGET_BRANCH_TARGET_REGISTER_CLASS ... This target hook returns a register
6522
+ * class for which branch target register optimizations should be applied.  All
6523
+ * registers in this class should be usable interchangably.  After reload,
6524
+ * registers in this class will be re-allocated and loads will be hoisted out of
6525
+ * loops and be subjected to inter-block scheduling.
6526
+ *
6527
+ * ZipCPU---GENERAL_REGS, but this should be a default already ...
6528
+ */
6529
+
6530
+
6531
+/* TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED ...  Branch target register
6532
+ * optimization will by default exclude callee-saved registers that are not
6533
+ * already live during the current function.  If this target hook returns true,
6534
+ * they will be included.  The target code must then make sure that all target
6535
+ * registers in the class returned by TARGET_BRANCH_REGISTER_CLASS that might
6536
+ * be saved are saaved.
6537
+ *
6538
+ * ZipCPU---
6539
+ */
6540
+
6541
+
6542
+/* TARGET_HAVE_CONDITIONAL_EXECUTION(VOID) ... This target hook returns true
6543
+ * if the target supports conditional execution.  This target hook is required
6544
+ * only when the target has several different modes and they have different
6545
+ * conditional execution capability, such as ARM.
6546
+ *
6547
+ * ZipCPU---Yes!  All instructions may be conditionally executed (except the
6548
+ * long version load immediate ...)
6549
+ */
6550
+#define        TARGET_HAVE_CONDITIONAL_EXECUTION       hook_bool_void_true
6551
+
6552
+/* TARGET_GEN_CCMP_FIRST(PREP,GEN,CODE,OP0,OP1) .. This function prepares to
6553
+ * emit a comparison instruction for the first compare in a sequence of
6554
+ * conditional comparisons.  It returns an appropriate comparison with CC for
6555
+ * passing to gen_ccmp_next or cbranch_optab.  The instructions to prepare the
6556
+ * compare are saved in prep_seq and the compare instructions are saved in
6557
+ * gen_seq.  They will be emitted when all the compares in the conditional
6558
+ * comparison are generated without error.  CODE is the rtx_code of the compare
6559
+ * for op0 and op1.
6560
+ *
6561
+ *
6562
+ * ZipCPU---???
6563
+ */
6564
+
6565
+/* TARGET_GEN_CCMP_NEXT(PREP,GEN,PREV,CMP,OP0,OP1,BITCODE) ... This function
6566
+ * prepares to emit a conditional comparison within a sequence of conditional
6567
+ * comparisons.  It returns an appropriate comparison with CC for passing to
6568
+ * gen_ccmp_next or cbranch_optab.  The insn to prepare the compare are saved
6569
+ * in prep_seq and the compare instructions are saved in gen_seq.  They will be
6570
+ * emitted when all the compares in the conditional comparison are generated
6571
+ * without error.  The pPREV expression is the result of a prior call to either
6572
+ * gen_ccmp_first or gen_ccmp_next.  It may return NULL if the combination of
6573
+ * PREV and this comparison is not supported, otherwise the result must be the
6574
+ * appropriate for passing to gen_ccmp_next or cbranch_optab.  CODE is the RTX
6575
+ * code of the compare for op0 and op1.  BITCODE is AND or IOR, which is the op
6576
+ * on the compares.
6577
+ *
6578
+ *
6579
+ * ZipCPU --- ???
6580
+ */
6581
+
6582
+/* TARGET_LOOP_UNROLL_ADJUST(NUNROLL, LOOP) ... This target hook returns a new
6583
+ * value for the number of times loop should be unrolled.  The parameter NUNROLL
6584
+ * is the number of times the loop is to be unrolled.  The parameter loop is a
6585
+ * pointer to the loop, which is going to be checked for unrolling.  The target
6586
+ * hook is required only when the target has special constraints like maximum number of memory accesses.
6587
+ *
6588
+ *
6589
+ * ZipCPU -- ???
6590
+ */
6591
+
6592
+
6593
+/* POWI_MAX_MULTS ... If defined, this macro is interpreted as a signed integer
6594
+ * C expression that specifies the maximum number of floating point
6595
+ * multiplications that should be emitted when expanding exponentiation by an
6596
+ * integer constant inline.  When this value is defined, exponentiation
6597
+ * requiring more than this number of multiplications is implemented by calling
6598
+ * the system library's pow, powf, or powl routines.  The default value
6599
+ places no upper bound on the multiplication count.
6600
+ *
6601
+ * ZipCPU---As we have no system library pow() routine (yet) ... we're not
6602
+ * ready for this macro.
6603
+ */
6604
+
6605
+
6606
+/* TARGET_EXTRA_INCLUDES(SYSROOT, PFX, STDINC) ... This target hook should
6607
+ * register any extra include files for the target.  The parameter stdinc
6608
+ * indicates if normal include files are present.  The parameter SYSROOT is the
6609
+ * system root directory.  The parameter PFX is the prefix for the GCC
6610
+ * directoiry.
6611
+ *
6612
+ *
6613
+ * ZipCPU---None yet.
6614
+ */
6615
+
6616
+/* TARGET_EXTRA_PRE_INCLUDES(SYSROOT, PFX, STDINC) ... This target hook should
6617
+ * register any extrra include files for the target before any standard headers.
6618
+ * The parameter stdinc indicates if normal include files are present.
6619
+ *
6620
+ * ZipCPU --- None.
6621
+ */
6622
+
6623
+/* TARGET_OPTF(PATH) ... This target hook should register special include paths
6624
+ * for the target.  The parameter path is the integer to register.  On Darwin
6625
+ * systems, this is used for Framework includes, which have semantics that are
6626
+ * different from -I.
6627
+ *
6628
+ *
6629
+ * ZipCPU --- None.
6630
+ */
6631
+
6632
+/* TARGET_USE_LOCAL_THUNK_ALIAS_P(FN) ... This target macro returns if it is
6633
+ * safe to use a local alias for a virtual function FN when constructing
6634
+ * thunks, false otherwise.  By default, the macro returns true for all
6635
+ * functions, if a target supports aliases (i.e. defines ASM_OUTPUT_DEF),
6636
+ * false otherwise.
6637
+ *
6638
+ *
6639
+ * ZipCPU --- ???
6640
+ */
6641
+// #warning "ASM_OUTPUT_DEF's definition has not been considered"
6642
+
6643
+
6644
+/* TARGET_FORMAT_TYPES ... If defined, this macro is the name of a global
6645
+ * variable containing target-specific format checking information for the
6646
+ * -Wformat option.  The default is to have no target-specific format checks.
6647
+ *
6648
+ * ZipCPU --- Default
6649
+ */
6650
+
6651
+/* TARGET_N_FORMAT_TYPES
6652
+ *
6653
+ * ZipCPU --- Default
6654
+ */
6655
+
6656
+/* TARGET_OVERRIDES_FORMAT_ATTRIBUTES ... If defined, this macro is the name of
6657
+ * a global variable containing target-specific format overrides for the
6658
+ * -Wformat option.  The default is to have no target specific format overrides.
6659
+ *
6660
+ * ZipCPU --- Default
6661
+ */
6662
+
6663
+/* TARGET_OVERRIDEES_FORMAT_ATTRIBUTES
6664
+ * TARGET_OVERRIDEES_FORMAT_ATTRIBUTES_COUNT
6665
+ *
6666
+ * If defined, the (first) macro is the name of a global variable containing
6667
+ * target-specific format overrides for the -Wformat option.
6668
+ */
6669
+/* TARGET_OVERRIDES_FORMAT_INIT ... If defined, this macro specifies the
6670
+ * optional initialization routine for target specific customizations of the
6671
+* system printf and scanf formatter settings.
6672
+ */
6673
+
6674
+/* TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN(TLIST,FN,VAL) ... If defined, this
6675
+ * macro returns the diagnostic message when it is illegal to pass an argument
6676
+ * VAL to function FN with prototype TLIST.
6677
+ *
6678
+ * ZipCPU---Default.
6679
+ */
6680
+
6681
+/* TARGET_INVALID_CONVERSION
6682
+ * TARGET_INVALID_UNARY_OP
6683
+ * TARGET_INVALID_BINARY_OP
6684
+ * TARGET_INVALID_PARAMETER_TYPE
6685
+ * TARGET_INVALID_RETURN_TYPE
6686
+ * TARGET_PROMOTED_TYPE
6687
+ * TARGET_CONVERT_TO_TYPE
6688
+ * TARGET_USE_JCR_SECTION_TYPE
6689
+ * OBJC_JBLEN
6690
+ * LIBGCC2_UNWIND_ATTRIBUTE
6691
+ * TARGET_UPDATE_STACK_BOUNDARY
6692
+ * TARGET_GET_DRAP_RTX
6693
+ * TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS
6694
+ */
6695
+/* TARGET_CONST_ANCHOR ... On some architectures it can take multiple
6696
+ * instructions to synthesize a constant. If there is another constant already
6697
+ * in a register that is close enough in value then it is preferable that the
6698
+ * new constant is computed from the register using immediate addition or
6699
+ * subtraction.  We accomplish this through CSE.  Besides the value of the
6700
+ * constant we also add a lower and an upper constant anchor to the available
6701
+ * expressions.  These are then queried when encountering new constants.  The
6702
+ * anchors are computed by rounding the constant up and down to a multiple of
6703
+ * the value of TARGET_CONST_ANCHOR.  TARGET_CONST_ANCHOR should be the maximum
6704
+ * positive value accepted by immediate-add plus one.  We currently assume that
6705
+ * the value of TARGET_CONST_ANCHOR is a poewr of 2.  For example, on MIPS,
6706
+ * where add-immediate takes a 16-bit signed value, TARGET_CONST_ANCHOR is set
6707
+ * to 0x8000.  The default value is zero, which disables this optimization.
6708
+ *
6709
+ * ZipCPU---One of the great strengths of the ZipCPU ISA is its ability to
6710
+ * access registers plus immediates.  To use this, we *need* this capability.
6711
+ * So, we define it here. (to 0x20000, or 2^17 because we can handle 18-bits of
6712
+ * signed immediate offsets)
6713
+ *
6714
+ * On ZipCPU---2^17
6715
+ */
6716
+#define        TARGET_CONST_ANCHOR     zip_const_anchor
6717
+
6718
+/* TARGET_ASAN_SHADOW_OFFSET ... Return the offset bitwise ored into shifted
6719
+ * address to get corresponding Address Sanitizer shadow memory address.  NULL
6720
+ * if address Sanitizer is not supported by the target.
6721
+ */
6722
+#define        TARGET_ASAN_SHADOW_OFFSET       NULL
6723
+
6724
+/* TARGET_MEMMODEL_CHECK
6725
+ */
6726
+/* TARGET_ATOMIC_TEST_AND_SET_TRUEVAL ... This value should be set if the result
6727
+ * written by atomic test and set is not exactly 1, i.e. the bool true.
6728
+ */
6729
+/* TARGET_HAS_IFUNC_P ... It returns true if the target supports GNU indirect
6730
+ * functions.  The support includes the assembler, linker, and dynamic linker.
6731
+ * The default value of this hook is based on target's libc.
6732
+ */
6733
+#define        TARGET_HAS_IFUNC_P      hook_bool_void_true
6734
+
6735
+/* TARGET_ATOMIC_ALIGN_FOR_MODE(MODE) ... If defined, this function returns
6736
+ * an appropriate alignment in bits for an atomic object of machine mode
6737
+ * MODE.  If 0 is returned then the default alignment for the specified mode
6738
+ * is used.
6739
+ *
6740
+ * ZipCPU---Both default and 2 would be valid.  We'll stick to the default.
6741
+ */
6742
+
6743
+/* TARGET_ATOMIC_ASSIGN_EXPAND_FENV --- ISO C11 requires atomic compound
6744
+ * assignments that may raise floating-point exceptions to raise exceptions
6745
+ * corresponding to the arithmetic operation whose result was successfully
6746
+ * stored in a compare-and-exchange sequence.  This requires code equivalent to
6747
+ * calls to feholdexcept, feclearexcept and feupdateenv to be generated at
6748
+ * appropriate points in the compare-and-exchange sequence.  This hook should
6749
+ * set *hold to an expression equivalent
6750
+ *
6751
+ * ZipCPU --- ???
6752
+ */
6753
+
6754
+/* TARGET_RECORD_OFFLOAD_SYMBOL ... Used when offloaded functions are seen in
6755
+ * the compilation unit and no named sections are available.  It is called once
6756
+ * for each symbol that must be recorded in the offload function and variable
6757
+ * table.
6758
+ *
6759
+ * ZipCPU --- Offloaded functions?
6760
+ */
6761
+
6762
+/* TARGET_OFFLOAD_OPTIONS
6763
+ *
6764
+ * ZipCPU---none defined
6765
+ */
6766
+
6767
+/* TARGET_SUPPORTS_WIDE_INT ... On older ports, large integers are stored
6768
+ * in CONST_DOUBLE rtl objects.  Newer ports define TARGET_SUPPORTS_WIDE_INT
6769
+ * to be nonzero to indicate that large integers are stored in CONST_WIDE_INT
6770
+ * rtl objects.  The CONST_WIDE_INT allows very large integer constants to be
6771
+ * represented.  CONST_DOUBLE is limited to twice the size of the hosts
6772
+ * HOST_WIDE_INT representation.
6773
+ *
6774
+ * ZipCPU---We don't need these yet, so this isn't yet relevant.  (These ints
6775
+ * are wider than DImode ...)
6776
+ */
6777
+#define        TARGET_SUPPORTS_WIDE_INT        0
6778
+
6779
+
6780
+/* Now, for the prototype functions ...*/
6781
+// These have been moved to zip-protos.h
6782
+
6783
+// extern void zip_init_builtins(void);
6784
+// extern void zip_asm_output_anchor(rtx x);
6785
+// extern bool zip_legitimate_address_p(enum machine_mode mode, rtx x, bool string);
6786
+// extern void zip_asm_trampoline_template(FILE *);
6787
+// extern void zip_initial_elimination_offset(int from, int to);
6788
+// extern void zip_print_operand(FILE *stream, rtx *x, int code);
6789
+// extern void zip_print_operand_address(FILE *stream, rtx *x);
6790
+// extern void zip_asm_output_def(FILE *s, const char *n, const char *v);
6791
+// extern void zip_update_cc_notice(rtx exp, rtx_insn *insn);
6792
+// extern      int zip_address_operand(rtx op);
6793
+// extern      int zip_const_address_operand(rtx op);
6794
+// extern void zip_expand_prologue(void);
6795
+// extern void zip_expand_epilogue(void);
6796
+// extern bool zip_gen_move_rtl(rtx, rtx);
6797
+// extern bool zip_load_address_lod(rtx, rtx);
6798
+// extern bool zip_load_address_sto(rtx, rtx);
6799
+// extern void zip_print_operand(FILE *fp, rtx x, int code);
6800
+// extern void zip_print_operand_address(FILE *fp, rtx x);
6801
+// extern bool zip_use_return_insn(void);
6802
+
6803 111 dgisselq
+#define        UQQmode USQmode
6804
+#define        UHQmode USQmode
6805
+#define        UHAmode USAmode
6806
+#define        QQmode  SQmode
6807
+#define        HQmode  SQmode
6808 102 dgisselq
+#define        QImode  SImode
6809
+#define        HImode  SImode
6810 111 dgisselq
+#define        QAmode  SAmode
6811
+#define        HAmode  SAmode
6812 102 dgisselq
+
6813
+#include "insn-modes.h"
6814
+#include "zip-protos.h"
6815
+
6816
+#endif /* GCC_ZIP_H */
6817
+
6818
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/zip/zip.md gcc-5.3.0-zip/gcc/config/zip/zip.md
6819
--- gcc-5.3.0-original/gcc/config/zip/zip.md    1969-12-31 19:00:00.000000000 -0500
6820 125 dgisselq
+++ gcc-5.3.0-zip/gcc/config/zip/zip.md 2016-04-12 21:02:20.294810924 -0400
6821 124 dgisselq
@@ -0,0 +1,2422 @@
6822 102 dgisselq
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6823
+;;
6824
+;; Filename:   zip.md
6825
+;;
6826
+;; Project:    Zip CPU -- a small, lightweight, RISC CPU soft core
6827
+;;
6828
+;; Purpose:    This is the machine description of the Zip CPU as needed by the
6829
+;;             GNU compiler collection (GCC).
6830
+;;
6831
+;;
6832
+;; Creator:    Dan Gisselquist, Ph.D.
6833
+;;             Gisselquist Technology, LLC
6834
+;;
6835
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6836
+;;
6837
+;; Copyright (C) 2015, Gisselquist Technology, LLC
6838
+;;
6839
+;; This program is free software (firmware): you can redistribute it and/or
6840
+;; modify it under the terms of  the GNU General Public License as published
6841
+;; by the Free Software Foundation, either version 3 of the License, or (at
6842
+;; your option) any later version.
6843
+;;
6844
+;; This program is distributed in the hope that it will be useful, but WITHOUT
6845
+;; ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
6846
+;; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6847
+;; for more details.
6848
+;;
6849
+;; License:    GPL, v3, as defined and found on www.gnu.org,
6850
+;;             http://www.gnu.org/licenses/gpl.html
6851
+;;
6852
+;;
6853
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6854
+;;
6855
+;;
6856
+;; - Immediate integer operand constraints
6857
+;;     'I'     -2^22 ... 2^22-1, or -4194304 .. 4194303        (LDI insn)
6858
+;;     'M'     -2^12 ... 2^12-1, or -4096 ... 4095             (MOV offset)
6859
+;;     'N'     -2^14 ... 2^14-1, or -16384 ... 16383           (OpB offset)
6860
+;;     'O'     -2^17 ... 2^17-1, or -131072 ... 131071         (OpB Immediate)
6861
+;;     'R'     0...31                                          (Shift value)
6862
+;; - Memory constraints
6863 111 dgisselq
+;;     "Q"     Op-B capable references to memory
6864
+;;     "S"     References to constant memory
6865 102 dgisselq
+;; - Address constraints
6866 111 dgisselq
+;;     "U"     Op-B capable address that references to memory
6867
+;;     "T"     Constant memory addresses
6868 102 dgisselq
+(define_constraint "M"
6869
+  "An 13-bit signed immediate such as a MOV instruction can handle"
6870
+  (and (match_code "const_int")
6871
+       (match_test "(ival < 0x1000) && (ival >= -0x1000)")))
6872
+(define_constraint "N"
6873
+  "An 14-bit signed immediate offset such as an Op-B register offset"
6874
+  (and (match_code "const_int")
6875
+       (match_test "(ival < 0x2000) && (ival >= -0x2000)")))
6876
+(define_constraint "O"
6877
+  "An 18-bit signed immediate such as an Op-B Immediate can handle"
6878
+  (and (match_code "const_int")
6879
+       (match_test "(ival < 0x20000) && (ival >= -0x20000)")))
6880
+(define_constraint "R"
6881
+  "Bits that a value may be shifted"
6882
+  (and (match_code "const_int")
6883
+       (match_test "(ival < 32) && (ival >= 0)")))
6884
+;;
6885
+;
6886
+;
6887
+; Our builtin functions, by identifier
6888
+;
6889
+(define_constants
6890 117 dgisselq
+       [(UNSPEC_RTU             1)
6891
+       (UNSPEC_HALT             2)
6892
+       (UNSPEC_IDLE             3)
6893
+       (UNSPEC_SYSCALL          4)
6894
+       (UNSPEC_SAVE_CONTEXT     5)
6895
+       (UNSPEC_RESTORE_CONTEXT  6)
6896
+       (UNSPEC_BITREV           7)
6897
+       (UNSPEC_GETUCC           8)
6898
+       (UNSPEC_GETCC            9)
6899
+       (UNSPEC_LDILO           10)
6900 102 dgisselq
+       ])
6901
+;
6902
+;
6903
+; Registers by name
6904
+(define_constants
6905
+  [(RTN_REG            0)      ; Return address register
6906
+   (RTNV_REG           1)      ; Subroutine return value register
6907
+   (AP_REG             10)     ; Hopefully never used
6908
+   (GBL_REG            11)     ; Hopefully never used, but just in case ...
6909
+   (FP_REG             12)
6910
+   (SP_REG             13)
6911
+   (CC_REG             14)
6912
+   (PC_REG             15)
6913
+  ])
6914
+;
6915
+;
6916
+;
6917
+
6918
+;; Predicates
6919
+(define_predicate "zip_const_address_operand_p"
6920
+       (match_code "symbol_ref,const,label_ref,code_label")
6921
+{
6922
+       return zip_const_address_operand(op);
6923
+})
6924
+
6925
+(define_predicate "zip_address_operand_p"
6926
+       (match_code "reg,plus")
6927
+{
6928 111 dgisselq
+       return zip_pd_opb_operand(op);
6929 102 dgisselq
+})
6930
+
6931 111 dgisselq
+(define_predicate "zip_opb_operand_p"
6932 122 dgisselq
+       (match_code "reg,plus,const_int,subreg")
6933 111 dgisselq
+{
6934
+       return zip_pd_opb_operand(op);
6935
+})
6936
+
6937 122 dgisselq
+(define_predicate "zip_opb_immv_p"
6938
+       (match_code "const_int")
6939
+{
6940
+       return (INTVAL(op)<((1<<13)-1))&&(INTVAL(op)>=-((1<<13)));
6941
+})
6942
+
6943 111 dgisselq
+(define_predicate "zip_opb_single_operand_p"
6944 122 dgisselq
+       (match_code "reg,subreg,const_int")
6945 111 dgisselq
+{
6946
+       return zip_pd_opb_operand(op);
6947
+})
6948
+
6949 102 dgisselq
+(define_predicate "zip_mov_operand_p"
6950
+       (match_code "reg,plus")
6951
+{
6952
+       return zip_pd_mov_operand(op);
6953
+})
6954
+
6955
+(define_predicate "zip_memory_operand_p"
6956
+       (match_code "mem")
6957
+{
6958 111 dgisselq
+       return zip_pd_opb_operand(XEXP(op,0));
6959 102 dgisselq
+})
6960
+
6961 111 dgisselq
+(define_predicate "zip_imm_operand_p"
6962
+       (match_code "const_int")
6963
+{
6964
+       return zip_pd_imm_operand(op);
6965
+})
6966
+
6967
+(define_predicate "zip_mvimm_operand_p"
6968
+       (match_code "const_int")
6969
+{
6970
+       return zip_pd_mvimm_operand(op);
6971
+})
6972
+
6973
+(define_predicate "zip_movdst_operand_p"
6974
+       (match_code "mem,reg,subreg")
6975
+{
6976
+       if (MEM_P(op)) // Check for valid store address
6977
+               return zip_pd_opb_operand(XEXP(op,0));
6978 122 dgisselq
+       else if (SUBREG_P(op))
6979
+               return 1;
6980
+       else if ((REG_P(op))||(SUBREG_P(op)))
6981
+               return register_operand(op, GET_MODE(op));
6982 111 dgisselq
+       return 1;
6983
+})
6984
+
6985
+(define_predicate "zip_movsrc_operand_p"
6986
+       (match_code "mem,reg,subreg,const_int,const,symbol_ref,label_ref,code_label")
6987
+{
6988
+       if (MEM_P(op))
6989
+               return zip_pd_opb_operand(XEXP(op,0));
6990
+       else if (GET_CODE(op)==PLUS)
6991
+               return zip_pd_opb_operand(op);
6992 122 dgisselq
+       else if (SUBREG_P(op)) {
6993
+               //; As far as predicates are concerned, subregs must be valid.
6994
+               //; The details of them are settled within the constraints.
6995
+               return 1;
6996
+       } else if ((REG_P(op))||(SUBREG_P(op)))
6997
+               return register_operand(op,SImode);
6998
+       else if (CONST_INT_P(op))
6999
+               return 1;
7000 111 dgisselq
+       return 1;
7001
+})
7002
+
7003 102 dgisselq
+;; Constraints
7004
+;
7005
+(define_memory_constraint "S"
7006
+       "Any memory referenced by a constant address, possibly unknown at compile time"
7007
+       (and (match_code "mem")
7008
+               (match_test "zip_ct_const_address_operand(XEXP(op,0))")))
7009
+(define_memory_constraint "Q"
7010
+       "Any memory addressed suitably for a load or store instruction"
7011
+       (and (match_code "mem")
7012
+               (match_test "zip_ct_address_operand(XEXP(op,0))")))
7013
+(define_address_constraint "U"
7014
+       "An address suitable for a load or store instruction"
7015
+       (and (match_code "reg,plus")
7016
+               (match_test "zip_ct_address_operand(op)")))
7017
+(define_address_constraint "T"
7018
+       "Any constant address, to include those made by symbols unknown at compile time"
7019
+       (and (match_code "label_ref,code_label,symbol_ref,const")
7020
+               (match_test "zip_ct_const_address_operand(op)")))
7021
+;
7022
+;
7023
+;; Attributes
7024
+;
7025
+(define_attr "predicable"  "no,yes" (const_string "yes"))
7026
+(define_attr "conditional" "no,yes" (const_string "no"))
7027
+(define_attr "ccresult" "set,unknown,unchanged,validzn" (const_string "set"))
7028
+;
7029
+; Mode attributes
7030
+; (define_mode_iterator ZI [QI HI SI])
7031
+; (define_mode_attr zipa [(QI "") (HI "") (SI "")])
7032
+(define_mode_iterator ZI [SI])
7033
+(define_mode_attr zipa [(SI "")])
7034
+;
7035
+;
7036
+;
7037
+;; Instructions
7038
+;
7039
+; (define_insn
7040
+;      optional name
7041
+;      RTL template -- a vector of incomplete RTL expressions describing the
7042
+;              semantics of the instruction.  It is incomplete because it may
7043
+;              contain match_operand, match_operator, and match_dup expressions
7044
+;      The condition --- contains a C expression, may be an empty string
7045
+;      output template or output statement--fragment of C code returning a str
7046
+;      Attributes --
7047
+;      )
7048
+;
7049
+; (match_operand:m n predicate constraint)
7050
+;      Placeholder for operand #n of the instruction
7051
+;      Predicate       string that is the name of a fucntion w/ 2 arguments:
7052
+;                              (expression, machine mode)
7053
+;              we can build functions:
7054
+;                      "isregister"    to describe a register
7055
+;                      "isimmediate"   to describe an immediate
7056
+;                      "offsetreg"     to describe a register plus offset
7057
+;                      "anyregister"   to describe *ANY* register (uRx or Rx)
7058
+;              But ... functions "address_operand", "immediate_operand",
7059
+;                      "register_operand", "indirect_operand"
7060
+;              "comparison_operatot" and "ordered_comparison_operator"
7061
+;              are also available--be aware, they include more comparisons
7062
+;              than Zip CPU can do.
7063
+;
7064
+;
7065
+;
7066
+;
7067
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7068
+;;
7069
+;; Move instructions: both
7070
+;      (arbitrary) from variables to variables, but this gets
7071
+;              expanded into:
7072
+;      from registers to registers
7073
+;      from immediates to registers
7074
+;;
7075
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7076
+;
7077
+;
7078
+;
7079
+(define_expand "mov<mode>"
7080 111 dgisselq
+       [(set (match_operand:ZI 0 "nonimmediate_operand" "")
7081
+               (match_operand:ZI 1 "general_operand" ""))]
7082 102 dgisselq
+       ""
7083 111 dgisselq
+       {//; Everything except mem=const or mem=mem can be done easily
7084
+       //; extern void zip_debug_rtx_pfx(const char *, const_rtx);
7085
+       //; fprintf(stderr, "ZIP-GEN-MOVE\n");
7086
+       //; zip_debug_rtx_pfx("FROM: ", operands[1]);
7087
+       //; zip_debug_rtx_pfx("TO  : ", operands[0]);
7088
+
7089
+       //; Need to load into a register between memory slots
7090
+       if ((MEM_P(operands[0]))&&(MEM_P(operands[1]))) {
7091
+               //; fprintf(stderr, "GEN-MOVSI: MEM -> MEM\n");
7092
+               if (can_create_pseudo_p()) {
7093
+                       rtx tmp = gen_reg_rtx(GET_MODE(operands[1]));
7094
+                       emit_insn(gen_movsi(tmp,operands[1]));
7095
+                       operands[1] = tmp;
7096
+               }
7097 102 dgisselq
+       }
7098 111 dgisselq
+
7099
+       //; Op[0] has a bad address, need to legitimize it
7100
+       if ((MEM_P(operands[0]))&&
7101
+               ((zip_const_address_operand(XEXP(operands[0],0)))
7102
+               ||(!zip_pd_opb_operand(XEXP(operands[0],0))))
7103
+               )
7104
+               {
7105
+               //; fprintf(stderr, "GEN-MOVSI: Not to a MEM(REG)\n");
7106
+               if (can_create_pseudo_p()) {
7107
+                       rtx tmp = gen_reg_rtx(Pmode);
7108
+                       //; Load the address into a register
7109
+                       emit_insn(gen_movsi(tmp,XEXP(operands[0],0)));
7110
+                       XEXP(operands[0],0) = tmp;
7111
+                       mark_reg_pointer(tmp,1);
7112
+               }
7113
+       }
7114
+       //; Op[1] is a constant.  Need to load into a register before we can
7115
+       //; place it into memory.
7116
+       if ((MEM_P(operands[0]))&&
7117
+               ((CONSTANT_P(operands[1]))
7118
+               ||(CONST_INT_P(operands[1])))) {
7119
+               //; fprintf(stderr, "GEN-MOVSI: CONST -> MEM\n");
7120
+               //; zip_debug_rtx_pfx("MEM  : ", operands[0]);
7121
+               //; zip_debug_rtx_pfx("CONST: ", operands[1]);
7122
+               if (can_create_pseudo_p()) {
7123
+                       rtx tmp = gen_reg_rtx(GET_MODE(operands[0]));
7124
+                       emit_insn(gen_movsi(tmp,operands[1]));
7125
+                       operands[1] = tmp;
7126
+               }
7127
+       }
7128
+       //; Op[1] has a bad address, need to legitimize it
7129
+       if ((MEM_P(operands[1]))&&
7130
+               //; (!REG_P(XEXP(operands[1],0)))
7131
+               ((zip_const_address_operand(XEXP(operands[1],0)))
7132 122 dgisselq
+               ||(!zip_pd_opb_operand(XEXP(operands[1],0))))) {
7133 111 dgisselq
+               //; fprintf(stderr, "GEN-MOVSI: Not from a MEM(REG)\n");
7134
+               if (can_create_pseudo_p()) {
7135
+                       rtx tmp = gen_reg_rtx(Pmode);
7136
+                       emit_insn(gen_movsi(tmp,XEXP(operands[1],0)));
7137
+                       XEXP(operands[1],0) = tmp;
7138
+               } else if (REG_P(operands[0])) { //; Can we steal Op[0]'s reg?
7139
+                       rtx tmp = operands[0];
7140
+                       emit_insn(gen_movsi(tmp,XEXP(operands[1],0)));
7141
+                       XEXP(operands[1],0) = tmp;
7142
+               }
7143
+       }
7144
+       }
7145 102 dgisselq
+       [(set_attr "ccresult" "unchanged")])
7146 111 dgisselq
+(define_insn "movsi_raw"
7147
+       [(set (match_operand:SI 0 "zip_movdst_operand_p" "=r,Q,r,r")
7148
+               (match_operand:SI 1 "zip_movsrc_operand_p" "r,r,Q,i"))]
7149 122 dgisselq
+       "(register_operand(operands[0],SImode))||(register_operand(operands[1],SImode))"
7150 111 dgisselq
+       "@
7151
+       MOV\t%1,%0
7152
+       STO\t%1,%0
7153
+       LOD\t%1,%0
7154
+       LDI\t%1,%0"
7155
+       [(set_attr "ccresult" "unchanged")])
7156 102 dgisselq
+(define_insn "mov<mode>_reg"   ; Register to register move
7157
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7158
+               (match_operand:ZI 1 "register_operand" "r"))]
7159
+       ""
7160
+       "MOV    %1,%0"
7161
+       [(set_attr "ccresult" "unchanged")])
7162 124 dgisselq
+(define_insn "mov<mode>_reg_off" ; Register to register move, used by prologue
7163 102 dgisselq
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7164
+               (plus:ZI (match_operand:ZI 1 "register_operand" "r")
7165 111 dgisselq
+                       (match_operand:ZI 2 "zip_mvimm_operand_p" "M")))
7166
+               ]
7167 102 dgisselq
+       ""
7168
+       "MOV    %2(%1),%0"
7169
+       [(set_attr "ccresult" "unchanged")])
7170 103 dgisselq
+;(define_insn "mov<mode>_lod"  ; Load from memory
7171
+;      [(set (match_operand:ZI 0 "register_operand" "=r")
7172
+;              (match_operand:ZI 1 "zip_memory_operand_p" "Q"))]
7173
+;      ""
7174
+;      "LOD    %1,%0"
7175
+;      [(set_attr "ccresult" "unchanged")])
7176
+;(define_insn "mov<mode>_sto"  ; Store into memory
7177
+;      [(set (match_operand:ZI 0 "zip_memory_operand_p" "=Q")
7178
+;              (match_operand:ZI 1 "register_operand" "r"))]
7179
+;      ""
7180
+;      "STO    %1,%0"
7181
+;      [(set_attr "ccresult" "unchanged")])
7182
+(define_expand "mov<mode>_lod" ; Load from memory
7183 102 dgisselq
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7184
+               (match_operand:ZI 1 "zip_memory_operand_p" "Q"))]
7185 103 dgisselq
+       "")
7186
+(define_insn "*movsi_lod"
7187
+       [(set (match_operand:SI 0 "register_operand" "=r")
7188 111 dgisselq
+               (match_operand:SI 1 "zip_memory_operand_p" ""))]
7189 102 dgisselq
+       ""
7190 103 dgisselq
+       "LOD\t%1,%0"
7191
+       [(set_attr "predicable" "yes") (set_attr "ccresult" "unchanged")])
7192 124 dgisselq
+(define_insn "movsi_lod_off" ; used by epilogue code
7193
+       [(set (match_operand:SI 0 "register_operand" "=r")
7194
+               (mem:SI (plus:SI (match_operand:SI 1 "register_operand" "r")
7195
+                       (match_operand:SI 2 "const_int_operand" "N"))))]
7196
+       ""
7197
+       "LOD\t%2(%1),%0"
7198
+       [(set_attr "predicable" "yes") (set_attr "ccresult" "unchanged")])
7199 103 dgisselq
+(define_expand "mov<mode>_sto" ; Store into memory
7200 102 dgisselq
+       [(set (match_operand:ZI 0 "zip_memory_operand_p" "=Q")
7201
+               (match_operand:ZI 1 "register_operand" "r"))]
7202 103 dgisselq
+       "")
7203
+(define_insn "*movsi_sto"
7204 111 dgisselq
+       [(set (match_operand:SI 0 "zip_memory_operand_p" "=Q")
7205 103 dgisselq
+               (match_operand:SI 1 "register_operand" "r"))]
7206 102 dgisselq
+       ""
7207 111 dgisselq
+       "STO\t%1,%0"
7208 103 dgisselq
+       [(set_attr "predicable" "yes") (set_attr "ccresult" "unchanged")])
7209 124 dgisselq
+(define_insn "movsi_sto_off" ; used by prologue code
7210
+       [(set (mem:SI (plus:SI
7211
+                       (match_operand:SI 0 "register_operand" "r")
7212
+                       (match_operand:SI 1 "const_int_operand" "N")))
7213
+               (match_operand:SI 2 "register_operand" "r"))]
7214
+       ""
7215
+       "STO\t%2,%1(%0)"
7216
+       [(set_attr "predicable" "yes") (set_attr "ccresult" "unchanged")])
7217 102 dgisselq
+(define_insn "mov<mode>_ldi"   ; Load immediate
7218
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7219
+               (match_operand:ZI 1 "immediate_operand" "ipU"))]
7220
+       ""
7221
+       "LDI    %1,%0"
7222
+       [(set_attr "ccresult" "unchanged")])
7223
+;
7224
+;
7225
+;
7226
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7227
+;;
7228
+;; Load and store multiple values
7229
+;;
7230
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7231
+;
7232
+; So far, from the code I've seen from GCC's output,
7233
+; these instructions do not appear to be necessary.
7234
+;
7235
+;(define_insn "load_multiple"
7236
+;      for(a=0; a<%2; a++)
7237
+;              LOD a(%1),%0+a
7238
+;(define_insn "store_multiple"
7239
+;      for(a=0; a<%2; a++)
7240
+;              STO %0+a,a(%1)
7241
+; pushsi -- Do not define, compiler will work around it nicely w/o our help
7242
+;
7243
+;
7244
+;
7245
+;
7246
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7247
+;;
7248
+;; General arithmetic instructions
7249
+;;
7250
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7251
+;
7252
+;
7253
+;
7254
+;
7255 111 dgisselq
+(define_expand "add<mode>3" ; Fastest/best instruction always goes first
7256 122 dgisselq
+       [(parallel [(set (match_operand:ZI 0 "register_operand" "=r")
7257 103 dgisselq
+               (plus:ZI (match_operand:ZI 1 "register_operand" "0")
7258 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_operand_p" "")))
7259
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))
7260
+               ]) ])
7261 111 dgisselq
+(define_insn "*addsi3_reg" ; Fastest/best instruction always goes first
7262 122 dgisselq
+       [(set (match_operand:SI 0 "register_operand" "=r")
7263
+               (plus:SI (match_operand:SI 1 "register_operand" "0")
7264
+                       (match_operand:SI 2 "zip_opb_single_operand_p" "rO")))
7265
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7266 102 dgisselq
+       ""
7267
+       "ADD    %2,%0"
7268
+       [(set_attr "ccresult" "set")])
7269
+(define_insn "add<mode>3_off" ; Fastest/best instruction always goes first
7270
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7271 103 dgisselq
+               (plus:ZI (match_operand:ZI 1 "register_operand" "0")
7272
+                       (plus:ZI (match_operand:ZI 2 "register_operand" "r")
7273 122 dgisselq
+                               (match_operand:ZI 3 "zip_opb_immv_p" "N"))))
7274
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7275 102 dgisselq
+       ""
7276
+       "ADD    %3+%2,%0"
7277
+       [(set_attr "ccresult" "set")])
7278
+;
7279
+;
7280
+;
7281 103 dgisselq
+(define_expand "sub<mode>3"
7282 122 dgisselq
+       [(parallel [(set (match_operand:ZI 0 "register_operand" "=r")
7283 103 dgisselq
+               (minus:ZI (match_operand:ZI 1 "register_operand" "0")
7284 111 dgisselq
+                       (match_operand:ZI 2 "zip_opb_operand_p" "")))
7285 122 dgisselq
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])])
7286 111 dgisselq
+(define_insn "sub<mode>3_reg"
7287 103 dgisselq
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7288
+               (minus:ZI (match_operand:ZI 1 "register_operand" "0")
7289 111 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rO")))
7290 122 dgisselq
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7291 102 dgisselq
+       ""
7292
+       "SUB    %2,%0"
7293
+       [(set_attr "ccresult" "set")])
7294
+(define_insn "sub<mode>3_off"
7295
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7296 103 dgisselq
+               (minus:ZI (match_operand:ZI 1 "register_operand" "0")
7297
+                       (plus:ZI (match_operand:ZI 2 "register_operand" "%r")
7298 122 dgisselq
+                               (match_operand:ZI 3 "zip_opb_immv_p" "N"))))
7299
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7300 102 dgisselq
+       ""
7301
+       "SUB    %3+%2,%0"
7302
+       [(set_attr "ccresult" "set")])
7303
+(define_insn "mul<mode>3"
7304
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7305
+               (mult:ZI (match_operand:ZI 1 "register_operand" "%r")
7306
+                       (match_operand:ZI 2 "register_operand" "r")))
7307 122 dgisselq
+       (clobber (match_scratch:ZI 3 "=r"))
7308
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7309 102 dgisselq
+       ; "(R0 != R1)&&(R0 != R2)&&(R0!=R3)&&(R1!=R2)&&(R1=R3)&&(R2!=R3)"
7310
+       ""
7311
+       "MOV    %1,%0
7312
+       MPYS    %2,%0
7313
+       MOV     %1,%3
7314
+       ROL     16,%3
7315
+       MPYS    %2,%3
7316
+       ROL     16,%3
7317
+       AND     0x0ffff,%3
7318
+       ADD     %3,%0
7319
+       MOV     %2,%3
7320
+       ROL     16,%3
7321
+       MPYS    %1,%3
7322
+       ROL     16,%3
7323
+       AND     0x0ffff,%3
7324
+       ADD     %3,%0"
7325
+       [(set_attr "ccresult" "unknown")])
7326
+
7327 111 dgisselq
+(define_expand "div<mode>3"
7328 122 dgisselq
+       [(parallel [(set (match_operand:ZI 0 "register_operand" "=r")
7329 103 dgisselq
+               (div:ZI (match_operand:ZI 1 "register_operand" "0")
7330 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_operand_p" "")))
7331
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])]
7332 111 dgisselq
+       "(ZIP_DIVIDE)")
7333
+(define_insn "div<mode>3_reg"
7334
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7335
+               (div:ZI (match_operand:ZI 1 "register_operand" "0")
7336 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rO")))
7337
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7338 111 dgisselq
+       "(ZIP_DIVIDE)"
7339 102 dgisselq
+       "DIVS   %2,%0"
7340
+       [(set_attr "ccresult" "set")])
7341
+(define_insn "div<mode>3_off"
7342
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7343 103 dgisselq
+               (div:ZI (match_operand:ZI 1 "register_operand" "0")
7344
+                       (plus:ZI (match_operand:ZI 2 "register_operand" "r")
7345 122 dgisselq
+                               (match_operand:ZI 3 "zip_opb_immv_p" "N"))))
7346
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7347 111 dgisselq
+       "(ZIP_DIVIDE)"
7348 102 dgisselq
+       "DIVS   %3+%2,%0"
7349
+       [(set_attr "ccresult" "set")])
7350 111 dgisselq
+(define_expand "udiv<mode>3"
7351 122 dgisselq
+       [(parallel [(set (match_operand:ZI 0 "register_operand" "=r")
7352 103 dgisselq
+               (udiv:ZI (match_operand:ZI 1 "register_operand" "0")
7353 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_operand_p" "")))
7354
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])]
7355 111 dgisselq
+       "(ZIP_DIVIDE)")
7356
+(define_insn "udiv<mode>3_reg"
7357
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7358
+               (udiv:ZI (match_operand:ZI 1 "register_operand" "0")
7359 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rO")))
7360
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7361 111 dgisselq
+       "(ZIP_DIVIDE)"
7362 102 dgisselq
+       "DIVU   %2,%0"
7363
+       [(set_attr "ccresult" "set")])
7364
+(define_insn "udiv<mode>3_off"
7365
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7366 103 dgisselq
+               (udiv:ZI (match_operand:ZI 1 "register_operand" "0")
7367
+                       (plus:ZI (match_operand:ZI 2 "register_operand" "r")
7368 122 dgisselq
+                               (match_operand:ZI 3 "zip_opb_immv_p" "N"))))
7369
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7370 111 dgisselq
+       "(ZIP_DIVIDE)"
7371 102 dgisselq
+       "DIVU   %3+%2,%0"
7372
+       [(set_attr "ccresult" "set")])
7373
+;;
7374
+;; modsi3
7375
+;; umodsi3
7376
+;;
7377
+(define_insn "umin<mode>3"
7378
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7379
+               (umin:ZI (match_operand:ZI 1 "register_operand" "%0")
7380
+                       (match_operand:ZI 2 "register_operand" "r")))
7381 122 dgisselq
+       (clobber (reg:CC CC_REG))
7382 102 dgisselq
+       ]
7383
+       ""
7384
+       "CMP    %0,%2
7385
+       MOV.C   %2,%0"
7386
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7387
+(define_insn "umax<mode>3"
7388
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7389
+               (umax:ZI (match_operand:ZI 1 "register_operand" "%0")
7390
+                       (match_operand:ZI 2 "register_operand" "r")))
7391 122 dgisselq
+       (clobber (reg:CC CC_REG))
7392 102 dgisselq
+       ]
7393
+       ""
7394
+       "CMP    %2,%0
7395
+       MOV.C   %2,%0"
7396
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7397
+(define_insn "smin<mode>3"
7398
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7399
+               (smin:ZI (match_operand:ZI 1 "register_operand" "%0")
7400
+                       (match_operand:ZI 2 "register_operand" "r")))
7401 122 dgisselq
+       (clobber (reg:CC CC_REG))
7402 102 dgisselq
+       ]
7403
+       ""
7404
+       "CMP    %2,%0
7405
+       MOV.GT  %2,%0"
7406
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7407
+(define_insn "smax<mode>3"
7408
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7409
+               (smax:ZI (match_operand:ZI 1 "register_operand" "%0")
7410
+                       (match_operand:ZI 2 "register_operand" "r")))
7411 122 dgisselq
+       (clobber (reg:CC CC_REG))
7412 102 dgisselq
+       ]
7413
+       ""
7414
+       "CMP    %0,%2
7415
+       MOV.LT  %2,%0"
7416
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7417 111 dgisselq
+(define_expand "and<mode>3"
7418 122 dgisselq
+       [(parallel [(set (match_operand:ZI 0 "register_operand" "=r")
7419 102 dgisselq
+               (and:ZI (match_operand:ZI 1 "register_operand" "%0")
7420 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_operand_p" "")))
7421
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])])
7422 111 dgisselq
+(define_insn "and<mode>3_reg"
7423
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7424
+               (and:ZI (match_operand:ZI 1 "register_operand" "%0")
7425 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rO")))
7426
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7427 102 dgisselq
+       ""
7428
+       "AND    %2,%0"
7429
+       [(set_attr "ccresult" "set")])
7430
+(define_insn "and<mode>3_off"
7431
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7432
+               (and:ZI (match_operand:ZI 1 "register_operand" "0")
7433
+                       (plus:ZI (match_operand:ZI 2 "register_operand" "r")
7434 122 dgisselq
+                               (match_operand:ZI 3 "zip_opb_immv_p" "N"))))
7435
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7436 102 dgisselq
+       ""
7437
+       "AND    %3+%2,%0"
7438
+       [(set_attr "ccresult" "set")])
7439 111 dgisselq
+(define_expand "ior<mode>3"
7440 122 dgisselq
+       [(parallel [(set (match_operand:ZI 0 "register_operand" "=r")
7441 102 dgisselq
+               (ior:ZI (match_operand:ZI 1 "register_operand" "%0")
7442 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_operand_p" "")))
7443
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])])
7444 111 dgisselq
+(define_insn "ior<mode>3_reg"
7445
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7446
+               (ior:ZI (match_operand:ZI 1 "register_operand" "%0")
7447 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rO")))
7448
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7449 102 dgisselq
+       ""
7450
+       "OR     %2,%0"
7451
+       [(set_attr "ccresult" "set")])
7452
+(define_insn "ior<mode>3_off"
7453
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7454
+               (ior:ZI (match_operand:ZI 1 "register_operand" "0")
7455
+                       (plus:ZI (match_operand:ZI 2 "register_operand" "r")
7456 122 dgisselq
+                               (match_operand:ZI 3 "zip_opb_immv_p" "N"))))
7457
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7458 102 dgisselq
+       ""
7459
+       "OR     %3+%2,%0"
7460
+       [(set_attr "ccresult" "set")])
7461 111 dgisselq
+(define_expand "xor<mode>3"
7462 122 dgisselq
+       [(parallel [(set (match_operand:ZI 0 "register_operand" "=r")
7463 102 dgisselq
+               (xor:ZI (match_operand:ZI 1 "register_operand" "%0")
7464 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_operand_p" "")))
7465
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])]
7466
+       "")
7467 111 dgisselq
+(define_insn "xor<mode>3_reg"
7468
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7469
+               (xor:ZI (match_operand:ZI 1 "register_operand" "%0")
7470 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rO")))
7471
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7472 102 dgisselq
+       ""
7473
+       "XOR    %2,%0"
7474
+       [(set_attr "ccresult" "set")])
7475
+(define_insn "xor<mode>3_off"
7476
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7477
+               (xor:ZI (match_operand:ZI 1 "register_operand" "0")
7478
+                       (plus:ZI (match_operand:ZI 2 "register_operand" "r")
7479 122 dgisselq
+                               (match_operand:ZI 3 "zip_opb_immv_p" "N"))))
7480
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7481 102 dgisselq
+       ""
7482
+       "XOR    %3+%2,%0"
7483
+       [(set_attr "ccresult" "set")])
7484
+;(define_insn "addv<mode>4"
7485
+       ;[(set (match_operand:ZI 0 "register_operand" "=r")
7486
+               ;(plus:ZI (match_operand:ZI 1 "register_operand" "%r")
7487
+                       ;(match_operand:ZI 2 "general_operand" "rO")))
7488 122 dgisselq
+       ;(set (pc) (if_then_else (eq (reg:CC CC_REG) (const_int 0))
7489 102 dgisselq
+                       ;(label_ref (match_operand 3))
7490
+                       ;(pc)))]
7491
+       ;""
7492
+       ;"MOV   %1,%0
7493
+       ;ADD    %2,%0
7494
+       ;BV     %3"
7495
+       ;[(set_attr "predicable" "no") (set_attr "ccresult" "set")])
7496
+;;(define_insn "subvsi4"
7497
+;;     MOV     %1,%0
7498
+;;     SUB     %2,%0
7499
+;;     BV      %3
7500
+;;(mulvsi4)
7501
+;;(define_insn "uaddvsi4"
7502
+;;     ADD     %2,%0
7503
+;;     BC      %3
7504
+;;(define_insn "usubvsi4"
7505
+;;     MOV     %1,%0
7506
+;;     SUB     %2,%0
7507
+;;     BC      %3
7508
+;;
7509
+;; (define_insn "umulvsi4"
7510
+;;     ... ???)
7511
+;;
7512
+(define_insn "ashr<mode>3"
7513
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7514
+               (ashiftrt:ZI (match_operand:ZI 1 "register_operand" "0")
7515 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rR")))
7516
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7517 102 dgisselq
+       ""
7518
+       "ASR    %2,%0"
7519
+       [(set_attr "ccresult" "set")])
7520 111 dgisselq
+(define_insn "ashl<mode>3"
7521
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7522
+               (ashift:ZI (match_operand:ZI 1 "register_operand" "0")
7523 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rR")))
7524
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7525 111 dgisselq
+       ""
7526 122 dgisselq
+       "LSL    %2,%0"
7527 111 dgisselq
+       [(set_attr "ccresult" "set")])
7528 102 dgisselq
+(define_insn "lshr<mode>3"
7529
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7530
+               (lshiftrt:ZI (match_operand:ZI 1 "register_operand" "0")
7531 122 dgisselq
+                       (match_operand:ZI 2 "register_operand" "rR")))
7532
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7533 102 dgisselq
+       ""
7534
+       "LSR    %2,%0"
7535
+       [(set_attr "ccresult" "set")])
7536
+(define_insn "rotl<mode>3"
7537
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7538
+               (rotate:ZI (match_operand:ZI 1 "register_operand" "0")
7539 122 dgisselq
+                       (match_operand:ZI 2 "zip_opb_single_operand_p" "rR")))
7540
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7541 102 dgisselq
+       ""
7542
+       "ROL    %2,%0"
7543
+       [(set_attr "ccresult" "set")])
7544
+;
7545
+(define_insn "neg<mode>2"
7546
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7547
+               (neg:ZI (match_operand:ZI 1 "register_operand" "r")))
7548 122 dgisselq
+       (clobber (reg:CC CC_REG))]
7549 102 dgisselq
+       ""
7550
+       "NEG    %1,%0"
7551
+       [(set_attr "ccresult" "validzn")])
7552
+(define_insn "abs<mode>2"
7553
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7554
+               (abs:ZI (match_operand:ZI 1 "register_operand" "0")))
7555 122 dgisselq
+       (clobber (reg:CC CC_REG))]
7556 102 dgisselq
+       ""
7557
+       "TEST   %0
7558
+       NEG.LT  %0"
7559
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7560
+(define_insn "popcount<mode>2"
7561
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7562
+               (popcount:ZI (match_operand:ZI 1 "register_operand" "r")))
7563 122 dgisselq
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7564 102 dgisselq
+       ""
7565
+       "POPC   %1,%0"
7566
+       [(set_attr "ccresult" "set")])
7567
+(define_expand "parity<mode>2"
7568 122 dgisselq
+       [(parallel [(set (match_operand:ZI 0 "register_operand" "=r")
7569 102 dgisselq
+               (popcount:ZI (match_operand:ZI 1 "register_operand" "r")))
7570 122 dgisselq
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
7571
+       (parallel [
7572
+               (set (match_dup 0) (and:ZI (match_dup 0) (const_int -2)))
7573
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
7574 102 dgisselq
+       ])
7575
+(define_insn "one_cmpl<mode>2"
7576
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7577
+               (not:ZI (match_operand:ZI 1 "register_operand" "0")))
7578 122 dgisselq
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
7579 102 dgisselq
+       ""
7580
+       "XOR    -1,%0"
7581
+       [(set_attr "ccresult" "set")])
7582
+;
7583
+;
7584
+;
7585
+;
7586 117 dgisselq
+;
7587 102 dgisselq
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7588
+;;
7589
+;; General arithmetic instructions -- double words
7590
+;;
7591
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7592
+;
7593
+;
7594
+;
7595 111 dgisselq
+(define_expand "movdi3"
7596
+       [(set (match_operand:DI 0 "nonimmediate_operand" "")
7597
+               (match_operand:DI 1 "general_operand" ""))])
7598
+(define_insn "movdi_lod"
7599
+       [(set (match_operand:DI 0 "register_operand" "=r")
7600 122 dgisselq
+               (mem:DI (match_operand:SI 1 "zip_opb_operand_p" "")))]
7601 111 dgisselq
+       ""
7602
+       {
7603 122 dgisselq
+               if (REG_P(operands[1]))
7604 111 dgisselq
+                       return "LOD\t(%1),%H0\n\tLOD\t1(%1),%L0";
7605 122 dgisselq
+               else if (GET_CODE(operands[1])==PLUS) {
7606
+                       if ((REG_P(XEXP(operands[1],0)))
7607
+                               &&(CONST_INT_P(XEXP(operands[1],1)))) {
7608 111 dgisselq
+                               static  char    buf[64];
7609
+                               sprintf(buf,
7610
+                                       "LOD\t%ld(%%1),%%H0\n\tLOD\t%ld(%%1),%%L0",
7611 122 dgisselq
+                                       INTVAL(XEXP(operands[1],1)),
7612
+                                       INTVAL(XEXP(operands[1],1)+1));
7613 111 dgisselq
+                               return buf;
7614
+                       }
7615 122 dgisselq
+               } return "BREAK";
7616 111 dgisselq
+       }
7617
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
7618
+(define_insn "movdi_sto"
7619
+       [(set (mem:DI (match_operand:SI 0 "zip_opb_operand_p" ""))
7620
+               (match_operand:DI 1 "register_operand" "r"))]
7621
+       ""
7622
+       {
7623
+               if (REG_P(operands[0]))
7624
+                       return "STO\t%H0,(%1)\n\tSTO\t%L0,1(%1)";
7625
+               else if (GET_CODE(operands[0])==PLUS) {
7626
+                       if ((REG_P(XEXP(operands[0],0)))
7627
+                               &&(CONST_INT_P(XEXP(operands[0],1)))) {
7628
+                               static  char    buf[64];
7629
+                               sprintf(buf,
7630
+                                       "STO\t%%H0,%ld(%%1)\n\tSTO\t%%L0,%ld(%%1)",
7631
+                                       INTVAL(XEXP(operands[0],1)),
7632
+                                       INTVAL(XEXP(operands[0],1)+1));
7633
+                               return buf;
7634
+                       }
7635
+               } else return "BREAK";
7636
+       }
7637
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
7638
+(define_insn "movdi_ldi"
7639
+       [(set (match_operand:DI 0 "register_operand" "=r")
7640
+               (match_operand:DI 1 "immediate_operand" "i"))]
7641
+       ""
7642
+       "LDI\t%H1,%H0\n\tLDI\t%L1,%L0"
7643
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
7644 102 dgisselq
+(define_insn "adddi3" ; Fastest/best instruction always goes first
7645
+       [(set (match_operand:DI 0 "register_operand" "=r")
7646 103 dgisselq
+               (plus:DI (match_operand:DI 1 "register_operand" "0")
7647 102 dgisselq
+                       (match_operand:DI 2 "register_operand" "r")))
7648 122 dgisselq
+       (clobber (reg:CC CC_REG))
7649 102 dgisselq
+       ]
7650
+       ""
7651
+       "ADD    %L2,%L0\n\tADD.C\t1,%H0\n\tADD\t%H2,%H0"
7652
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7653
+;
7654
+(define_insn "subdi3"
7655
+       [(set (match_operand:DI 0 "register_operand" "=r")
7656 103 dgisselq
+               (minus:DI (match_operand:DI 1 "register_operand" "0")
7657 102 dgisselq
+                       (match_operand:DI 2 "register_operand" "r")))
7658 122 dgisselq
+       (clobber (reg:CC CC_REG))
7659 102 dgisselq
+       ]
7660
+       ""
7661
+       "SUB    %L2,%L0\n\tSUB.C\t1,%H0\n\tSUB\t%H2,%H0"
7662
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7663
+;
7664
+(define_insn "anddi3"
7665
+       [(set (match_operand:DI 0 "register_operand" "=r")
7666
+               (and:DI (match_operand:DI 1 "register_operand" "%0")
7667
+                       (match_operand:DI 2 "register_operand" "r")))
7668 122 dgisselq
+       (clobber (reg:CC CC_REG))
7669 102 dgisselq
+       ]
7670
+       ""
7671
+       "AND    %L2,%L0\n\tAND\t%H2,%H0"
7672
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7673
+;
7674
+(define_insn "iordi3"
7675
+       [(set (match_operand:DI 0 "register_operand" "=r")
7676
+               (ior:DI (match_operand:DI 1 "register_operand" "%0")
7677
+                       (match_operand:DI 2 "register_operand" "r")))
7678 122 dgisselq
+       (clobber (reg:CC CC_REG))
7679 102 dgisselq
+       ]
7680
+       ""
7681
+       "OR     %2,%0\n\tOR\t%H2,%H0"
7682
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7683
+;
7684
+(define_insn "xordi3"
7685
+       [(set (match_operand:DI 0 "register_operand" "=r")
7686
+               (xor:DI (match_operand:DI 1 "register_operand" "%0")
7687
+                       (match_operand:DI 2 "register_operand" "r")))
7688 122 dgisselq
+       (clobber (reg:CC CC_REG))
7689 102 dgisselq
+       ]
7690
+       ""
7691
+       "XOR    %2,%0\n\tXOR\t%H2,%H0"
7692
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7693
+;
7694
+(define_insn "negdi2"
7695
+       [(set (match_operand:DI 0 "register_operand" "=r")
7696 122 dgisselq
+               (neg:DI (match_operand:DI 1 "register_operand" "0")))
7697
+       (clobber (reg:CC CC_REG))
7698
+       ]
7699 102 dgisselq
+       ""
7700
+       "XOR    -1,%L0\n\tXOR\t-1,%H0\n\tADD\t1,%L0\n\tADD.C\t1,%H0"
7701
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7702
+;
7703
+(define_insn "absdi2"
7704 122 dgisselq
+       [(set (match_operand:DI 0 "register_operand" "=r")
7705
+               (abs:DI (match_operand:DI 1 "register_operand" "0")))
7706
+       (clobber (match_scratch:SI 2 "=r"))
7707
+       (clobber (reg:CC CC_REG))
7708
+       ]
7709 102 dgisselq
+       ""
7710
+       "CLR    %2
7711
+       TEST    %H0             ; Problem, we can't tell conditions
7712
+       LDILO.LT        1,%2
7713
+       XOR.LT  -1,%L0
7714
+       XOR.LT  -1,%H0
7715
+       ADD     %2,%L0
7716 122 dgisselq
+       ADD.C   1,%H0"
7717 102 dgisselq
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7718
+(define_insn "one_cmpldi2"
7719
+       [(set (match_operand:DI 0 "register_operand" "=r")
7720
+               (not:DI (match_operand:DI 1 "register_operand" "0")))
7721 122 dgisselq
+       (clobber (reg:CC CC_REG))
7722 102 dgisselq
+       ]
7723
+       ""
7724
+       "XOR    -1,%L0\n\tXOR\t-1,%H0"
7725
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7726
+(define_insn "umindi3"
7727
+       [(set (match_operand:DI 0 "register_operand" "=r")
7728
+               (umin:DI (match_operand:DI 1 "register_operand" "%0")
7729
+                       (match_operand:DI 2 "register_operand" "r")))
7730 122 dgisselq
+       (clobber (reg:CC CC_REG))
7731 102 dgisselq
+       ]
7732
+       ""
7733
+       "CMP    %H0,%H2
7734
+       CMP.Z   %L0,%L2
7735
+       MOV.C   %H2,%H0
7736
+       MOV.C   %L2,%L0"
7737
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7738
+(define_insn "umaxdi3"
7739
+       [(set (match_operand:DI 0 "register_operand" "=r")
7740
+               (umax:DI (match_operand:DI 1 "register_operand" "%0")
7741
+                       (match_operand:DI 2 "register_operand" "r")))
7742 122 dgisselq
+       (clobber (reg:CC CC_REG))
7743 102 dgisselq
+       ]
7744
+       ""
7745
+       "CMP    %H2,%H0
7746
+       CMP.Z   %L2,%L0
7747
+       MOV.C   %H2,%H0
7748
+       MOV.C   %L2,%L0"
7749
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7750
+(define_insn "popcountdi2"
7751
+       [(set (match_operand:SI 0 "register_operand" "=r")
7752 122 dgisselq
+               (popcount:SI (match_operand:DI 1 "register_operand" "r")))
7753 102 dgisselq
+       (clobber (match_scratch:SI 2 "=r"))
7754 122 dgisselq
+       (clobber (reg:CC CC_REG))
7755 102 dgisselq
+       ]
7756
+       ""
7757
+       "POPC   %L1,%0
7758
+       POPC    %H1,%2
7759
+       ADD     %2,%0"
7760
+       [(set_attr "predicable" "no") (set_attr "ccresult" "set")])
7761
+(define_expand "paritydi2"
7762
+       [(set (match_operand:SI 0 "register_operand" "=r")
7763
+               (popcount (match_operand:DI 1 "register_operand" "r")))
7764
+       (set (match_dup 0) (and:SI (match_dup 0) (const_int -2)))
7765
+       ])
7766 117 dgisselq
+;(define_insn "extendsidi2"
7767
+;      [(set (match_operand:DI 0 "register_operand" "=r")
7768
+;              (sign_extend:DI (match_operand:SI 0 "register_operand" "r")))]
7769
+;      ""
7770
+;      "TEST\t%1\nMOV\t%1,%L0\nCLR\t%L1\nLDI.LT\t-1,%L1"
7771
+;      [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7772
+;(define_insn "mulsidi3"
7773
+;      [(set (match_operand:DI 0 "register_operand" "=r")
7774
+;              (mult:SI (match_operand:SI 1 "register_operand" "%r")
7775
+;                      (match_operand:SI 2 "register_operand" "r")))
7776
+;      (clobber (match_scratch:SI 3 "=r"))]
7777
+;      ; "(R0 != R1)&&(R0 != R2)&&(R0!=R3)&&(R1!=R2)&&(R1=R3)&&(R2!=R3)"
7778
+;      ""
7779
+;      "MOV    %1,%L0
7780
+;      MPYS    %2,%L0                  ; L0 = R2 * R1
7781
+;      MOV     %1,%3                   ; R3 = R1
7782
+;      ROL     16,%3                   ; R3 = (R1 <<< 16)
7783
+;      MPYS    %2,%3                   ; R3 = (R1 <<< 16) * R2
7784
+;      ROL     16,%3                   ; R3 = upper bits of (R1<<<16)*R2
7785
+;      AND     0x0ffff,%3
7786
+;      ADD     %3,%L0                  ; L0 = L0 + R3 = L0  + (R1>>16)*R2
7787
+;      MOV     %2,%3
7788
+;      ROL     16,%3
7789
+;      MPYS    %1,%3
7790
+;      ROL     16,%3
7791
+;      AND     0x0ffff,%3
7792
+;      ADD     %3,%0"
7793
+;      [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7794
+
7795 102 dgisselq
+;
7796
+; Still missing DI instructions for smin:DI, smax:DI, movdicc, adddicc,
7797
+;      mult:di, div:di, divu:di
7798
+;
7799
+;
7800
+;
7801
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7802
+;;
7803
+;; Conditional arithmetic instructions
7804
+;;
7805
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7806
+;
7807
+;
7808
+;
7809
+;
7810
+(define_expand "cstore<mode>4" ; Store 0 or 1 in %0 based on cmp between %2&%3
7811 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC (match_operand:ZI 2 "register_operand" "r")
7812
+               (match_operand:ZI 3 "zip_opb_operand_p" "rO")))
7813 102 dgisselq
+       (set (match_operand:ZI 0 "register_operand" "=r") (if_then_else:ZI
7814
+                       (match_operator 1 "ordered_comparison_operator"
7815 122 dgisselq
+                                       [(reg:CC CC_REG) (const_int 0)])
7816 102 dgisselq
+                       (const_int 1) (const_int 0)))]
7817
+       ""
7818
+       )
7819
+(define_insn "cstoredi4" ; Store 0 or 1 in %0 based on cmp between %2&%3
7820
+       [(set (match_operand:SI 0 "register_operand" "=r")
7821
+               (if_then_else:SI (match_operator 1 "ordered_comparison_operator"
7822 122 dgisselq
+                       [(match_operand:DI 2 "register_operand" "r")
7823
+                               (match_operand:DI 3 "register_operand" "r")])
7824
+                       (const_int 1) (const_int 0)))
7825
+       (clobber (reg:CC CC_REG))]
7826 102 dgisselq
+       ""
7827
+       {
7828
+               switch(GET_CODE(operands[1])) {
7829
+               case EQ:        return "CLR\t%0\n\tCMP\t%H3,%H2\n\tCMP.Z\t%L3,%L2\n\tLDILO.Z\t1,%0\n";
7830
+               case NE:        return "CLR\t%0\n\tCMP\t%H3,%H2\n\tCMP.NZ\t%L3,%L2\n\tLDILO.NZ\t1,%0\n";
7831
+               case LTU:       return "CLR\t%0\n\tCMP\t%H3,%H2\n\tCMP.Z\t%L3,%L2\n\tLDILO.C\t1,%0\n";
7832
+               case LEU:       return "CLR\t%0\n\tCMP\t%H3,%H2\n\tCMP.Z\t%L3,%L2\n\tLDILO.C\t1,%0\n\tLDILO.Z\t1,%0\n";
7833
+               case GTU:       return "CLR\t%0\n\tCMP\t%H2,%H3\n\tCMP.Z\t%L2,%L3\n\tLDILO.C\t1,%0\n";
7834
+               case GEU:       return "CLR\t%0\n\tCMP\t%H2,%H3\n\tCMP.Z\t%L2,%L3\n\tLDILO.C\t1,%0\n\tLDILO.Z\t1,%0\n";
7835
+               default:
7836
+                       gcc_unreachable();
7837
+               }
7838
+       }
7839
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
7840
+;
7841
+;
7842
+;
7843
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7844
+;;
7845
+;; Comparison instructions, both compare and test
7846
+;;
7847
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7848
+;
7849
+;
7850
+;
7851
+;; This will only work so well, since the direction of the compare is
7852
+;; important in unsigned compares.
7853
+;;
7854 122 dgisselq
+(define_expand "cmp<mode>"
7855
+       [(set (reg:CC CC_REG) (compare:CC
7856
+               (match_operand:ZI 0 "register_operand" "r")
7857
+               (match_operand:ZI 1 "nonmemory_operand" "")))]
7858 102 dgisselq
+       ""
7859 122 dgisselq
+       {
7860
+               if (!zip_opb_operand_p(operands[1],SImode)) {
7861
+                       if (can_create_pseudo_p()) {
7862
+                               //; fprintf(stderr, "Generating pseudo register for compare\n");
7863
+                               rtx tmp = gen_reg_rtx(SImode);
7864
+                               emit_insn(gen_movsi(tmp,operands[1]));
7865
+                               operands[1] = tmp;
7866
+                       } else FAIL;
7867
+               }
7868
+       })
7869
+(define_insn "cmp<mode>_reg"
7870
+       [(set (reg:CC CC_REG) (compare:CC
7871
+               (match_operand:ZI 0 "register_operand" "r")
7872
+               (match_operand:ZI 1 "zip_opb_single_operand_p" "rO")))]
7873
+       ""
7874 102 dgisselq
+       "CMP\t%1,%0"
7875
+       [(set_attr "ccresult" "set")])
7876
+(define_insn "cmp<mode>_off"
7877 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC
7878
+               (match_operand:ZI 0 "register_operand" "r")
7879 117 dgisselq
+               (plus (match_operand:ZI 1 "register_operand" "r")
7880 122 dgisselq
+                       (match_operand 2 "zip_opb_immv_p" "N"))))]
7881 102 dgisselq
+       ""
7882
+       "CMP\t%2+%1,%0"
7883
+       [(set_attr "ccresult" "set")])
7884
+(define_insn "test<mode>"
7885 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC (and:ZI (match_operand:ZI 0 "register_operand" "r")
7886
+                               (match_operand:ZI 1 "zip_opb_single_operand_p" "rO"))
7887 102 dgisselq
+                       (const_int 0)))]
7888
+       ""
7889
+       "TEST   %1,%0"
7890
+       [(set_attr "ccresult" "set")])
7891
+(define_insn "test<mode>_off"
7892 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC
7893
+               (and:ZI (match_operand:ZI 0 "register_operand" "r")
7894
+                       (plus:ZI
7895
+                               (match_operand:ZI 1 "register_operand" "r")
7896
+                               (match_operand:ZI 2 "zip_opb_immv_p" "N")))
7897
+               (const_int 0)))]
7898 102 dgisselq
+       ""
7899
+       "TEST   %2+%1,%0"
7900
+       [(set_attr "ccresult" "set")])
7901
+(define_insn "nop"
7902
+       [(const_int 0)]
7903
+       ""
7904
+       "NOOP"
7905
+       [(set_attr "ccresult" "unchanged")])
7906
+;
7907
+;
7908
+;
7909
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7910
+;;
7911
+;; Conditional execution predicates
7912
+;;
7913
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7914
+;
7915
+; Sadly, these aren't complete like they should be.  Although these are all of
7916
+; the conditional execution prefixes that the Zip CPU supports, GCC looks for
7917
+; other conditions then these.  That is, (cond_exec ...) is not as well
7918
+; recognized as (if_then_else ...).  So we have to duplicate things to support
7919
+; both methods.
7920
+;
7921
+(define_cond_exec
7922 122 dgisselq
+       [(ne (reg:CC CC_REG) (const_int 0))]
7923 102 dgisselq
+       ""
7924
+       "(NZ)"
7925
+       [(set_attr "conditional" "yes")])
7926
+(define_cond_exec
7927 122 dgisselq
+       [(lt (reg:CC CC_REG) (const_int 0))]
7928 102 dgisselq
+       ""
7929
+       "(LT)"
7930
+       [(set_attr "conditional" "yes")])
7931
+(define_cond_exec
7932 122 dgisselq
+       [(eq (reg:CC CC_REG) (const_int 0))]
7933 102 dgisselq
+       ""
7934
+       "(Z)"
7935
+       [(set_attr "conditional" "yes")])
7936
+(define_cond_exec
7937 122 dgisselq
+       [(gt (reg:CC CC_REG) (const_int 0))]
7938 102 dgisselq
+       ""
7939
+       "(GT)"
7940
+       [(set_attr "conditional" "yes")])
7941
+(define_cond_exec
7942 122 dgisselq
+       [(ge (reg:CC CC_REG) (const_int 0))]
7943 102 dgisselq
+       ""
7944
+       "(GE)"
7945
+       [(set_attr "conditional" "yes")])
7946
+(define_cond_exec
7947 122 dgisselq
+       [(ltu (reg:CC CC_REG) (const_int 0))]
7948 102 dgisselq
+       ""
7949
+       "(C)"
7950
+       [(set_attr "conditional" "yes")])
7951
+;
7952
+;
7953
+;
7954
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7955
+;;
7956
+;; Conditional move instructions, since these won't accept conditional
7957
+;;     execution RTL
7958
+;;
7959
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7960
+;
7961
+; // Look for #define HAVE_conditional_move to understand how these might be
7962
+; // used.
7963
+;
7964
+(define_insn "set_zero_or_one<mode>"
7965
+       [(set (match_operand:ZI 0 "register_operand" "=r") (if_then_else:ZI
7966
+                       (match_operator 1 "ordered_comparison_operator"
7967 122 dgisselq
+                                       [(reg:CC CC_REG) (const_int 0)])
7968 102 dgisselq
+                       (const_int 1) (const_int 0)))]
7969
+       ""
7970
+       { return (zip_set_zero_or_one(operands[1], operands[0]));
7971
+       }
7972
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
7973
+(define_insn "mov<mode>cc"
7974
+       [(set (match_operand:ZI 0 "register_operand" "=r")
7975
+               (if_then_else:ZI (match_operator 1 "ordered_comparison_operator"
7976 122 dgisselq
+                       [(reg:CC CC_REG) (const_int 0)])
7977 102 dgisselq
+                       (match_operand:ZI 2 "general_operand" "rio")
7978
+                       (match_operand:ZI 3 "nonmemory_operand" "rio")))]
7979
+       ""
7980
+       {
7981
+       return zip_movsicc(operands[0], operands[1], operands[2], operands[3]);
7982
+       }
7983
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
7984
+(define_insn "add<mode>cc"
7985
+       [(set (match_operand:ZI 0 "register_operand" "=r,r")
7986
+               (if_then_else:ZI (match_operator 1 "ordered_comparison_operator"
7987 122 dgisselq
+                       [(reg:CC CC_REG) (const_int 0)])
7988 102 dgisselq
+                       (plus:ZI (match_operand:ZI 2 "register_operand" "0,r")
7989
+                               (match_operand:ZI 3 "nonmemory_operand" "rO,M"))
7990
+                       (match_dup 0)))]
7991
+       ""
7992
+       {
7993
+       return zip_addsicc(operands[0], operands[1], operands[2], operands[3]);
7994
+       }
7995
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
7996
+;
7997
+;
7998
+;(define_expand "mov<mode>cc"
7999
+;      [(set (match_operand:ZI 0 "general_operand" "=rm,rm,r,r,r"
8000
+;              (if_then_else:ZI (match_operator 1 "ordered_comparison_operator"
8001 122 dgisselq
+;                      [(reg:CC CC_REG) (const_int 0)])
8002 102 dgisselq
+;                      (match_operand:ZI 2 "general_operand" "0,r,0,m,rm")
8003
+;                      (match_operand:ZI 3 "general_operand" "r,0,m,0,rm"))))]
8004
+;      )
8005
+;
8006
+;
8007
+;
8008
+; While an interesting approach, the following suffers from problems when the
8009
+; move amount is constant.  At anything less than four, moves should not require
8010
+; the movmemSI instruction.  At anything greater, if constant, the initial tests
8011
+; are not required and should result in a hardcoded result.  Practically,
8012
+; though, this should really be a define_expand instruction, calling on the
8013
+; RTX's of all the respective subinstructions found below.
8014
+;
8015
+;(define_insn "movmemSI"
8016
+;      [(parallel [(set (mem:BLK (match_operand 0 "register_operand" "+r"));Dst
8017
+;                      (mem:BLK (match_operand 1 "register_operand" "+r")));Src
8018
+;              (use (match_operand:SI 2 "register_operand" "+r"))]); Length
8019
+;              (match_operand 3 "" "")                 ;Alignment
8020
+;              (clobber (match_scratch:SI 4 "=r"))
8021
+;              (clobber (match_scratch:SI 5 "=r"))
8022
+;              (clobber (match_scratch:SI 6 "=r"))
8023
+;              (clobber (match_scratch:SI 7 "=r"))]
8024
+;      ""
8025
+;      "TEST\t1,%2
8026
+;      LOD.NZ\t%1,%4
8027
+;      STO.NZ\t%4,%0
8028
+;      ADD.NZ\t1,%0
8029
+;      ADD.NZ\t1,%1
8030
+;      TEST\t2,%2
8031
+;      LOD.NZ\t%1,%4
8032
+;      LOD.NZ\t1(%1),%5
8033
+;      STO.NZ\t%4,(%0)
8034
+;      STO.NZ\t%4,1(%0)
8035
+;      ADD.NZ\t2,%0
8036
+;      ADD.NZ\t2,%1
8037
+;      AND\t-4,%2
8038
+;      BZ\t.Lskp%=\n.Ltop%=:
8039
+;      LOD\t(%1),%4
8040
+;      LOD\t1(%1),%5
8041
+;      LOD\t2(%1,%6
8042
+;      LOD\t3(%1),%7
8043
+;      STO\t%4,(%1)
8044
+;      STO\t%5,1(%1)
8045
+;      STO\t%6,2(%1)
8046
+;      STO\t%7,3(%1)
8047
+;      SUB\t4,%2
8048
+;      BZ\t%.Lskp%=
8049
+;      BRA\t.Ltop%=\n.Lskp%=:"
8050
+;      [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8051
+;(define_insn "setmemsi"
8052
+;      [(parallel
8053
+;              [(set (mem:BLK
8054
+;                      (match_operand 0 "register_operand" "+r")); Destination
8055
+;                      (match_operand:SI 2 "register_operand" "r")) ; Source
8056
+;              (use (match_operand:SI 1 "register_operand" "+r"))])  ; Length
8057
+;              (match_operand 3 "" "")]
8058
+;      ""
8059
+;      "TEST\t1,%1
8060
+;      STO.NZ\t%2,(%0)
8061
+;      ADD.NZ\t1,%0
8062
+;      TEST\t2,%1
8063
+;      STO.NZ\t%2,(%0)
8064
+;      STO.NZ\t%2,1(%0)
8065
+;      ADD.NZ\t2,%0
8066
+;      AND\t-4,%1
8067
+;      BZ\t.Lskp%=\n.Ltop%=:\n
8068
+;      STO\t%2,(%0)
8069
+;      STO\t%2,1(%0)
8070
+;      STO\t%2,2(%0)
8071
+;      STO\t%2,3(%0)
8072
+;      SUB\t%4,%0
8073
+;      BZ\t.Lskp%=
8074
+;      BRA\t.Ltop%=\n.Lskp%=:"
8075
+;      [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8076
+;;
8077
+;
8078
+;
8079
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8080
+;;
8081
+;; Control flow instructions
8082
+;;
8083
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8084
+;
8085
+;
8086
+;
8087
+(define_expand "jump"
8088
+       [(set (pc)
8089
+               (label_ref (match_operand 0 "" "")))]); // Was general-op, "mro"
8090
+(define_insn "jump_const"      ; Must be modeless, VOIDmode, not SI or any othr
8091
+       [(set (pc)      ; Otherwise it won't accept jumps to labels
8092
+               (match_operand:SI 0 "zip_const_address_operand_p" ""))]
8093
+       ""
8094
+       "BRA    %0"
8095
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
8096
+(define_insn "jump_label"      ; Must be modeless, VOIDmode, not SI or any othr
8097
+       [(set (pc)      ; Otherwise it won't accept jumps to labels
8098
+               (label_ref (match_operand 0 "" "")))]
8099
+       ""
8100
+       "BRA    %0"
8101
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
8102
+;
8103
+; This is really the same thing as an indirect jump ... the big difference
8104
+; is that the zip_address_operand_p checks for an "N" type condition, not an
8105
+; "M" type condition ... a bug, but one that works for now.  (The assembler
8106
+; should be able to catch and except on it ...)
8107
+;
8108
+; #warning "This predicate is appropriate for non-moves, but not for JMPs"
8109
+(define_insn "jump_variable"
8110
+       [(set (pc)
8111
+               (match_operand:SI 0 "zip_address_operand_p" ""))]
8112
+       ""
8113
+       "JMP    %0"
8114
+       [(set_attr "ccresult" "unchanged")])
8115
+;
8116
+; Indirect jumps ... both to registers, and registers plus offsets
8117
+;
8118
+(define_insn "indirect_jump"
8119
+       [(set (pc)
8120
+               (match_operand:SI 0 "register_operand" "r"))]
8121
+       ""
8122
+       "JMP    %0"
8123
+       [(set_attr "ccresult" "unchanged")])
8124
+(define_insn "indirect_jump_mem"
8125
+       [(set (pc) (match_operand:SI 0 "zip_memory_operand_p" "o"))]
8126
+       ""
8127
+       "LOD    %0,PC"
8128
+       [(set_attr "ccresult" "unchanged")])
8129
+(define_insn "indirect_jump_off"
8130
+       [(set (pc)
8131
+               (plus:SI (match_operand:SI 0 "register_operand" "r")
8132
+                       (match_operand:SI 1 "const_int_operand" "M")))]
8133
+       ""
8134
+       "JMP    %1(%0)"
8135
+       [(set_attr "ccresult" "unchanged")])
8136
+;;
8137
+; cbranchsi4
8138
+;;     Op 0 = the comparison operator (le,lt,eq,ne,gt,ge,and usgn ltu,geu,etc.)
8139
+;;     Op 1&2 the operands of the compare instruction
8140
+;;     Op 3 is the jump label
8141
+;;
8142
+;;
8143
+;; #warning Need to adjust this so that the "LT" code doesnt get generated ...
8144
+;;
8145
+(define_expand "cbranch<mode>4"
8146 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC (match_operand:ZI 1 "register_operand" "r")
8147
+               (match_operand:ZI 2 "zip_opb_operand_p" "rO")))
8148 102 dgisselq
+       (set (pc) (if_then_else (match_operator 0 "ordered_comparison_operator"
8149 122 dgisselq
+                       [(reg:CC CC_REG) (const_int 0)])
8150 102 dgisselq
+                       (label_ref (match_operand 3 "" ""))
8151
+                       (pc)))]
8152
+       ""
8153
+       {
8154 125 dgisselq
+               if (true) {
8155 117 dgisselq
+               extern void zip_debug_rtx_pfx(const char *, const_rtx);
8156 102 dgisselq
+               //; Two branches give us no end of difficulty when implementing.
8157
+               //; Let's check for these two branch codes, and swap the
8158
+               //; comparison to simplify them.
8159 122 dgisselq
+               //; fprintf(stderr, "CBRANCH\n");
8160
+               //; zip_debug_rtx_pfx("- CMP: ", operands[0]);
8161
+               //; zip_debug_rtx_pfx("- A  : ", operands[1]);
8162
+               //; zip_debug_rtx_pfx("- B  : ", operands[2]);
8163
+               //; zip_debug_rtx_pfx("- JMP: ", operands[3]);
8164 117 dgisselq
+               //; Can we do better if we reverse some compares?
8165 102 dgisselq
+               if ((GET_CODE(operands[0])==GTU)&&(REG_P(operands[2]))) {
8166 122 dgisselq
+                       //; fprintf(stderr, "CBRANCH:(GTU,?,REG,?)\n");
8167
+                       emit_insn(gen_cmpsi(operands[2], operands[1]));
8168 102 dgisselq
+                       emit_jump_insn(gen_cbranch_jmp_ltu(operands[3]));
8169
+                       DONE;
8170
+               } else if((GET_CODE(operands[0])==GEU)&&(REG_P(operands[2]))) {
8171 122 dgisselq
+                       //; fprintf(stderr, "CBRANCH:(GEU,?,REG,?)\n");
8172
+                       emit_insn(gen_cmpsi_off(operands[2], operands[1],
8173
+                                       GEN_INT(1)));
8174
+                       emit_jump_insn(gen_cbranch_jmp_ltu(operands[3]));
8175 102 dgisselq
+                       DONE;
8176 117 dgisselq
+               } else if ((GET_CODE(operands[0])==LE)&&(REG_P(operands[2]))) {
8177 122 dgisselq
+                       //; fprintf(stderr, "CBRANCH:(LE,?,REG,?)\n");
8178 117 dgisselq
+                       //; Swap operands, turn into a GTE compare
8179 122 dgisselq
+                       emit_insn(gen_cmpsi(operands[2], operands[1]));
8180 117 dgisselq
+                       emit_jump_insn(gen_cbranch_jmp_ge(operands[3]));
8181
+                       DONE;
8182 102 dgisselq
+               } // ; Otherwise ... just handle the branch normally
8183
+
8184
+               //; Except ... we can do better for some instructions, such as
8185
+               //; LE.  While we could exchange CMP Rx,Ry into -1(Rx),Ry, it
8186
+               //; would be difficult to explain to users why MIN_INT didn't
8187
+               //; compare properly.  Hence we only adjust constant integers.
8188
+               //;
8189 122 dgisselq
+               if (GET_CODE(operands[0])==LE) {
8190
+                       if ((CONST_INT_P(operands[2]))
8191 117 dgisselq
+                               &&(INTVAL(operands[2])<(1<<17)-2)) {
8192 122 dgisselq
+                               //; fprintf(stderr, "CBRANCH:(LE,?,#,?)\n");
8193
+                               emit_insn(gen_cmpsi(operands[1],
8194
+                                               GEN_INT(INTVAL(operands[2])+1)));
8195
+                               emit_jump_insn(gen_cbranch_jmp_lt(operands[3]));
8196
+                               DONE;
8197
+                       //; Now for the controversial ones--where we add one
8198
+                       //; when it may or may not be permissable.  For now, we
8199
+                       //; just do it anyway and postpone the philosophical
8200
+                       //; discussion for later.
8201
+                       } else if (REG_P(operands[2])) {
8202
+                               emit_insn(gen_cmpsi_off(operands[1],
8203
+                                               operands[2],GEN_INT(1)));
8204
+                               emit_jump_insn(gen_cbranch_jmp_lt(operands[3]));
8205
+                               DONE;
8206
+                       } else if ((GET_CODE(operands[2])==PLUS)
8207
+                               &&(REG_P(XEXP(operands[2],0)))
8208
+                               &&(CONST_INT_P(XEXP(operands[2],1)))
8209
+                               &&(INTVAL(XEXP(operands[2],1))<((1<<13)-2))) {
8210
+                               emit_insn(gen_cmpsi_off(operands[1],
8211
+                                               XEXP(operands[2],0),
8212
+                                       GEN_INT(INTVAL(XEXP(operands[2],1))+1)));
8213
+                               emit_jump_insn(gen_cbranch_jmp_lt(operands[3]));
8214
+                               DONE;
8215
+                       }
8216
+               } else if (GET_CODE(operands[0])==LEU) {
8217
+                       if ((CONST_INT_P(operands[2]))
8218 102 dgisselq
+                               &&(INTVAL(operands[2])<(1<<17)-2)) {
8219 122 dgisselq
+                               //; fprintf(stderr, "CBRANCH:(LEU,?,#,?)\n");
8220
+                               emit_insn(gen_cmpsi(operands[1],
8221
+                                               GEN_INT(INTVAL(operands[2])+1)));
8222
+                               emit_jump_insn(gen_cbranch_jmp_ltu(operands[3]));
8223
+                               DONE;
8224
+                       //; Now for the controversial ones--this time having
8225
+                       //; to do with unsigned compares.
8226
+                       } else if (REG_P(operands[2])) {
8227
+                               emit_insn(gen_cmpsi_off(operands[1],
8228
+                                                       operands[2],GEN_INT(1)));
8229
+                               emit_jump_insn(gen_cbranch_jmp_ltu(operands[3]));
8230
+                               DONE;
8231
+                       } else if ((GET_CODE(operands[2])==PLUS)
8232
+                               &&(REG_P(XEXP(operands[2],0)))
8233
+                               &&(CONST_INT_P(XEXP(operands[2],1)))
8234
+                               &&(INTVAL(XEXP(operands[2],1))<((1<<13)-2))) {
8235
+                               emit_insn(gen_cmpsi_off(operands[1],
8236
+                                       XEXP(operands[2],0),
8237
+                                       GEN_INT(INTVAL(XEXP(operands[2],1))+1)));
8238
+                               emit_jump_insn(gen_cbranch_jmp_ltu(operands[3]));
8239
+                               DONE;
8240
+                       }
8241 124 dgisselq
+               }}
8242 102 dgisselq
+       })
8243
+(define_insn "cbranch_jmp_eq"
8244 122 dgisselq
+       [(set (pc) (if_then_else (eq (reg:CC CC_REG) (const_int 0))
8245 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8246
+                (pc)))]
8247
+       ""
8248
+       "BZ\t%0"
8249
+       [(set_attr "predicable" "no")
8250
+               (set_attr "conditional" "yes")
8251
+               (set_attr "ccresult" "unchanged")])
8252
+(define_insn "cbranch_jmp_neq"
8253 122 dgisselq
+       [(set (pc) (if_then_else (ne (reg:CC CC_REG) (const_int 0))
8254 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8255
+                (pc)))]
8256
+       ""
8257
+       "BNZ\t%0"
8258
+       [(set_attr "predicable" "no")
8259
+               (set_attr "conditional" "yes")
8260
+               (set_attr "ccresult" "unchanged")])
8261
+(define_insn "cbranch_jmp_lt"
8262 122 dgisselq
+       [(set (pc) (if_then_else (lt (reg:CC CC_REG) (const_int 0))
8263 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8264
+                (pc)))]
8265
+       ""
8266
+       "BLT\t%0"
8267
+       [(set_attr "predicable" "no")
8268
+               (set_attr "conditional" "yes")
8269
+               (set_attr "ccresult" "unchanged")])
8270
+(define_insn "cbranch_jmp_le"
8271 122 dgisselq
+       [(set (pc) (if_then_else (le (reg:CC CC_REG) (const_int 0))
8272 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8273
+                (pc)))]
8274
+       ""
8275
+       "BLT\t%0
8276
+       BZ\t%0"
8277
+       [(set_attr "predicable" "no")
8278
+               (set_attr "conditional" "yes")
8279
+               (set_attr "ccresult" "unchanged")])
8280
+(define_insn "cbranch_jmp_gt"
8281 122 dgisselq
+       [(set (pc) (if_then_else (gt (reg:CC CC_REG) (const_int 0))
8282 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8283
+                (pc)))]
8284
+       ""
8285
+       "BGT\t%0"
8286
+       [(set_attr "predicable" "no")
8287
+               (set_attr "conditional" "yes")
8288
+               (set_attr "ccresult" "unchanged")])
8289
+(define_insn "cbranch_jmp_ge"
8290 122 dgisselq
+       [(set (pc) (if_then_else (ge (reg:CC CC_REG) (const_int 0))
8291 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8292
+                (pc)))]
8293
+       ""
8294
+       "BGE\t%0"
8295
+       [(set_attr "predicable" "no")
8296
+               (set_attr "conditional" "yes")
8297
+               (set_attr "ccresult" "unchanged")])
8298
+(define_insn "cbranch_jmp_ltu"
8299 122 dgisselq
+       [(set (pc) (if_then_else (ltu (reg:CC CC_REG) (const_int 0))
8300 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8301
+                (pc)))]
8302
+       ""
8303
+       "BC\t%0"
8304
+       [(set_attr "predicable" "no")
8305
+               (set_attr "conditional" "yes")
8306
+               (set_attr "ccresult" "unchanged")])
8307
+(define_insn "cbranch_jmp_gtu"
8308 122 dgisselq
+       [(set (pc) (if_then_else (gtu (reg:CC CC_REG) (const_int 0))
8309 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8310 122 dgisselq
+                (pc)))
8311
+       ;(clobber (reg:CC CC_REG))
8312
+       ]
8313 102 dgisselq
+       ""      ; Flip the condition, and then we can jump
8314
+       "XOR\t2,CC
8315
+       BC\t%0"
8316
+       [(set_attr "predicable" "no")
8317
+               (set_attr "conditional" "yes")
8318
+               (set_attr "ccresult" "unknown")])
8319
+(define_insn "cbranch_jmp_leu"
8320 122 dgisselq
+       [(set (pc) (if_then_else (leu (reg:CC CC_REG) (const_int 0))
8321 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8322
+                (pc)))]
8323
+       ""      ; Need to check for both LTU (i.e. C) and Z
8324
+       "BC\t%0
8325
+       BZ\t%0"
8326
+       [(set_attr "predicable" "no")
8327
+               (set_attr "conditional" "yes")
8328
+               (set_attr "ccresult" "unchanged")])
8329
+(define_insn "cbranch_jmp_geu"
8330 122 dgisselq
+       [(set (pc) (if_then_else (geu (reg:CC CC_REG) (const_int 0))
8331 102 dgisselq
+                (label_ref (match_operand 0 "" ""))
8332 122 dgisselq
+                (pc)))
8333
+       ;(clobber (reg:CC CC_REG))
8334
+       ]
8335 102 dgisselq
+       ""      ; Flip the comparison, then check for GEU (once flipped)a
8336
+               ; Z is naturally checked for, as C would've never been set on Z
8337
+               ; so by flipping it, it is tantamount to saying Z or GTU.
8338
+       "BZ\t%0
8339
+       XOR\t2,CC
8340
+       BC\t%0"
8341
+       [(set_attr "predicable" "no")
8342
+               (set_attr "conditional" "yes")
8343
+               (set_attr "ccresult" "unknown")])
8344
+(define_insn "cbranchdi4"
8345
+       [(set (pc) (if_then_else
8346
+               (match_operator 0 "ordered_comparison_operator"
8347
+                       [(match_operand:DI 1 "register_operand" "r")
8348 122 dgisselq
+                               (match_operand:DI 2 "register_operand" "r")])
8349 102 dgisselq
+                       (label_ref (match_operand 3 "" ""))
8350
+                       (pc)))
8351 122 dgisselq
+       (clobber (reg:CC CC_REG))]
8352 102 dgisselq
+       ""
8353
+       {
8354
+               switch(GET_CODE(operands[0])) {
8355
+               case EQ:
8356
+                       return "CMP\t%H2,%H1\n\tCMP.Z\t%L2,%L1\n\tBZ\t%3";
8357
+               case NE:
8358
+                       return "CMP\t%H2,%H1\n\tCMP.NZ\t%L2,%L1\n\tBNZ\t%3";
8359
+               case LE:
8360
+                       return "CMP\t%H2,%H1\n\tBLT\t%3\n\tCMP.Z\t%L2,%L1\n\tBC\t%3\n\tBZ\t%3";
8361
+               case GT:
8362
+                       return "CMP\t%H1,%H2\n\tBLT\t%3\n\tBNZ\t.Ldi%=\n\tCMP\t%L1,%L2\n\tBC\t%3\n.Ldi%=:";
8363
+               case LT:
8364
+                       return "CMP\t%H2,%H1\n\tBLT\t%3\n\tBNZ\t.Ldi%=\n\tCMP\t%L2,%L1\n\tBC\t%3\n.Ldi%=:";
8365
+               case GE:
8366
+                       return "CMP\t%H1,%H2\n\tBLT\t%3\n\tBNZ\t.Ldi%=\n\tCMP\t%L1,%L2\n\tBC\t%3\nBZ\t%3\n.Ldi%=:";
8367
+               case LTU:
8368
+                       return "CMP\t%H2,%H1\n\tCMP.Z\t%L2,%L1\n\tBC\t%3\n";
8369
+               case LEU:
8370
+                       return "CMP\t%H2,%H1\n\tCMP.Z\t%L2,%L1\n\tBC\t%3\n\tBZ\t%3";
8371
+               case GTU:
8372
+                       return "CMP\t%H1,%H2\n\tCMP.Z\t%L1,%L2\n\tBC\t%3\n";
8373
+               case GEU:
8374
+                       return "CMP\t%H1,%H2\n\tCMP.Z\t%L1,%L2\n\tBC\t%3\nBZ\t%3";
8375
+               default:
8376
+                       gcc_unreachable();
8377
+               }
8378
+       }
8379
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8380
+;
8381
+;
8382
+;
8383
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8384
+;;
8385
+;; Subroutine call
8386
+;;
8387
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8388
+;
8389
+;
8390
+; There are two types of calls: "call" and "call_value".
8391
+;
8392
+; Each of these types of calls are then expanded into one of:
8393
+;
8394
+;      _const          - A call to a constant address, such as a symbol
8395
+;                      reference or a fixed location
8396
+;
8397
+;      _label          - This should be the same as _const, except that for
8398
+;                      some reason the RTL and matching rules are separate.
8399
+;                      Hence we have a separate rule for this.
8400
+;
8401
+;      _mem            - The memory address we wish to jump to is stored in
8402
+;                      memory somewhere, and we have only a pointer.  In this
8403
+;                      case, we load that pointer straight to the PC and go.
8404
+;
8405
+;      _var            - The address to jump to is given as an offset to a
8406
+;                      register, such as X+R3.  This is an indirect jump.
8407
+;                      Although we support it, it does require different RTL
8408
+;                      code.
8409
+;
8410
+(define_expand "call"
8411
+       [(call (match_operand 0 "" "")
8412
+               (match_operand 1 "" ""))]
8413
+       ""
8414
+       {
8415
+               if (MEM_P(operands[0])) {
8416
+                       // This should always be the case
8417
+                       rtx addr = XEXP(operands[0],0);
8418
+                       if (zip_const_address_operand_p(addr, SImode)) {
8419 122 dgisselq
+                               //; fprintf(stderr, "Generating gen_void_call_const()\n");
8420 102 dgisselq
+                               emit_call_insn(gen_void_call_const(addr,
8421
+                                               operands[1]));
8422
+                       } else if ((MEM_P(addr))&&(zip_address_operand(
8423
+                                                       XEXP(addr,0)))) {
8424
+                               emit_call_insn(gen_void_call_mem(XEXP(addr,0),
8425
+                                                                operands[1]));
8426
+                       } else {
8427
+                               emit_call_insn(gen_void_call_var(addr,
8428
+                                                                operands[1]));
8429
+                       }
8430
+                       DONE;
8431
+               }
8432
+       })
8433
+;
8434
+;
8435
+;
8436
+; How do we want to do this better?
8437
+;      Replace the RTL w/
8438
+;              return_label= gen_label_rtx();
8439
+;              emit_movsi(gen_rtx_REG(zip_R0),plus_constant(
8440
+;                      gen_rtx_REG(zip_PC),return_label));
8441
+;              emit_jump(label_rtx(
8442
+;
8443
+;              emit_label(return_label);
8444
+;
8445
+; The problem is: we can't!  GCC distinguishes between jumps and calls when
8446
+; optimizing, and it doesn't see the need to keep the label around.  Thus, the
8447
+; label gets removed and the call gets lost.  Hence we do it this way (below).
8448
+; I'll probably bastardize a means of getting a new codelabel that GCC doesn't
8449
+; recognize as such, but for now we'll use .Lcall# as our label.
8450
+;
8451
+(define_insn "void_call_const"
8452 122 dgisselq
+       [(call (mem:SI (match_operand:SI 0 "zip_const_address_operand_p" ""))
8453 111 dgisselq
+                       (match_operand 1 "const_int_operand" "n"))
8454 122 dgisselq
+               (clobber (reg:SI RTN_REG))
8455
+               (clobber (reg:CC CC_REG))]
8456 102 dgisselq
+       ""
8457
+       "MOV    .Lcall%=(PC),R0\;BRA\t%0\n.Lcall%=:"
8458
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8459
+(define_insn "void_call_mem"
8460 122 dgisselq
+       [(call (mem:SI (match_operand:SI 0 "zip_memory_operand_p" "Q"))
8461 111 dgisselq
+                       (match_operand 1 "const_int_operand" "n"))
8462 122 dgisselq
+               (clobber (reg:SI RTN_REG))
8463
+               (clobber (reg:CC CC_REG))]
8464 102 dgisselq
+       ""
8465
+       "MOV    .Lcall%=(PC),R0\;LOD\t%0,PC\n.Lcall%=:"
8466
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8467
+;
8468
+; #warning "This predicate is appropriate for non-moves, but not for JMPs"
8469
+(define_insn "void_call_var"
8470 122 dgisselq
+       [(call (mem:SI (match_operand:SI 0 "zip_address_operand_p" ""))
8471 111 dgisselq
+                       (match_operand 1 "const_int_operand" "n"))
8472 122 dgisselq
+               (clobber (reg:SI RTN_REG))
8473
+               (clobber (reg:CC CC_REG))]
8474 102 dgisselq
+       ""
8475
+       "MOV    .Lcall%=(PC),R0\;JMP\t%0\n.Lcall%=:"
8476
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8477
+(define_expand "call_value"
8478 122 dgisselq
+       [(parallel [(set (reg:SI RTNV_REG)
8479 102 dgisselq
+               (call (match_operand:SI 1 "" "")
8480 111 dgisselq
+                       (match_operand 2 "const_int_operand" "n")))
8481 122 dgisselq
+       (set (match_operand:SI 0 "register_operand" "=r") (reg:SI RTNV_REG))
8482
+       (clobber (reg:CC CC_REG))])]
8483 102 dgisselq
+       ""
8484
+       {
8485 122 dgisselq
+               //; extern void zip_debug_rtx(const_rtx);
8486
+               //; fprintf(stderr, "ZIP.MD::CALL-VALUE()\n");
8487
+               //; zip_debug_rtx(operands[1]);
8488 102 dgisselq
+               if (MEM_P(operands[1])) {
8489 122 dgisselq
+                       //; fprintf(stderr, "ZIP.MD::CALL-VALUE() MEM_P\n");
8490
+                       //; zip_debug_rtx(operands[1]);
8491
+                       //; This should always be the case
8492 102 dgisselq
+                       rtx addr = XEXP(operands[1],0);
8493
+                       if (zip_const_address_operand_p(addr, SImode)) {
8494 122 dgisselq
+                               //; fprintf(stderr, "Generating gen_reg_call_const()\n");
8495 102 dgisselq
+                               emit_call_insn(gen_reg_call_const(addr, operands[2]));
8496
+                       } else if ((MEM_P(addr))&&(zip_address_operand(XEXP(addr,0)))) {
8497 122 dgisselq
+                               //; fprintf(stderr, "ZIP.MD::CALL-VALUE() INDIRECT\n");
8498 102 dgisselq
+                               emit_call_insn(gen_reg_call_mem(XEXP(addr,0), operands[2]));
8499
+                       } else {
8500 122 dgisselq
+                               //; fprintf(stderr, "ZIP.MD::CALL-VALUE() INDIRECT\n");
8501 102 dgisselq
+                               emit_call_insn(gen_reg_call_var(addr, operands[2]));
8502
+                       }
8503
+                       DONE;
8504
+               }
8505
+       })
8506
+(define_insn "reg_call_const"
8507 122 dgisselq
+       [(set (reg:SI RTNV_REG)
8508 102 dgisselq
+               (call (mem:SI (match_operand:SI 0 "zip_const_address_operand_p" ""))
8509 111 dgisselq
+                       (match_operand 1 "const_int_operand" "n")))
8510 122 dgisselq
+               (clobber (reg:SI RTN_REG))
8511
+               (clobber (reg:CC CC_REG))]
8512 102 dgisselq
+       ""
8513
+       "MOV    .Lcall%=(PC),R0\;BRA\t%0\n.Lcall%=:"
8514
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8515
+(define_insn "reg_call_mem"
8516
+       [(set (reg:SI RTNV_REG)
8517 111 dgisselq
+               (call (mem:SI (match_operand:SI 0 "zip_memory_operand_p" "Q"))
8518
+                       (match_operand 1 "const_int_operand" "n")))
8519 122 dgisselq
+               (clobber (reg:SI RTN_REG))
8520
+               (clobber (reg:CC CC_REG))]
8521 102 dgisselq
+       ""
8522 111 dgisselq
+       "MOV    .Lcall%=(PC),R0\n\tLOD\t%0,PC\n.Lcall%=:"
8523 102 dgisselq
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8524 111 dgisselq
+;
8525 102 dgisselq
+; #warning "This predicate is appropriate for non-moves, but not for JMPs"
8526
+(define_insn "reg_call_var"
8527 122 dgisselq
+       [(set (reg:SI RTNV_REG)
8528 102 dgisselq
+               (call (mem:SI (match_operand:SI 0 "zip_address_operand_p" ""))
8529 111 dgisselq
+                       (match_operand 1 "const_int_operand" "n")))
8530 122 dgisselq
+               (clobber (reg:SI RTN_REG))
8531
+               (clobber (reg:CC CC_REG))]
8532 102 dgisselq
+       ""
8533 111 dgisselq
+       "MOV    .Lcall%=(PC),R0\n\tJMP\t%0\n.Lcall%=:"
8534 102 dgisselq
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unknown")])
8535
+;
8536
+;
8537
+;
8538
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8539
+;;
8540
+;; Frame manipulation RTX
8541
+;;
8542
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8543
+;
8544
+;
8545
+;
8546
+(define_expand "prologue"
8547
+       [(const_int 0)]
8548
+       ""
8549
+       "{ zip_expand_prologue(); DONE; }")
8550
+(define_expand "epilogue"
8551
+       [(return)]
8552
+       ""
8553
+       "{ zip_expand_epilogue(); DONE; }")
8554
+(define_expand "return" ; In order to use the function predicate, this *must*
8555
+       [(return)]      ; be a define_expand
8556
+       "zip_use_return_insn()")
8557
+       ; "JMP  R0"
8558
+       ; [(set_attr "ccresult" "unchanged")])
8559
+(define_insn "*return" ; A "*" -- means it cannot be called from C
8560
+       [(return)]
8561
+       ""
8562
+       "JMP    R0"
8563
+       [(set_attr "ccresult" "unchanged")])
8564
+(define_insn "simple_return"   ; A "*" -- means it cannot be called from C
8565
+       [(simple_return)]
8566
+       ""
8567
+       "JMP    R0"
8568
+       [(set_attr "ccresult" "unchanged")])
8569
+;
8570
+;
8571
+;
8572
+;;;;;;;;;;;;;;;;;;;;;;;;;;
8573
+;;
8574
+;; Zip Builtin Functions
8575
+;;
8576
+;;;;;;;;;;;;;;;;;;;;;;;;;;
8577
+;
8578
+;
8579
+;
8580
+(define_insn "zip_rtu"
8581
+       [(unspec_volatile [(reg:SI CC_REG)] UNSPEC_RTU)
8582 122 dgisselq
+       (clobber (reg:CC CC_REG))]
8583 102 dgisselq
+       "(!ZIP_USER)"
8584
+       "RTU"
8585
+       [(set_attr "ccresult" "unknown")])
8586
+(define_insn "zip_halt" ; Needs to be unspec_volatile, or optimizer will opt out
8587
+       [(unspec_volatile [(reg:SI CC_REG)] UNSPEC_HALT)
8588 122 dgisselq
+       (clobber (reg:CC CC_REG))]
8589 102 dgisselq
+       "(!ZIP_USER)"
8590
+       "HALT"
8591
+       [(set_attr "ccresult" "unknown")])
8592
+(define_insn "zip_idle"
8593
+       [(unspec_volatile [(reg:SI CC_REG)] UNSPEC_IDLE)
8594 122 dgisselq
+       (clobber (reg:CC CC_REG))]
8595 102 dgisselq
+       ""
8596
+       "WAIT"
8597
+       [(set_attr "ccresult" "unknown")])
8598
+(define_insn "zip_syscall"
8599
+       [(unspec_volatile [(reg:SI CC_REG)] UNSPEC_SYSCALL)]
8600
+       ""
8601
+       "CLR\tCC"
8602
+       [(set_attr "ccresult" "unknown")])
8603
+;
8604
+;
8605
+; Operator "save_context"
8606
+;
8607 117 dgisselq
+;      Okay, so we're not really reading and writing operand 0, %0, however
8608
+;      if we don't list it as a "+r" register, the compiler may allocate it
8609
+;      among the other registers, thus we clobber it in the middle of the
8610
+;      operation before the task is complete.
8611 102 dgisselq
+;
8612
+(define_insn "zip_save_context"
8613 117 dgisselq
+       [(unspec_volatile
8614
+                       [ (match_operand:SI 0 "register_operand" "+r") ]
8615 102 dgisselq
+                       UNSPEC_SAVE_CONTEXT)
8616
+               (clobber (match_scratch:SI 1 "=r"))
8617
+               (clobber (match_scratch:SI 2 "=r"))
8618
+               (clobber (match_scratch:SI 3 "=r"))
8619 117 dgisselq
+               (clobber (match_scratch:SI 4 "=r"))]
8620 102 dgisselq
+       "(!ZIP_USER)"
8621
+       "MOV\tuR0,%1
8622
+       MOV\tuR1,%2
8623
+       MOV\tuR2,%3
8624
+       MOV\tuR3,%4
8625
+       STO\t%1,%0
8626
+       STO\t%2,1(%0)
8627
+       STO\t%3,2(%0)
8628
+       STO\t%4,3(%0)
8629
+       MOV\tuR4,%1
8630
+       MOV\tuR5,%2
8631
+       MOV\tuR6,%3
8632
+       MOV\tuR7,%4
8633
+       STO\t%1,4(%0)
8634
+       STO\t%2,5(%0)
8635
+       STO\t%3,6(%0)
8636
+       STO\t%4,7(%0)
8637
+       MOV\tuR8,%1
8638
+       MOV\tuR9,%2
8639
+       MOV\tuR10,%3
8640
+       MOV\tuR11,%4
8641
+       STO\t%1,8(%0)
8642
+       STO\t%2,9(%0)
8643
+       STO\t%3,10(%0)
8644
+       STO\t%4,11(%0)
8645
+       MOV\tuR12,%1
8646
+       MOV\tuSP,%2
8647
+       MOV\tuCC,%3
8648
+       MOV\tuPC,%4
8649
+       STO\t%1,12(%0)
8650
+       STO\t%2,13(%0)
8651
+       STO\t%3,14(%0)
8652
+       STO\t%4,15(%0)"
8653 122 dgisselq
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
8654 117 dgisselq
+;
8655
+; See the comment above about why operand 0, %0, *must* be a "+r" operand,
8656
+; even though we don't really read (or change) its value throughout this
8657
+; operation.
8658
+;
8659 102 dgisselq
+(define_insn "zip_restore_context"
8660
+       [(unspec_volatile [
8661 117 dgisselq
+               (match_operand:SI 0 "register_operand" "+r")] UNSPEC_RESTORE_CONTEXT)
8662 102 dgisselq
+       (clobber (match_scratch:SI 1 "=r"))
8663
+       (clobber (match_scratch:SI 2 "=r"))
8664
+       (clobber (match_scratch:SI 3 "=r"))
8665 117 dgisselq
+       (clobber (match_scratch:SI 4 "=r"))]
8666 102 dgisselq
+       "(!ZIP_USER)"
8667
+       "LOD\t0(%0),%1
8668
+       LOD\t1(%0),%2
8669
+       LOD\t2(%0),%3
8670
+       LOD\t3(%0),%4
8671
+       MOV\t%1,uR0
8672
+       MOV\t%2,uR1
8673
+       MOV\t%3,uR2
8674
+       MOV\t%4,uR3
8675
+       LOD\t4(%0),%1
8676
+       LOD\t5(%0),%2
8677
+       LOD\t6(%0),%3
8678
+       LOD\t7(%0),%4
8679
+       MOV\t%1,uR4
8680
+       MOV\t%2,uR5
8681
+       MOV\t%3,uR6
8682
+       MOV\t%4,uR7
8683
+       LOD\t8(%0),%1
8684
+       LOD\t9(%0),%2
8685
+       LOD\t10(%0),%3
8686
+       LOD\t11(%0),%4
8687
+       MOV\t%1,uR8
8688
+       MOV\t%2,uR9
8689
+       MOV\t%3,uR10
8690
+       MOV\t%4,uR11
8691
+       LOD\t12(%0),%1
8692
+       LOD\t13(%0),%2
8693
+       LOD\t14(%0),%3
8694
+       LOD\t15(%0),%4
8695
+       MOV\t%1,uR12
8696
+       MOV\t%2,uSP
8697
+       MOV\t%3,uCC
8698
+       MOV\t%4,uPC"
8699 122 dgisselq
+       [(set_attr "predicable" "no") (set_attr "ccresult" "unchanged")])
8700 102 dgisselq
+(define_insn "zip_bitrev"
8701
+       [(set (match_operand:SI 0 "register_operand" "=r")
8702
+               (unspec:SI [(match_operand:SI 1 "register_operand" "r")] UNSPEC_BITREV))
8703
+       ]
8704
+       ""
8705
+       "BREV\t%1,%0"
8706 122 dgisselq
+       [(set_attr "ccresult" "unchanged")])
8707 102 dgisselq
+(define_insn "zip_cc"
8708
+       [(set (match_operand:SI 0 "register_operand" "=r")
8709
+               (unspec:SI [(reg:SI CC_REG)] UNSPEC_GETCC))]
8710
+       ""
8711
+       "MOV\tCC,%0"
8712
+       [(set_attr "ccresult" "unchanged")])
8713 117 dgisselq
+(define_insn "zip_ucc"
8714
+       [(set (match_operand:SI 0 "register_operand" "=r")
8715
+               (unspec_volatile:SI [(reg:SI CC_REG)] UNSPEC_GETUCC))]
8716
+       ""
8717
+       "MOV\tuCC,%0"
8718
+       [(set_attr "ccresult" "unchanged")])
8719 111 dgisselq
+(define_insn "zip_cc_sto"
8720
+       [(set (mem:SI (match_operand:SI 0 "register_operand" "r"))
8721 117 dgisselq
+               (unspec_volatile:SI [(reg:SI CC_REG)] UNSPEC_GETCC))]
8722 111 dgisselq
+       ""
8723
+       "STO\tCC,(%0)"
8724
+       [(set_attr "ccresult" "unchanged")])
8725
+(define_insn "zip_cc_sto_off"
8726
+       [(set (mem:SI (plus:SI
8727
+                       (match_operand:SI 0 "register_operand" "r")
8728
+                       (match_operand:SI 1 "const_int_operand" "N")))
8729 117 dgisselq
+               (unspec_volatile:SI [(reg:SI CC_REG)] UNSPEC_GETCC))]
8730 111 dgisselq
+       ""
8731
+       "STO\tCC,%1(%0)"
8732
+       [(set_attr "ccresult" "unchanged")])
8733 102 dgisselq
+(define_insn "ldilo"
8734
+       [(set (match_operand:SI 0 "register_operand" "=r")
8735
+               (unspec:SI [(match_operand:SI 1 "immediate_operand" "")] UNSPEC_LDILO))]
8736
+       ""
8737
+       "LDILO  %1,%0"
8738
+       [(set_attr "predicable" "yes") (set_attr "ccresult" "unchanged")])
8739
+
8740
+;
8741
+;
8742
+;
8743
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8744
+;;
8745
+;; Floating point Op-codes
8746
+;;
8747
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8748
+;
8749
+;
8750
+;
8751
+(define_insn "addsf3"
8752
+       [(set (match_operand:SF 0 "register_operand" "=r")
8753
+               (plus:SF (match_operand:SF 1 "register_operand" "0")
8754 122 dgisselq
+                       (match_operand:SF 2 "register_operand" "r")))
8755
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
8756 102 dgisselq
+       "(ZIP_FPU)"
8757
+       "FPADD  %2,%0"
8758
+       [(set_attr "ccresult" "unknown")])
8759
+(define_insn "subsf3"
8760
+       [(set (match_operand:SF 0 "register_operand" "=r")
8761
+               (minus:SF (match_operand:SF 1 "register_operand" "0")
8762 122 dgisselq
+                       (match_operand:SF 2 "register_operand" "r")))
8763
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
8764 102 dgisselq
+       "(ZIP_FPU)"
8765
+       "FPSUB  %2,%0"
8766
+       [(set_attr "ccresult" "unknown")])
8767
+(define_insn "mulsf3"
8768
+       [(set (match_operand:SF 0 "register_operand" "=r")
8769
+               (mult:SF (match_operand:SF 1 "register_operand" "0")
8770 122 dgisselq
+                       (match_operand:SF 2 "register_operand" "r")))
8771
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
8772 102 dgisselq
+       "(ZIP_FPU)"
8773
+       "FPMUL  %2,%0"
8774
+       [(set_attr "ccresult" "unknown")])
8775
+(define_insn "divsf3"
8776
+       [(set (match_operand:SF 0 "register_operand" "=r")
8777
+               (div:SF (match_operand:SF 1 "register_operand" "0")
8778 122 dgisselq
+                       (match_operand:SF 2 "register_operand" "r")))
8779
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
8780 102 dgisselq
+       "(ZIP_FPU)"
8781
+       "FPDIV  %2,%0"
8782
+       [(set_attr "ccresult" "unknown")])
8783 111 dgisselq
+(define_expand "negsf2"
8784
+       [(set (match_operand:SF 0 "register_operand" "=r")
8785
+               (neg:SF (match_operand:SF 1 "register_operand" "0")))
8786
+       ]
8787
+       ""
8788
+       {
8789
+               operands[0] = gen_rtx_SUBREG(SImode, operands[0], 0);
8790
+               if (can_create_pseudo_p()) {
8791
+                       rtx tmp = gen_reg_rtx(SImode);
8792
+                       emit_insn(gen_movsi_ldi(tmp,gen_int_mode(0x80000000,SImode)));
8793 122 dgisselq
+                       emit_insn(gen_xorsi3(operands[0], operands[0], tmp));
8794 111 dgisselq
+                       DONE;
8795
+               } else {
8796
+                       emit_insn(gen_zip_bitrev(operands[0],operands[0]));
8797 122 dgisselq
+                       emit_insn(gen_iorsi3(operands[0], operands[0],
8798
+                               gen_int_mode(1,SImode)));
8799 111 dgisselq
+                       emit_insn(gen_zip_bitrev(operands[0],operands[0]));
8800
+                       DONE;
8801
+               }
8802
+       })
8803
+(define_expand "abssf2"
8804 122 dgisselq
+       [(set (match_operand:SF 0 "register_operand" "=r")
8805
+               (abs:SF (match_operand:SF 1 "register_operand" "0")))
8806 111 dgisselq
+       ]
8807
+       ""
8808
+       {
8809
+               operands[0] = gen_rtx_SUBREG(SImode, operands[0], 0);
8810
+               if (can_create_pseudo_p()) {
8811
+                       rtx tmp = gen_reg_rtx(SImode);
8812
+                       emit_insn(gen_movsi_ldi(tmp,gen_int_mode(0x7fffffff,SImode)));
8813 122 dgisselq
+                       emit_insn(gen_andsi3(operands[0], operands[0], tmp));
8814 111 dgisselq
+                       DONE;
8815
+               } else {
8816
+                       emit_insn(gen_zip_bitrev(operands[0],operands[0]));
8817 122 dgisselq
+                       emit_insn(gen_andsi3(operands[0], operands[0],
8818
+                               gen_int_mode(-2,SImode)));
8819 111 dgisselq
+                       emit_insn(gen_zip_bitrev(operands[0],operands[0]));
8820
+                       DONE;
8821
+               }
8822
+       })
8823 102 dgisselq
+;
8824
+;
8825
+;
8826
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8827
+;;
8828
+;; Trap Instruction
8829
+;;
8830
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8831
+;
8832
+;
8833
+; The ZipCPU doesn't really have a "trap" instruction per se.  The goal is that
8834
+; *nothing* should ever trap, and so we should never get here.  However, the
8835
+; compiler seems to want a trap instruction for some reason.  (It keeps us
8836
+; from calling the abort() function, if we don't define these ...)  So let's
8837
+; just grab onto the break instruction and declare it to be a trap instruction
8838
+; for our purposes.  Alternatively, we might've used a syscall, but ... this
8839
+; will work for both user and system instructions.
8840
+;
8841
+(define_insn "trap"
8842
+       [(trap_if (const_int 1) (const_int 0))]
8843
+       ""
8844
+       "BREAK"
8845
+       [(set_attr "predicable" "yes") (set_attr "ccresult" "unchanged")])
8846
+;
8847
+(define_expand "ctrap<mode>4"
8848 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC
8849
+               (match_operand:ZI 1 "register_operand" "r")
8850
+               (match_operand:ZI 2 "zip_opb_single_operand_p" "rO")))
8851 102 dgisselq
+       (trap_if (match_operator 0 "ordered_comparison_operator"
8852 122 dgisselq
+                       [(reg:CC CC_REG) (const_int 0)])
8853 102 dgisselq
+                       (match_operand 3 "const_int_operand" "O"))]
8854
+       ""
8855
+       )
8856
+(define_insn "trapif"
8857
+       [(trap_if (match_operator 0 "ordered_comparison_operator"
8858 122 dgisselq
+                       [(reg:CC CC_REG) (const_int 0)])
8859 102 dgisselq
+                       (match_operand 1 "const_int_operand" "O"))]
8860
+       ""
8861
+       "BREAK\t%1"
8862
+       [(set_attr "predicable" "no")])
8863
+;
8864
+;
8865
+;
8866
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8867
+;;
8868
+;; Unimplemented (or not yet implemented) RTL Codes
8869
+;;
8870
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8871
+;
8872
+;
8873
+;
8874
+;(define_insn "sync_compare_and_swapsi"
8875
+;      [(set ...
8876
+;              )]
8877
+;      "(ZIP_ATMOC)"
8878
+;      LOCK            (alu)           // Hmmm ... need to modify if I will
8879
+;      LOD     %1,%0   OP-VALID        // operate on the value before the store
8880
+;      CMP     %0,%2   DCD-valid
8881
+;      STO.Z   %2,%1   PF-valid
8882
+;
8883
+;(define_insn "sync_lock_test_and_setsi"
8884
+;      LOCK
8885
+;      LOD     %1,%0
8886
+;      STO     %0,%1
8887
+;
8888
+;(define_insn "sync_lock_releasesi"
8889
+;      STO     %1,%0
8890
+;
8891
+;
8892
+;(define_insn "negvsi3"
8893
+;      "MOV    %1,%0
8894
+;      XOR     -1,%0
8895
+;      ADD     1,%0
8896
+;      BV      %2"
8897
+;      "")
8898 124 dgisselq
+;
8899
+; Match:
8900
+;      CMP     R1,R0
8901
+;      BGTU    lbl
8902
+; Transform to:
8903
+;      CMP     R0,R1
8904
+;      BC      lbl
8905
+;
8906 117 dgisselq
+(define_peephole2
8907 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC
8908
+               (match_operand:SI 0 "register_operand")
8909
+               (match_operand:SI 1 "register_operand")))
8910
+       (set (pc) (if_then_else (gtu (reg:CC CC_REG) (const_int 0))
8911
+                       (label_ref (match_operand 2 ""))
8912 117 dgisselq
+                       (pc)))]
8913
+       ""
8914 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC (match_dup 1) (match_dup 0)))
8915
+       (set (pc) (if_then_else (ltu (reg:CC CC_REG) (const_int 0))
8916 117 dgisselq
+                       (label_ref (match_dup 2))
8917
+                       (pc)))]
8918
+       "")
8919 124 dgisselq
+;
8920
+;
8921
+; Match:
8922
+;      CMP     R1,R0
8923
+;      BGEU    lbl
8924
+; Transform to:
8925
+;      CMP     1(R0),R1
8926
+;      BC      lbl
8927
+;
8928 117 dgisselq
+(define_peephole2
8929 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC
8930
+               (match_operand:SI 0 "register_operand")
8931
+               (match_operand:SI 1 "register_operand")))
8932
+       (set (pc) (if_then_else (geu (reg:CC CC_REG) (const_int 0))
8933
+                       (label_ref (match_operand 2 ""))
8934 117 dgisselq
+                       (pc)))]
8935
+       ""
8936 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC
8937
+               (match_dup 1) (plus (match_dup 0) (const_int 1))))
8938
+       (set (pc) (if_then_else (ltu (reg:CC CC_REG) (const_int 0))
8939 117 dgisselq
+                       (label_ref (match_dup 2))
8940
+                       (pc)))]
8941
+       "")
8942 124 dgisselq
+;
8943
+;
8944
+; Match:
8945
+;      CMP     R1,R0
8946
+;      BGE     lbl
8947
+; Transform to:
8948
+;      CMP     1(R0),R1
8949
+;      BLT     lbl
8950
+;
8951 117 dgisselq
+(define_peephole2
8952 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC
8953
+               (match_operand:SI 0 "register_operand")
8954
+               (match_operand:SI 1 "register_operand")))
8955
+       (set (pc) (if_then_else (ge (reg:CC CC_REG) (const_int 0))
8956
+                       (label_ref (match_operand 2 ""))
8957 117 dgisselq
+                       (pc)))]
8958
+       ""
8959 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC (match_dup 1)
8960
+                       (plus:SI (match_dup 0) (const_int 1))))
8961
+       (set (pc) (if_then_else (lt (reg:CC CC_REG) (const_int 0))
8962 117 dgisselq
+                       (label_ref (match_dup 2))
8963
+                       (pc)))]
8964
+       "")
8965 124 dgisselq
+;
8966
+;
8967
+; Match:
8968
+;      CMP     R1,R0
8969
+;      BLEU    lbl
8970
+; Transform to:
8971
+;      CMP     1(R1),R0
8972
+;      BLT     lbl
8973
+;
8974 117 dgisselq
+(define_peephole2
8975 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC
8976
+               (match_operand:SI 0 "register_operand" "")
8977 117 dgisselq
+               (match_operand:SI 1 "register_operand" "")))
8978 122 dgisselq
+       (set (pc) (if_then_else (leu (reg:CC CC_REG) (const_int 0))
8979 117 dgisselq
+                       (label_ref (match_operand 2 "" ""))
8980
+                       (pc)))]
8981
+       ""
8982 122 dgisselq
+       [(set (reg:CC CC_REG) (compare:CC (match_dup 0)
8983
+                       (plus (match_dup 1) (const_int 1))))
8984
+       (set (pc) (if_then_else (ltu (reg:CC CC_REG) (const_int 0))
8985 117 dgisselq
+                       (label_ref (match_dup 2))
8986
+                       (pc)))]
8987
+       "")
8988
+;
8989
+; I need to revisit these peephole optimizations when I can come up with another
8990
+; way of adding one to the constant integer.  The approach listed below just
8991
+; ... doesn't work.
8992 102 dgisselq
+;
8993 117 dgisselq
+;(define_peephole2
8994 122 dgisselq
+;      [(set (reg:CC CC_REG) (compare (match_operand:SI 0 "register_operand" "")
8995 117 dgisselq
+;              (match_operand:SI 1 "const_int_operand" "")))
8996 122 dgisselq
+;      (set (pc) (if_then_else (le (reg:CC CC_REG) (const_int 0))
8997 117 dgisselq
+;                      (label_ref (match_operand 2 "" ""))
8998
+;                      (pc)))]
8999
+;      "(INTVAL(operands[1])<((1<<17)-2))"
9000 122 dgisselq
+;      [(set (reg:CC CC_REG) (compare (match_dup 0) (plus (match_dup 1) (const_int 1))))
9001
+;      (set (pc) (if_then_else (lt (reg:CC CC_REG) (const_int 0))
9002 117 dgisselq
+;                      (label_ref (match_dup 2))
9003
+;                      (pc)))]
9004
+;      "")
9005
+;(define_peephole2
9006 122 dgisselq
+;      [(set (reg:CC CC_REG) (compare (match_operand:SI 0 "register_operand" "")
9007 117 dgisselq
+;              (match_operand:SI 1 "const_int_operand" "")))
9008 122 dgisselq
+;      (set (pc) (if_then_else (leu (reg:CC CC_REG) (const_int 0))
9009 117 dgisselq
+;                      (label_ref (match_operand 2 "" ""))
9010
+;                      (pc)))]
9011
+;      "(INTVAL(operands[1])<((1<<17)-2))"
9012 122 dgisselq
+;      [(set (reg:CC CC_REG) (compare (match_dup 0) (plus (match_dup 1) (const_int 1))))
9013
+;      (set (pc) (if_then_else (lt (reg:CC CC_REG) (const_int 0))
9014 117 dgisselq
+;                      (label_ref (match_dup 2))
9015
+;                      (pc)))]
9016
+;      "")
9017
+;
9018
+;
9019
+;
9020
+;
9021 122 dgisselq
+; Match:
9022
+;      MOV A(R1),R3
9023
+;      CMP R3,R0
9024
+;      (R3 is dead)
9025
+; Transform to:
9026
+;      CMP A(R1),R0
9027
+;
9028
+(define_peephole2
9029
+       [(set (match_operand:SI 3 "register_operand")
9030
+               (plus:SI (match_operand:SI 1 "register_operand")
9031
+                       (match_operand:SI 2 "zip_mvimm_operand_p")))
9032
+       (set (reg:CC CC_REG)
9033
+               (compare:CC (match_operand:SI 0 "register_operand")
9034
+                       (match_dup 3)))]
9035
+       "peep2_regno_dead_p(2, REGNO(operands[3]))"
9036
+       [(set (reg:CC CC_REG) (compare:CC (match_dup 0)
9037
+               (plus:SI (match_dup 1) (match_dup 2))))]
9038
+       "")
9039
+;
9040
+;
9041
+; Match:
9042
+;      ALU OpB,R0
9043
+;      CMP 0,R0
9044
+; Transform to:
9045
+;      ALU OpB,R0
9046
+;
9047
+(define_peephole2
9048 124 dgisselq
+       [(parallel [(set (match_operand:SI 0 "register_operand")
9049
+                       (match_operand:SI 1 ""))
9050 122 dgisselq
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9051
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
9052
+       ""
9053
+       [(parallel [(set (match_dup 0) (match_dup 1))
9054
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9055
+       ])
9056
+;
9057
+;
9058
+; Match:
9059
+;      ALU OpB,R0
9060
+;      MOV R1,R2       // Can be LDI, LOD, STO, etc.
9061
+;      CMP 0,R1
9062
+; Transform to:
9063
+;      ALU OpB,R0
9064
+;      MOV R0,R1
9065
+;
9066
+(define_peephole2
9067 124 dgisselq
+       [(parallel [(set (match_operand:SI 0 "register_operand")
9068
+                       (match_operand:SI 1 ""))
9069 122 dgisselq
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9070 124 dgisselq
+       (set (match_operand:SI 2 "nonimmediate_operand") (match_operand:SI 3 ""))
9071 122 dgisselq
+       (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))]
9072
+       "(!REG_P(operands[2]))||((REGNO(operands[2])!=REGNO(operands[0]))&&((REGNO(operands[2])>FIRST_PSEUDO_REGISTER)||(REGNO(operands[2])<CC_REG)))"
9073
+       [(parallel [(set (match_dup 0) (match_dup 1))
9074
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9075
+       (set (match_dup 2) (match_dup 3))
9076
+       ])
9077
+;
9078
+;
9079
+; Match:
9080
+;      ALU OpB,R0
9081
+;      MOV R0,R1
9082
+;      CMP 0,R1
9083
+; Transform to:
9084
+;      ALU OpB,R0
9085
+;      MOV R0,R1
9086
+;
9087
+(define_peephole2
9088 124 dgisselq
+       [(parallel [(set (match_operand:SI 0 "register_operand")
9089
+                       (match_operand:SI 1 ""))
9090 122 dgisselq
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9091 124 dgisselq
+       (set (match_operand:SI 2 "register_operand") (match_dup 0))
9092 122 dgisselq
+       (set (reg:CC CC_REG) (compare:CC (match_dup 2) (const_int 0)))]
9093
+       ""
9094
+       [(parallel [(set (match_dup 0) (match_dup 1))
9095
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9096
+       (set (match_dup 2) (match_dup 3))
9097
+       ])
9098
+;
9099 124 dgisselq
+;
9100
+; Match:
9101
+;      MOV A(R0),R0
9102
+;      ADD $x,R1
9103
+;      (CCREG is dead, and (A+x) is within range ...)
9104
+; Transform to:
9105
+;      MOV (A+$x)(R1),R0
9106
+; ... how do I do the plus?  Let's build it with a plus of zero, and work from
9107
+; there
9108
+;      MOV R1,R0
9109
+;      ADD $x,R0
9110
+;      (CCREG is dead, and x is within range ...)
9111
+; Transform to:
9112
+;      MOV (A+$x)(R1),R0
9113
+(define_peephole2
9114
+       [(set (match_operand:SI 0 "register_operand")
9115
+               (match_operand:SI 1 "register_operand"))
9116
+       (parallel [(set (match_dup 0) (plus:SI (match_dup 0)
9117
+                               (match_operand 2 "zip_mvimm_operand_p")))
9118
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9119
+       ]
9120
+       "(peep2_regno_dead_p(2,CC_REG))"
9121
+       [(set (match_dup 0) (plus:SI (match_dup 1) (match_dup 2)))])
9122
+;
9123
+;
9124
+;
9125
+; Match:
9126
+;      ADD $x,R0
9127
+;      MOV R0,R1
9128
+;      (CCREG is dead, and R0 is dead)
9129
+; Transform to:
9130
+;      MOV (A+$x)(R0),R1
9131
+; ... again, how do I build this plus?
9132
+;
9133
+(define_peephole2
9134
+       [(parallel [(set (match_operand:SI 0 "register_operand")
9135
+                       (plus:SI (match_dup 0)
9136
+                               (match_operand 1 "zip_mvimm_operand_p")))
9137
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9138
+       (set (match_operand:SI 2 "register_operand") (match_dup 0))]
9139
+       "(peep2_regno_dead_p(2, REGNO(operands[0])))&&(peep2_regno_dead_p(2,CC_REG))"
9140
+       [(set (match_dup 2) (plus:SI (match_dup 0) (match_dup 1)))])
9141
+;
9142
+;
9143
+; Match:
9144
+;      ADD     $x,R0
9145
+;      ADD     R0,Rn
9146
+;      (R0 is dead, if R0 is not Rn)
9147
+; Transform to:
9148
+;      ADD     $x(R0),Rn
9149
+;
9150
+(define_peephole2
9151
+       [(parallel [(set (match_operand:SI 0 "register_operand")
9152
+                       (plus:SI (match_dup 0)
9153
+                               (match_operand 1 "zip_opb_immv_p")))
9154
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9155
+       (parallel [(set (match_operand:SI 2 "register_operand")
9156
+                       (plus:SI (match_dup 2) (match_dup 0)))
9157
+               (set (reg:CC CC_REG) (compare:CC (match_dup 2) (const_int 0)))])
9158
+       ]
9159
+       "(REGNO(operands[0])!=REGNO(operands[2]))&&(peep2_regno_dead_p(2, REGNO(operands[0])))"
9160
+       [(parallel [(set (match_dup 2)
9161
+                       (plus:SI (match_dup 2)
9162
+                               (plus:SI (match_dup 0)
9163
+                                       (match_dup 1))))
9164
+               (set (reg:CC CC_REG) (compare:CC (match_dup 2) (const_int 0)))])
9165
+       ])
9166
+;
9167
+; Match:
9168
+;      ADD     $x,R0
9169
+;      LOD     -x(R0),R1
9170
+; Transform to:
9171
+;      LOD     (R0),R1
9172
+;      ADD     $x,R0
9173
+;
9174
+(define_peephole2
9175
+       [(parallel [(set (match_operand:SI 0 "register_operand")
9176
+                       (plus:SI (match_dup 0)
9177
+                               (match_operand 1 "zip_opb_immv_p")))
9178
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9179
+       (set (match_operand:SI 3 "register_operand")
9180
+               (mem:SI (plus:SI (match_dup 0)
9181
+                       (match_operand 2 "zip_opb_immv_p"))))
9182
+       ]
9183
+       "(REGNO(operands[0])!=REGNO(operands[1]))&&(INTVAL(operands[1])==-INTVAL(operands[2]))"
9184
+       [(set (match_dup 3) (mem:SI (match_dup 0)))
9185
+       (parallel [(set (match_dup 0) (plus:SI (match_dup 0) (match_dup 1)))
9186
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9187
+       ])
9188
+;
9189
+;
9190
+;
9191
+; Match:
9192
+;      ADD     $x,R0
9193
+;      STO     R1,-x(R0)
9194
+; Transform to:
9195
+;      STO     R1,(R0)
9196
+;      ADD     $x,R0
9197
+;
9198
+(define_peephole2
9199
+       [(parallel [(set (match_operand:SI 0 "register_operand")
9200
+                       (plus:SI (match_dup 0)
9201
+                               (match_operand 1 "zip_opb_immv_p")))
9202
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9203
+       (set (mem:SI (plus:SI (match_dup 0) (match_operand 2 "zip_opb_immv_p")))
9204
+               (match_operand:SI 3 "register_operand"))
9205
+       ]
9206
+       "(REGNO(operands[0])!=REGNO(operands[1]))&&(INTVAL(operands[1])==-INTVAL(operands[2]))"
9207
+       [(set (mem:SI (match_dup 0)) (match_dup 3))
9208
+       (parallel [(set (match_dup 0) (plus:SI (match_dup 0) (match_dup 1)))
9209
+               (set (reg:CC CC_REG) (compare:CC (match_dup 0) (const_int 0)))])
9210
+       ])
9211
+;
9212
+;
9213
+; Match:
9214
+;      ADD     $x,R0
9215
+;      ANY     R1,R2 (destination is not R0, source does not reference R0)
9216
+;      ADD     R0,Rn (could be 1 or 2, not 0)
9217
+;      (R0 is dead)
9218
+; Transform to:
9219
+;      ANY     R1,R2
9220
+;      ADD     $x(R0),Rn
9221
+;
9222
+;
9223
+;
9224
+; Need a peephole optimizer (not peephole2) for
9225
+;      [(call ...
9226
+;      (set (pc) (label))]
9227
+;      To result with
9228
+;      "MOV\tlabel,R0
9229
+;      JMP\tsubroutine"
9230
+;
9231
+; and for
9232
+;      BRA target
9233
+;      BRA target ; two branches to the same identical target in a row ...
9234
+;
9235
+;
9236
+;
9237 102 dgisselq
+; STILL MISSING:
9238
+;      SYSCALL(ID)
9239
+;              MOV %ID,R0
9240
+;              CLR     CC
9241
+;      cmove   ... the conditional move, created from a
9242
+;      (set (match_op 0 "" "r") (if_then_else (condition) (a) (reg X))))
9243
+;      pattern
9244
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/zip/zip-modes.def gcc-5.3.0-zip/gcc/config/zip/zip-modes.def
9245
--- gcc-5.3.0-original/gcc/config/zip/zip-modes.def     1969-12-31 19:00:00.000000000 -0500
9246 111 dgisselq
+++ gcc-5.3.0-zip/gcc/config/zip/zip-modes.def  2016-03-08 12:10:21.982586940 -0500
9247
@@ -0,0 +1,23 @@
9248 102 dgisselq
+/*
9249
+ * Commends in C-long comment form
9250
+ * class
9251
+ *     Mode = "SI"
9252
+ *     PRECISION, BYTESIZE, COUNT ??
9253
+ *     FORMAT
9254
+ *     EXPR
9255 111 dgisselq
+ *
9256
+ * The manual says I need to define BITS_PER_UNIT here.
9257 102 dgisselq
+ */
9258
+// INT_MODE(QI, 1);
9259
+// INT_MODE(HI, 1);
9260
+// INT_MODE(SI, 1);
9261
+// INT_MODE(DI, 2);
9262
+
9263
+// FLOAT_MODE(SF, 1, ieee_single_format);
9264
+// FLOAT_MODE(DF, 2, ieee_single_format);
9265
+
9266
+// We cannot override machmodes.def from here.  Thus, even though our QI,
9267
+// HI, and SI modes are all 1-byte, we cant set them that way here.  The
9268
+// change needed to be made in machmodes.def.  Hence, here is a target
9269
+// configuration change--in machmodes.def--that properly belonged in the
9270
+// config directory.
9271
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config/zip/zip-protos.h gcc-5.3.0-zip/gcc/config/zip/zip-protos.h
9272
--- gcc-5.3.0-original/gcc/config/zip/zip-protos.h      1969-12-31 19:00:00.000000000 -0500
9273 122 dgisselq
+++ gcc-5.3.0-zip/gcc/config/zip/zip-protos.h   2016-04-06 14:25:35.431154171 -0400
9274
@@ -0,0 +1,78 @@
9275 102 dgisselq
+////////////////////////////////////////////////////////////////////////////////
9276
+//
9277
+// Filename:   zip-protos.h
9278
+//
9279
+// Project:    Zip CPU backend for the GNU Compiler Collection
9280
+//
9281
+// Purpose:
9282
+//
9283
+// Creator:    Dan Gisselquist, Ph.D.
9284
+//             Gisselquist Technology, LLC
9285
+//
9286
+////////////////////////////////////////////////////////////////////////////////
9287
+//
9288
+// Copyright (C) 2016, Gisselquist Technology, LLC
9289
+//
9290
+// This program is free software (firmware): you can redistribute it and/or
9291
+// modify it under the terms of  the GNU General Public License as published
9292
+// by the Free Software Foundation, either version 3 of the License, or (at
9293
+// your option) any later version.
9294
+//
9295
+// This program is distributed in the hope that it will be useful, but WITHOUT
9296
+// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
9297
+// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9298
+// for more details.
9299
+//
9300
+// You should have received a copy of the GNU General Public License along
9301
+// with this program.  (It's in the $(ROOT)/doc directory, run make with no
9302
+// target there if the PDF file isn't present.)  If not, see
9303
+// <http://www.gnu.org/licenses/> for a copy.
9304
+//
9305
+// License:    GPL, v3, as defined and found on www.gnu.org,
9306
+//             http://www.gnu.org/licenses/gpl.html
9307
+//
9308
+//
9309
+////////////////////////////////////////////////////////////////////////////////
9310
+#ifndef        ZIP_PROTOS_H
9311
+#define        ZIP_PROTOS_H
9312
+
9313
+extern void    zip_expand_prologue(void);
9314
+extern void    zip_expand_epilogue(void);
9315
+extern int     zip_initial_elimination_offset(int, int);
9316
+extern void    zip_print_operand(FILE *, rtx, int);
9317
+extern void    zip_print_operand_address(FILE *, rtx);
9318
+extern enum    reg_class       zip_reg_class(int);
9319
+extern rtx     zip_return_addr_rtx(int, rtx);
9320
+extern int     zip_num_arg_regs(enum machine_mode, tree);
9321
+
9322
+extern void    zip_asm_output_def(FILE *s, const char *n, const char *v);
9323 122 dgisselq
+
9324
+#ifdef HAVE_cc0
9325 102 dgisselq
+extern void    zip_update_cc_notice(rtx exp, rtx_insn *insn);
9326 122 dgisselq
+#else
9327
+extern void    zip_canonicalize_comparison(int *, rtx *, rtx *, bool);
9328
+#endif
9329 102 dgisselq
+extern int     zip_address_operand(rtx op);
9330
+extern int     zip_const_address_operand(rtx op);
9331
+extern bool    zip_gen_move_rtl(rtx, rtx);
9332
+extern bool    zip_use_return_insn(void);
9333
+extern const char *zip_set_zero_or_one(rtx, rtx);
9334
+extern const char *zip_movsicc(rtx, rtx, rtx, rtx);
9335
+
9336
+extern int     zip_ct_address_operand(rtx op);
9337 111 dgisselq
+extern int     zip_pd_opb_operand(rtx op);
9338 102 dgisselq
+extern int     zip_pd_mov_operand(rtx op);
9339 111 dgisselq
+extern int     zip_pd_imm_operand(rtx op);
9340
+extern int     zip_pd_mvimm_operand(rtx op);
9341 102 dgisselq
+extern int     zip_ct_const_address_operand(rtx op);
9342
+extern int     zip_pd_const_address_operand(rtx op);
9343
+extern const char *zip_movsicc(rtx, rtx, rtx, rtx);
9344
+extern const char *zip_addsicc(rtx, rtx, rtx, rtx);
9345
+
9346 122 dgisselq
+extern void    zip_ifcvt_machdep_init(struct ce_if_block *ceinfo);
9347
+extern void    zip_ifcvt_modify_cancel(struct ce_if_block *ceinfo);
9348
+extern void    zip_ifcvt_modify_final(struct ce_if_block *ceinfo);
9349
+extern void    zip_ifcvt_modify_tests(struct ce_if_block *ceinfo, rtx *true_expr, rtx *false_expr);
9350
+
9351 102 dgisselq
+#endif
9352
+
9353
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/config.gcc gcc-5.3.0-zip/gcc/config.gcc
9354
--- gcc-5.3.0-original/gcc/config.gcc   2015-09-10 10:17:53.000000000 -0400
9355
+++ gcc-5.3.0-zip/gcc/config.gcc        2016-02-14 00:53:37.389411987 -0500
9356
@@ -479,6 +479,10 @@
9357
 tilepro*-*-*)
9358
        cpu_type=tilepro
9359
        ;;
9360
+zip*)
9361
+       cpu_type=zip
9362
+       tmake_file=zip/t-zip
9363
+       ;;
9364
 esac
9365
 
9366
 tm_file=${cpu_type}/${cpu_type}.h
9367
@@ -2972,6 +2976,15 @@
9368
        c_target_objs="m32c-pragma.o"
9369
        cxx_target_objs="m32c-pragma.o"
9370
        ;;
9371
+zip-*-netbsd*)
9372
+       tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h zip/netbsd.h"
9373
+       tmake_file="${tmake_file} zip/t-zip"
9374
+       ;;
9375
+zip*)
9376
+       target_has_targetm_common=yes
9377
+       tm_file="elfos.h newlib-stdint.h ${tm_file}"
9378
+       tmake_file="${tmake_file} zip/t-zip"
9379
+       ;;
9380
 *)
9381
        echo "*** Configuration ${target} not supported" 1>&2
9382
        exit 1
9383
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/cse.c gcc-5.3.0-zip/gcc/cse.c
9384
--- gcc-5.3.0-original/gcc/cse.c        2015-02-03 15:41:38.000000000 -0500
9385 122 dgisselq
+++ gcc-5.3.0-zip/gcc/cse.c     2016-04-05 22:26:30.816200542 -0400
9386 111 dgisselq
@@ -634,6 +634,15 @@
9387 102 dgisselq
 
9388
 /* Nonzero if X has the form (PLUS frame-pointer integer).  */
9389
 
9390 111 dgisselq
+// #define     DO_ZIP_DEBUGS
9391 102 dgisselq
+#ifdef DO_ZIP_DEBUGS
9392
+#include <stdio.h>
9393
+extern void zip_debug_rtx(const_rtx);
9394
+#define        ZIP_DEBUG_LINE(STR,RTX) do { fprintf(stderr, "%s\n", STR); zip_debug_rtx(RTX); } while(0)
9395
+#else
9396
+#define        ZIP_DEBUG_LINE(STR,RTX)
9397
+#endif
9398
+
9399
 static bool
9400
 fixed_base_plus_p (rtx x)
9401
 {
9402
@@ -2898,6 +2907,7 @@
9403
          validate_canon_reg (&XVECEXP (x, i, j), insn);
9404
     }
9405
 
9406
+       ZIP_DEBUG_LINE("CANON-REG-RTN", x);
9407
   return x;
9408
 }
9409
 
9410
@@ -3144,14 +3154,16 @@
9411
   if (x == 0)
9412
     return x;
9413
 
9414
+       ZIP_DEBUG_LINE("FOLD-RTX", x);
9415
   /* Try to perform some initial simplifications on X.  */
9416
   code = GET_CODE (x);
9417
   switch (code)
9418
     {
9419
     case MEM:
9420
     case SUBREG:
9421
-      if ((new_rtx = equiv_constant (x)) != NULL_RTX)
9422
-        return new_rtx;
9423
+      if ((new_rtx = equiv_constant (x)) != NULL_RTX) {
9424
+       ZIP_DEBUG_LINE("FOLD-RTX-NEW", new_rtx);
9425
+        return new_rtx; }
9426
       return x;
9427
 
9428
     case CONST:
9429
@@ -3208,6 +3220,8 @@
9430
        rtx folded_arg = XEXP (x, i), const_arg;
9431
        machine_mode mode_arg = GET_MODE (folded_arg);
9432
 
9433
+       ZIP_DEBUG_LINE("FOLD-RTX-ARG = ", folded_arg);
9434
+
9435
        switch (GET_CODE (folded_arg))
9436
          {
9437
          case MEM:
9438
@@ -3317,6 +3331,7 @@
9439
        }
9440
 
9441
       apply_change_group ();
9442
+       ZIP_DEBUG_LINE("FOLD-RTX-CANONICALIZED = ", insn);
9443
     }
9444
 
9445
   /* If X is an arithmetic operation, see if we can simplify it.  */
9446
@@ -4203,6 +4218,7 @@
9447
 {
9448
   rtx dest = SET_DEST (set);
9449
   rtx src = SET_SRC (set);
9450
+       ZIP_DEBUG_LINE("TRY-BACK-SUBSTITUTE-REG", insn);
9451
 
9452
   if (REG_P (dest)
9453
       && REG_P (src) && ! HARD_REGISTER_P (src)
9454
@@ -4258,6 +4274,7 @@
9455
            }
9456
        }
9457
     }
9458
+       ZIP_DEBUG_LINE("TRY-BACK-SUBSTITUTE-REG, done", insn);
9459
 }
9460
 
9461
 /* Record all the SETs in this instruction into SETS_PTR,
9462
@@ -4351,6 +4368,7 @@
9463
   rtx tem;
9464
   rtx x = PATTERN (insn);
9465
   int i;
9466
+       ZIP_DEBUG_LINE("CANONICALIZE-INSN", insn);
9467
 
9468
   if (CALL_P (insn))
9469
     {
9470
@@ -4364,6 +4382,7 @@
9471
       canon_reg (SET_SRC (x), insn);
9472
       apply_change_group ();
9473
       fold_rtx (SET_SRC (x), insn);
9474
+       ZIP_DEBUG_LINE("CANONICALIZE-INSN, was set:", insn);
9475
     }
9476
   else if (GET_CODE (x) == CLOBBER)
9477
     {
9478
@@ -4400,6 +4419,7 @@
9479
     canon_reg (PATTERN (insn), insn);
9480
   else if (GET_CODE (x) == PARALLEL)
9481
     {
9482
+       ZIP_DEBUG_LINE("CANONICALIZE-INSN/parallel", insn);
9483
       for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
9484
        {
9485
          rtx y = XVECEXP (x, 0, i);
9486
@@ -4491,6 +4511,7 @@
9487
 
9488
      The result of apply_change_group can be ignored; see canon_reg.  */
9489
 
9490
+       ZIP_DEBUG_LINE("CANONICALIZE-INSN/done", insn);
9491
   apply_change_group ();
9492
 }
9493
 
9494
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/defaults.h gcc-5.3.0-zip/gcc/defaults.h
9495
--- gcc-5.3.0-original/gcc/defaults.h   2015-03-03 10:04:02.000000000 -0500
9496
+++ gcc-5.3.0-zip/gcc/defaults.h        2016-02-06 16:57:53.939410173 -0500
9497
@@ -480,6 +480,8 @@
9498
 #define LOG2_BITS_PER_UNIT 3
9499
 #elif BITS_PER_UNIT == 16
9500
 #define LOG2_BITS_PER_UNIT 4
9501
+#elif BITS_PER_UNIT == 32
9502
+#define LOG2_BITS_PER_UNIT 5
9503
 #else
9504
 #error Unknown BITS_PER_UNIT
9505
 #endif
9506
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/doc/gcc.log gcc-5.3.0-zip/gcc/doc/gcc.log
9507
--- gcc-5.3.0-original/gcc/doc/gcc.log  1969-12-31 19:00:00.000000000 -0500
9508
+++ gcc-5.3.0-zip/gcc/doc/gcc.log       2016-01-30 15:18:43.262724969 -0500
9509
@@ -0,0 +1,214 @@
9510
+This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) (format=pdfetex 2014.5.7)  30 JAN 2016 15:17
9511
+entering extended mode
9512
+ restricted \write18 enabled.
9513
+ file:line:error style messages enabled.
9514
+ %&-line parsing enabled.
9515
+**\catcode126=12 \def\normaltilde{~}\catcode126=13 \let~\normaltilde  \input ./
9516
+gcc.texi
9517
+(./gcc.texi (/usr/share/texmf/tex/texinfo/texinfo.tex
9518
+Loading texinfo [version 2013-09-11.11]:
9519
+\bindingoffset=\dimen16
9520
+\normaloffset=\dimen17
9521
+\pagewidth=\dimen18
9522
+\pageheight=\dimen19
9523
+\outerhsize=\dimen20
9524
+\outervsize=\dimen21
9525
+\cornerlong=\dimen22
9526
+\cornerthick=\dimen23
9527
+\topandbottommargin=\dimen24
9528
+\headlinebox=\box16
9529
+\footlinebox=\box17
9530
+\margin=\insert252
9531
+\EMsimple=\toks13
9532
+\groupbox=\box18
9533
+\groupinvalidhelp=\toks14
9534
+\mil=\dimen25
9535
+\exdentamount=\skip18
9536
+\inmarginspacing=\skip19
9537
+\centerpenalty=\count27
9538
+ pdf,
9539
+\tempnum=\count28
9540
+\lnkcount=\count29
9541
+\filename=\toks15
9542
+\filenamelength=\count30
9543
+\pgn=\count31
9544
+\toksA=\toks16
9545
+\toksB=\toks17
9546
+\toksC=\toks18
9547
+\toksD=\toks19
9548
+\boxA=\box19
9549
+\countA=\count32
9550
+\nopdfimagehelp=\toks20
9551
+ fonts,
9552
+\sffam=\fam8
9553
+\textleading=\dimen26
9554
+ markup,
9555
+\fontdepth=\count33
9556
+ glyphs,
9557
+\errorbox=\box20
9558
+
9559
+page headings,
9560
+\titlepagetopglue=\skip20
9561
+\titlepagebottomglue=\skip21
9562
+\evenheadline=\toks21
9563
+\oddheadline=\toks22
9564
+\evenfootline=\toks23
9565
+\oddfootline=\toks24
9566
+ tables,
9567
+\tableindent=\dimen27
9568
+\itemindent=\dimen28
9569
+\itemmargin=\dimen29
9570
+\itemmax=\dimen30
9571
+\itemno=\count34
9572
+\multitableparskip=\skip22
9573
+\multitableparindent=\skip23
9574
+\multitablecolspace=\dimen31
9575
+\multitablelinespace=\skip24
9576
+\colcount=\count35
9577
+\everytab=\toks25
9578
+ conditionals,
9579
+\doignorecount=\count36
9580
+ indexing,
9581
+\whatsitskip=\skip25
9582
+\whatsitpenalty=\count37
9583
+\secondaryindent=\skip26
9584
+\partialpage=\box21
9585
+\doublecolumnhsize=\dimen32
9586
+ sectioning,
9587
+\unnumberedno=\count38
9588
+\chapno=\count39
9589
+\secno=\count40
9590
+\subsecno=\count41
9591
+\subsubsecno=\count42
9592
+\appendixno=\count43
9593
+\absseclevel=\count44
9594
+\secbase=\count45
9595
+\chapheadingskip=\skip27
9596
+\secheadingskip=\skip28
9597
+\subsecheadingskip=\skip29
9598
+ toc,
9599
+\tocfile=\write0
9600
+\contentsrightmargin=\skip30
9601
+\savepageno=\count46
9602
+\lastnegativepageno=\count47
9603
+\tocindent=\dimen33
9604
+ environments,
9605
+\lispnarrowing=\skip31
9606
+\envskipamount=\skip32
9607
+\circthick=\dimen34
9608
+\cartouter=\dimen35
9609
+\cartinner=\dimen36
9610
+\normbskip=\skip33
9611
+\normpskip=\skip34
9612
+\normlskip=\skip35
9613
+\lskip=\skip36
9614
+\rskip=\skip37
9615
+\nonfillparindent=\dimen37
9616
+\tabw=\dimen38
9617
+\verbbox=\box22
9618
+
9619
+defuns,
9620
+\defbodyindent=\skip38
9621
+\defargsindent=\skip39
9622
+\deflastargmargin=\skip40
9623
+\defunpenalty=\count48
9624
+\parencount=\count49
9625
+\brackcount=\count50
9626
+ macros,
9627
+\paramno=\count51
9628
+\macname=\toks26
9629
+ cross references,
9630
+\auxfile=\write1
9631
+\savesfregister=\count52
9632
+\toprefbox=\box23
9633
+\printedrefnamebox=\box24
9634
+\infofilenamebox=\box25
9635
+\printedmanualbox=\box26
9636
+ insertions,
9637
+\footnoteno=\count53
9638
+\SAVEfootins=\box27
9639
+\SAVEmargin=\box28
9640
+
9641
+(/usr/share/texlive/texmf-dist/tex/generic/epsf/epsf.tex
9642
+This is `epsf.tex' v2.7.4 <14 February 2011>
9643
+\epsffilein=\read1
9644
+\epsfframemargin=\dimen39
9645
+\epsfframethickness=\dimen40
9646
+\epsfrsize=\dimen41
9647
+\epsftmp=\dimen42
9648
+\epsftsize=\dimen43
9649
+\epsfxsize=\dimen44
9650
+\epsfysize=\dimen45
9651
+\pspoints=\dimen46
9652
+)
9653
+\noepsfhelp=\toks27
9654
+ localization,
9655
+\nolanghelp=\toks28
9656
+\countUTFx=\count54
9657
+\countUTFy=\count55
9658
+\countUTFz=\count56
9659
+ formatting,
9660
+\defaultparindent=\dimen47
9661
+ and turning on texinfo input format.)
9662
+\openout1 = `gcc.aux'.
9663
+
9664
+@cpindfile=@write2
9665
+@fnindfile=@write3
9666
+@vrindfile=@write4
9667
+@tpindfile=@write5
9668
+@kyindfile=@write6
9669
+@pgindfile=@write7
9670
+texinfo.tex: doing @include of gcc-common.texi
9671
+
9672
+
9673
+./gcc.texi:25: I can't find file `gcc-common.texi'.
9674
+@temp ->@input gcc-common.texi
9675
+
9676
+@includezzz ...and @input #1 }@expandafter }@temp
9677
+                                                  @popthisfilestack
9678
+l.25 @include gcc-common.texi
9679
+
9680
+(Press Enter to retry, or Control-D to exit)
9681
+Please type another input file name: include/gcc-common.texi
9682
+(./include/gcc-common.texi
9683
+texinfo.tex: doing @include of gcc-vers.texi
9684
+
9685
+
9686
+./include/gcc-common.texi:11: I can't find file `gcc-vers.texi'.
9687
+@temp ->@input gcc-vers.texi
9688
+
9689
+@includezzz ...and @input #1 }@expandafter }@temp
9690
+                                                  @popthisfilestack
9691
+l.11 @include gcc-vers.texi
9692
+
9693
+(Press Enter to retry, or Control-D to exit)
9694
+Please type another input file name: include/gcc-vers.texi
9695
+./include/gcc-common.texi:11: I can't find file `include/gcc-vers.texi'.
9696
+@temp ->@input gcc-vers.texi
9697
+
9698
+@includezzz ...and @input #1 }@expandafter }@temp
9699
+                                                  @popthisfilestack
9700
+l.11 @include gcc-vers.texi
9701
+
9702
+(Press Enter to retry, or Control-D to exit)
9703
+Please type another input file name:
9704
+./include/gcc-common.texi:11: I can't find file `include/gcc-vers.texi'.
9705
+@temp ->@input gcc-vers.texi
9706
+
9707
+@includezzz ...and @input #1 }@expandafter }@temp
9708
+                                                  @popthisfilestack
9709
+l.11 @include gcc-vers.texi
9710
+
9711
+(Press Enter to retry, or Control-D to exit)
9712
+Please type another input file name:
9713
+./include/gcc-common.texi:11: Emergency stop.
9714
+@temp ->@input gcc-vers.texi
9715
+
9716
+@includezzz ...and @input #1 }@expandafter }@temp
9717
+                                                  @popthisfilestack
9718
+l.11 @include gcc-vers.texi
9719
+
9720
+End of file on the terminal!
9721
+
9722
+./include/gcc-common.texi:11:  ==> Fatal error occurred, no output PDF file pro
9723
+duced!
9724 117 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/emit-rtl.c gcc-5.3.0-zip/gcc/emit-rtl.c
9725
--- gcc-5.3.0-original/gcc/emit-rtl.c   2015-08-05 07:20:59.000000000 -0400
9726
+++ gcc-5.3.0-zip/gcc/emit-rtl.c        2016-04-01 06:40:42.812171791 -0400
9727
@@ -81,6 +81,15 @@
9728
 #include "builtins.h"
9729
 #include "rtl-iter.h"
9730
 
9731
+// #define     DO_ZIP_DEBUGS
9732
+#include <stdio.h>
9733
+#ifdef DO_ZIP_DEBUGS
9734
+#define        ZIP_DEBUG_LINE(STR,RTX) do { fprintf(stderr, "%s:%d/%s\n",__FILE__,__LINE__,STR); zip_debug_rtx(RTX); } while(0)
9735
+extern void    zip_debug_rtx(const_rtx);
9736
+#else
9737
+#define        ZIP_DEBUG_LINE(STR,RTX)
9738
+#endif
9739
+
9740
 struct target_rtl default_target_rtl;
9741
 #if SWITCHABLE_TARGET
9742
 struct target_rtl *this_target_rtl = &default_target_rtl;
9743
@@ -2925,6 +2934,8 @@
9744
   int copied = 0;
9745
   int length;
9746
 
9747
+ZIP_DEBUG_LINE("Copy RTX if shared",*orig1);
9748
+
9749
   /* Repeat is used to turn tail-recursion into iteration.  */
9750
 repeat:
9751
   x = *orig1;
9752
@@ -2979,6 +2990,8 @@
9753
       break;
9754
     }
9755
 
9756
+ZIP_DEBUG_LINE("Before RTX_FLAG",x);
9757
+
9758
   /* This rtx may not be shared.  If it has already been seen,
9759
      replace it with a copy of itself.  */
9760
 
9761
@@ -2989,6 +3002,8 @@
9762
     }
9763
   RTX_FLAG (x, used) = 1;
9764
 
9765
+ZIP_DEBUG_LINE("Post RTX_FLAG",x);
9766
+
9767
   /* Now scan the subexpressions recursively.
9768
      We can store any replaced subexpressions directly into X
9769
      since we know X is not shared!  Any vectors in X
9770 102 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/expr.c gcc-5.3.0-zip/gcc/expr.c
9771
--- gcc-5.3.0-original/gcc/expr.c       2015-04-07 10:34:06.000000000 -0400
9772 103 dgisselq
+++ gcc-5.3.0-zip/gcc/expr.c    2016-03-08 04:07:01.426335724 -0500
9773 102 dgisselq
@@ -7999,6 +7999,8 @@
9774
    the back of the caller.
9775
    The normal operating mode is to pass FALSE for this parameter.  */
9776
 
9777
+#include "print-tree.h"
9778
+
9779
 rtx
9780
 expand_expr_real (tree exp, rtx target, machine_mode tmode,
9781
                  enum expand_modifier modifier, rtx *alt_rtl,
9782 111 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/final.c gcc-5.3.0-zip/gcc/final.c
9783
--- gcc-5.3.0-original/gcc/final.c      2015-01-15 08:28:42.000000000 -0500
9784 125 dgisselq
+++ gcc-5.3.0-zip/gcc/final.c   2016-04-12 22:11:51.147370235 -0400
9785 111 dgisselq
@@ -109,6 +109,14 @@
9786
 #include "wide-int-print.h"
9787
 #include "rtl-iter.h"
9788
 
9789 122 dgisselq
+// #define     DO_ZIP_DEBUGS
9790 111 dgisselq
+#ifdef DO_ZIP_DEBUGS
9791
+extern void zip_debug_rtx(const_rtx);
9792
+#define        ZIP_DEBUG_LINE(STR,RTX) do { fprintf(stderr, "%s:%d/%s\n", __FILE__,__LINE__,STR); zip_debug_rtx(RTX); } while(0)
9793
+#else
9794
+#define        ZIP_DEBUG_LINE(STR,RTX)
9795
+#endif
9796
+
9797
 #ifdef XCOFF_DEBUGGING_INFO
9798
 #include "xcoffout.h"          /* Needed for external data
9799
                                   declarations for e.g. AIX 4.x.  */
9800
@@ -2071,6 +2079,8 @@
9801
   /* Output the insns.  */
9802
   for (insn = first; insn;)
9803
     {
9804
+       ZIP_DEBUG_LINE("final()\n", insn);
9805
+
9806
       if (HAVE_ATTR_length)
9807
        {
9808
          if ((unsigned) INSN_UID (insn) >= INSN_ADDRESSES_SIZE ())
9809 102 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/genmodes.c gcc-5.3.0-zip/gcc/genmodes.c
9810
--- gcc-5.3.0-original/gcc/genmodes.c   2015-01-05 07:33:28.000000000 -0500
9811
+++ gcc-5.3.0-zip/gcc/genmodes.c        2016-03-04 21:27:49.669147699 -0500
9812
@@ -330,7 +330,8 @@
9813
         the size of a CC mode is four units.  */
9814
       validate_mode (m, UNSET, UNSET, UNSET, UNSET, UNSET);
9815
 
9816
-      m->bytesize = 4;
9817
+       /* For the ZipCPU, however, it is only one unit */
9818
+      m->bytesize = 1;
9819
       m->ncomponents = 1;
9820
       m->component = 0;
9821
       break;
9822
@@ -766,11 +767,12 @@
9823
 
9824
   /* So put the default value unless the target needs a non standard
9825
      value. */
9826
-#ifdef BITS_PER_UNIT
9827
-  bits_per_unit = BITS_PER_UNIT;
9828
-#else
9829
-  bits_per_unit = 8;
9830
-#endif
9831
+// #ifdef BITS_PER_UNIT
9832
+  // bits_per_unit = BITS_PER_UNIT;
9833
+// #else
9834
+  bits_per_unit = 32;
9835
+#warning "Is there a more automated way to set bits per unit?"
9836
+// #endif
9837
 
9838
 #ifdef MAX_BITSIZE_MODE_ANY_INT
9839
   max_bitsize_mode_any_int = MAX_BITSIZE_MODE_ANY_INT;
9840
@@ -1083,7 +1085,7 @@
9841
       first = modes[c];
9842
       last = 0;
9843
       for (m = first; m; last = m, m = m->next)
9844
-       ;
9845
+       if ((m->next)&&(m->next->bytesize == m->bytesize)) first = m;
9846
 
9847
       /* Don't use BImode for MIN_MODE_INT, since otherwise the middle
9848
         end will try to use it for bitfields in structures and the
9849
@@ -1268,7 +1270,7 @@
9850
            continue;
9851
          if (m->precision != (unsigned int) -1)
9852
            {
9853
-             if (m2->precision != 2 * m->precision)
9854
+             if (m2->precision < 2 * m->precision)
9855
                continue;
9856
            }
9857
          else
9858
@@ -1323,7 +1325,6 @@
9859
       tagged_printf ("MODE_MASK (%u)", m->precision, m->name);
9860
     else
9861
       tagged_printf ("MODE_MASK (%u*BITS_PER_UNIT)", m->bytesize, m->name);
9862
-
9863
   puts ("#undef MODE_MASK");
9864
   print_closer ();
9865
 }
9866
@@ -1351,12 +1352,23 @@
9867
   int c;
9868
   struct mode_data *m;
9869
 
9870
+  puts(
9871
+"\n\n/* This is a rather strange conundrum.  Alignment is used by the host in\n"
9872
+" * the assembly file, whereas the size is used by the target.  Thus, for\n"
9873
+" * now, to align to a single target word means to align to 4 8-bit bytes in\n"
9874
+" * assembly.  If you get it wrong, the assembler will try to help.  Thus,\n"
9875
+" * aligning to anything less than 4 (1 target word) will cause an alignment\n"
9876
+" * of the target word in size.  However, this tries to do a little something\n"
9877
+" * teach our compiler what we are doing.\n"
9878
+" */\n");
9879
   print_maybe_const_decl ("%sunsigned char",
9880
                          "mode_base_align", "NUM_MACHINE_MODES",
9881
                          alignment);
9882
 
9883
   for_all_modes (c, m)
9884
-    tagged_printf ("%u", m->alignment, m->name);
9885
+    tagged_printf ("%u", 4*m->bytesize,
9886
+               // m->alignment,
9887
+               m->name);
9888
 
9889
   print_closer ();
9890
 }
9891 117 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/jump.c gcc-5.3.0-zip/gcc/jump.c
9892
--- gcc-5.3.0-original/gcc/jump.c       2015-01-27 04:19:30.000000000 -0500
9893 122 dgisselq
+++ gcc-5.3.0-zip/gcc/jump.c    2016-04-06 14:06:50.207563805 -0400
9894 117 dgisselq
@@ -80,6 +80,14 @@
9895
 #include "target.h"
9896
 #include "rtl-iter.h"
9897
 
9898
+// #define     DO_ZIP_DEBUGS
9899
+#ifdef DO_ZIP_DEBUGS
9900
+#include <stdio.h>
9901
+#define        ZIP_DEBUG_LINE(STR,RTX) do{fprintf(stderr,"%s:%d/%s\n",__FILE__,__LINE__,STR); zip_debug_rtx(RTX); }while(0)
9902
+extern void zip_debug_rtx(const_rtx);
9903
+#else
9904
+#define        ZIP_DEBUG_LINE(STR,RTX)
9905
+#endif
9906
 /* Optimize jump y; x: ... y: jumpif... x?
9907
    Don't know if it is worth bothering with.  */
9908
 /* Optimize two cases of conditional jump to conditional jump?
9909
@@ -1136,6 +1144,7 @@
9910
   int i;
9911
   const char *fmt;
9912
 
9913
+ZIP_DEBUG_LINE("Mark jump label",insn);
9914
   switch (code)
9915
     {
9916
     case PC:
9917
@@ -1248,6 +1257,8 @@
9918
       break;
9919
     }
9920
 
9921
+ZIP_DEBUG_LINE("Post case",insn);
9922
+
9923
   fmt = GET_RTX_FORMAT (code);
9924
 
9925
   /* The primary target of a tablejump is the label of the ADDR_VEC,
9926 102 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/machmode.def gcc-5.3.0-zip/gcc/machmode.def
9927
--- gcc-5.3.0-original/gcc/machmode.def 2015-01-05 07:33:28.000000000 -0500
9928 111 dgisselq
+++ gcc-5.3.0-zip/gcc/machmode.def      2016-03-08 11:56:45.375491523 -0500
9929 102 dgisselq
@@ -184,11 +184,11 @@
9930
    larger types, then corresponding modes must be added here.  The
9931
    name OI is reserved for a 256-bit type (needed by some back ends).
9932
     */
9933
-INT_MODE (QI, 1);
9934
-INT_MODE (HI, 2);
9935
-INT_MODE (SI, 4);
9936
-INT_MODE (DI, 8);
9937
-INT_MODE (TI, 16);
9938
+// INT_MODE (QI, 1);
9939
+// INT_MODE (HI, 1);
9940
+INT_MODE (SI, 1);
9941
+INT_MODE (DI, 2);
9942
+INT_MODE (TI, 4);
9943
 
9944
 /* No partial integer modes are defined by default.  */
9945
 
9946 111 dgisselq
@@ -206,35 +206,35 @@
9947 102 dgisselq
    These are the IEEE mappings.  They can be overridden with
9948
    RESET_FLOAT_FORMAT or at runtime (in TARGET_OPTION_OVERRIDE).  */
9949
 
9950
-FLOAT_MODE (SF, 4, ieee_single_format);
9951
-FLOAT_MODE (DF, 8, ieee_double_format);
9952
+FLOAT_MODE (SF, 1, ieee_single_format);
9953
+FLOAT_MODE (DF, 2, ieee_double_format);
9954
 
9955
 /* Basic CC modes.
9956
    FIXME define this only for targets that need it.  */
9957 111 dgisselq
 CC_MODE (CC);
9958 102 dgisselq
 
9959
 /* Fixed-point modes.  */
9960 111 dgisselq
-FRACT_MODE (QQ, 1, 7); /* s.7 */
9961 102 dgisselq
-FRACT_MODE (HQ, 2, 15); /* s.15 */
9962
-FRACT_MODE (SQ, 4, 31); /* s.31 */
9963
-FRACT_MODE (DQ, 8, 63); /* s.63 */
9964
-FRACT_MODE (TQ, 16, 127); /* s.127 */
9965 111 dgisselq
-
9966
-UFRACT_MODE (UQQ, 1, 8); /* .8 */
9967 102 dgisselq
-UFRACT_MODE (UHQ, 2, 16); /* .16 */
9968
-UFRACT_MODE (USQ, 4, 32); /* .32 */
9969
-UFRACT_MODE (UDQ, 8, 64); /* .64 */
9970
-UFRACT_MODE (UTQ, 16, 128); /* .128 */
9971 111 dgisselq
-
9972
-ACCUM_MODE (HA, 2, 8, 7); /* s8.7 */
9973
-ACCUM_MODE (SA, 4, 16, 15); /* s16.15 */
9974
-ACCUM_MODE (DA, 8, 32, 31); /* s32.31 */
9975
-ACCUM_MODE (TA, 16, 64, 63); /* s64.63 */
9976
-
9977
-UACCUM_MODE (UHA, 2, 8, 8); /* 8.8 */
9978
-UACCUM_MODE (USA, 4, 16, 16); /* 16.16 */
9979
-UACCUM_MODE (UDA, 8, 32, 32); /* 32.32 */
9980
-UACCUM_MODE (UTA, 16, 64, 64); /* 64.64 */
9981
+/* FRACT_MODE (QQ, 1, 7); /* s.7 */
9982
+/* FRACT_MODE (HQ, 1, 15); /* s.15 */
9983
+FRACT_MODE (SQ, 1, 31); /* s.31 */
9984
+FRACT_MODE (DQ, 2, 63); /* s.63 */
9985
+FRACT_MODE (TQ, 4, 127); /* s.127 */
9986
+
9987
+/* UFRACT_MODE (UQQ, 1, 8); /* .8 */
9988
+/* UFRACT_MODE (UHQ, 1, 16); /* .16 */
9989 102 dgisselq
+UFRACT_MODE (USQ, 1, 32); /* .32 */
9990
+UFRACT_MODE (UDQ, 2, 64); /* .64 */
9991
+UFRACT_MODE (UTQ, 4, 128); /* .128 */
9992 111 dgisselq
+
9993
+/* ACCUM_MODE (HA, 2, 8, 7); /* s8.7 */
9994
+ACCUM_MODE (SA, 1, 16, 15); /* s16.15 */
9995
+ACCUM_MODE (DA, 2, 32, 31); /* s32.31 */
9996
+ACCUM_MODE (TA, 4, 64, 63); /* s64.63 */
9997
+
9998
+/* UACCUM_MODE (UHA, 2, 8, 8); /* 8.8 */
9999
+UACCUM_MODE (USA, 1, 16, 16); /* 16.16 */
10000
+UACCUM_MODE (UDA, 2, 32, 32); /* 32.32 */
10001
+UACCUM_MODE (UTA, 4, 64, 64); /* 64.64 */
10002 102 dgisselq
 
10003 111 dgisselq
 /* Allow the target to specify additional modes of various kinds.  */
10004
 #if HAVE_EXTRA_MODES
10005 102 dgisselq
@@ -246,9 +246,9 @@
10006
 COMPLEX_MODES (FLOAT);
10007
 
10008
 /* Decimal floating point modes.  */
10009
-DECIMAL_FLOAT_MODE (SD, 4, decimal_single_format);
10010
-DECIMAL_FLOAT_MODE (DD, 8, decimal_double_format);
10011
-DECIMAL_FLOAT_MODE (TD, 16, decimal_quad_format);
10012
+DECIMAL_FLOAT_MODE (SD, 1, decimal_single_format);
10013
+DECIMAL_FLOAT_MODE (DD, 2, decimal_double_format);
10014
+DECIMAL_FLOAT_MODE (TD, 4, decimal_quad_format);
10015
 
10016
 /* The symbol Pmode stands for one of the above machine modes (usually SImode).
10017
    The tm.h file specifies which one.  It is not a distinct mode.  */
10018
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/machmode.h gcc-5.3.0-zip/gcc/machmode.h
10019
--- gcc-5.3.0-original/gcc/machmode.h   2015-01-05 07:33:28.000000000 -0500
10020
+++ gcc-5.3.0-zip/gcc/machmode.h        2016-02-06 17:21:49.592924065 -0500
10021
@@ -180,13 +180,7 @@
10022
 /* Get the size in bytes and bits of an object of mode MODE.  */
10023
 
10024
 extern CONST_MODE_SIZE unsigned char mode_size[NUM_MACHINE_MODES];
10025
-#if GCC_VERSION >= 4001
10026
-#define GET_MODE_SIZE(MODE) \
10027
-  ((unsigned short) (__builtin_constant_p (MODE) \
10028
-                    ? mode_size_inline (MODE) : mode_size[MODE]))
10029
-#else
10030
 #define GET_MODE_SIZE(MODE)    ((unsigned short) mode_size[MODE])
10031
-#endif
10032
 #define GET_MODE_BITSIZE(MODE) \
10033
   ((unsigned short) (GET_MODE_SIZE (MODE) * BITS_PER_UNIT))
10034
 
10035
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/objc/objc-encoding.c gcc-5.3.0-zip/gcc/objc/objc-encoding.c
10036
--- gcc-5.3.0-original/gcc/objc/objc-encoding.c 2015-01-09 15:18:42.000000000 -0500
10037
+++ gcc-5.3.0-zip/gcc/objc/objc-encoding.c      2016-03-04 22:53:40.431902505 -0500
10038
@@ -765,10 +765,14 @@
10039
        {
10040
          switch (TYPE_MODE (type))
10041
            {
10042
+#ifdef HAVE_QImode
10043
            case QImode:
10044
              charType = 'C'; break;
10045
+#endif
10046
+#ifdef HAVE_HImode
10047
            case HImode:
10048
              charType = 'S'; break;
10049
+#endif
10050
            case SImode:
10051
              {
10052
                if (type == long_unsigned_type_node)
10053
@@ -788,10 +792,14 @@
10054
        {
10055
          switch (TYPE_MODE (type))
10056
            {
10057
+#ifdef HAVE_QImode
10058
            case QImode:
10059
              charType = 'c'; break;
10060
+#endif
10061
+#ifdef HAVE_HImode
10062
            case HImode:
10063
              charType = 's'; break;
10064
+#endif
10065
            case SImode:
10066
              {
10067
                if (type == long_integer_type_node)
10068
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/postreload.c gcc-5.3.0-zip/gcc/postreload.c
10069
--- gcc-5.3.0-original/gcc/postreload.c 2015-07-17 09:50:38.000000000 -0400
10070 111 dgisselq
+++ gcc-5.3.0-zip/gcc/postreload.c      2016-03-24 21:30:23.402590035 -0400
10071
@@ -71,6 +71,14 @@
10072 102 dgisselq
 #include "df.h"
10073
 #include "dbgcnt.h"
10074
 
10075 111 dgisselq
+// #define     DO_ZIP_DEBUGS
10076 102 dgisselq
+#ifdef DO_ZIP_DEBUGS
10077
+extern void zip_debug_rtx(const_rtx);
10078
+#define        ZIP_DEBUG_LINE(STR,RTX) do { fprintf(stderr, "%s:%d/%s\n", __FILE__,__LINE__,STR); zip_debug_rtx(RTX); } while(0)
10079
+#else
10080
+#define        ZIP_DEBUG_LINE(STR,RTX)
10081
+#endif
10082
+
10083
 static int reload_cse_noop_set_p (rtx);
10084
 static bool reload_cse_simplify (rtx_insn *, rtx);
10085
 static void reload_cse_regs_1 (void);
10086 111 dgisselq
@@ -120,6 +128,8 @@
10087 102 dgisselq
   basic_block insn_bb = BLOCK_FOR_INSN (insn);
10088
   unsigned insn_bb_succs = EDGE_COUNT (insn_bb->succs);
10089
 
10090
+       ZIP_DEBUG_LINE("RELOAD-CSE-SIMPLIFY:",insn);
10091
+
10092
   if (GET_CODE (body) == SET)
10093
     {
10094
       int count = 0;
10095 111 dgisselq
@@ -147,6 +157,7 @@
10096 102 dgisselq
        apply_change_group ();
10097
       else
10098
        reload_cse_simplify_operands (insn, testreg);
10099
+       ZIP_DEBUG_LINE("End of reload_cse_simplify_operands", insn);
10100
     }
10101
   else if (GET_CODE (body) == PARALLEL)
10102
     {
10103 111 dgisselq
@@ -205,6 +216,7 @@
10104 102 dgisselq
        apply_change_group ();
10105
       else
10106
        reload_cse_simplify_operands (insn, testreg);
10107
+       ZIP_DEBUG_LINE("End of reload_cse_simplify_operands", insn);
10108
     }
10109
 
10110
 done:
10111 111 dgisselq
@@ -246,6 +258,7 @@
10112 102 dgisselq
          cfg_changed |= reload_cse_simplify (insn, testreg);
10113
 
10114
        cselib_process_insn (insn);
10115
+       ZIP_DEBUG_LINE("End-CSE-REGS-1:",insn);
10116
       }
10117
 
10118
   /* Clean up.  */
10119 111 dgisselq
@@ -276,6 +289,8 @@
10120 102 dgisselq
 #endif
10121
   bool speed = optimize_bb_for_speed_p (BLOCK_FOR_INSN (insn));
10122
 
10123
+
10124
+       ZIP_DEBUG_LINE("RELOAD:Attempting to simplify set",set);
10125
   dreg = true_regnum (SET_DEST (set));
10126
   if (dreg < 0)
10127
     return 0;
10128 111 dgisselq
@@ -427,6 +442,7 @@
10129 102 dgisselq
   /* Array of alternatives, sorted in order of decreasing desirability.  */
10130
   int *alternative_order;
10131
 
10132
+       ZIP_DEBUG_LINE("Simplify-Operands", insn);
10133
   extract_constrain_insn (insn);
10134
 
10135
   if (recog_data.n_alternatives == 0 || recog_data.n_operands == 0)
10136 111 dgisselq
@@ -519,6 +535,7 @@
10137 102 dgisselq
          SET_HARD_REG_BIT (equiv_regs[i], REGNO (l->loc));
10138
     }
10139
 
10140
+       ZIP_DEBUG_LINE("Simplify-Operands - A", insn);
10141
   alternative_mask preferred = get_preferred_alternatives (insn);
10142
   for (i = 0; i < recog_data.n_operands; i++)
10143
     {
10144 111 dgisselq
@@ -617,6 +634,7 @@
10145 102 dgisselq
            }
10146
        }
10147
     }
10148
+       ZIP_DEBUG_LINE("Simplify-Operands - B", insn);
10149
 
10150
   /* Record all alternatives which are better or equal to the currently
10151
      matching one in the alternative_order array.  */
10152 111 dgisselq
@@ -666,6 +684,7 @@
10153 102 dgisselq
       validate_change (insn, recog_data.operand_loc[i],
10154
                       gen_rtx_REG (mode, op_alt_regno[i][j]), 1);
10155
     }
10156
+       ZIP_DEBUG_LINE("Simplify-Operands - C", insn);
10157
 
10158
   for (i = recog_data.n_dups - 1; i >= 0; i--)
10159
     {
10160 111 dgisselq
@@ -679,6 +698,7 @@
10161 102 dgisselq
                       gen_rtx_REG (mode, op_alt_regno[op][j]), 1);
10162
     }
10163
 
10164
+       ZIP_DEBUG_LINE("Simplify-Operands - C", insn);
10165
   return apply_change_group ();
10166
 }
10167
 
10168 117 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/recog.c gcc-5.3.0-zip/gcc/recog.c
10169
--- gcc-5.3.0-original/gcc/recog.c      2015-03-20 02:07:30.000000000 -0400
10170 122 dgisselq
+++ gcc-5.3.0-zip/gcc/recog.c   2016-04-06 17:45:29.552304498 -0400
10171 117 dgisselq
@@ -68,6 +68,15 @@
10172
 #include "df.h"
10173
 #include "insn-codes.h"
10174
 
10175
+// #define     DO_ZIP_DEBUGS
10176
+#ifdef DO_ZIP_DEBUGS
10177
+extern void    zip_debug_rtx(const_rtx);
10178
+#define        ZIP_DEBUG_LINE(STR,RTX) do { fprintf(stderr, "%s:%d/%s\n", __FILE__,__LINE__,STR); zip_debug_rtx(RTX); } while(0)
10179
+#else
10180
+#define        ZIP_DEBUG_LINE(STR,RTX)
10181
+#endif
10182
+
10183
+
10184
 #ifndef STACK_PUSH_CODE
10185
 #ifdef STACK_GROWS_DOWNWARD
10186
 #define STACK_PUSH_CODE PRE_DEC
10187 122 dgisselq
@@ -2283,6 +2292,7 @@
10188
   recog_data.n_dups = 0;
10189
   recog_data.is_asm = false;
10190
 
10191
+ZIP_DEBUG_LINE("Extract-insn", insn);
10192
   switch (GET_CODE (body))
10193
     {
10194
     case USE:
10195
@@ -3671,7 +3681,6 @@
10196 117 dgisselq
            break;
10197
 
10198
          /* The buffer filled to the current maximum, so try to match.  */
10199
-
10200
          pos = peep2_buf_position (peep2_current + peep2_current_count);
10201
          peep2_insn_data[pos].insn = PEEP2_EOB;
10202
          COPY_REG_SET (peep2_insn_data[pos].live_before, live);
10203 122 dgisselq
@@ -3704,6 +3713,7 @@
10204 117 dgisselq
     rebuild_jump_labels (get_insns ());
10205
   if (peep2_do_cleanup_cfg)
10206
     cleanup_cfg (CLEANUP_CFG_CHANGED);
10207
+
10208
 }
10209
 #endif /* HAVE_peephole2 */
10210
 
10211
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/reload1.c gcc-5.3.0-zip/gcc/reload1.c
10212
--- gcc-5.3.0-original/gcc/reload1.c    2015-01-15 08:28:42.000000000 -0500
10213 125 dgisselq
+++ gcc-5.3.0-zip/gcc/reload1.c 2016-04-13 11:32:23.013097569 -0400
10214 117 dgisselq
@@ -72,6 +72,14 @@
10215
 #include "dumpfile.h"
10216
 #include "rtl-iter.h"
10217
 
10218
+// #define     DO_ZIP_DEBUGS
10219
+#ifdef DO_ZIP_DEBUGS
10220
+extern void    zip_debug_rtx(const_rtx);
10221
+#define        ZIP_DEBUG_LINE(STR,RTX) do { fprintf(stderr, "%s:%d/%s\n", __FILE__,__LINE__,STR); zip_debug_rtx(RTX); } while(0)
10222
+#else
10223
+#define        ZIP_DEBUG_LINE(STR,RTX)
10224
+#endif
10225
+
10226
 /* This file contains the reload pass of the compiler, which is
10227
    run after register allocation has been done.  It checks that
10228
    each insn is valid (operands required to be in registers really
10229
@@ -794,6 +802,18 @@
10230
   basic_block bb;
10231
   bool inserted;
10232
 
10233
+#ifdef DO_ZIP_DEBUGS
10234
+  {
10235
+       int     total_count = 0, current_count = 0;
10236
+       for (insn = first; insn; insn = NEXT_INSN (insn))
10237
+               total_count++;
10238
+       for (insn = first; insn; insn = NEXT_INSN (insn)) {
10239
+               fprintf(stderr, "B %3d/%3d", current_count++, total_count);
10240
+               zip_debug_rtx(insn);
10241
+       }
10242
+  }
10243
+#endif
10244
+
10245
   /* Make sure even insns with volatile mem refs are recognizable.  */
10246
   init_recog ();
10247
 
10248
@@ -1366,6 +1386,18 @@
10249
 
10250
   reload_completed = !failure;
10251
 
10252
+#ifdef DO_ZIP_DEBUGS
10253
+  {
10254
+       int     total_count = 0, current_count = 0;
10255
+       for (insn = first; insn; insn = NEXT_INSN (insn))
10256
+               total_count++;
10257
+       for (insn = first; insn; insn = NEXT_INSN (insn)) {
10258
+               fprintf(stderr, "A %3d/%3d", current_count++, total_count);
10259
+               zip_debug_rtx(insn);
10260
+       }
10261
+  }
10262
+#endif
10263
+
10264
   return need_dce;
10265
 }
10266
 
10267 102 dgisselq
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/reload.c gcc-5.3.0-zip/gcc/reload.c
10268
--- gcc-5.3.0-original/gcc/reload.c     2015-01-15 08:28:42.000000000 -0500
10269 122 dgisselq
+++ gcc-5.3.0-zip/gcc/reload.c  2016-04-06 17:49:33.418613170 -0400
10270
@@ -136,6 +136,15 @@
10271
 #include "target.h"
10272
 #include "ira.h"
10273
 
10274
+// #define     DO_ZIP_DEBUGS
10275
+#ifdef DO_ZIP_DEBUGS
10276
+extern void zip_debug_rtx(const_rtx);
10277
+#define ZIP_DEBUG_LINE(STR,RTX) do{fprintf(stderr, "%s:%d/%s\n",__FILE__,__LINE__,STR); zip_debug_rtx(RTX); }while(0)
10278
+#else
10279
+#define        ZIP_DEBUG_LINE(STR,RTX)
10280
+#endif
10281
+
10282
+
10283
 /* True if X is a constant that can be forced into the constant pool.
10284
    MODE is the mode of the operand, or VOIDmode if not known.  */
10285
 #define CONST_POOL_OK_P(MODE, X)               \
10286
@@ -2700,6 +2709,8 @@
10287
   hard_regs_live_known = live_known;
10288
   static_reload_reg_p = reload_reg_p;
10289
 
10290
+ZIP_DEBUG_LINE("Find reloads\n", insn);
10291
+
10292
   /* JUMP_INSNs and CALL_INSNs are not allowed to have any output reloads;
10293
      neither are insns that SET cc0.  Insns that use CC0 are not allowed
10294
      to have any input reloads.  */
10295
@@ -2707,8 +2718,17 @@
10296 102 dgisselq
     no_output_reloads = 1;
10297
 
10298
 #ifdef HAVE_cc0
10299
+  // If the instruction depends upon cc0, such as a branch, if_then_else, or
10300
+  // cond_exec instruction, we cannot change the input so that the instruction
10301
+  // relies on another register--cc0 is specific.  This requries that the
10302
+  // references be only cc0 and (const_int 0), rather than allowing other
10303
+  // registers here as well.
10304
   if (reg_referenced_p (cc0_rtx, PATTERN (insn)))
10305
     no_input_reloads = 1;
10306
+  // If the result of an instruction is the cc0 register, that cannot
10307
+  // be changed, therefore no output reloading is allowed.  This only
10308
+  // works if instructions *only* set the cc0 register, and not multiple
10309
+  // registers.
10310
   if (reg_set_p (cc0_rtx, PATTERN (insn)))
10311
     no_output_reloads = 1;
10312
 #endif
10313
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/testsuite/lib/target-supports.exp gcc-5.3.0-zip/gcc/testsuite/lib/target-supports.exp
10314
--- gcc-5.3.0-original/gcc/testsuite/lib/target-supports.exp    2015-11-26 05:10:58.000000000 -0500
10315
+++ gcc-5.3.0-zip/gcc/testsuite/lib/target-supports.exp 2016-01-30 15:14:21.620586694 -0500
10316
@@ -503,6 +503,11 @@
10317
        return 0
10318
     }
10319
 
10320
+    # Zip CPU doesn't support profiling (yet)
10321
+    if { [istarget zip*] }
10322
+        return 0
10323
+    }
10324
+
10325
     # MinGW does not support -p.
10326
     if { [istarget *-*-mingw*] && $test_what == "-p" } {
10327
        return 0
10328
@@ -986,6 +991,12 @@
10329
        }]
10330
     }
10331
 
10332
+    # No real hardware FPU support for ZipCPU yet--even though the instruction
10333
+    # set supports it, the CPU just isn't ready yet.
10334
+    if { [istarget zip*-*-*] } {
10335
+        return 0
10336
+    }
10337
+
10338
     # This proc is actually checking the availabilty of FPU
10339
     # support for doubles, so on the RX we must fail if the
10340
     # 64-bit double multilib has been selected.
10341
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/tree-ssa-math-opts.c gcc-5.3.0-zip/gcc/tree-ssa-math-opts.c
10342
--- gcc-5.3.0-original/gcc/tree-ssa-math-opts.c 2015-08-11 03:58:07.000000000 -0400
10343
+++ gcc-5.3.0-zip/gcc/tree-ssa-math-opts.c      2016-02-12 11:21:11.309149239 -0500
10344
@@ -972,7 +972,7 @@
10345
     {
10346
       if (val & 1)
10347
        {
10348
-         digit = val & ((1 << POWI_WINDOW_SIZE) - 1);
10349
+         digit = val & ((1l << POWI_WINDOW_SIZE) - 1);
10350
          result += powi_lookup_cost (digit, cache)
10351
                    + POWI_WINDOW_SIZE + 1;
10352
          val >>= POWI_WINDOW_SIZE;
10353
@@ -1012,7 +1012,7 @@
10354
     }
10355
   else if (n & 1)
10356
     {
10357
-      digit = n & ((1 << POWI_WINDOW_SIZE) - 1);
10358
+      digit = n & ((1l << POWI_WINDOW_SIZE) - 1);
10359
       op0 = powi_as_mults_1 (gsi, loc, type, n - digit, cache);
10360
       op1 = powi_as_mults_1 (gsi, loc, type, digit, cache);
10361
     }
10362
@@ -1651,7 +1651,7 @@
10363
 };
10364
 
10365
 #define BITS_PER_MARKER 8
10366
-#define MARKER_MASK ((1 << BITS_PER_MARKER) - 1)
10367
+#define MARKER_MASK ((1l << BITS_PER_MARKER) - 1)
10368
 #define MARKER_BYTE_UNKNOWN MARKER_MASK
10369
 #define HEAD_MARKER(n, size) \
10370
   ((n) & ((uint64_t) MARKER_MASK << (((size) - 1) * BITS_PER_MARKER)))
10371
@@ -1687,7 +1687,7 @@
10372
   /* Zero out the extra bits of N in order to avoid them being shifted
10373
      into the significant bits.  */
10374
   if (size < 64 / BITS_PER_MARKER)
10375
-    n->n &= ((uint64_t) 1 << (size * BITS_PER_MARKER)) - 1;
10376
+    n->n &= ((uint64_t) 1l << (size * BITS_PER_MARKER)) - 1;
10377
 
10378
   switch (code)
10379
     {
10380
@@ -1714,7 +1714,7 @@
10381
     }
10382
   /* Zero unused bits for size.  */
10383
   if (size < 64 / BITS_PER_MARKER)
10384
-    n->n &= ((uint64_t) 1 << (size * BITS_PER_MARKER)) - 1;
10385
+    n->n &= ((uint64_t) 1l << (size * BITS_PER_MARKER)) - 1;
10386
   return true;
10387
 }
10388
 
10389
@@ -1761,7 +1761,7 @@
10390
   n->n = CMPNOP;
10391
 
10392
   if (size < 64 / BITS_PER_MARKER)
10393
-    n->n &= ((uint64_t) 1 << (size * BITS_PER_MARKER)) - 1;
10394
+    n->n &= ((uint64_t) 1l << (size * BITS_PER_MARKER)) - 1;
10395
 
10396
   return true;
10397
 }
10398
@@ -2020,7 +2020,7 @@
10399
          {
10400
            int i, size = TYPE_PRECISION (n->type) / BITS_PER_UNIT;
10401
            uint64_t val = int_cst_value (rhs2), mask = 0;
10402
-           uint64_t tmp = (1 << BITS_PER_UNIT) - 1;
10403
+           uint64_t tmp = (1l << BITS_PER_UNIT) - 1;
10404
 
10405
            /* Only constants masking full bytes are allowed.  */
10406
            for (i = 0; i < size; i++, tmp <<= BITS_PER_UNIT)
10407
@@ -2064,7 +2064,7 @@
10408
              {
10409
                /* If STMT casts to a smaller type mask out the bits not
10410
                   belonging to the target type.  */
10411
-               n->n &= ((uint64_t) 1 << (type_size * BITS_PER_MARKER)) - 1;
10412
+               n->n &= ((uint64_t) 1l << (type_size * BITS_PER_MARKER)) - 1;
10413
              }
10414
            n->type = type;
10415
            if (!n->base_addr)
10416
@@ -2177,7 +2177,7 @@
10417
     {
10418
       uint64_t mask;
10419
 
10420
-      mask = ((uint64_t) 1 << (n->range * BITS_PER_MARKER)) - 1;
10421
+      mask = ((uint64_t) 1l << (n->range * BITS_PER_MARKER)) - 1;
10422
       cmpxchg >>= (64 / BITS_PER_MARKER - n->range) * BITS_PER_MARKER;
10423
       cmpnop &= mask;
10424
     }
10425
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/gcc/var-tracking.c gcc-5.3.0-zip/gcc/var-tracking.c
10426
--- gcc-5.3.0-original/gcc/var-tracking.c       2015-03-26 09:19:00.000000000 -0400
10427 117 dgisselq
+++ gcc-5.3.0-zip/gcc/var-tracking.c    2016-03-31 18:55:03.584197958 -0400
10428 102 dgisselq
@@ -143,6 +143,13 @@
10429
 #include "rtl-iter.h"
10430
 #include "fibonacci_heap.h"
10431
 
10432 117 dgisselq
+#ifdef DO_ZIP_DEBUGS
10433 102 dgisselq
+#include <stdio.h>
10434
+extern void zip_debug_rtx(const_rtx);
10435
+#define ZIP_DEBUG_LINE(STR,RTX) do {fprintf(stderr,"%s:%d/%s\n",__FILE__,__LINE__,STR); zip_debug_rtx(RTX); } while(0)
10436
+#else
10437
+#define ZIP_DEBUG_LINE(STR,RTX)
10438
+#endif
10439
 typedef fibonacci_heap <long, basic_block_def> bb_heap_t;
10440
 typedef fibonacci_node <long, basic_block_def> bb_heap_node_t;
10441
 
10442
@@ -6356,6 +6363,7 @@
10443
                machine_mode indmode
10444
                  = TYPE_MODE (TREE_TYPE (argtype));
10445
                rtx mem = gen_rtx_MEM (indmode, x);
10446
+                       ZIP_DEBUG_LINE("Var-tracking mem-ref", mem);
10447
                cselib_val *val = cselib_lookup (mem, indmode, 0, VOIDmode);
10448
                if (val && cselib_preserved_value_p (val))
10449
                  {
10450
@@ -6462,12 +6470,14 @@
10451
       machine_mode mode
10452
        = TYPE_MODE (TREE_TYPE (OBJ_TYPE_REF_EXPR (obj_type_ref)));
10453
       rtx clobbered = gen_rtx_MEM (mode, this_arg);
10454
+                       ZIP_DEBUG_LINE("Var-tracking mem-ref/clobbered", clobbered);
10455
       HOST_WIDE_INT token
10456
        = tree_to_shwi (OBJ_TYPE_REF_TOKEN (obj_type_ref));
10457
       if (token)
10458
        clobbered = plus_constant (mode, clobbered,
10459
                                   token * GET_MODE_SIZE (mode));
10460
       clobbered = gen_rtx_MEM (mode, clobbered);
10461
+       ZIP_DEBUG_LINE("Var-tracking mem-ref/clobbered-2", clobbered);
10462
       x = gen_rtx_CONCAT (mode, gen_rtx_CLOBBER (VOIDmode, pc_rtx), clobbered);
10463
       call_arguments
10464
        = gen_rtx_EXPR_LIST (VOIDmode, x, call_arguments);
10465
@@ -9790,6 +9800,7 @@
10466
              machine_mode indmode
10467
                = TYPE_MODE (TREE_TYPE (TREE_TYPE (parm)));
10468
              rtx mem = gen_rtx_MEM (indmode, incoming);
10469
+       ZIP_DEBUG_LINE("Var-tracking mem-ref/incoming", incoming);
10470
              cselib_val *val = cselib_lookup_from_insn (mem, indmode, true,
10471
                                                         VOIDmode,
10472
                                                         get_insns ());
10473
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/libgcc/config.host gcc-5.3.0-zip/libgcc/config.host
10474
--- gcc-5.3.0-original/libgcc/config.host       2015-10-01 08:01:18.000000000 -0400
10475
+++ gcc-5.3.0-zip/libgcc/config.host    2016-01-30 15:16:00.459883558 -0500
10476
@@ -195,6 +195,9 @@
10477
 tic6x-*-*)
10478
        cpu_type=c6x
10479
        ;;
10480
+zip*)
10481
+       cpu_type=zip
10482
+       ;;
10483
 esac
10484
 
10485
 # Common parts for widely ported systems.
10486
@@ -1300,6 +1303,9 @@
10487
        echo "*** Configuration ${host} not supported" 1>&2
10488
        exit 1
10489
        ;;
10490
+zip*)
10491
+       tmake_file="${tmake_file} t-softfp-sfdf t-softfp"
10492
+       ;;
10493
 esac
10494
 
10495
 case ${host} in
10496
diff -Naur '--exclude=*.swp' gcc-5.3.0-original/libgomp/configure.tgt gcc-5.3.0-zip/libgomp/configure.tgt
10497
--- gcc-5.3.0-original/libgomp/configure.tgt    2015-03-13 06:57:07.000000000 -0400
10498
+++ gcc-5.3.0-zip/libgomp/configure.tgt 2016-01-30 15:16:51.323521641 -0500
10499
@@ -150,6 +150,9 @@
10500
        # Need to link with -lpthread so libgomp.so is self-contained.
10501
        XLDFLAGS="${XLDFLAGS} -lpthread"
10502
        ;;
10503
+  zip*)
10504
+        config_path="bsd posix"
10505
+        ;;
10506
 
10507
   *)
10508
        ;;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.