Add support for MIPS EABI
[gcc.git] / gcc / config / mips / mips.c
1 /* Subroutines for insn-output.c for MIPS
2 Copyright (C) 1989, 90, 91, 93-95, 1996 Free Software Foundation, Inc.
3 Contributed by A. Lichnewsky, lich@inria.inria.fr.
4 Changes by Michael Meissner, meissner@osf.org.
5 64 bit r4000 support by Ian Lance Taylor, ian@cygnus.com, and
6 Brendan Eich, brendan@microunity.com.
7
8 This file is part of GNU CC.
9
10 GNU CC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 GNU CC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GNU CC; see the file COPYING. If not, write to
22 the Free Software Foundation, 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
24
25 /* ??? The TARGET_FP_CALL_32 macros are intended to simulate a 32 bit
26 calling convention in 64 bit mode. It doesn't work though, and should
27 be replaced with something better designed. */
28
29 #include "config.h"
30 #include "rtl.h"
31 #include "regs.h"
32 #include "hard-reg-set.h"
33 #include "real.h"
34 #include "insn-config.h"
35 #include "conditions.h"
36 #include "insn-flags.h"
37 #include "insn-attr.h"
38 #include "insn-codes.h"
39 #include "recog.h"
40 #include "output.h"
41
42 #undef MAX /* sys/param.h may also define these */
43 #undef MIN
44
45 #include <stdio.h>
46 #include <signal.h>
47 #include <sys/types.h>
48 #include <sys/file.h>
49 #include <ctype.h>
50 #include "tree.h"
51 #include "expr.h"
52 #include "flags.h"
53
54 #ifndef R_OK
55 #define R_OK 4
56 #define W_OK 2
57 #define X_OK 1
58 #endif
59
60 #if defined(USG) || defined(NO_STAB_H)
61 #include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */
62 #else
63 #include <stab.h> /* On BSD, use the system's stab.h. */
64 #endif /* not USG */
65
66 #ifdef __GNU_STAB__
67 #define STAB_CODE_TYPE enum __stab_debug_code
68 #else
69 #define STAB_CODE_TYPE int
70 #endif
71
72 extern void abort ();
73 extern int atoi ();
74 extern char *getenv ();
75 extern char *mktemp ();
76
77 extern rtx adj_offsettable_operand ();
78 extern rtx copy_to_reg ();
79 extern void error ();
80 extern void fatal ();
81 extern tree lookup_name ();
82 extern void pfatal_with_name ();
83 extern void warning ();
84
85 extern FILE *asm_out_file;
86
87 /* Enumeration for all of the relational tests, so that we can build
88 arrays indexed by the test type, and not worry about the order
89 of EQ, NE, etc. */
90
91 enum internal_test {
92 ITEST_EQ,
93 ITEST_NE,
94 ITEST_GT,
95 ITEST_GE,
96 ITEST_LT,
97 ITEST_LE,
98 ITEST_GTU,
99 ITEST_GEU,
100 ITEST_LTU,
101 ITEST_LEU,
102 ITEST_MAX
103 };
104
105 /* Global variables for machine-dependent things. */
106
107 /* Threshold for data being put into the small data/bss area, instead
108 of the normal data area (references to the small data/bss area take
109 1 instruction, and use the global pointer, references to the normal
110 data area takes 2 instructions). */
111 int mips_section_threshold = -1;
112
113 /* Count the number of .file directives, so that .loc is up to date. */
114 int num_source_filenames = 0;
115
116 /* Count the number of sdb related labels are generated (to find block
117 start and end boundaries). */
118 int sdb_label_count = 0;
119
120 /* Next label # for each statement for Silicon Graphics IRIS systems. */
121 int sym_lineno = 0;
122
123 /* Non-zero if inside of a function, because the stupid MIPS asm can't
124 handle .files inside of functions. */
125 int inside_function = 0;
126
127 /* Files to separate the text and the data output, so that all of the data
128 can be emitted before the text, which will mean that the assembler will
129 generate smaller code, based on the global pointer. */
130 FILE *asm_out_data_file;
131 FILE *asm_out_text_file;
132
133 /* Linked list of all externals that are to be emitted when optimizing
134 for the global pointer if they haven't been declared by the end of
135 the program with an appropriate .comm or initialization. */
136
137 struct extern_list {
138 struct extern_list *next; /* next external */
139 char *name; /* name of the external */
140 int size; /* size in bytes */
141 } *extern_head = 0;
142
143 /* Name of the file containing the current function. */
144 char *current_function_file = "";
145
146 /* Warning given that Mips ECOFF can't support changing files
147 within a function. */
148 int file_in_function_warning = FALSE;
149
150 /* Whether to suppress issuing .loc's because the user attempted
151 to change the filename within a function. */
152 int ignore_line_number = FALSE;
153
154 /* Number of nested .set noreorder, noat, nomacro, and volatile requests. */
155 int set_noreorder;
156 int set_noat;
157 int set_nomacro;
158 int set_volatile;
159
160 /* The next branch instruction is a branch likely, not branch normal. */
161 int mips_branch_likely;
162
163 /* Count of delay slots and how many are filled. */
164 int dslots_load_total;
165 int dslots_load_filled;
166 int dslots_jump_total;
167 int dslots_jump_filled;
168
169 /* # of nops needed by previous insn */
170 int dslots_number_nops;
171
172 /* Number of 1/2/3 word references to data items (ie, not jal's). */
173 int num_refs[3];
174
175 /* registers to check for load delay */
176 rtx mips_load_reg, mips_load_reg2, mips_load_reg3, mips_load_reg4;
177
178 /* Cached operands, and operator to compare for use in set/branch on
179 condition codes. */
180 rtx branch_cmp[2];
181
182 /* what type of branch to use */
183 enum cmp_type branch_type;
184
185 /* Number of previously seen half-pic pointers and references. */
186 static int prev_half_pic_ptrs = 0;
187 static int prev_half_pic_refs = 0;
188
189 /* which cpu are we scheduling for */
190 enum processor_type mips_cpu;
191
192 /* which instruction set architecture to use. */
193 int mips_isa;
194
195 #ifdef MIPS_ABI_DEFAULT
196 /* which ABI to use. This is defined to a constant in mips.h if the target
197 doesn't support multiple ABIs. */
198 enum mips_abi_type mips_abi;
199 #endif
200
201 /* Strings to hold which cpu and instruction set architecture to use. */
202 char *mips_cpu_string; /* for -mcpu=<xxx> */
203 char *mips_isa_string; /* for -mips{1,2,3,4} */
204 char *mips_abi_string; /* for -mabi={o32,32,n32,n64,64,eabi} */
205
206 /* If TRUE, we split addresses into their high and low parts in the RTL. */
207 int mips_split_addresses;
208
209 /* Generating calls to position independent functions? */
210 enum mips_abicalls_type mips_abicalls;
211
212 /* High and low marks for floating point values which we will accept
213 as legitimate constants for LEGITIMATE_CONSTANT_P. These are
214 initialized in override_options. */
215 REAL_VALUE_TYPE dfhigh, dflow, sfhigh, sflow;
216
217 /* Array giving truth value on whether or not a given hard register
218 can support a given mode. */
219 char mips_hard_regno_mode_ok[(int)MAX_MACHINE_MODE][FIRST_PSEUDO_REGISTER];
220
221 /* Current frame information calculated by compute_frame_size. */
222 struct mips_frame_info current_frame_info;
223
224 /* Zero structure to initialize current_frame_info. */
225 struct mips_frame_info zero_frame_info;
226
227 /* Temporary filename used to buffer .text until end of program
228 for -mgpopt. */
229 static char *temp_filename;
230
231 /* Pseudo-reg holding the address of the current function when
232 generating embedded PIC code. Created by LEGITIMIZE_ADDRESS, used
233 by mips_finalize_pic if it was created. */
234 rtx embedded_pic_fnaddr_rtx;
235
236 /* List of all MIPS punctuation characters used by print_operand. */
237 char mips_print_operand_punct[256];
238
239 /* Map GCC register number to debugger register number. */
240 int mips_dbx_regno[FIRST_PSEUDO_REGISTER];
241
242 /* Buffer to use to enclose a load/store operation with %{ %} to
243 turn on .set volatile. */
244 static char volatile_buffer[60];
245
246 /* Hardware names for the registers. If -mrnames is used, this
247 will be overwritten with mips_sw_reg_names. */
248
249 char mips_reg_names[][8] =
250 {
251 "$0", "$1", "$2", "$3", "$4", "$5", "$6", "$7",
252 "$8", "$9", "$10", "$11", "$12", "$13", "$14", "$15",
253 "$16", "$17", "$18", "$19", "$20", "$21", "$22", "$23",
254 "$24", "$25", "$26", "$27", "$28", "$sp", "$fp", "$31",
255 "$f0", "$f1", "$f2", "$f3", "$f4", "$f5", "$f6", "$f7",
256 "$f8", "$f9", "$f10", "$f11", "$f12", "$f13", "$f14", "$f15",
257 "$f16", "$f17", "$f18", "$f19", "$f20", "$f21", "$f22", "$f23",
258 "$f24", "$f25", "$f26", "$f27", "$f28", "$f29", "$f30", "$f31",
259 "hi", "lo", "accum","$fcc0","$fcc1","$fcc2","$fcc3","$fcc4",
260 "$fcc5","$fcc6","$fcc7","$rap"
261 };
262
263 /* Mips software names for the registers, used to overwrite the
264 mips_reg_names array. */
265
266 char mips_sw_reg_names[][8] =
267 {
268 "$zero","$at", "$v0", "$v1", "$a0", "$a1", "$a2", "$a3",
269 "$t0", "$t1", "$t2", "$t3", "$t4", "$t5", "$t6", "$t7",
270 "$s0", "$s1", "$s2", "$s3", "$s4", "$s5", "$s6", "$s7",
271 "$t8", "$t9", "$k0", "$k1", "$gp", "$sp", "$fp", "$ra",
272 "$f0", "$f1", "$f2", "$f3", "$f4", "$f5", "$f6", "$f7",
273 "$f8", "$f9", "$f10", "$f11", "$f12", "$f13", "$f14", "$f15",
274 "$f16", "$f17", "$f18", "$f19", "$f20", "$f21", "$f22", "$f23",
275 "$f24", "$f25", "$f26", "$f27", "$f28", "$f29", "$f30", "$f31",
276 "hi", "lo", "accum","$fcc0","$fcc1","$fcc2","$fcc3","$fcc4",
277 "$fcc5","$fcc6","$fcc7","$rap"
278 };
279
280 /* Map hard register number to register class */
281 enum reg_class mips_regno_to_class[] =
282 {
283 GR_REGS, GR_REGS, GR_REGS, GR_REGS,
284 GR_REGS, GR_REGS, GR_REGS, GR_REGS,
285 GR_REGS, GR_REGS, GR_REGS, GR_REGS,
286 GR_REGS, GR_REGS, GR_REGS, GR_REGS,
287 GR_REGS, GR_REGS, GR_REGS, GR_REGS,
288 GR_REGS, GR_REGS, GR_REGS, GR_REGS,
289 GR_REGS, GR_REGS, GR_REGS, GR_REGS,
290 GR_REGS, GR_REGS, GR_REGS, GR_REGS,
291 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
292 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
293 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
294 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
295 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
296 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
297 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
298 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
299 HI_REG, LO_REG, HILO_REG, ST_REGS,
300 ST_REGS, ST_REGS, ST_REGS, ST_REGS,
301 ST_REGS, ST_REGS, ST_REGS, GR_REGS
302 };
303
304 /* Map register constraint character to register class. */
305 enum reg_class mips_char_to_class[256] =
306 {
307 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
308 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
309 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
310 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
311 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
312 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
313 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
314 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
315 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
316 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
317 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
318 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
319 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
320 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
321 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
322 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
323 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
324 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
325 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
326 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
327 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
328 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
329 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
330 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
331 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
332 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
333 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
334 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
335 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
336 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
337 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
338 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
339 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
340 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
341 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
342 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
343 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
344 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
345 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
346 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
347 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
348 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
349 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
350 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
351 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
352 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
353 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
354 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
355 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
356 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
357 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
358 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
359 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
360 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
361 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
362 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
363 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
364 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
365 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
366 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
367 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
368 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
369 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
370 NO_REGS, NO_REGS, NO_REGS, NO_REGS,
371 };
372
373 \f
374 /* Return truth value of whether OP can be used as an operands
375 where a register or 16 bit unsigned integer is needed. */
376
377 int
378 uns_arith_operand (op, mode)
379 rtx op;
380 enum machine_mode mode;
381 {
382 if (GET_CODE (op) == CONST_INT && SMALL_INT_UNSIGNED (op))
383 return TRUE;
384
385 return register_operand (op, mode);
386 }
387
388 /* Return truth value of whether OP can be used as an operands
389 where a 16 bit integer is needed */
390
391 int
392 arith_operand (op, mode)
393 rtx op;
394 enum machine_mode mode;
395 {
396 if (GET_CODE (op) == CONST_INT && SMALL_INT (op))
397 return TRUE;
398
399 return register_operand (op, mode);
400 }
401
402 /* Return truth value of whether OP can be used as an operand in a two
403 address arithmetic insn (such as set 123456,%o4) of mode MODE. */
404
405 int
406 arith32_operand (op, mode)
407 rtx op;
408 enum machine_mode mode;
409 {
410 if (GET_CODE (op) == CONST_INT)
411 return TRUE;
412
413 return register_operand (op, mode);
414 }
415
416 /* Return truth value of whether OP is a integer which fits in 16 bits */
417
418 int
419 small_int (op, mode)
420 rtx op;
421 enum machine_mode mode;
422 {
423 return (GET_CODE (op) == CONST_INT && SMALL_INT (op));
424 }
425
426 /* Return truth value of whether OP is a 32 bit integer which is too big to
427 be loaded with one instruction. */
428
429 int
430 large_int (op, mode)
431 rtx op;
432 enum machine_mode mode;
433 {
434 HOST_WIDE_INT value;
435
436 if (GET_CODE (op) != CONST_INT)
437 return FALSE;
438
439 value = INTVAL (op);
440 if ((value & ~0x0000ffff) == 0) /* ior reg,$r0,value */
441 return FALSE;
442
443 if (((unsigned long)(value + 32768)) <= 32767) /* subu reg,$r0,value */
444 return FALSE;
445
446 if ((value & 0x0000ffff) == 0) /* lui reg,value>>16 */
447 return FALSE;
448
449 return TRUE;
450 }
451
452 /* Return truth value of whether OP is a register or the constant 0. */
453
454 int
455 reg_or_0_operand (op, mode)
456 rtx op;
457 enum machine_mode mode;
458 {
459 switch (GET_CODE (op))
460 {
461 default:
462 break;
463
464 case CONST_INT:
465 return (INTVAL (op) == 0);
466
467 case CONST_DOUBLE:
468 if (op != CONST0_RTX (mode))
469 return FALSE;
470
471 return TRUE;
472
473 case REG:
474 case SUBREG:
475 return register_operand (op, mode);
476 }
477
478 return FALSE;
479 }
480
481 /* Return truth value if a CONST_DOUBLE is ok to be a legitimate constant. */
482
483 int
484 mips_const_double_ok (op, mode)
485 rtx op;
486 enum machine_mode mode;
487 {
488 REAL_VALUE_TYPE d;
489
490 if (GET_CODE (op) != CONST_DOUBLE)
491 return FALSE;
492
493 if (mode == VOIDmode)
494 return TRUE;
495
496 if (mode != SFmode && mode != DFmode)
497 return FALSE;
498
499 if (op == CONST0_RTX (mode))
500 return TRUE;
501
502 /* ??? li.s does not work right with SGI's Irix 6 assembler. */
503 if (mips_abi != ABI_32 && mips_abi != ABI_EABI)
504 return FALSE;
505
506 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
507
508 if (REAL_VALUE_ISNAN (d))
509 return FALSE;
510
511 if (REAL_VALUE_NEGATIVE (d))
512 d = REAL_VALUE_NEGATE (d);
513
514 if (mode == DFmode)
515 {
516 if (REAL_VALUES_LESS (d, dfhigh)
517 && REAL_VALUES_LESS (dflow, d))
518 return TRUE;
519 }
520 else
521 {
522 if (REAL_VALUES_LESS (d, sfhigh)
523 && REAL_VALUES_LESS (sflow, d))
524 return TRUE;
525 }
526
527 return FALSE;
528 }
529
530 /* Accept the floating point constant 1 in the appropriate mode. */
531
532 int
533 const_float_1_operand (op, mode)
534 rtx op;
535 enum machine_mode mode;
536 {
537 REAL_VALUE_TYPE d;
538 static REAL_VALUE_TYPE onedf;
539 static REAL_VALUE_TYPE onesf;
540 static int one_initialized;
541
542 if (GET_CODE (op) != CONST_DOUBLE
543 || mode != GET_MODE (op)
544 || (mode != DFmode && mode != SFmode))
545 return FALSE;
546
547 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
548
549 /* We only initialize these values if we need them, since we will
550 never get called unless mips_isa >= 4. */
551 if (! one_initialized)
552 {
553 onedf = REAL_VALUE_ATOF ("1.0", DFmode);
554 onesf = REAL_VALUE_ATOF ("1.0", SFmode);
555 one_initialized = TRUE;
556 }
557
558 if (mode == DFmode)
559 return REAL_VALUES_EQUAL (d, onedf);
560 else
561 return REAL_VALUES_EQUAL (d, onesf);
562 }
563
564 /* Return truth value if a memory operand fits in a single instruction
565 (ie, register + small offset). */
566
567 int
568 simple_memory_operand (op, mode)
569 rtx op;
570 enum machine_mode mode;
571 {
572 rtx addr, plus0, plus1;
573
574 /* Eliminate non-memory operations */
575 if (GET_CODE (op) != MEM)
576 return FALSE;
577
578 /* dword operations really put out 2 instructions, so eliminate them. */
579 /* ??? This isn't strictly correct. It is OK to accept multiword modes
580 here, since the length attributes are being set correctly, but only
581 if the address is offsettable. LO_SUM is not offsettable. */
582 if (GET_MODE_SIZE (GET_MODE (op)) > UNITS_PER_WORD)
583 return FALSE;
584
585 /* Decode the address now. */
586 addr = XEXP (op, 0);
587 switch (GET_CODE (addr))
588 {
589 default:
590 break;
591
592 case REG:
593 case LO_SUM:
594 return TRUE;
595
596 case CONST_INT:
597 return SMALL_INT (op);
598
599 case PLUS:
600 plus0 = XEXP (addr, 0);
601 plus1 = XEXP (addr, 1);
602 if (GET_CODE (plus0) == REG
603 && GET_CODE (plus1) == CONST_INT
604 && SMALL_INT (plus1))
605 return TRUE;
606
607 else if (GET_CODE (plus1) == REG
608 && GET_CODE (plus0) == CONST_INT
609 && SMALL_INT (plus0))
610 return TRUE;
611
612 else
613 return FALSE;
614
615 #if 0
616 /* We used to allow small symbol refs here (ie, stuff in .sdata
617 or .sbss), but this causes some bugs in G++. Also, it won't
618 interfere if the MIPS linker rewrites the store instruction
619 because the function is PIC. */
620
621 case LABEL_REF: /* never gp relative */
622 break;
623
624 case CONST:
625 /* If -G 0, we can never have a GP relative memory operation.
626 Also, save some time if not optimizing. */
627 if (!TARGET_GP_OPT)
628 return FALSE;
629
630 {
631 rtx offset = const0_rtx;
632 addr = eliminate_constant_term (XEXP (addr, 0), &offset);
633 if (GET_CODE (op) != SYMBOL_REF)
634 return FALSE;
635
636 /* let's be paranoid.... */
637 if (! SMALL_INT (offset))
638 return FALSE;
639 }
640 /* fall through */
641
642 case SYMBOL_REF:
643 return SYMBOL_REF_FLAG (addr);
644 #endif
645 }
646
647 return FALSE;
648 }
649
650 /* Return true if the code of this rtx pattern is EQ or NE. */
651
652 int
653 equality_op (op, mode)
654 rtx op;
655 enum machine_mode mode;
656 {
657 if (mode != GET_MODE (op))
658 return FALSE;
659
660 return (GET_CODE (op) == EQ || GET_CODE (op) == NE);
661 }
662
663 /* Return true if the code is a relational operations (EQ, LE, etc.) */
664
665 int
666 cmp_op (op, mode)
667 rtx op;
668 enum machine_mode mode;
669 {
670 if (mode != GET_MODE (op))
671 return FALSE;
672
673 return (GET_RTX_CLASS (GET_CODE (op)) == '<');
674 }
675
676 /* Return true if the operand is either the PC or a label_ref. */
677
678 int
679 pc_or_label_operand (op, mode)
680 rtx op;
681 enum machine_mode mode;
682 {
683 if (op == pc_rtx)
684 return TRUE;
685
686 if (GET_CODE (op) == LABEL_REF)
687 return TRUE;
688
689 return FALSE;
690 }
691
692 /* Test for a valid operand for a call instruction.
693 Don't allow the arg pointer register or virtual regs
694 since they may change into reg + const, which the patterns
695 can't handle yet. */
696
697 int
698 call_insn_operand (op, mode)
699 rtx op;
700 enum machine_mode mode;
701 {
702 if (CONSTANT_ADDRESS_P (op)
703 || (GET_CODE (op) == REG && op != arg_pointer_rtx
704 && ! (REGNO (op) >= FIRST_PSEUDO_REGISTER
705 && REGNO (op) <= LAST_VIRTUAL_REGISTER)))
706 return 1;
707 return 0;
708 }
709
710 /* Return true if OPERAND is valid as a source operand for a move
711 instruction. */
712
713 int
714 move_operand (op, mode)
715 rtx op;
716 enum machine_mode mode;
717 {
718 return (general_operand (op, mode)
719 && ! (mips_split_addresses && mips_check_split (op, mode)));
720 }
721
722 /* Return true if we split the address into high and low parts. */
723
724 /* ??? We should also handle reg+array somewhere. We get four
725 instructions currently, lui %hi/addui %lo/addui reg/lw. Better is
726 lui %hi/addui reg/lw %lo. Fixing GO_IF_LEGITIMATE_ADDRESS to accept
727 (plus (reg) (symbol_ref)) doesn't work because the SYMBOL_REF is broken
728 out of the address, then we have 4 instructions to combine. Perhaps
729 add a 3->2 define_split for combine. */
730
731 /* ??? We could also split a CONST_INT here if it is a large_int().
732 However, it doesn't seem to be very useful to have %hi(constant).
733 We would be better off by doing the masking ourselves and then putting
734 the explicit high part of the constant in the RTL. This will give better
735 optimization. Also, %hi(constant) needs assembler changes to work.
736 There is already a define_split that does this. */
737
738 int
739 mips_check_split (address, mode)
740 rtx address;
741 enum machine_mode mode;
742 {
743 /* ??? This is the same check used in simple_memory_operand.
744 We use it here because LO_SUM is not offsettable. */
745 if (GET_MODE_SIZE (mode) > UNITS_PER_WORD)
746 return 0;
747
748 if ((GET_CODE (address) == SYMBOL_REF && ! SYMBOL_REF_FLAG (address))
749 || (GET_CODE (address) == CONST
750 && GET_CODE (XEXP (XEXP (address, 0), 0)) == SYMBOL_REF
751 && ! SYMBOL_REF_FLAG (XEXP (XEXP (address, 0), 0)))
752 || GET_CODE (address) == LABEL_REF)
753 return 1;
754
755 return 0;
756 }
757 \f
758 /* Returns an operand string for the given instruction's delay slot,
759 after updating filled delay slot statistics.
760
761 We assume that operands[0] is the target register that is set.
762
763 In order to check the next insn, most of this functionality is moved
764 to FINAL_PRESCAN_INSN, and we just set the global variables that
765 it needs. */
766
767 /* ??? This function no longer does anything useful, because final_prescan_insn
768 now will never emit a nop. */
769
770 char *
771 mips_fill_delay_slot (ret, type, operands, cur_insn)
772 char *ret; /* normal string to return */
773 enum delay_type type; /* type of delay */
774 rtx operands[]; /* operands to use */
775 rtx cur_insn; /* current insn */
776 {
777 register rtx set_reg;
778 register enum machine_mode mode;
779 register rtx next_insn = (cur_insn) ? NEXT_INSN (cur_insn) : (rtx)0;
780 register int num_nops;
781
782 if (type == DELAY_LOAD || type == DELAY_FCMP)
783 num_nops = 1;
784
785 else if (type == DELAY_HILO)
786 num_nops = 2;
787
788 else
789 num_nops = 0;
790
791 /* Make sure that we don't put nop's after labels. */
792 next_insn = NEXT_INSN (cur_insn);
793 while (next_insn != (rtx)0 && GET_CODE (next_insn) == NOTE)
794 next_insn = NEXT_INSN (next_insn);
795
796 dslots_load_total += num_nops;
797 if (TARGET_DEBUG_F_MODE
798 || !optimize
799 || type == DELAY_NONE
800 || operands == (rtx *)0
801 || cur_insn == (rtx)0
802 || next_insn == (rtx)0
803 || GET_CODE (next_insn) == CODE_LABEL
804 || (set_reg = operands[0]) == (rtx)0)
805 {
806 dslots_number_nops = 0;
807 mips_load_reg = (rtx)0;
808 mips_load_reg2 = (rtx)0;
809 mips_load_reg3 = (rtx)0;
810 mips_load_reg4 = (rtx)0;
811 return ret;
812 }
813
814 set_reg = operands[0];
815 if (set_reg == (rtx)0)
816 return ret;
817
818 while (GET_CODE (set_reg) == SUBREG)
819 set_reg = SUBREG_REG (set_reg);
820
821 mode = GET_MODE (set_reg);
822 dslots_number_nops = num_nops;
823 mips_load_reg = set_reg;
824 if (GET_MODE_SIZE (mode)
825 > (FP_REG_P (REGNO (set_reg)) ? UNITS_PER_FPREG : UNITS_PER_WORD))
826 mips_load_reg2 = gen_rtx (REG, SImode, REGNO (set_reg) + 1);
827 else
828 mips_load_reg2 = 0;
829
830 if (type == DELAY_HILO)
831 {
832 mips_load_reg3 = gen_rtx (REG, SImode, MD_REG_FIRST);
833 mips_load_reg4 = gen_rtx (REG, SImode, MD_REG_FIRST+1);
834 }
835 else
836 {
837 mips_load_reg3 = 0;
838 mips_load_reg4 = 0;
839 }
840
841 return ret;
842 }
843
844 \f
845 /* Determine whether a memory reference takes one (based off of the GP pointer),
846 two (normal), or three (label + reg) instructions, and bump the appropriate
847 counter for -mstats. */
848
849 void
850 mips_count_memory_refs (op, num)
851 rtx op;
852 int num;
853 {
854 int additional = 0;
855 int n_words = 0;
856 rtx addr, plus0, plus1;
857 enum rtx_code code0, code1;
858 int looping;
859
860 if (TARGET_DEBUG_B_MODE)
861 {
862 fprintf (stderr, "\n========== mips_count_memory_refs:\n");
863 debug_rtx (op);
864 }
865
866 /* Skip MEM if passed, otherwise handle movsi of address. */
867 addr = (GET_CODE (op) != MEM) ? op : XEXP (op, 0);
868
869 /* Loop, going through the address RTL */
870 do
871 {
872 looping = FALSE;
873 switch (GET_CODE (addr))
874 {
875 default:
876 break;
877
878 case REG:
879 case CONST_INT:
880 case LO_SUM:
881 break;
882
883 case PLUS:
884 plus0 = XEXP (addr, 0);
885 plus1 = XEXP (addr, 1);
886 code0 = GET_CODE (plus0);
887 code1 = GET_CODE (plus1);
888
889 if (code0 == REG)
890 {
891 additional++;
892 addr = plus1;
893 looping = TRUE;
894 continue;
895 }
896
897 if (code0 == CONST_INT)
898 {
899 addr = plus1;
900 looping = TRUE;
901 continue;
902 }
903
904 if (code1 == REG)
905 {
906 additional++;
907 addr = plus0;
908 looping = TRUE;
909 continue;
910 }
911
912 if (code1 == CONST_INT)
913 {
914 addr = plus0;
915 looping = TRUE;
916 continue;
917 }
918
919 if (code0 == SYMBOL_REF || code0 == LABEL_REF || code0 == CONST)
920 {
921 addr = plus0;
922 looping = TRUE;
923 continue;
924 }
925
926 if (code1 == SYMBOL_REF || code1 == LABEL_REF || code1 == CONST)
927 {
928 addr = plus1;
929 looping = TRUE;
930 continue;
931 }
932
933 break;
934
935 case LABEL_REF:
936 n_words = 2; /* always 2 words */
937 break;
938
939 case CONST:
940 addr = XEXP (addr, 0);
941 looping = TRUE;
942 continue;
943
944 case SYMBOL_REF:
945 n_words = SYMBOL_REF_FLAG (addr) ? 1 : 2;
946 break;
947 }
948 }
949 while (looping);
950
951 if (n_words == 0)
952 return;
953
954 n_words += additional;
955 if (n_words > 3)
956 n_words = 3;
957
958 num_refs[n_words-1] += num;
959 }
960
961 \f
962 /* Return RTL for the offset from the current function to the
963 argument. */
964
965 rtx
966 embedded_pic_offset (x)
967 rtx x;
968 {
969 if (embedded_pic_fnaddr_rtx == NULL)
970 {
971 rtx seq;
972
973 embedded_pic_fnaddr_rtx = gen_reg_rtx (Pmode);
974
975 /* Output code at function start to initialize the pseudo-reg. */
976 /* ??? We used to do this in FINALIZE_PIC, but that does not work for
977 inline functions, because it is called after RTL for the function
978 has been copied. The pseudo-reg in embedded_pic_fnaddr_rtx however
979 does not get copied, and ends up not matching the rest of the RTL.
980 This solution works, but means that we get unnecessary code to
981 initialize this value every time a function is inlined into another
982 function. */
983 start_sequence ();
984 emit_insn (gen_get_fnaddr (embedded_pic_fnaddr_rtx,
985 XEXP (DECL_RTL (current_function_decl), 0)));
986 seq = gen_sequence ();
987 end_sequence ();
988 push_topmost_sequence ();
989 emit_insn_after (seq, get_insns ());
990 pop_topmost_sequence ();
991 }
992
993 return gen_rtx (CONST, Pmode,
994 gen_rtx (MINUS, Pmode, x,
995 XEXP (DECL_RTL (current_function_decl), 0)));
996 }
997
998 /* Return the appropriate instructions to move one operand to another. */
999
1000 char *
1001 mips_move_1word (operands, insn, unsignedp)
1002 rtx operands[];
1003 rtx insn;
1004 int unsignedp;
1005 {
1006 char *ret = 0;
1007 rtx op0 = operands[0];
1008 rtx op1 = operands[1];
1009 enum rtx_code code0 = GET_CODE (op0);
1010 enum rtx_code code1 = GET_CODE (op1);
1011 enum machine_mode mode = GET_MODE (op0);
1012 int subreg_word0 = 0;
1013 int subreg_word1 = 0;
1014 enum delay_type delay = DELAY_NONE;
1015
1016 while (code0 == SUBREG)
1017 {
1018 subreg_word0 += SUBREG_WORD (op0);
1019 op0 = SUBREG_REG (op0);
1020 code0 = GET_CODE (op0);
1021 }
1022
1023 while (code1 == SUBREG)
1024 {
1025 subreg_word1 += SUBREG_WORD (op1);
1026 op1 = SUBREG_REG (op1);
1027 code1 = GET_CODE (op1);
1028 }
1029
1030 /* For our purposes, a condition code mode is the same as SImode. */
1031 if (mode == CCmode)
1032 mode = SImode;
1033
1034 if (code0 == REG)
1035 {
1036 int regno0 = REGNO (op0) + subreg_word0;
1037
1038 if (code1 == REG)
1039 {
1040 int regno1 = REGNO (op1) + subreg_word1;
1041
1042 /* Just in case, don't do anything for assigning a register
1043 to itself, unless we are filling a delay slot. */
1044 if (regno0 == regno1 && set_nomacro == 0)
1045 ret = "";
1046
1047 else if (GP_REG_P (regno0))
1048 {
1049 if (GP_REG_P (regno1))
1050 ret = "move\t%0,%1";
1051
1052 else if (MD_REG_P (regno1))
1053 {
1054 delay = DELAY_HILO;
1055 if (regno1 != HILO_REGNUM)
1056 ret = "mf%1\t%0";
1057 else
1058 ret = "mflo\t%0";
1059 }
1060
1061 else if (ST_REG_P (regno1) && mips_isa >= 4)
1062 ret = "li\t%0,1\n\tmovf\t%0,%.,%1";
1063
1064 else
1065 {
1066 delay = DELAY_LOAD;
1067 if (FP_REG_P (regno1))
1068 ret = "mfc1\t%0,%1";
1069
1070 else if (regno1 == FPSW_REGNUM && mips_isa < 4)
1071 ret = "cfc1\t%0,$31";
1072 }
1073 }
1074
1075 else if (FP_REG_P (regno0))
1076 {
1077 if (GP_REG_P (regno1))
1078 {
1079 delay = DELAY_LOAD;
1080 ret = "mtc1\t%1,%0";
1081 }
1082
1083 if (FP_REG_P (regno1))
1084 ret = "mov.s\t%0,%1";
1085 }
1086
1087 else if (MD_REG_P (regno0))
1088 {
1089 if (GP_REG_P (regno1))
1090 {
1091 delay = DELAY_HILO;
1092 if (regno0 != HILO_REGNUM)
1093 ret = "mt%0\t%1";
1094 }
1095 }
1096
1097 else if (regno0 == FPSW_REGNUM && mips_isa < 4)
1098 {
1099 if (GP_REG_P (regno1))
1100 {
1101 delay = DELAY_LOAD;
1102 ret = "ctc1\t%0,$31";
1103 }
1104 }
1105 }
1106
1107 else if (code1 == MEM)
1108 {
1109 delay = DELAY_LOAD;
1110
1111 if (TARGET_STATS)
1112 mips_count_memory_refs (op1, 1);
1113
1114 if (GP_REG_P (regno0))
1115 {
1116 /* For loads, use the mode of the memory item, instead of the
1117 target, so zero/sign extend can use this code as well. */
1118 switch (GET_MODE (op1))
1119 {
1120 default:
1121 break;
1122 case SFmode:
1123 ret = "lw\t%0,%1";
1124 break;
1125 case SImode:
1126 case CCmode:
1127 ret = ((unsignedp && TARGET_64BIT)
1128 ? "lwu\t%0,%1"
1129 : "lw\t%0,%1");
1130 break;
1131 case HImode:
1132 ret = (unsignedp) ? "lhu\t%0,%1" : "lh\t%0,%1";
1133 break;
1134 case QImode:
1135 ret = (unsignedp) ? "lbu\t%0,%1" : "lb\t%0,%1";
1136 break;
1137 }
1138 }
1139
1140 else if (FP_REG_P (regno0) && (mode == SImode || mode == SFmode))
1141 ret = "l.s\t%0,%1";
1142
1143 if (ret != (char *)0 && MEM_VOLATILE_P (op1))
1144 {
1145 int i = strlen (ret);
1146 if (i > sizeof (volatile_buffer) - sizeof ("%{%}"))
1147 abort ();
1148
1149 sprintf (volatile_buffer, "%%{%s%%}", ret);
1150 ret = volatile_buffer;
1151 }
1152 }
1153
1154 else if (code1 == CONST_INT
1155 || (code1 == CONST_DOUBLE
1156 && GET_MODE (op1) == VOIDmode))
1157 {
1158 if (code1 == CONST_DOUBLE)
1159 {
1160 /* This can happen when storing constants into long long
1161 bitfields. Just store the least significant word of
1162 the value. */
1163 operands[1] = op1 = GEN_INT (CONST_DOUBLE_LOW (op1));
1164 }
1165
1166 if (INTVAL (op1) == 0)
1167 {
1168 if (GP_REG_P (regno0))
1169 ret = "move\t%0,%z1";
1170
1171 else if (FP_REG_P (regno0))
1172 {
1173 delay = DELAY_LOAD;
1174 ret = "mtc1\t%z1,%0";
1175 }
1176
1177 else if (MD_REG_P (regno0))
1178 {
1179 delay = DELAY_HILO;
1180 ret = "mt%0\t%.";
1181 }
1182 }
1183
1184 else if (GP_REG_P (regno0))
1185 /* Don't use X format, because that will give out of range
1186 numbers for 64 bit host and 32 bit target. */
1187 ret = "li\t%0,%1\t\t\t# %X1";
1188 }
1189
1190 else if (code1 == CONST_DOUBLE && mode == SFmode)
1191 {
1192 if (op1 == CONST0_RTX (SFmode))
1193 {
1194 if (GP_REG_P (regno0))
1195 ret = "move\t%0,%.";
1196
1197 else if (FP_REG_P (regno0))
1198 {
1199 delay = DELAY_LOAD;
1200 ret = "mtc1\t%.,%0";
1201 }
1202 }
1203
1204 else
1205 {
1206 delay = DELAY_LOAD;
1207 ret = "li.s\t%0,%1";
1208 }
1209 }
1210
1211 else if (code1 == LABEL_REF)
1212 {
1213 if (TARGET_STATS)
1214 mips_count_memory_refs (op1, 1);
1215
1216 ret = "la\t%0,%a1";
1217 }
1218
1219 else if (code1 == SYMBOL_REF || code1 == CONST)
1220 {
1221 if (HALF_PIC_P () && CONSTANT_P (op1) && HALF_PIC_ADDRESS_P (op1))
1222 {
1223 rtx offset = const0_rtx;
1224
1225 if (GET_CODE (op1) == CONST)
1226 op1 = eliminate_constant_term (XEXP (op1, 0), &offset);
1227
1228 if (GET_CODE (op1) == SYMBOL_REF)
1229 {
1230 operands[2] = HALF_PIC_PTR (op1);
1231
1232 if (TARGET_STATS)
1233 mips_count_memory_refs (operands[2], 1);
1234
1235 if (INTVAL (offset) == 0)
1236 {
1237 delay = DELAY_LOAD;
1238 ret = (unsignedp && TARGET_64BIT
1239 ? "lwu\t%0,%2"
1240 : "lw\t%0,%2");
1241 }
1242 else
1243 {
1244 dslots_load_total++;
1245 operands[3] = offset;
1246 if (unsignedp && TARGET_64BIT)
1247 ret = (SMALL_INT (offset))
1248 ? "lwu\t%0,%2%#\n\tadd\t%0,%0,%3"
1249 : "lwu\t%0,%2%#\n\t%[li\t%@,%3\n\tadd\t%0,%0,%@%]";
1250 else
1251 ret = (SMALL_INT (offset))
1252 ? "lw\t%0,%2%#\n\tadd\t%0,%0,%3"
1253 : "lw\t%0,%2%#\n\t%[li\t%@,%3\n\tadd\t%0,%0,%@%]";
1254 }
1255 }
1256 }
1257 else
1258 {
1259 if (TARGET_STATS)
1260 mips_count_memory_refs (op1, 1);
1261
1262 ret = "la\t%0,%a1";
1263 }
1264 }
1265
1266 else if (code1 == PLUS)
1267 {
1268 rtx add_op0 = XEXP (op1, 0);
1269 rtx add_op1 = XEXP (op1, 1);
1270
1271 if (GET_CODE (XEXP (op1, 1)) == REG && GET_CODE (XEXP (op1, 0)) == CONST_INT)
1272 {
1273 add_op0 = XEXP (op1, 1); /* reverse operands */
1274 add_op1 = XEXP (op1, 0);
1275 }
1276
1277 operands[2] = add_op0;
1278 operands[3] = add_op1;
1279 ret = "add%:\t%0,%2,%3";
1280 }
1281
1282 else if (code1 == HIGH)
1283 {
1284 operands[1] = XEXP (op1, 0);
1285 ret = "lui\t%0,%%hi(%1)";
1286 }
1287 }
1288
1289 else if (code0 == MEM)
1290 {
1291 if (TARGET_STATS)
1292 mips_count_memory_refs (op0, 1);
1293
1294 if (code1 == REG)
1295 {
1296 int regno1 = REGNO (op1) + subreg_word1;
1297
1298 if (GP_REG_P (regno1))
1299 {
1300 switch (mode)
1301 {
1302 default: break;
1303 case SFmode: ret = "sw\t%1,%0"; break;
1304 case SImode: ret = "sw\t%1,%0"; break;
1305 case HImode: ret = "sh\t%1,%0"; break;
1306 case QImode: ret = "sb\t%1,%0"; break;
1307 }
1308 }
1309
1310 else if (FP_REG_P (regno1) && (mode == SImode || mode == SFmode))
1311 ret = "s.s\t%1,%0";
1312 }
1313
1314 else if (code1 == CONST_INT && INTVAL (op1) == 0)
1315 {
1316 switch (mode)
1317 {
1318 default: break;
1319 case SFmode: ret = "sw\t%z1,%0"; break;
1320 case SImode: ret = "sw\t%z1,%0"; break;
1321 case HImode: ret = "sh\t%z1,%0"; break;
1322 case QImode: ret = "sb\t%z1,%0"; break;
1323 }
1324 }
1325
1326 else if (code1 == CONST_DOUBLE && op1 == CONST0_RTX (mode))
1327 {
1328 switch (mode)
1329 {
1330 default: break;
1331 case SFmode: ret = "sw\t%.,%0"; break;
1332 case SImode: ret = "sw\t%.,%0"; break;
1333 case HImode: ret = "sh\t%.,%0"; break;
1334 case QImode: ret = "sb\t%.,%0"; break;
1335 }
1336 }
1337
1338 if (ret != (char *)0 && MEM_VOLATILE_P (op0))
1339 {
1340 int i = strlen (ret);
1341 if (i > sizeof (volatile_buffer) - sizeof ("%{%}"))
1342 abort ();
1343
1344 sprintf (volatile_buffer, "%%{%s%%}", ret);
1345 ret = volatile_buffer;
1346 }
1347 }
1348
1349 if (ret == (char *)0)
1350 {
1351 abort_with_insn (insn, "Bad move");
1352 return 0;
1353 }
1354
1355 if (delay != DELAY_NONE)
1356 return mips_fill_delay_slot (ret, delay, operands, insn);
1357
1358 return ret;
1359 }
1360
1361 \f
1362 /* Return the appropriate instructions to move 2 words */
1363
1364 char *
1365 mips_move_2words (operands, insn)
1366 rtx operands[];
1367 rtx insn;
1368 {
1369 char *ret = 0;
1370 rtx op0 = operands[0];
1371 rtx op1 = operands[1];
1372 enum rtx_code code0 = GET_CODE (operands[0]);
1373 enum rtx_code code1 = GET_CODE (operands[1]);
1374 int subreg_word0 = 0;
1375 int subreg_word1 = 0;
1376 enum delay_type delay = DELAY_NONE;
1377
1378 while (code0 == SUBREG)
1379 {
1380 subreg_word0 += SUBREG_WORD (op0);
1381 op0 = SUBREG_REG (op0);
1382 code0 = GET_CODE (op0);
1383 }
1384
1385 while (code1 == SUBREG)
1386 {
1387 subreg_word1 += SUBREG_WORD (op1);
1388 op1 = SUBREG_REG (op1);
1389 code1 = GET_CODE (op1);
1390 }
1391
1392 if (code0 == REG)
1393 {
1394 int regno0 = REGNO (op0) + subreg_word0;
1395
1396 if (code1 == REG)
1397 {
1398 int regno1 = REGNO (op1) + subreg_word1;
1399
1400 /* Just in case, don't do anything for assigning a register
1401 to itself, unless we are filling a delay slot. */
1402 if (regno0 == regno1 && set_nomacro == 0)
1403 ret = "";
1404
1405 else if (FP_REG_P (regno0))
1406 {
1407 if (FP_REG_P (regno1))
1408 ret = "mov.d\t%0,%1";
1409
1410 else
1411 {
1412 delay = DELAY_LOAD;
1413 if (TARGET_FLOAT64)
1414 {
1415 if (!TARGET_64BIT)
1416 abort_with_insn (insn, "Bad move");
1417 #ifdef TARGET_FP_CALL_32
1418 if (FP_CALL_GP_REG_P (regno1))
1419 ret = "dsll\t%1,32\n\tor\t%1,%D1\n\tdmtc1\t%1,%0";
1420 else
1421 #endif
1422 ret = "dmtc1\t%1,%0";
1423 }
1424 else
1425 ret = "mtc1\t%L1,%0\n\tmtc1\t%M1,%D0";
1426 }
1427 }
1428
1429 else if (FP_REG_P (regno1))
1430 {
1431 delay = DELAY_LOAD;
1432 if (TARGET_FLOAT64)
1433 {
1434 if (!TARGET_64BIT)
1435 abort_with_insn (insn, "Bad move");
1436 #ifdef TARGET_FP_CALL_32
1437 if (FP_CALL_GP_REG_P (regno0))
1438 ret = "dmfc1\t%0,%1\n\tmfc1\t%D0,%1\n\tdsrl\t%0,32";
1439 else
1440 #endif
1441 ret = "dmfc1\t%0,%1";
1442 }
1443 else
1444 ret = "mfc1\t%L0,%1\n\tmfc1\t%M0,%D1";
1445 }
1446
1447 else if (MD_REG_P (regno0) && GP_REG_P (regno1))
1448 {
1449 delay = DELAY_HILO;
1450 if (TARGET_64BIT)
1451 {
1452 if (regno0 != HILO_REGNUM)
1453 ret = "mt%0\t%1";
1454 else if (regno1 == 0)
1455 ret = "mtlo\t%.\n\tmthi\t%.";
1456 }
1457 else
1458 ret = "mthi\t%M1\n\tmtlo\t%L1";
1459 }
1460
1461 else if (GP_REG_P (regno0) && MD_REG_P (regno1))
1462 {
1463 delay = DELAY_HILO;
1464 if (TARGET_64BIT)
1465 {
1466 if (regno1 != HILO_REGNUM)
1467 ret = "mf%1\t%0";
1468 }
1469 else
1470 ret = "mfhi\t%M0\n\tmflo\t%L0";
1471 }
1472
1473 else if (TARGET_64BIT)
1474 ret = "move\t%0,%1";
1475
1476 else if (regno0 != (regno1+1))
1477 ret = "move\t%0,%1\n\tmove\t%D0,%D1";
1478
1479 else
1480 ret = "move\t%D0,%D1\n\tmove\t%0,%1";
1481 }
1482
1483 else if (code1 == CONST_DOUBLE)
1484 {
1485 /* Move zero from $0 unless !TARGET_64BIT and recipient
1486 is 64-bit fp reg, in which case generate a constant. */
1487 if (op1 != CONST0_RTX (GET_MODE (op1))
1488 || (TARGET_FLOAT64 && !TARGET_64BIT && FP_REG_P (regno0)))
1489 {
1490 if (GET_MODE (op1) == DFmode)
1491 {
1492 delay = DELAY_LOAD;
1493 #ifdef TARGET_FP_CALL_32
1494 if (FP_CALL_GP_REG_P (regno0))
1495 {
1496 if (TARGET_FLOAT64 && !TARGET_64BIT)
1497 {
1498 split_double (op1, operands + 2, operands + 3);
1499 ret = "li\t%0,%2\n\tli\t%D0,%3";
1500 }
1501 else
1502 ret = "li.d\t%0,%1\n\tdsll\t%D0,%0,32\n\tdsrl\t%D0,32\n\tdsrl\t%0,32";
1503 }
1504 else
1505 #endif
1506 ret = "li.d\t%0,%1";
1507 }
1508
1509 else if (TARGET_64BIT)
1510 ret = "dli\t%0,%1";
1511
1512 else
1513 {
1514 split_double (op1, operands + 2, operands + 3);
1515 ret = "li\t%0,%2\n\tli\t%D0,%3";
1516 }
1517 }
1518
1519 else
1520 {
1521 if (GP_REG_P (regno0))
1522 ret = (TARGET_64BIT
1523 #ifdef TARGET_FP_CALL_32
1524 && ! FP_CALL_GP_REG_P (regno0)
1525 #endif
1526 )
1527 ? "move\t%0,%."
1528 : "move\t%0,%.\n\tmove\t%D0,%.";
1529
1530 else if (FP_REG_P (regno0))
1531 {
1532 delay = DELAY_LOAD;
1533 ret = (TARGET_64BIT)
1534 ? "dmtc1\t%.,%0"
1535 : "mtc1\t%.,%0\n\tmtc1\t%.,%D0";
1536 }
1537 }
1538 }
1539
1540 else if (code1 == CONST_INT && INTVAL (op1) == 0)
1541 {
1542 if (GP_REG_P (regno0))
1543 ret = (TARGET_64BIT)
1544 ? "move\t%0,%."
1545 : "move\t%0,%.\n\tmove\t%D0,%.";
1546
1547 else if (FP_REG_P (regno0))
1548 {
1549 delay = DELAY_LOAD;
1550 ret = (TARGET_64BIT)
1551 ? "dmtc1\t%.,%0"
1552 : (TARGET_FLOAT64
1553 ? "li.d\t%0,%1"
1554 : "mtc1\t%.,%0\n\tmtc1\t%.,%D0");
1555 }
1556 else if (MD_REG_P (regno0))
1557 {
1558 delay = DELAY_HILO;
1559 if (regno0 != HILO_REGNUM)
1560 ret = "mt%0\t%.\n";
1561 else
1562 ret = "mtlo\t%.\n\tmthi\t%.";
1563 }
1564 }
1565
1566 else if (code1 == CONST_INT && GET_MODE (op0) == DImode && GP_REG_P (regno0))
1567 {
1568 if (TARGET_64BIT)
1569 {
1570 if (HOST_BITS_PER_WIDE_INT < 64)
1571 /* We can't use 'X' for negative numbers, because then we won't
1572 get the right value for the upper 32 bits. */
1573 ret = ((INTVAL (op1) < 0) ? "dli\t%0,%1\t\t\t# %X1"
1574 : "dli\t%0,%X1\t\t# %1");
1575 else
1576 /* We must use 'X', because otherwise LONG_MIN will print as
1577 a number that the assembler won't accept. */
1578 ret = "dli\t%0,%X1\t\t# %1";
1579 }
1580 else if (HOST_BITS_PER_WIDE_INT < 64)
1581 {
1582 operands[2] = GEN_INT (INTVAL (operands[1]) >= 0 ? 0 : -1);
1583 ret = "li\t%M0,%2\n\tli\t%L0,%1";
1584 }
1585 else
1586 {
1587 /* We use multiple shifts here, to avoid warnings about out
1588 of range shifts on 32 bit hosts. */
1589 operands[2] = GEN_INT (INTVAL (operands[1]) >> 16 >> 16);
1590 operands[1] = GEN_INT (INTVAL (operands[1]) << 16 << 16 >> 16 >> 16);
1591 ret = "li\t%M0,%2\n\tli\t%L0,%1";
1592 }
1593 }
1594
1595 else if (code1 == MEM)
1596 {
1597 delay = DELAY_LOAD;
1598
1599 if (TARGET_STATS)
1600 mips_count_memory_refs (op1, 2);
1601
1602 if (FP_REG_P (regno0))
1603 ret = "l.d\t%0,%1";
1604
1605 else if (TARGET_64BIT)
1606 {
1607 #ifdef TARGET_FP_CALL_32
1608 if (FP_CALL_GP_REG_P (regno0))
1609 {
1610 if (offsettable_address_p (FALSE, SImode, op1))
1611 ret = "lwu\t%0,%1\n\tlwu\t%D0,4+%1";
1612 else
1613 ret = "ld\t%0,%1\n\tdsll\t%D0,%0,32\n\tdsrl\t%D0,32\n\tdsrl\t%0,32";
1614 }
1615 else
1616 #endif
1617 ret = "ld\t%0,%1";
1618 }
1619
1620 else if (offsettable_address_p (1, DFmode, XEXP (op1, 0)))
1621 {
1622 operands[2] = adj_offsettable_operand (op1, 4);
1623 if (reg_mentioned_p (op0, op1))
1624 ret = "lw\t%D0,%2\n\tlw\t%0,%1";
1625 else
1626 ret = "lw\t%0,%1\n\tlw\t%D0,%2";
1627 }
1628
1629 if (ret != (char *)0 && MEM_VOLATILE_P (op1))
1630 {
1631 int i = strlen (ret);
1632 if (i > sizeof (volatile_buffer) - sizeof ("%{%}"))
1633 abort ();
1634
1635 sprintf (volatile_buffer, "%%{%s%%}", ret);
1636 ret = volatile_buffer;
1637 }
1638 }
1639
1640 else if (code1 == LABEL_REF
1641 || code1 == SYMBOL_REF
1642 || code1 == CONST)
1643 {
1644 if (TARGET_STATS)
1645 mips_count_memory_refs (op1, 2);
1646
1647 ret = "dla\t%0,%a1";
1648 }
1649 }
1650
1651 else if (code0 == MEM)
1652 {
1653 if (code1 == REG)
1654 {
1655 int regno1 = REGNO (op1) + subreg_word1;
1656
1657 if (FP_REG_P (regno1))
1658 ret = "s.d\t%1,%0";
1659
1660 else if (TARGET_64BIT)
1661 {
1662 #ifdef TARGET_FP_CALL_32
1663 if (FP_CALL_GP_REG_P (regno1))
1664 ret = "dsll\t%1,32\n\tor\t%1,%D1\n\tsd\t%1,%0";
1665 else
1666 #endif
1667 ret = "sd\t%1,%0";
1668 }
1669
1670 else if (offsettable_address_p (1, DFmode, XEXP (op0, 0)))
1671 {
1672 operands[2] = adj_offsettable_operand (op0, 4);
1673 ret = "sw\t%1,%0\n\tsw\t%D1,%2";
1674 }
1675 }
1676
1677 else if (((code1 == CONST_INT && INTVAL (op1) == 0)
1678 || (code1 == CONST_DOUBLE
1679 && op1 == CONST0_RTX (GET_MODE (op1))))
1680 && (TARGET_64BIT
1681 || offsettable_address_p (1, DFmode, XEXP (op0, 0))))
1682 {
1683 if (TARGET_64BIT)
1684 ret = "sd\t%.,%0";
1685 else
1686 {
1687 operands[2] = adj_offsettable_operand (op0, 4);
1688 ret = "sw\t%.,%0\n\tsw\t%.,%2";
1689 }
1690 }
1691
1692 if (TARGET_STATS)
1693 mips_count_memory_refs (op0, 2);
1694
1695 if (ret != (char *)0 && MEM_VOLATILE_P (op0))
1696 {
1697 int i = strlen (ret);
1698 if (i > sizeof (volatile_buffer) - sizeof ("%{%}"))
1699 abort ();
1700
1701 sprintf (volatile_buffer, "%%{%s%%}", ret);
1702 ret = volatile_buffer;
1703 }
1704 }
1705
1706 if (ret == (char *)0)
1707 {
1708 abort_with_insn (insn, "Bad move");
1709 return 0;
1710 }
1711
1712 if (delay != DELAY_NONE)
1713 return mips_fill_delay_slot (ret, delay, operands, insn);
1714
1715 return ret;
1716 }
1717
1718 \f
1719 /* Provide the costs of an addressing mode that contains ADDR.
1720 If ADDR is not a valid address, its cost is irrelevant. */
1721
1722 int
1723 mips_address_cost (addr)
1724 rtx addr;
1725 {
1726 switch (GET_CODE (addr))
1727 {
1728 default:
1729 break;
1730
1731 case LO_SUM:
1732 return 1;
1733
1734 case LABEL_REF:
1735 return 2;
1736
1737 case CONST:
1738 {
1739 rtx offset = const0_rtx;
1740 addr = eliminate_constant_term (XEXP (addr, 0), &offset);
1741 if (GET_CODE (addr) == LABEL_REF)
1742 return 2;
1743
1744 if (GET_CODE (addr) != SYMBOL_REF)
1745 return 4;
1746
1747 if (! SMALL_INT (offset))
1748 return 2;
1749 }
1750 /* fall through */
1751
1752 case SYMBOL_REF:
1753 return SYMBOL_REF_FLAG (addr) ? 1 : 2;
1754
1755 case PLUS:
1756 {
1757 register rtx plus0 = XEXP (addr, 0);
1758 register rtx plus1 = XEXP (addr, 1);
1759
1760 if (GET_CODE (plus0) != REG && GET_CODE (plus1) == REG)
1761 {
1762 plus0 = XEXP (addr, 1);
1763 plus1 = XEXP (addr, 0);
1764 }
1765
1766 if (GET_CODE (plus0) != REG)
1767 break;
1768
1769 switch (GET_CODE (plus1))
1770 {
1771 default:
1772 break;
1773
1774 case CONST_INT:
1775 return (SMALL_INT (plus1) ? 1 : 2);
1776
1777 case CONST:
1778 case SYMBOL_REF:
1779 case LABEL_REF:
1780 case HIGH:
1781 case LO_SUM:
1782 return mips_address_cost (plus1) + 1;
1783 }
1784 }
1785 }
1786
1787 return 4;
1788 }
1789
1790 /* Return true if X is an address which needs a temporary register when
1791 reloaded while generating PIC code. */
1792
1793 int
1794 pic_address_needs_scratch (x)
1795 rtx x;
1796 {
1797 /* An address which is a symbolic plus a non SMALL_INT needs a temp reg. */
1798 if (GET_CODE (x) == CONST && GET_CODE (XEXP (x, 0)) == PLUS
1799 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
1800 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
1801 && ! SMALL_INT (XEXP (XEXP (x, 0), 1)))
1802 return 1;
1803
1804 return 0;
1805 }
1806 \f
1807 /* Make normal rtx_code into something we can index from an array */
1808
1809 static enum internal_test
1810 map_test_to_internal_test (test_code)
1811 enum rtx_code test_code;
1812 {
1813 enum internal_test test = ITEST_MAX;
1814
1815 switch (test_code)
1816 {
1817 default: break;
1818 case EQ: test = ITEST_EQ; break;
1819 case NE: test = ITEST_NE; break;
1820 case GT: test = ITEST_GT; break;
1821 case GE: test = ITEST_GE; break;
1822 case LT: test = ITEST_LT; break;
1823 case LE: test = ITEST_LE; break;
1824 case GTU: test = ITEST_GTU; break;
1825 case GEU: test = ITEST_GEU; break;
1826 case LTU: test = ITEST_LTU; break;
1827 case LEU: test = ITEST_LEU; break;
1828 }
1829
1830 return test;
1831 }
1832
1833 \f
1834 /* Generate the code to compare two integer values. The return value is:
1835 (reg:SI xx) The pseudo register the comparison is in
1836 (rtx)0 No register, generate a simple branch.
1837
1838 ??? This is called with result nonzero by the Scond patterns in
1839 mips.md. These patterns are called with a target in the mode of
1840 the Scond instruction pattern. Since this must be a constant, we
1841 must use SImode. This means that if RESULT is non-zero, it will
1842 always be an SImode register, even if TARGET_64BIT is true. We
1843 cope with this by calling convert_move rather than emit_move_insn.
1844 This will sometimes lead to an unnecessary extension of the result;
1845 for example:
1846
1847 long long
1848 foo (long long i)
1849 {
1850 return i < 5;
1851 }
1852
1853 */
1854
1855 rtx
1856 gen_int_relational (test_code, result, cmp0, cmp1, p_invert)
1857 enum rtx_code test_code; /* relational test (EQ, etc) */
1858 rtx result; /* result to store comp. or 0 if branch */
1859 rtx cmp0; /* first operand to compare */
1860 rtx cmp1; /* second operand to compare */
1861 int *p_invert; /* NULL or ptr to hold whether branch needs */
1862 /* to reverse its test */
1863 {
1864 struct cmp_info {
1865 enum rtx_code test_code; /* code to use in instruction (LT vs. LTU) */
1866 int const_low; /* low bound of constant we can accept */
1867 int const_high; /* high bound of constant we can accept */
1868 int const_add; /* constant to add (convert LE -> LT) */
1869 int reverse_regs; /* reverse registers in test */
1870 int invert_const; /* != 0 if invert value if cmp1 is constant */
1871 int invert_reg; /* != 0 if invert value if cmp1 is register */
1872 int unsignedp; /* != 0 for unsigned comparisons. */
1873 };
1874
1875 static struct cmp_info info[ (int)ITEST_MAX ] = {
1876
1877 { XOR, 0, 65535, 0, 0, 0, 0, 0 }, /* EQ */
1878 { XOR, 0, 65535, 0, 0, 1, 1, 0 }, /* NE */
1879 { LT, -32769, 32766, 1, 1, 1, 0, 0 }, /* GT */
1880 { LT, -32768, 32767, 0, 0, 1, 1, 0 }, /* GE */
1881 { LT, -32768, 32767, 0, 0, 0, 0, 0 }, /* LT */
1882 { LT, -32769, 32766, 1, 1, 0, 1, 0 }, /* LE */
1883 { LTU, -32769, 32766, 1, 1, 1, 0, 1 }, /* GTU */
1884 { LTU, -32768, 32767, 0, 0, 1, 1, 1 }, /* GEU */
1885 { LTU, -32768, 32767, 0, 0, 0, 0, 1 }, /* LTU */
1886 { LTU, -32769, 32766, 1, 1, 0, 1, 1 }, /* LEU */
1887 };
1888
1889 enum internal_test test;
1890 enum machine_mode mode;
1891 struct cmp_info *p_info;
1892 int branch_p;
1893 int eqne_p;
1894 int invert;
1895 rtx reg;
1896 rtx reg2;
1897
1898 test = map_test_to_internal_test (test_code);
1899 if (test == ITEST_MAX)
1900 abort ();
1901
1902 p_info = &info[ (int)test ];
1903 eqne_p = (p_info->test_code == XOR);
1904
1905 mode = GET_MODE (cmp0);
1906 if (mode == VOIDmode)
1907 mode = GET_MODE (cmp1);
1908
1909 /* Eliminate simple branches */
1910 branch_p = (result == (rtx)0);
1911 if (branch_p)
1912 {
1913 if (GET_CODE (cmp0) == REG || GET_CODE (cmp0) == SUBREG)
1914 {
1915 /* Comparisons against zero are simple branches */
1916 if (GET_CODE (cmp1) == CONST_INT && INTVAL (cmp1) == 0)
1917 return (rtx)0;
1918
1919 /* Test for beq/bne. */
1920 if (eqne_p)
1921 return (rtx)0;
1922 }
1923
1924 /* allocate a pseudo to calculate the value in. */
1925 result = gen_reg_rtx (mode);
1926 }
1927
1928 /* Make sure we can handle any constants given to us. */
1929 if (GET_CODE (cmp0) == CONST_INT)
1930 cmp0 = force_reg (mode, cmp0);
1931
1932 if (GET_CODE (cmp1) == CONST_INT)
1933 {
1934 HOST_WIDE_INT value = INTVAL (cmp1);
1935 if (value < p_info->const_low
1936 || value > p_info->const_high
1937 /* ??? Why? And why wasn't the similar code below modified too? */
1938 || (TARGET_64BIT
1939 && HOST_BITS_PER_WIDE_INT < 64
1940 && p_info->const_add != 0
1941 && ((p_info->unsignedp
1942 ? ((unsigned HOST_WIDE_INT) (value + p_info->const_add)
1943 > INTVAL (cmp1))
1944 : (value + p_info->const_add) > INTVAL (cmp1))
1945 != (p_info->const_add > 0))))
1946 cmp1 = force_reg (mode, cmp1);
1947 }
1948
1949 /* See if we need to invert the result. */
1950 invert = (GET_CODE (cmp1) == CONST_INT)
1951 ? p_info->invert_const
1952 : p_info->invert_reg;
1953
1954 if (p_invert != (int *)0)
1955 {
1956 *p_invert = invert;
1957 invert = FALSE;
1958 }
1959
1960 /* Comparison to constants, may involve adding 1 to change a LT into LE.
1961 Comparison between two registers, may involve switching operands. */
1962 if (GET_CODE (cmp1) == CONST_INT)
1963 {
1964 if (p_info->const_add != 0)
1965 {
1966 HOST_WIDE_INT new = INTVAL (cmp1) + p_info->const_add;
1967 /* If modification of cmp1 caused overflow,
1968 we would get the wrong answer if we follow the usual path;
1969 thus, x > 0xffffffffU would turn into x > 0U. */
1970 if ((p_info->unsignedp
1971 ? (unsigned HOST_WIDE_INT) new > INTVAL (cmp1)
1972 : new > INTVAL (cmp1))
1973 != (p_info->const_add > 0))
1974 {
1975 /* This test is always true, but if INVERT is true then
1976 the result of the test needs to be inverted so 0 should
1977 be returned instead. */
1978 emit_move_insn (result, invert ? const0_rtx : const_true_rtx);
1979 return result;
1980 }
1981 else
1982 cmp1 = GEN_INT (new);
1983 }
1984 }
1985 else if (p_info->reverse_regs)
1986 {
1987 rtx temp = cmp0;
1988 cmp0 = cmp1;
1989 cmp1 = temp;
1990 }
1991
1992 if (test == ITEST_NE && GET_CODE (cmp1) == CONST_INT && INTVAL (cmp1) == 0)
1993 reg = cmp0;
1994 else
1995 {
1996 reg = (invert || eqne_p) ? gen_reg_rtx (mode) : result;
1997 convert_move (reg, gen_rtx (p_info->test_code, mode, cmp0, cmp1), 0);
1998 }
1999
2000 if (test == ITEST_NE)
2001 {
2002 convert_move (result, gen_rtx (GTU, mode, reg, const0_rtx), 0);
2003 invert = FALSE;
2004 }
2005
2006 else if (test == ITEST_EQ)
2007 {
2008 reg2 = (invert) ? gen_reg_rtx (mode) : result;
2009 convert_move (reg2, gen_rtx (LTU, mode, reg, const1_rtx), 0);
2010 reg = reg2;
2011 }
2012
2013 if (invert)
2014 convert_move (result, gen_rtx (XOR, mode, reg, const1_rtx), 0);
2015
2016 return result;
2017 }
2018
2019 \f
2020 /* Emit the common code for doing conditional branches.
2021 operand[0] is the label to jump to.
2022 The comparison operands are saved away by cmp{si,di,sf,df}. */
2023
2024 void
2025 gen_conditional_branch (operands, test_code)
2026 rtx operands[];
2027 enum rtx_code test_code;
2028 {
2029 enum cmp_type type = branch_type;
2030 rtx cmp0 = branch_cmp[0];
2031 rtx cmp1 = branch_cmp[1];
2032 enum machine_mode mode;
2033 rtx reg;
2034 int invert;
2035 rtx label1, label2;
2036
2037 switch (type)
2038 {
2039 default:
2040 abort_with_insn (gen_rtx (test_code, VOIDmode, cmp0, cmp1), "bad test");
2041
2042 case CMP_SI:
2043 case CMP_DI:
2044 mode = type == CMP_SI ? SImode : DImode;
2045 invert = FALSE;
2046 reg = gen_int_relational (test_code, NULL_RTX, cmp0, cmp1, &invert);
2047 if (reg)
2048 {
2049 cmp0 = reg;
2050 cmp1 = const0_rtx;
2051 test_code = NE;
2052 }
2053 else if (GET_CODE (cmp1) == CONST_INT && INTVAL (cmp1) != 0)
2054 {
2055 /* We don't want to build a comparison against a non-zero
2056 constant. */
2057 cmp1 = force_reg (mode, cmp1);
2058 }
2059 break;
2060
2061 case CMP_SF:
2062 case CMP_DF:
2063 if (mips_isa < 4)
2064 reg = gen_rtx (REG, CCmode, FPSW_REGNUM);
2065 else
2066 reg = gen_reg_rtx (CCmode);
2067
2068 /* For cmp0 != cmp1, build cmp0 == cmp1, and test for result ==
2069 0 in the instruction built below. The MIPS FPU handles
2070 inequality testing by testing for equality and looking for a
2071 false result. */
2072 emit_insn (gen_rtx (SET, VOIDmode,
2073 reg,
2074 gen_rtx (test_code == NE ? EQ : test_code,
2075 CCmode, cmp0, cmp1)));
2076
2077 test_code = test_code == NE ? EQ : NE;
2078 mode = CCmode;
2079 cmp0 = reg;
2080 cmp1 = const0_rtx;
2081 invert = FALSE;
2082 break;
2083 }
2084
2085 /* Generate the branch. */
2086
2087 label1 = gen_rtx (LABEL_REF, VOIDmode, operands[0]);
2088 label2 = pc_rtx;
2089
2090 if (invert)
2091 {
2092 label2 = label1;
2093 label1 = pc_rtx;
2094 }
2095
2096 emit_jump_insn (gen_rtx (SET, VOIDmode,
2097 pc_rtx,
2098 gen_rtx (IF_THEN_ELSE, VOIDmode,
2099 gen_rtx (test_code, mode, cmp0, cmp1),
2100 label1,
2101 label2)));
2102 }
2103
2104 /* Emit the common code for conditional moves. OPERANDS is the array
2105 of operands passed to the conditional move defined_expand. */
2106
2107 void
2108 gen_conditional_move (operands)
2109 rtx *operands;
2110 {
2111 rtx op0 = branch_cmp[0];
2112 rtx op1 = branch_cmp[1];
2113 enum machine_mode mode = GET_MODE (branch_cmp[0]);
2114 enum rtx_code cmp_code = GET_CODE (operands[1]);
2115 enum rtx_code move_code = NE;
2116 enum machine_mode op_mode = GET_MODE (operands[0]);
2117 enum machine_mode cmp_mode;
2118 rtx cmp_reg;
2119
2120 if (GET_MODE_CLASS (mode) != MODE_FLOAT)
2121 {
2122 switch (cmp_code)
2123 {
2124 case EQ:
2125 cmp_code = XOR;
2126 move_code = EQ;
2127 break;
2128 case NE:
2129 cmp_code = XOR;
2130 break;
2131 case LT:
2132 break;
2133 case GE:
2134 cmp_code = LT;
2135 move_code = EQ;
2136 break;
2137 case GT:
2138 cmp_code = LT;
2139 op0 = force_reg (mode, branch_cmp[1]);
2140 op1 = branch_cmp[0];
2141 break;
2142 case LE:
2143 cmp_code = LT;
2144 op0 = force_reg (mode, branch_cmp[1]);
2145 op1 = branch_cmp[0];
2146 move_code = EQ;
2147 break;
2148 case LTU:
2149 break;
2150 case GEU:
2151 cmp_code = LTU;
2152 move_code = EQ;
2153 break;
2154 case GTU:
2155 cmp_code = LTU;
2156 op0 = force_reg (mode, branch_cmp[1]);
2157 op1 = branch_cmp[0];
2158 break;
2159 case LEU:
2160 cmp_code = LTU;
2161 op0 = force_reg (mode, branch_cmp[1]);
2162 op1 = branch_cmp[0];
2163 move_code = EQ;
2164 break;
2165 default:
2166 abort ();
2167 }
2168 }
2169 else
2170 {
2171 if (cmp_code == NE)
2172 {
2173 cmp_code = EQ;
2174 move_code = EQ;
2175 }
2176 }
2177
2178 if (mode == SImode || mode == DImode)
2179 cmp_mode = mode;
2180 else if (mode == SFmode || mode == DFmode)
2181 cmp_mode = CCmode;
2182 else
2183 abort ();
2184
2185 cmp_reg = gen_reg_rtx (cmp_mode);
2186 emit_insn (gen_rtx (SET, cmp_mode,
2187 cmp_reg,
2188 gen_rtx (cmp_code, cmp_mode, op0, op1)));
2189 emit_insn (gen_rtx (SET, op_mode,
2190 operands[0],
2191 gen_rtx (IF_THEN_ELSE, op_mode,
2192 gen_rtx (move_code, VOIDmode,
2193 cmp_reg,
2194 CONST0_RTX (SImode)),
2195 operands[2],
2196 operands[3])));
2197 }
2198 \f
2199 #if 0
2200 /* Internal code to generate the load and store of one word/short/byte.
2201 The load is emitted directly, and the store insn is returned. */
2202
2203 #define UNITS_PER_MIPS_DWORD 8
2204 #define UNITS_PER_MIPS_WORD 4
2205 #define UNITS_PER_MIPS_HWORD 2
2206
2207 static rtx
2208 block_move_load_store (dest_reg, src_reg, p_bytes, p_offset, align, orig_src)
2209 rtx src_reg; /* register holding source memory address */
2210 rtx dest_reg; /* register holding dest. memory address */
2211 int *p_bytes; /* pointer to # bytes remaining */
2212 int *p_offset; /* pointer to current offset */
2213 int align; /* alignment */
2214 rtx orig_src; /* original source for making a reg note */
2215 {
2216 int bytes; /* # bytes remaining */
2217 int offset; /* offset to use */
2218 int size; /* size in bytes of load/store */
2219 enum machine_mode mode; /* mode to use for load/store */
2220 rtx reg; /* temporary register */
2221 rtx src_addr; /* source address */
2222 rtx dest_addr; /* destination address */
2223 rtx insn; /* insn of the load */
2224 rtx orig_src_addr; /* original source address */
2225 rtx (*load_func)(); /* function to generate load insn */
2226 rtx (*store_func)(); /* function to generate destination insn */
2227
2228 bytes = *p_bytes;
2229 if (bytes <= 0 || align <= 0)
2230 abort ();
2231
2232 if (bytes >= UNITS_PER_MIPS_DWORD && align >= UNIS_PER_MIPS_DWORD)
2233 {
2234 mode = DImode;
2235 size = UNITS_PER_MIPS_DWORD;
2236 load_func = gen_movdi;
2237 store_func = gen_movdi;
2238 }
2239 else if (bytes >= UNITS_PER_MIPS_WORD && align >= UNITS_PER_MIPS_WORD)
2240 {
2241 mode = SImode;
2242 size = UNITS_PER_MIPS_WORD;
2243 load_func = gen_movsi;
2244 store_func = gen_movsi;
2245 }
2246
2247 #if 0
2248 /* Don't generate unaligned moves here, rather defer those to the
2249 general movestrsi_internal pattern.
2250 If this gets commented back in, then should add the dword equivalent. */
2251 else if (bytes >= UNITS_PER_MIPS_WORD)
2252 {
2253 mode = SImode;
2254 size = UNITS_PER_MIPS_WORD;
2255 load_func = gen_movsi_ulw;
2256 store_func = gen_movsi_usw;
2257 }
2258 #endif
2259
2260 else if (bytes >= UNITS_PER_MIPS_SHORT && align >= UNITS_PER_MIPS_SHORT)
2261 {
2262 mode = HImode;
2263 size = UNITS_PER_MIPS_SHORT;
2264 load_func = gen_movhi;
2265 store_func = gen_movhi;
2266 }
2267
2268 else
2269 {
2270 mode = QImode;
2271 size = 1;
2272 load_func = gen_movqi;
2273 store_func = gen_movqi;
2274 }
2275
2276 offset = *p_offset;
2277 *p_offset = offset + size;
2278 *p_bytes = bytes - size;
2279
2280 if (offset == 0)
2281 {
2282 src_addr = src_reg;
2283 dest_addr = dest_reg;
2284 }
2285 else
2286 {
2287 src_addr = gen_rtx (PLUS, Pmode, src_reg, GEN_INT (offset));
2288 dest_addr = gen_rtx (PLUS, Pmode, dest_reg, GEN_INT (offset));
2289 }
2290
2291 reg = gen_reg_rtx (mode);
2292 insn = emit_insn ((*load_func) (reg, gen_rtx (MEM, mode, src_addr)));
2293 orig_src_addr = XEXP (orig_src, 0);
2294 if (CONSTANT_P (orig_src_addr))
2295 REG_NOTES (insn) = gen_rtx (EXPR_LIST, REG_EQUIV,
2296 plus_constant (orig_src_addr, offset),
2297 REG_NOTES (insn));
2298
2299 return (*store_func) (gen_rtx (MEM, mode, dest_addr), reg);
2300 }
2301 #endif
2302
2303 \f
2304 /* Write a series of loads/stores to move some bytes. Generate load/stores as follows:
2305
2306 load 1
2307 load 2
2308 load 3
2309 store 1
2310 load 4
2311 store 2
2312 load 5
2313 store 3
2314 ...
2315
2316 This way, no NOP's are needed, except at the end, and only
2317 two temp registers are needed. Two delay slots are used
2318 in deference to the R4000. */
2319
2320 #if 0
2321 static void
2322 block_move_sequence (dest_reg, src_reg, bytes, align, orig_src)
2323 rtx dest_reg; /* register holding destination address */
2324 rtx src_reg; /* register holding source address */
2325 int bytes; /* # bytes to move */
2326 int align; /* max alignment to assume */
2327 rtx orig_src; /* original source for making a reg note */
2328 {
2329 int offset = 0;
2330 rtx prev2_store = (rtx)0;
2331 rtx prev_store = (rtx)0;
2332 rtx cur_store = (rtx)0;
2333
2334 while (bytes > 0)
2335 {
2336 /* Is there a store to do? */
2337 if (prev2_store)
2338 emit_insn (prev2_store);
2339
2340 prev2_store = prev_store;
2341 prev_store = cur_store;
2342 cur_store = block_move_load_store (dest_reg, src_reg,
2343 &bytes, &offset,
2344 align, orig_src);
2345 }
2346
2347 /* Finish up last three stores. */
2348 if (prev2_store)
2349 emit_insn (prev2_store);
2350
2351 if (prev_store)
2352 emit_insn (prev_store);
2353
2354 if (cur_store)
2355 emit_insn (cur_store);
2356 }
2357 #endif
2358
2359 \f
2360 /* Write a loop to move a constant number of bytes. Generate load/stores as follows:
2361
2362 do {
2363 temp1 = src[0];
2364 temp2 = src[1];
2365 ...
2366 temp<last> = src[MAX_MOVE_REGS-1];
2367 dest[0] = temp1;
2368 dest[1] = temp2;
2369 ...
2370 dest[MAX_MOVE_REGS-1] = temp<last>;
2371 src += MAX_MOVE_REGS;
2372 dest += MAX_MOVE_REGS;
2373 } while (src != final);
2374
2375 This way, no NOP's are needed, and only MAX_MOVE_REGS+3 temp
2376 registers are needed.
2377
2378 Aligned moves move MAX_MOVE_REGS*4 bytes every (2*MAX_MOVE_REGS)+3
2379 cycles, unaligned moves move MAX_MOVE_REGS*4 bytes every
2380 (4*MAX_MOVE_REGS)+3 cycles, assuming no cache misses. */
2381
2382 #define MAX_MOVE_REGS 4
2383 #define MAX_MOVE_BYTES (MAX_MOVE_REGS * UNITS_PER_WORD)
2384
2385 /* ??? Should add code to use DWORD load/stores. */
2386
2387 static void
2388 block_move_loop (dest_reg, src_reg, bytes, align, orig_src)
2389 rtx dest_reg; /* register holding destination address */
2390 rtx src_reg; /* register holding source address */
2391 int bytes; /* # bytes to move */
2392 int align; /* alignment */
2393 rtx orig_src; /* original source for making a reg note */
2394 {
2395 rtx dest_mem = gen_rtx (MEM, BLKmode, dest_reg);
2396 rtx src_mem = gen_rtx (MEM, BLKmode, src_reg);
2397 rtx align_rtx = GEN_INT (align);
2398 rtx label;
2399 rtx final_src;
2400 rtx bytes_rtx;
2401 int leftover;
2402
2403 if (bytes < 2*MAX_MOVE_BYTES)
2404 abort ();
2405
2406 leftover = bytes % MAX_MOVE_BYTES;
2407 bytes -= leftover;
2408
2409 label = gen_label_rtx ();
2410 final_src = gen_reg_rtx (Pmode);
2411 bytes_rtx = GEN_INT (bytes);
2412
2413 if (bytes > 0x7fff)
2414 {
2415 if (TARGET_LONG64)
2416 {
2417 emit_insn (gen_movdi (final_src, bytes_rtx));
2418 emit_insn (gen_adddi3 (final_src, final_src, src_reg));
2419 }
2420 else
2421 {
2422 emit_insn (gen_movsi (final_src, bytes_rtx));
2423 emit_insn (gen_addsi3 (final_src, final_src, src_reg));
2424 }
2425 }
2426 else
2427 {
2428 if (TARGET_LONG64)
2429 emit_insn (gen_adddi3 (final_src, src_reg, bytes_rtx));
2430 else
2431 emit_insn (gen_addsi3 (final_src, src_reg, bytes_rtx));
2432 }
2433
2434 emit_label (label);
2435
2436 bytes_rtx = GEN_INT (MAX_MOVE_BYTES);
2437 emit_insn (gen_movstrsi_internal (dest_mem, src_mem, bytes_rtx, align_rtx));
2438 if (TARGET_LONG64)
2439 {
2440 emit_insn (gen_adddi3 (src_reg, src_reg, bytes_rtx));
2441 emit_insn (gen_adddi3 (dest_reg, dest_reg, bytes_rtx));
2442 emit_insn (gen_cmpdi (src_reg, final_src));
2443 }
2444 else
2445 {
2446 emit_insn (gen_addsi3 (src_reg, src_reg, bytes_rtx));
2447 emit_insn (gen_addsi3 (dest_reg, dest_reg, bytes_rtx));
2448 emit_insn (gen_cmpsi (src_reg, final_src));
2449 }
2450 emit_jump_insn (gen_bne (label));
2451
2452 if (leftover)
2453 emit_insn (gen_movstrsi_internal (dest_mem, src_mem,
2454 GEN_INT (leftover),
2455 align_rtx));
2456 }
2457
2458 \f
2459 /* Use a library function to move some bytes. */
2460
2461 static void
2462 block_move_call (dest_reg, src_reg, bytes_rtx)
2463 rtx dest_reg;
2464 rtx src_reg;
2465 rtx bytes_rtx;
2466 {
2467 /* We want to pass the size as Pmode, which will normally be SImode
2468 but will be DImode if we are using 64 bit longs and pointers. */
2469 if (GET_MODE (bytes_rtx) != VOIDmode
2470 && GET_MODE (bytes_rtx) != Pmode)
2471 bytes_rtx = convert_to_mode (Pmode, bytes_rtx, TRUE);
2472
2473 #ifdef TARGET_MEM_FUNCTIONS
2474 emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "memcpy"), 0,
2475 VOIDmode, 3,
2476 dest_reg, Pmode,
2477 src_reg, Pmode,
2478 convert_to_mode (TYPE_MODE (sizetype), bytes_rtx,
2479 TREE_UNSIGNED (sizetype)),
2480 TYPE_MODE (sizetype));
2481 #else
2482 emit_library_call (gen_rtx (SYMBOL_REF, Pmode, "bcopy"), 0,
2483 VOIDmode, 3,
2484 src_reg, Pmode,
2485 dest_reg, Pmode,
2486 convert_to_mode (TYPE_MODE (integer_type_node),
2487 bytes_rtx,
2488 TREE_UNSIGNED (integer_type_node)),
2489 TYPE_MODE (integer_type_node));
2490 #endif
2491 }
2492
2493 \f
2494 /* Expand string/block move operations.
2495
2496 operands[0] is the pointer to the destination.
2497 operands[1] is the pointer to the source.
2498 operands[2] is the number of bytes to move.
2499 operands[3] is the alignment. */
2500
2501 void
2502 expand_block_move (operands)
2503 rtx operands[];
2504 {
2505 rtx bytes_rtx = operands[2];
2506 rtx align_rtx = operands[3];
2507 int constp = (GET_CODE (bytes_rtx) == CONST_INT);
2508 int bytes = (constp ? INTVAL (bytes_rtx) : 0);
2509 int align = INTVAL (align_rtx);
2510 rtx orig_src = operands[1];
2511 rtx src_reg;
2512 rtx dest_reg;
2513
2514 if (constp && bytes <= 0)
2515 return;
2516
2517 if (align > UNITS_PER_WORD)
2518 align = UNITS_PER_WORD;
2519
2520 /* Move the address into scratch registers. */
2521 dest_reg = copy_addr_to_reg (XEXP (operands[0], 0));
2522 src_reg = copy_addr_to_reg (XEXP (orig_src, 0));
2523
2524 if (TARGET_MEMCPY)
2525 block_move_call (dest_reg, src_reg, bytes_rtx);
2526
2527 #if 0
2528 else if (constp && bytes <= 3*align)
2529 block_move_sequence (dest_reg, src_reg, bytes, align, orig_src);
2530 #endif
2531
2532 else if (constp && bytes <= 2*MAX_MOVE_BYTES)
2533 emit_insn (gen_movstrsi_internal (change_address (operands[0],
2534 BLKmode, dest_reg),
2535 change_address (orig_src, BLKmode,
2536 src_reg),
2537 bytes_rtx, align_rtx));
2538
2539 else if (constp && align >= UNITS_PER_WORD && optimize)
2540 block_move_loop (dest_reg, src_reg, bytes, align, orig_src);
2541
2542 else if (constp && optimize)
2543 {
2544 /* If the alignment is not word aligned, generate a test at
2545 runtime, to see whether things wound up aligned, and we
2546 can use the faster lw/sw instead ulw/usw. */
2547
2548 rtx temp = gen_reg_rtx (Pmode);
2549 rtx aligned_label = gen_label_rtx ();
2550 rtx join_label = gen_label_rtx ();
2551 int leftover = bytes % MAX_MOVE_BYTES;
2552
2553 bytes -= leftover;
2554
2555 if (TARGET_LONG64)
2556 {
2557 emit_insn (gen_iordi3 (temp, src_reg, dest_reg));
2558 emit_insn (gen_anddi3 (temp, temp, GEN_INT (UNITS_PER_WORD-1)));
2559 emit_insn (gen_cmpdi (temp, const0_rtx));
2560 }
2561 else
2562 {
2563 emit_insn (gen_iorsi3 (temp, src_reg, dest_reg));
2564 emit_insn (gen_andsi3 (temp, temp, GEN_INT (UNITS_PER_WORD-1)));
2565 emit_insn (gen_cmpsi (temp, const0_rtx));
2566 }
2567 emit_jump_insn (gen_beq (aligned_label));
2568
2569 /* Unaligned loop. */
2570 block_move_loop (dest_reg, src_reg, bytes, 1, orig_src);
2571 emit_jump_insn (gen_jump (join_label));
2572 emit_barrier ();
2573
2574 /* Aligned loop. */
2575 emit_label (aligned_label);
2576 block_move_loop (dest_reg, src_reg, bytes, UNITS_PER_WORD, orig_src);
2577 emit_label (join_label);
2578
2579 /* Bytes at the end of the loop. */
2580 if (leftover)
2581 {
2582 #if 0
2583 if (leftover <= 3*align)
2584 block_move_sequence (dest_reg, src_reg, leftover, align, orig_src);
2585
2586 else
2587 #endif
2588 emit_insn (gen_movstrsi_internal (gen_rtx (MEM, BLKmode, dest_reg),
2589 gen_rtx (MEM, BLKmode, src_reg),
2590 GEN_INT (leftover),
2591 GEN_INT (align)));
2592 }
2593 }
2594
2595 else
2596 block_move_call (dest_reg, src_reg, bytes_rtx);
2597 }
2598
2599 \f
2600 /* Emit load/stores for a small constant block_move.
2601
2602 operands[0] is the memory address of the destination.
2603 operands[1] is the memory address of the source.
2604 operands[2] is the number of bytes to move.
2605 operands[3] is the alignment.
2606 operands[4] is a temp register.
2607 operands[5] is a temp register.
2608 ...
2609 operands[3+num_regs] is the last temp register.
2610
2611 The block move type can be one of the following:
2612 BLOCK_MOVE_NORMAL Do all of the block move.
2613 BLOCK_MOVE_NOT_LAST Do all but the last store.
2614 BLOCK_MOVE_LAST Do just the last store. */
2615
2616 char *
2617 output_block_move (insn, operands, num_regs, move_type)
2618 rtx insn;
2619 rtx operands[];
2620 int num_regs;
2621 enum block_move_type move_type;
2622 {
2623 rtx dest_reg = XEXP (operands[0], 0);
2624 rtx src_reg = XEXP (operands[1], 0);
2625 int bytes = INTVAL (operands[2]);
2626 int align = INTVAL (operands[3]);
2627 int num = 0;
2628 int offset = 0;
2629 int use_lwl_lwr = FALSE;
2630 int last_operand = num_regs+4;
2631 int safe_regs = 4;
2632 int i;
2633 rtx xoperands[10];
2634
2635 struct {
2636 char *load; /* load insn without nop */
2637 char *load_nop; /* load insn with trailing nop */
2638 char *store; /* store insn */
2639 char *final; /* if last_store used: NULL or swr */
2640 char *last_store; /* last store instruction */
2641 int offset; /* current offset */
2642 enum machine_mode mode; /* mode to use on (MEM) */
2643 } load_store[4];
2644
2645 /* Detect a bug in GCC, where it can give us a register
2646 the same as one of the addressing registers and reduce
2647 the number of registers available. */
2648 for (i = 4;
2649 i < last_operand && safe_regs < (sizeof(xoperands) / sizeof(xoperands[0]));
2650 i++)
2651 {
2652 if (!reg_mentioned_p (operands[i], operands[0])
2653 && !reg_mentioned_p (operands[i], operands[1]))
2654
2655 xoperands[safe_regs++] = operands[i];
2656 }
2657
2658 if (safe_regs < last_operand)
2659 {
2660 xoperands[0] = operands[0];
2661 xoperands[1] = operands[1];
2662 xoperands[2] = operands[2];
2663 xoperands[3] = operands[3];
2664 return output_block_move (insn, xoperands, safe_regs-4, move_type);
2665 }
2666
2667 /* If we are given global or static addresses, and we would be
2668 emitting a few instructions, try to save time by using a
2669 temporary register for the pointer. */
2670 if (num_regs > 2 && (bytes > 2*align || move_type != BLOCK_MOVE_NORMAL))
2671 {
2672 if (CONSTANT_P (src_reg))
2673 {
2674 if (TARGET_STATS)
2675 mips_count_memory_refs (operands[1], 1);
2676
2677 src_reg = operands[ 3 + num_regs-- ];
2678 if (move_type != BLOCK_MOVE_LAST)
2679 {
2680 xoperands[1] = operands[1];
2681 xoperands[0] = src_reg;
2682 if (Pmode == DImode)
2683 output_asm_insn ("dla\t%0,%1", xoperands);
2684 else
2685 output_asm_insn ("la\t%0,%1", xoperands);
2686 }
2687 }
2688
2689 if (CONSTANT_P (dest_reg))
2690 {
2691 if (TARGET_STATS)
2692 mips_count_memory_refs (operands[0], 1);
2693
2694 dest_reg = operands[ 3 + num_regs-- ];
2695 if (move_type != BLOCK_MOVE_LAST)
2696 {
2697 xoperands[1] = operands[0];
2698 xoperands[0] = dest_reg;
2699 if (Pmode == DImode)
2700 output_asm_insn ("dla\t%0,%1", xoperands);
2701 else
2702 output_asm_insn ("la\t%0,%1", xoperands);
2703 }
2704 }
2705 }
2706
2707 /* ??? We really shouldn't get any LO_SUM addresses here, because they
2708 are not offsettable, however, offsettable_address_p says they are
2709 offsettable. I think this is a bug in offsettable_address_p.
2710 For expediency, we fix this by just loading the address into a register
2711 if we happen to get one. */
2712
2713 if (GET_CODE (src_reg) == LO_SUM)
2714 {
2715 src_reg = operands[ 3 + num_regs-- ];
2716 if (move_type != BLOCK_MOVE_LAST)
2717 {
2718 xoperands[2] = XEXP (XEXP (operands[1], 0), 1);
2719 xoperands[1] = XEXP (XEXP (operands[1], 0), 0);
2720 xoperands[0] = src_reg;
2721 if (Pmode == DImode)
2722 output_asm_insn ("daddiu\t%0,%1,%%lo(%2)", xoperands);
2723 else
2724 output_asm_insn ("addiu\t%0,%1,%%lo(%2)", xoperands);
2725 }
2726 }
2727
2728 if (GET_CODE (dest_reg) == LO_SUM)
2729 {
2730 dest_reg = operands[ 3 + num_regs-- ];
2731 if (move_type != BLOCK_MOVE_LAST)
2732 {
2733 xoperands[2] = XEXP (XEXP (operands[0], 0), 1);
2734 xoperands[1] = XEXP (XEXP (operands[0], 0), 0);
2735 xoperands[0] = dest_reg;
2736 if (Pmode == DImode)
2737 output_asm_insn ("daddiu\t%0,%1,%%lo(%2)", xoperands);
2738 else
2739 output_asm_insn ("addiu\t%0,%1,%%lo(%2)", xoperands);
2740 }
2741 }
2742
2743 if (num_regs > (sizeof (load_store) / sizeof (load_store[0])))
2744 num_regs = (sizeof (load_store) / sizeof (load_store[0]));
2745
2746 else if (num_regs < 1)
2747 abort_with_insn (insn, "Cannot do block move, not enough scratch registers");
2748
2749 while (bytes > 0)
2750 {
2751 load_store[num].offset = offset;
2752
2753 if (TARGET_64BIT && bytes >= 8 && align >= 8)
2754 {
2755 load_store[num].load = "ld\t%0,%1";
2756 load_store[num].load_nop = "ld\t%0,%1%#";
2757 load_store[num].store = "sd\t%0,%1";
2758 load_store[num].last_store = "sd\t%0,%1";
2759 load_store[num].final = (char *)0;
2760 load_store[num].mode = DImode;
2761 offset += 8;
2762 bytes -= 8;
2763 }
2764
2765 /* ??? Fails because of a MIPS assembler bug? */
2766 else if (TARGET_64BIT && bytes >= 8)
2767 {
2768 if (BYTES_BIG_ENDIAN)
2769 {
2770 load_store[num].load = "ldl\t%0,%1\n\tldr\t%0,%2";
2771 load_store[num].load_nop = "ldl\t%0,%1\n\tldr\t%0,%2%#";
2772 load_store[num].store = "sdl\t%0,%1\n\tsdr\t%0,%2";
2773 load_store[num].last_store = "sdr\t%0,%2";
2774 load_store[num].final = "sdl\t%0,%1";
2775 }
2776 else
2777 {
2778 load_store[num].load = "ldl\t%0,%2\n\tldr\t%0,%1";
2779 load_store[num].load_nop = "ldl\t%0,%2\n\tldr\t%0,%1%#";
2780 load_store[num].store = "sdl\t%0,%2\n\tsdr\t%0,%1";
2781 load_store[num].last_store = "sdr\t%0,%1";
2782 load_store[num].final = "sdl\t%0,%2";
2783 }
2784 load_store[num].mode = DImode;
2785 offset += 8;
2786 bytes -= 8;
2787 use_lwl_lwr = TRUE;
2788 }
2789
2790 else if (bytes >= 4 && align >= 4)
2791 {
2792 load_store[num].load = "lw\t%0,%1";
2793 load_store[num].load_nop = "lw\t%0,%1%#";
2794 load_store[num].store = "sw\t%0,%1";
2795 load_store[num].last_store = "sw\t%0,%1";
2796 load_store[num].final = (char *)0;
2797 load_store[num].mode = SImode;
2798 offset += 4;
2799 bytes -= 4;
2800 }
2801
2802 else if (bytes >= 4)
2803 {
2804 if (BYTES_BIG_ENDIAN)
2805 {
2806 load_store[num].load = "lwl\t%0,%1\n\tlwr\t%0,%2";
2807 load_store[num].load_nop = "lwl\t%0,%1\n\tlwr\t%0,%2%#";
2808 load_store[num].store = "swl\t%0,%1\n\tswr\t%0,%2";
2809 load_store[num].last_store = "swr\t%0,%2";
2810 load_store[num].final = "swl\t%0,%1";
2811 }
2812 else
2813 {
2814 load_store[num].load = "lwl\t%0,%2\n\tlwr\t%0,%1";
2815 load_store[num].load_nop = "lwl\t%0,%2\n\tlwr\t%0,%1%#";
2816 load_store[num].store = "swl\t%0,%2\n\tswr\t%0,%1";
2817 load_store[num].last_store = "swr\t%0,%1";
2818 load_store[num].final = "swl\t%0,%2";
2819 }
2820 load_store[num].mode = SImode;
2821 offset += 4;
2822 bytes -= 4;
2823 use_lwl_lwr = TRUE;
2824 }
2825
2826 else if (bytes >= 2 && align >= 2)
2827 {
2828 load_store[num].load = "lh\t%0,%1";
2829 load_store[num].load_nop = "lh\t%0,%1%#";
2830 load_store[num].store = "sh\t%0,%1";
2831 load_store[num].last_store = "sh\t%0,%1";
2832 load_store[num].final = (char *)0;
2833 load_store[num].mode = HImode;
2834 offset += 2;
2835 bytes -= 2;
2836 }
2837
2838 else
2839 {
2840 load_store[num].load = "lb\t%0,%1";
2841 load_store[num].load_nop = "lb\t%0,%1%#";
2842 load_store[num].store = "sb\t%0,%1";
2843 load_store[num].last_store = "sb\t%0,%1";
2844 load_store[num].final = (char *)0;
2845 load_store[num].mode = QImode;
2846 offset++;
2847 bytes--;
2848 }
2849
2850 if (TARGET_STATS && move_type != BLOCK_MOVE_LAST)
2851 {
2852 dslots_load_total++;
2853 dslots_load_filled++;
2854
2855 if (CONSTANT_P (src_reg))
2856 mips_count_memory_refs (src_reg, 1);
2857
2858 if (CONSTANT_P (dest_reg))
2859 mips_count_memory_refs (dest_reg, 1);
2860 }
2861
2862 /* Emit load/stores now if we have run out of registers or are
2863 at the end of the move. */
2864
2865 if (++num == num_regs || bytes == 0)
2866 {
2867 /* If only load/store, we need a NOP after the load. */
2868 if (num == 1)
2869 {
2870 load_store[0].load = load_store[0].load_nop;
2871 if (TARGET_STATS && move_type != BLOCK_MOVE_LAST)
2872 dslots_load_filled--;
2873 }
2874
2875 if (move_type != BLOCK_MOVE_LAST)
2876 {
2877 for (i = 0; i < num; i++)
2878 {
2879 int offset;
2880
2881 if (!operands[i+4])
2882 abort ();
2883
2884 if (GET_MODE (operands[i+4]) != load_store[i].mode)
2885 operands[i+4] = gen_rtx (REG, load_store[i].mode, REGNO (operands[i+4]));
2886
2887 offset = load_store[i].offset;
2888 xoperands[0] = operands[i+4];
2889 xoperands[1] = gen_rtx (MEM, load_store[i].mode,
2890 plus_constant (src_reg, offset));
2891
2892 if (use_lwl_lwr)
2893 {
2894 int extra_offset;
2895 extra_offset = GET_MODE_SIZE (load_store[i].mode) - 1;
2896 xoperands[2] = gen_rtx (MEM, load_store[i].mode,
2897 plus_constant (src_reg,
2898 extra_offset
2899 + offset));
2900 }
2901
2902 output_asm_insn (load_store[i].load, xoperands);
2903 }
2904 }
2905
2906 for (i = 0; i < num; i++)
2907 {
2908 int last_p = (i == num-1 && bytes == 0);
2909 int offset = load_store[i].offset;
2910
2911 xoperands[0] = operands[i+4];
2912 xoperands[1] = gen_rtx (MEM, load_store[i].mode,
2913 plus_constant (dest_reg, offset));
2914
2915
2916 if (use_lwl_lwr)
2917 {
2918 int extra_offset;
2919 extra_offset = GET_MODE_SIZE (load_store[i].mode) - 1;
2920 xoperands[2] = gen_rtx (MEM, load_store[i].mode,
2921 plus_constant (dest_reg,
2922 extra_offset
2923 + offset));
2924 }
2925
2926 if (move_type == BLOCK_MOVE_NORMAL)
2927 output_asm_insn (load_store[i].store, xoperands);
2928
2929 else if (move_type == BLOCK_MOVE_NOT_LAST)
2930 {
2931 if (!last_p)
2932 output_asm_insn (load_store[i].store, xoperands);
2933
2934 else if (load_store[i].final != (char *)0)
2935 output_asm_insn (load_store[i].final, xoperands);
2936 }
2937
2938 else if (last_p)
2939 output_asm_insn (load_store[i].last_store, xoperands);
2940 }
2941
2942 num = 0; /* reset load_store */
2943 use_lwl_lwr = FALSE;
2944 }
2945 }
2946
2947 return "";
2948 }
2949
2950 \f
2951 /* Argument support functions. */
2952
2953 /* Initialize CUMULATIVE_ARGS for a function. */
2954
2955 void
2956 init_cumulative_args (cum, fntype, libname)
2957 CUMULATIVE_ARGS *cum; /* argument info to initialize */
2958 tree fntype; /* tree ptr for function decl */
2959 rtx libname; /* SYMBOL_REF of library name or 0 */
2960 {
2961 static CUMULATIVE_ARGS zero_cum;
2962 tree param, next_param;
2963
2964 if (TARGET_DEBUG_E_MODE)
2965 {
2966 fprintf (stderr, "\ninit_cumulative_args, fntype = 0x%.8lx", (long)fntype);
2967 if (!fntype)
2968 fputc ('\n', stderr);
2969
2970 else
2971 {
2972 tree ret_type = TREE_TYPE (fntype);
2973 fprintf (stderr, ", fntype code = %s, ret code = %s\n",
2974 tree_code_name[ (int)TREE_CODE (fntype) ],
2975 tree_code_name[ (int)TREE_CODE (ret_type) ]);
2976 }
2977 }
2978
2979 *cum = zero_cum;
2980
2981 /* Determine if this function has variable arguments. This is
2982 indicated by the last argument being 'void_type_mode' if there
2983 are no variable arguments. The standard MIPS calling sequence
2984 passes all arguments in the general purpose registers in this
2985 case. */
2986
2987 for (param = (fntype) ? TYPE_ARG_TYPES (fntype) : 0;
2988 param != (tree)0;
2989 param = next_param)
2990 {
2991 next_param = TREE_CHAIN (param);
2992 if (next_param == (tree)0 && TREE_VALUE (param) != void_type_node)
2993 cum->gp_reg_found = 1;
2994 }
2995 }
2996
2997 /* Advance the argument to the next argument position. */
2998
2999 void
3000 function_arg_advance (cum, mode, type, named)
3001 CUMULATIVE_ARGS *cum; /* current arg information */
3002 enum machine_mode mode; /* current arg mode */
3003 tree type; /* type of the argument or 0 if lib support */
3004 int named; /* whether or not the argument was named */
3005 {
3006 if (TARGET_DEBUG_E_MODE)
3007 fprintf (stderr,
3008 "function_adv( {gp reg found = %d, arg # = %2d, words = %2d}, %4s, 0x%.8x, %d )\n\n",
3009 cum->gp_reg_found, cum->arg_number, cum->arg_words, GET_MODE_NAME (mode),
3010 type, named);
3011
3012 cum->arg_number++;
3013 switch (mode)
3014 {
3015 case VOIDmode:
3016 break;
3017
3018 default:
3019 if (GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
3020 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT)
3021 abort ();
3022 cum->gp_reg_found = 1;
3023 cum->arg_words += ((GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1)
3024 / UNITS_PER_WORD);
3025 break;
3026
3027 case BLKmode:
3028 cum->gp_reg_found = 1;
3029 cum->arg_words += ((int_size_in_bytes (type) + UNITS_PER_WORD - 1)
3030 / UNITS_PER_WORD);
3031 break;
3032
3033 case SFmode:
3034 if (mips_abi == ABI_EABI && ! TARGET_SOFT_FLOAT)
3035 cum->fp_arg_words++;
3036 else
3037 cum->arg_words++;
3038 break;
3039
3040 case DFmode:
3041 if (mips_abi == ABI_EABI && ! TARGET_SOFT_FLOAT && ! TARGET_SINGLE_FLOAT)
3042 cum->fp_arg_words += (TARGET_64BIT ? 1 : 2);
3043 else
3044 cum->arg_words += (TARGET_64BIT ? 1 : 2);
3045 break;
3046
3047 case DImode:
3048 cum->gp_reg_found = 1;
3049 cum->arg_words += (TARGET_64BIT ? 1 : 2);
3050 break;
3051
3052 case QImode:
3053 case HImode:
3054 case SImode:
3055 cum->gp_reg_found = 1;
3056 cum->arg_words++;
3057 break;
3058 }
3059 }
3060
3061 /* Return an RTL expression containing the register for the given mode,
3062 or 0 if the argument is to be passed on the stack. */
3063
3064 struct rtx_def *
3065 function_arg (cum, mode, type, named)
3066 CUMULATIVE_ARGS *cum; /* current arg information */
3067 enum machine_mode mode; /* current arg mode */
3068 tree type; /* type of the argument or 0 if lib support */
3069 int named; /* != 0 for normal args, == 0 for ... args */
3070 {
3071 rtx ret;
3072 int regbase = -1;
3073 int bias = 0;
3074 int *arg_words = &cum->arg_words;
3075 int struct_p = ((type != (tree)0)
3076 && (TREE_CODE (type) == RECORD_TYPE
3077 || TREE_CODE (type) == UNION_TYPE));
3078
3079 if (TARGET_DEBUG_E_MODE)
3080 fprintf (stderr,
3081 "function_arg( {gp reg found = %d, arg # = %2d, words = %2d}, %4s, 0x%.8x, %d ) = ",
3082 cum->gp_reg_found, cum->arg_number, cum->arg_words, GET_MODE_NAME (mode),
3083 type, named);
3084
3085 cum->last_arg_fp = 0;
3086 switch (mode)
3087 {
3088 case SFmode:
3089 if (mips_abi == ABI_32)
3090 {
3091 if (cum->gp_reg_found || cum->arg_number >= 2 || TARGET_SOFT_FLOAT)
3092 regbase = GP_ARG_FIRST;
3093 else
3094 {
3095 regbase = FP_ARG_FIRST;
3096 /* If the first arg was a float in a floating point register,
3097 then set bias to align this float arg properly. */
3098 if (cum->arg_words == 1)
3099 bias = 1;
3100 }
3101 }
3102 else if (mips_abi == ABI_EABI && ! TARGET_SOFT_FLOAT)
3103 {
3104 if (! TARGET_64BIT)
3105 cum->fp_arg_words += cum->fp_arg_words & 1;
3106 cum->last_arg_fp = 1;
3107 arg_words = &cum->fp_arg_words;
3108 regbase = FP_ARG_FIRST;
3109 }
3110 else
3111 regbase = (TARGET_SOFT_FLOAT || ! named ? GP_ARG_FIRST : FP_ARG_FIRST);
3112 break;
3113
3114 case DFmode:
3115 if (! TARGET_64BIT)
3116 {
3117 if (mips_abi == ABI_EABI
3118 && ! TARGET_SOFT_FLOAT
3119 && ! TARGET_SINGLE_FLOAT)
3120 cum->fp_arg_words += cum->fp_arg_words & 1;
3121 else
3122 cum->arg_words += cum->arg_words & 1;
3123 }
3124 if (mips_abi == ABI_32)
3125 regbase = ((cum->gp_reg_found
3126 || TARGET_SOFT_FLOAT
3127 || TARGET_SINGLE_FLOAT
3128 || cum->arg_number >= 2)
3129 ? GP_ARG_FIRST
3130 : FP_ARG_FIRST);
3131 else if (mips_abi == ABI_EABI
3132 && ! TARGET_SOFT_FLOAT
3133 && ! TARGET_SINGLE_FLOAT)
3134 {
3135 cum->last_arg_fp = 1;
3136 arg_words = &cum->fp_arg_words;
3137 regbase = FP_ARG_FIRST;
3138 }
3139 else
3140 regbase = (TARGET_SOFT_FLOAT || TARGET_SINGLE_FLOAT || ! named
3141 ? GP_ARG_FIRST : FP_ARG_FIRST);
3142 break;
3143
3144 default:
3145 if (GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
3146 && GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT)
3147 abort ();
3148
3149 /* Drops through. */
3150 case BLKmode:
3151 if (type != (tree)0 && TYPE_ALIGN (type) > BITS_PER_WORD
3152 && ! TARGET_64BIT && mips_abi != ABI_EABI)
3153 cum->arg_words += (cum->arg_words & 1);
3154 regbase = GP_ARG_FIRST;
3155 break;
3156
3157 case VOIDmode:
3158 case QImode:
3159 case HImode:
3160 case SImode:
3161 regbase = GP_ARG_FIRST;
3162 break;
3163
3164 case DImode:
3165 if (! TARGET_64BIT)
3166 cum->arg_words += (cum->arg_words & 1);
3167 regbase = GP_ARG_FIRST;
3168 }
3169
3170 if (*arg_words >= MAX_ARGS_IN_REGISTERS)
3171 {
3172 if (TARGET_DEBUG_E_MODE)
3173 fprintf (stderr, "<stack>%s\n", struct_p ? ", [struct]" : "");
3174
3175 ret = (rtx)0;
3176 }
3177 else
3178 {
3179 if (regbase == -1)
3180 abort ();
3181
3182 if (! type || TREE_CODE (type) != RECORD_TYPE || mips_abi == ABI_32
3183 || mips_abi == ABI_EABI || ! named)
3184 ret = gen_rtx (REG, mode, regbase + *arg_words + bias);
3185 else
3186 {
3187 /* The Irix 6 n32/n64 ABIs say that if any 64 bit chunk of the
3188 structure contains a double in its entirety, then that 64 bit
3189 chunk is passed in a floating point register. */
3190 tree field;
3191
3192 /* First check to see if there is any such field. */
3193 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
3194 if (TREE_CODE (field) == FIELD_DECL
3195 && TREE_CODE (TREE_TYPE (field)) == REAL_TYPE
3196 && TYPE_PRECISION (TREE_TYPE (field)) == BITS_PER_WORD
3197 && (TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field))
3198 % BITS_PER_WORD == 0))
3199 break;
3200
3201 if (! field)
3202 ret = gen_rtx (REG, mode, regbase + *arg_words + bias);
3203 else
3204 {
3205 /* Now handle the special case by returning a PARALLEL
3206 indicating where each 64 bit chunk goes. */
3207 int chunks;
3208 int bitpos;
3209 int regno;
3210 int i;
3211
3212 /* ??? If this is a packed structure, then the last hunk won't
3213 be 64 bits. */
3214
3215 /* ??? If this is a structure with a single double field,
3216 it would be more convenient to return (REG:DI %fX) than
3217 a parallel. However, we would have to modify the mips
3218 backend to allow DImode values in fp registers. */
3219
3220 chunks = TREE_INT_CST_LOW (TYPE_SIZE (type)) / BITS_PER_WORD;
3221 if (chunks + *arg_words + bias > MAX_ARGS_IN_REGISTERS)
3222 chunks = MAX_ARGS_IN_REGISTERS - *arg_words - bias;
3223
3224 /* assign_parms checks the mode of ENTRY_PARM, so we must
3225 use the actual mode here. */
3226 ret = gen_rtx (PARALLEL, mode, rtvec_alloc (chunks));
3227
3228 bitpos = 0;
3229 regno = regbase + *arg_words + bias;
3230 field = TYPE_FIELDS (type);
3231 for (i = 0; i < chunks; i++)
3232 {
3233 rtx reg;
3234
3235 for (; field; field = TREE_CHAIN (field))
3236 if (TREE_CODE (field) == FIELD_DECL
3237 && (TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field))
3238 >= bitpos))
3239 break;
3240
3241 if (field
3242 && TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field)) == bitpos
3243 && TREE_CODE (TREE_TYPE (field)) == REAL_TYPE
3244 && TYPE_PRECISION (TREE_TYPE (field)) == BITS_PER_WORD)
3245 reg = gen_rtx (REG, DFmode,
3246 regno + FP_ARG_FIRST - GP_ARG_FIRST);
3247 else
3248 reg = gen_rtx (REG, word_mode, regno);
3249
3250 XVECEXP (ret, 0, i) = gen_rtx (EXPR_LIST, VOIDmode, reg,
3251 GEN_INT (bitpos / BITS_PER_UNIT));
3252
3253 bitpos += 64;
3254 regno++;
3255 }
3256 }
3257 }
3258
3259 if (TARGET_DEBUG_E_MODE)
3260 fprintf (stderr, "%s%s\n", reg_names[regbase + *arg_words + bias],
3261 struct_p ? ", [struct]" : "");
3262
3263 /* The following is a hack in order to pass 1 byte structures
3264 the same way that the MIPS compiler does (namely by passing
3265 the structure in the high byte or half word of the register).
3266 This also makes varargs work. If we have such a structure,
3267 we save the adjustment RTL, and the call define expands will
3268 emit them. For the VOIDmode argument (argument after the
3269 last real argument), pass back a parallel vector holding each
3270 of the adjustments. */
3271
3272 /* ??? function_arg can be called more than once for each argument.
3273 As a result, we compute more adjustments than we need here.
3274 See the CUMULATIVE_ARGS definition in mips.h. */
3275
3276 /* ??? This scheme requires everything smaller than the word size to
3277 shifted to the left, but when TARGET_64BIT and ! TARGET_INT64,
3278 that would mean every int needs to be shifted left, which is very
3279 inefficient. Let's not carry this compatibility to the 64 bit
3280 calling convention for now. */
3281
3282 if (struct_p && int_size_in_bytes (type) < UNITS_PER_WORD
3283 && ! TARGET_64BIT && mips_abi != ABI_EABI)
3284 {
3285 rtx amount = GEN_INT (BITS_PER_WORD
3286 - int_size_in_bytes (type) * BITS_PER_UNIT);
3287 rtx reg = gen_rtx (REG, word_mode, regbase + *arg_words + bias);
3288 if (TARGET_64BIT)
3289 cum->adjust[ cum->num_adjusts++ ] = gen_ashldi3 (reg, reg, amount);
3290 else
3291 cum->adjust[ cum->num_adjusts++ ] = gen_ashlsi3 (reg, reg, amount);
3292 }
3293 }
3294
3295 if (mode == VOIDmode && cum->num_adjusts > 0)
3296 ret = gen_rtx (PARALLEL, VOIDmode, gen_rtvec_v (cum->num_adjusts, cum->adjust));
3297
3298 return ret;
3299 }
3300
3301
3302 int
3303 function_arg_partial_nregs (cum, mode, type, named)
3304 CUMULATIVE_ARGS *cum; /* current arg information */
3305 enum machine_mode mode; /* current arg mode */
3306 tree type; /* type of the argument or 0 if lib support */
3307 int named; /* != 0 for normal args, == 0 for ... args */
3308 {
3309 if ((mode == BLKmode
3310 || GET_MODE_CLASS (mode) != MODE_COMPLEX_INT
3311 || GET_MODE_CLASS (mode) != MODE_COMPLEX_FLOAT)
3312 && cum->arg_words < MAX_ARGS_IN_REGISTERS
3313 && mips_abi != ABI_EABI)
3314 {
3315 int words;
3316 if (mode == BLKmode)
3317 words = ((int_size_in_bytes (type) + UNITS_PER_WORD - 1)
3318 / UNITS_PER_WORD);
3319 else
3320 words = (GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
3321
3322 if (words + cum->arg_words <= MAX_ARGS_IN_REGISTERS)
3323 return 0; /* structure fits in registers */
3324
3325 if (TARGET_DEBUG_E_MODE)
3326 fprintf (stderr, "function_arg_partial_nregs = %d\n",
3327 MAX_ARGS_IN_REGISTERS - cum->arg_words);
3328
3329 return MAX_ARGS_IN_REGISTERS - cum->arg_words;
3330 }
3331
3332 else if (mode == DImode && cum->arg_words == MAX_ARGS_IN_REGISTERS-1
3333 && ! TARGET_64BIT
3334 && mips_abi != ABI_EABI)
3335 {
3336 if (TARGET_DEBUG_E_MODE)
3337 fprintf (stderr, "function_arg_partial_nregs = 1\n");
3338
3339 return 1;
3340 }
3341
3342 return 0;
3343 }
3344 \f
3345 /* Abort after printing out a specific insn. */
3346
3347 void
3348 abort_with_insn (insn, reason)
3349 rtx insn;
3350 char *reason;
3351 {
3352 error (reason);
3353 debug_rtx (insn);
3354 abort ();
3355 }
3356
3357 /* Write a message to stderr (for use in macros expanded in files that do not
3358 include stdio.h). */
3359
3360 void
3361 trace (s, s1, s2)
3362 char *s, *s1, *s2;
3363 {
3364 fprintf (stderr, s, s1, s2);
3365 }
3366
3367 \f
3368 #ifdef SIGINFO
3369
3370 static void
3371 siginfo (signo)
3372 int signo;
3373 {
3374 fprintf (stderr, "compiling '%s' in '%s'\n",
3375 (current_function_name != (char *)0) ? current_function_name : "<toplevel>",
3376 (current_function_file != (char *)0) ? current_function_file : "<no file>");
3377 fflush (stderr);
3378 }
3379 #endif /* SIGINFO */
3380
3381 \f
3382 /* Set up the threshold for data to go into the small data area, instead
3383 of the normal data area, and detect any conflicts in the switches. */
3384
3385 void
3386 override_options ()
3387 {
3388 register int i, start;
3389 register int regno;
3390 register enum machine_mode mode;
3391
3392 mips_section_threshold = (g_switch_set) ? g_switch_value : MIPS_DEFAULT_GVALUE;
3393
3394 if (mips_section_threshold <= 0)
3395 target_flags &= ~MASK_GPOPT;
3396 else if (optimize)
3397 target_flags |= MASK_GPOPT;
3398
3399 /* Get the architectural level. */
3400 if (mips_isa_string == (char *)0)
3401 {
3402 #ifdef MIPS_ISA_DEFAULT
3403 mips_isa = MIPS_ISA_DEFAULT;
3404 #else
3405 mips_isa = 1;
3406 #endif
3407 }
3408
3409 else if (isdigit (*mips_isa_string))
3410 {
3411 mips_isa = atoi (mips_isa_string);
3412 if (mips_isa < 1 || mips_isa > 4)
3413 {
3414 error ("-mips%d not supported", mips_isa);
3415 mips_isa = 1;
3416 }
3417 }
3418
3419 else
3420 {
3421 error ("bad value (%s) for -mips switch", mips_isa_string);
3422 mips_isa = 1;
3423 }
3424
3425 #ifdef MIPS_ABI_DEFAULT
3426 /* Get the ABI to use. Currently this code is only used for Irix 6. */
3427 if (mips_abi_string == (char *) 0)
3428 mips_abi = MIPS_ABI_DEFAULT;
3429 else if (! strcmp (mips_abi_string, "32")
3430 || ! strcmp (mips_abi_string, "o32"))
3431 mips_abi = ABI_32;
3432 else if (! strcmp (mips_abi_string, "n32"))
3433 mips_abi = ABI_N32;
3434 else if (! strcmp (mips_abi_string, "64")
3435 || ! strcmp (mips_abi_string, "n64"))
3436 mips_abi = ABI_64;
3437 else if (! strcmp (mips_abi_string, "eabi"))
3438 mips_abi = ABI_EABI;
3439 else
3440 error ("bad value (%s) for -mabi= switch", mips_abi_string);
3441
3442 /* A specified ISA defaults the ABI if it was not specified. */
3443 if (mips_abi_string == 0 && mips_isa_string && mips_abi != ABI_EABI)
3444 {
3445 if (mips_isa <= 2)
3446 mips_abi = ABI_32;
3447 else
3448 mips_abi = ABI_64;
3449 }
3450 /* A specified ABI defaults the ISA if it was not specified. */
3451 else if (mips_isa_string == 0 && mips_abi_string && mips_abi != ABI_EABI)
3452 {
3453 if (mips_abi == ABI_32)
3454 mips_isa = 1;
3455 else if (mips_abi == ABI_N32)
3456 mips_isa = 3;
3457 else
3458 mips_isa = 4;
3459 }
3460 /* If both ABI and ISA were specified, check for conflicts. */
3461 else if (mips_isa_string && mips_abi_string)
3462 {
3463 if ((mips_isa <= 2 && (mips_abi == ABI_N32 || mips_abi == ABI_64))
3464 || (mips_isa >= 3 && mips_abi == ABI_32))
3465 error ("-mabi=%s does not support -mips%d", mips_abi_string, mips_isa);
3466 }
3467
3468 /* Override TARGET_DEFAULT if necessary. */
3469 if (mips_abi == ABI_32)
3470 target_flags &= ~ (MASK_FLOAT64|MASK_64BIT);
3471
3472 /* ??? This doesn't work yet, so don't let people try to use it. */
3473 if (mips_abi == ABI_32)
3474 error ("The -mabi=32 support does not work yet.");
3475 #else
3476 if (mips_abi_string)
3477 error ("This target does not support the -mabi switch.");
3478 #endif
3479
3480 #ifdef MIPS_CPU_STRING_DEFAULT
3481 /* ??? There is a minor inconsistency here. If the user specifies an ISA
3482 greater than that supported by the default processor, then the user gets
3483 an error. Normally, the compiler will just default to the base level cpu
3484 for the indicated isa. */
3485 if (mips_cpu_string == (char *)0)
3486 mips_cpu_string = MIPS_CPU_STRING_DEFAULT;
3487 #endif
3488
3489 /* Identify the processor type */
3490 if (mips_cpu_string == (char *)0
3491 || !strcmp (mips_cpu_string, "default")
3492 || !strcmp (mips_cpu_string, "DEFAULT"))
3493 {
3494 switch (mips_isa)
3495 {
3496 default:
3497 mips_cpu_string = "3000";
3498 mips_cpu = PROCESSOR_R3000;
3499 break;
3500 case 2:
3501 mips_cpu_string = "6000";
3502 mips_cpu = PROCESSOR_R6000;
3503 break;
3504 case 3:
3505 mips_cpu_string = "4000";
3506 mips_cpu = PROCESSOR_R4000;
3507 break;
3508 case 4:
3509 mips_cpu_string = "8000";
3510 mips_cpu = PROCESSOR_R8000;
3511 break;
3512 }
3513 }
3514
3515 else
3516 {
3517 char *p = mips_cpu_string;
3518 int seen_v = FALSE;
3519
3520 /* We need to cope with the various "vr" prefixes for the NEC 4300
3521 and 4100 processors. */
3522 if (*p == 'v' || *p == 'V')
3523 {
3524 seen_v = TRUE;
3525 p++;
3526 }
3527 if (*p == 'r' || *p == 'R')
3528 p++;
3529
3530 /* Since there is no difference between a R2000 and R3000 in
3531 terms of the scheduler, we collapse them into just an R3000. */
3532
3533 mips_cpu = PROCESSOR_DEFAULT;
3534 switch (*p)
3535 {
3536 case '2':
3537 if (!strcmp (p, "2000") || !strcmp (p, "2k") || !strcmp (p, "2K"))
3538 mips_cpu = PROCESSOR_R3000;
3539 break;
3540
3541 case '3':
3542 if (!strcmp (p, "3000") || !strcmp (p, "3k") || !strcmp (p, "3K"))
3543 mips_cpu = PROCESSOR_R3000;
3544 break;
3545
3546 case '4':
3547 if (!strcmp (p, "4000") || !strcmp (p, "4k") || !strcmp (p, "4K"))
3548 mips_cpu = PROCESSOR_R4000;
3549 /* The vr4100 is a non-FP ISA III processor with some extra
3550 instructions. */
3551 else if (!strcmp (p, "4100")) {
3552 mips_cpu = PROCESSOR_R4100;
3553 target_flags |= MASK_SOFT_FLOAT ;
3554 }
3555 /* The vr4300 is a standard ISA III processor, but with a different
3556 pipeline. */
3557 else if (!strcmp (p, "4300"))
3558 mips_cpu = PROCESSOR_R4300;
3559 /* The r4400 is exactly the same as the r4000 from the compiler's
3560 viewpoint. */
3561 else if (!strcmp (p, "4400"))
3562 mips_cpu = PROCESSOR_R4000;
3563 else if (!strcmp (p, "4600"))
3564 mips_cpu = PROCESSOR_R4600;
3565 else if (!strcmp (p, "4650"))
3566 mips_cpu = PROCESSOR_R4650;
3567 break;
3568
3569 case '5':
3570 if (!strcmp (p, "5000") || !strcmp (p, "5k") || !strcmp (p, "5K"))
3571 mips_cpu = PROCESSOR_R5000;
3572 break;
3573
3574 case '6':
3575 if (!strcmp (p, "6000") || !strcmp (p, "6k") || !strcmp (p, "6K"))
3576 mips_cpu = PROCESSOR_R6000;
3577 break;
3578
3579 case '8':
3580 if (!strcmp (p, "8000"))
3581 mips_cpu = PROCESSOR_R8000;
3582 break;
3583
3584 case 'o':
3585 if (!strcmp (p, "orion"))
3586 mips_cpu = PROCESSOR_R4600;
3587 break;
3588 }
3589
3590 if (seen_v
3591 && mips_cpu != PROCESSOR_R4300
3592 && mips_cpu != PROCESSOR_R4100
3593 && mips_cpu != PROCESSOR_R5000)
3594 mips_cpu = PROCESSOR_DEFAULT;
3595
3596 if (mips_cpu == PROCESSOR_DEFAULT)
3597 {
3598 error ("bad value (%s) for -mcpu= switch", mips_cpu_string);
3599 mips_cpu_string = "default";
3600 }
3601 }
3602
3603 if ((mips_cpu == PROCESSOR_R3000 && mips_isa > 1)
3604 || (mips_cpu == PROCESSOR_R6000 && mips_isa > 2)
3605 || ((mips_cpu == PROCESSOR_R4000
3606 || mips_cpu == PROCESSOR_R4100
3607 || mips_cpu == PROCESSOR_R4300
3608 || mips_cpu == PROCESSOR_R4600
3609 || mips_cpu == PROCESSOR_R4650)
3610 && mips_isa > 3))
3611 error ("-mcpu=%s does not support -mips%d", mips_cpu_string, mips_isa);
3612
3613 /* make sure sizes of ints/longs/etc. are ok */
3614 if (mips_isa < 3)
3615 {
3616 if (TARGET_INT64)
3617 fatal ("Only MIPS-III or MIPS-IV CPUs can support 64 bit ints");
3618
3619 else if (TARGET_LONG64)
3620 fatal ("Only MIPS-III or MIPS-IV CPUs can support 64 bit longs");
3621
3622 else if (TARGET_FLOAT64)
3623 fatal ("Only MIPS-III or MIPS-IV CPUs can support 64 bit fp registers");
3624
3625 else if (TARGET_64BIT)
3626 fatal ("Only MIPS-III or MIPS-IV CPUs can support 64 bit gp registers");
3627 }
3628
3629 if (mips_abi != ABI_32)
3630 flag_pcc_struct_return = 0;
3631
3632 /* Tell halfpic.c that we have half-pic code if we do. */
3633 if (TARGET_HALF_PIC)
3634 HALF_PIC_INIT ();
3635
3636 /* -fpic (-KPIC) is the default when TARGET_ABICALLS is defined. We need
3637 to set flag_pic so that the LEGITIMATE_PIC_OPERAND_P macro will work. */
3638 /* ??? -non_shared turns off pic code generation, but this is not
3639 implemented. */
3640 if (TARGET_ABICALLS)
3641 {
3642 mips_abicalls = MIPS_ABICALLS_YES;
3643 flag_pic = 1;
3644 if (mips_section_threshold > 0)
3645 warning ("-G is incompatible with PIC code which is the default");
3646 }
3647 else
3648 mips_abicalls = MIPS_ABICALLS_NO;
3649
3650 /* -membedded-pic is a form of PIC code suitable for embedded
3651 systems. All calls are made using PC relative addressing, and
3652 all data is addressed using the $gp register. This requires gas,
3653 which does most of the work, and GNU ld, which automatically
3654 expands PC relative calls which are out of range into a longer
3655 instruction sequence. All gcc really does differently is
3656 generate a different sequence for a switch. */
3657 if (TARGET_EMBEDDED_PIC)
3658 {
3659 flag_pic = 1;
3660 if (TARGET_ABICALLS)
3661 warning ("-membedded-pic and -mabicalls are incompatible");
3662 if (g_switch_set)
3663 warning ("-G and -membedded-pic are incompatible");
3664 /* Setting mips_section_threshold is not required, because gas
3665 will force everything to be GP addressable anyhow, but
3666 setting it will cause gcc to make better estimates of the
3667 number of instructions required to access a particular data
3668 item. */
3669 mips_section_threshold = 0x7fffffff;
3670 }
3671
3672 /* ??? This does not work when target addresses are DImode.
3673 This is because we are missing DImode high/lo_sum patterns. */
3674
3675 if (TARGET_GAS && optimize && ! flag_pic && Pmode == SImode)
3676 mips_split_addresses = 1;
3677 else
3678 mips_split_addresses = 0;
3679
3680 /* -mrnames says to use the MIPS software convention for register
3681 names instead of the hardware names (ie, $a0 instead of $4).
3682 We do this by switching the names in mips_reg_names, which the
3683 reg_names points into via the REGISTER_NAMES macro. */
3684
3685 if (TARGET_NAME_REGS)
3686 bcopy ((char *) mips_sw_reg_names, (char *) mips_reg_names, sizeof (mips_reg_names));
3687
3688 /* If this is OSF/1, set up a SIGINFO handler so we can see what function
3689 is currently being compiled. */
3690 #ifdef SIGINFO
3691 if (getenv ("GCC_SIGINFO") != (char *)0)
3692 {
3693 struct sigaction action;
3694 action.sa_handler = siginfo;
3695 action.sa_mask = 0;
3696 action.sa_flags = SA_RESTART;
3697 sigaction (SIGINFO, &action, (struct sigaction *)0);
3698 }
3699 #endif
3700
3701 #if defined(_IOLBF)
3702 #if defined(ultrix) || defined(__ultrix) || defined(__OSF1__) || defined(__osf__) || defined(osf)
3703 /* If -mstats and -quiet, make stderr line buffered. */
3704 if (quiet_flag && TARGET_STATS)
3705 setvbuf (stderr, (char *)0, _IOLBF, BUFSIZ);
3706 #endif
3707 #endif
3708
3709 /* Initialize the high and low values for legitimate floating point
3710 constants. Rather than trying to get the accuracy down to the
3711 last bit, just use approximate ranges. */
3712 dfhigh = REAL_VALUE_ATOF ("1.0e300", DFmode);
3713 dflow = REAL_VALUE_ATOF ("1.0e-300", DFmode);
3714 sfhigh = REAL_VALUE_ATOF ("1.0e38", SFmode);
3715 sflow = REAL_VALUE_ATOF ("1.0e-38", SFmode);
3716
3717 mips_print_operand_punct['?'] = TRUE;
3718 mips_print_operand_punct['#'] = TRUE;
3719 mips_print_operand_punct['&'] = TRUE;
3720 mips_print_operand_punct['!'] = TRUE;
3721 mips_print_operand_punct['*'] = TRUE;
3722 mips_print_operand_punct['@'] = TRUE;
3723 mips_print_operand_punct['.'] = TRUE;
3724 mips_print_operand_punct['('] = TRUE;
3725 mips_print_operand_punct[')'] = TRUE;
3726 mips_print_operand_punct['['] = TRUE;
3727 mips_print_operand_punct[']'] = TRUE;
3728 mips_print_operand_punct['<'] = TRUE;
3729 mips_print_operand_punct['>'] = TRUE;
3730 mips_print_operand_punct['{'] = TRUE;
3731 mips_print_operand_punct['}'] = TRUE;
3732 mips_print_operand_punct['^'] = TRUE;
3733
3734 mips_char_to_class['d'] = GR_REGS;
3735 mips_char_to_class['f'] = ((TARGET_HARD_FLOAT) ? FP_REGS : NO_REGS);
3736 mips_char_to_class['h'] = HI_REG;
3737 mips_char_to_class['l'] = LO_REG;
3738 mips_char_to_class['a'] = HILO_REG;
3739 mips_char_to_class['x'] = MD_REGS;
3740 mips_char_to_class['b'] = ALL_REGS;
3741 mips_char_to_class['y'] = GR_REGS;
3742 mips_char_to_class['z'] = ST_REGS;
3743
3744 /* Set up array to map GCC register number to debug register number.
3745 Ignore the special purpose register numbers. */
3746
3747 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3748 mips_dbx_regno[i] = -1;
3749
3750 start = GP_DBX_FIRST - GP_REG_FIRST;
3751 for (i = GP_REG_FIRST; i <= GP_REG_LAST; i++)
3752 mips_dbx_regno[i] = i + start;
3753
3754 start = FP_DBX_FIRST - FP_REG_FIRST;
3755 for (i = FP_REG_FIRST; i <= FP_REG_LAST; i++)
3756 mips_dbx_regno[i] = i + start;
3757
3758 /* Set up array giving whether a given register can hold a given mode.
3759 At present, restrict ints from being in FP registers, because reload
3760 is a little enthusiastic about storing extra values in FP registers,
3761 and this is not good for things like OS kernels. Also, due to the
3762 mandatory delay, it is as fast to load from cached memory as to move
3763 from the FP register. */
3764
3765 for (mode = VOIDmode;
3766 mode != MAX_MACHINE_MODE;
3767 mode = (enum machine_mode)((int)mode + 1))
3768 {
3769 register int size = GET_MODE_SIZE (mode);
3770 register enum mode_class class = GET_MODE_CLASS (mode);
3771
3772 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
3773 {
3774 register int temp;
3775
3776 if (mode == CCmode)
3777 {
3778 if (mips_isa < 4)
3779 temp = (regno == FPSW_REGNUM);
3780 else
3781 temp = (ST_REG_P (regno)
3782 || GP_REG_P (regno)
3783 || FP_REG_P (regno));
3784 }
3785
3786 else if (GP_REG_P (regno))
3787 temp = ((regno & 1) == 0 || (size <= UNITS_PER_WORD));
3788
3789 else if (FP_REG_P (regno))
3790 temp = ((TARGET_FLOAT64 || ((regno & 1) == 0))
3791 && (class == MODE_FLOAT
3792 || class == MODE_COMPLEX_FLOAT
3793 || (TARGET_DEBUG_H_MODE && class == MODE_INT))
3794 && (! TARGET_SINGLE_FLOAT || size <= 4));
3795
3796 else if (MD_REG_P (regno))
3797 temp = (class == MODE_INT
3798 && (size <= UNITS_PER_WORD
3799 || (regno == MD_REG_FIRST && size == 2 * UNITS_PER_WORD)));
3800
3801 else
3802 temp = FALSE;
3803
3804 mips_hard_regno_mode_ok[(int)mode][regno] = temp;
3805 }
3806 }
3807 }
3808
3809 \f
3810 /*
3811 * The MIPS debug format wants all automatic variables and arguments
3812 * to be in terms of the virtual frame pointer (stack pointer before
3813 * any adjustment in the function), while the MIPS 3.0 linker wants
3814 * the frame pointer to be the stack pointer after the initial
3815 * adjustment. So, we do the adjustment here. The arg pointer (which
3816 * is eliminated) points to the virtual frame pointer, while the frame
3817 * pointer (which may be eliminated) points to the stack pointer after
3818 * the initial adjustments.
3819 */
3820
3821 int
3822 mips_debugger_offset (addr, offset)
3823 rtx addr;
3824 int offset;
3825 {
3826 rtx offset2 = const0_rtx;
3827 rtx reg = eliminate_constant_term (addr, &offset2);
3828
3829 if (!offset)
3830 offset = INTVAL (offset2);
3831
3832 if (reg == stack_pointer_rtx || reg == frame_pointer_rtx)
3833 {
3834 int frame_size = (!current_frame_info.initialized)
3835 ? compute_frame_size (get_frame_size ())
3836 : current_frame_info.total_size;
3837
3838 offset = offset - frame_size;
3839 }
3840 /* sdbout_parms does not want this to crash for unrecognized cases. */
3841 #if 0
3842 else if (reg != arg_pointer_rtx)
3843 abort_with_insn (addr, "mips_debugger_offset called with non stack/frame/arg pointer.");
3844 #endif
3845
3846 return offset;
3847 }
3848
3849 \f
3850 /* A C compound statement to output to stdio stream STREAM the
3851 assembler syntax for an instruction operand X. X is an RTL
3852 expression.
3853
3854 CODE is a value that can be used to specify one of several ways
3855 of printing the operand. It is used when identical operands
3856 must be printed differently depending on the context. CODE
3857 comes from the `%' specification that was used to request
3858 printing of the operand. If the specification was just `%DIGIT'
3859 then CODE is 0; if the specification was `%LTR DIGIT' then CODE
3860 is the ASCII code for LTR.
3861
3862 If X is a register, this macro should print the register's name.
3863 The names can be found in an array `reg_names' whose type is
3864 `char *[]'. `reg_names' is initialized from `REGISTER_NAMES'.
3865
3866 When the machine description has a specification `%PUNCT' (a `%'
3867 followed by a punctuation character), this macro is called with
3868 a null pointer for X and the punctuation character for CODE.
3869
3870 The MIPS specific codes are:
3871
3872 'X' X is CONST_INT, prints 32 bits in hexadecimal format = "0x%08x",
3873 'x' X is CONST_INT, prints 16 bits in hexadecimal format = "0x%04x",
3874 'd' output integer constant in decimal,
3875 'z' if the operand is 0, use $0 instead of normal operand.
3876 'D' print second register of double-word register operand.
3877 'L' print low-order register of double-word register operand.
3878 'M' print high-order register of double-word register operand.
3879 'C' print part of opcode for a branch condition.
3880 'N' print part of opcode for a branch condition, inverted.
3881 'S' X is CODE_LABEL, print with prefix of "LS" (for embedded switch).
3882 'B' print 'z' for EQ, 'n' for NE
3883 'b' print 'n' for EQ, 'z' for NE
3884 'T' print 'f' for EQ, 't' for NE
3885 't' print 't' for EQ, 'f' for NE
3886 'Z' print register and a comma, but print nothing for $fcc0
3887 '(' Turn on .set noreorder
3888 ')' Turn on .set reorder
3889 '[' Turn on .set noat
3890 ']' Turn on .set at
3891 '<' Turn on .set nomacro
3892 '>' Turn on .set macro
3893 '{' Turn on .set volatile (not GAS)
3894 '}' Turn on .set novolatile (not GAS)
3895 '&' Turn on .set noreorder if filling delay slots
3896 '*' Turn on both .set noreorder and .set nomacro if filling delay slots
3897 '!' Turn on .set nomacro if filling delay slots
3898 '#' Print nop if in a .set noreorder section.
3899 '?' Print 'l' if we are to use a branch likely instead of normal branch.
3900 '@' Print the name of the assembler temporary register (at or $1).
3901 '.' Print the name of the register with a hard-wired zero (zero or $0).
3902 '^' Print the name of the pic call-through register (t9 or $25). */
3903
3904 void
3905 print_operand (file, op, letter)
3906 FILE *file; /* file to write to */
3907 rtx op; /* operand to print */
3908 int letter; /* %<letter> or 0 */
3909 {
3910 register enum rtx_code code;
3911
3912 if (PRINT_OPERAND_PUNCT_VALID_P (letter))
3913 {
3914 switch (letter)
3915 {
3916 default:
3917 error ("PRINT_OPERAND: Unknown punctuation '%c'", letter);
3918 break;
3919
3920 case '?':
3921 if (mips_branch_likely)
3922 putc ('l', file);
3923 break;
3924
3925 case '@':
3926 fputs (reg_names [GP_REG_FIRST + 1], file);
3927 break;
3928
3929 case '^':
3930 fputs (reg_names [PIC_FUNCTION_ADDR_REGNUM], file);
3931 break;
3932
3933 case '.':
3934 fputs (reg_names [GP_REG_FIRST + 0], file);
3935 break;
3936
3937 case '&':
3938 if (final_sequence != 0 && set_noreorder++ == 0)
3939 fputs (".set\tnoreorder\n\t", file);
3940 break;
3941
3942 case '*':
3943 if (final_sequence != 0)
3944 {
3945 if (set_noreorder++ == 0)
3946 fputs (".set\tnoreorder\n\t", file);
3947
3948 if (set_nomacro++ == 0)
3949 fputs (".set\tnomacro\n\t", file);
3950 }
3951 break;
3952
3953 case '!':
3954 if (final_sequence != 0 && set_nomacro++ == 0)
3955 fputs ("\n\t.set\tnomacro", file);
3956 break;
3957
3958 case '#':
3959 if (set_noreorder != 0)
3960 fputs ("\n\tnop", file);
3961
3962 else if (TARGET_STATS)
3963 fputs ("\n\t#nop", file);
3964
3965 break;
3966
3967 case '(':
3968 if (set_noreorder++ == 0)
3969 fputs (".set\tnoreorder\n\t", file);
3970 break;
3971
3972 case ')':
3973 if (set_noreorder == 0)
3974 error ("internal error: %%) found without a %%( in assembler pattern");
3975
3976 else if (--set_noreorder == 0)
3977 fputs ("\n\t.set\treorder", file);
3978
3979 break;
3980
3981 case '[':
3982 if (set_noat++ == 0)
3983 fputs (".set\tnoat\n\t", file);
3984 break;
3985
3986 case ']':
3987 if (set_noat == 0)
3988 error ("internal error: %%] found without a %%[ in assembler pattern");
3989
3990 else if (--set_noat == 0)
3991 fputs ("\n\t.set\tat", file);
3992
3993 break;
3994
3995 case '<':
3996 if (set_nomacro++ == 0)
3997 fputs (".set\tnomacro\n\t", file);
3998 break;
3999
4000 case '>':
4001 if (set_nomacro == 0)
4002 error ("internal error: %%> found without a %%< in assembler pattern");
4003
4004 else if (--set_nomacro == 0)
4005 fputs ("\n\t.set\tmacro", file);
4006
4007 break;
4008
4009 case '{':
4010 if (set_volatile++ == 0)
4011 fprintf (file, "%s.set\tvolatile\n\t", (TARGET_MIPS_AS) ? "" : "#");
4012 break;
4013
4014 case '}':
4015 if (set_volatile == 0)
4016 error ("internal error: %%} found without a %%{ in assembler pattern");
4017
4018 else if (--set_volatile == 0)
4019 fprintf (file, "\n\t%s.set\tnovolatile", (TARGET_MIPS_AS) ? "" : "#");
4020
4021 break;
4022 }
4023 return;
4024 }
4025
4026 if (! op)
4027 {
4028 error ("PRINT_OPERAND null pointer");
4029 return;
4030 }
4031
4032 code = GET_CODE (op);
4033 if (letter == 'C')
4034 switch (code)
4035 {
4036 case EQ: fputs ("eq", file); break;
4037 case NE: fputs ("ne", file); break;
4038 case GT: fputs ("gt", file); break;
4039 case GE: fputs ("ge", file); break;
4040 case LT: fputs ("lt", file); break;
4041 case LE: fputs ("le", file); break;
4042 case GTU: fputs ("gtu", file); break;
4043 case GEU: fputs ("geu", file); break;
4044 case LTU: fputs ("ltu", file); break;
4045 case LEU: fputs ("leu", file); break;
4046
4047 default:
4048 abort_with_insn (op, "PRINT_OPERAND, invalid insn for %%C");
4049 }
4050
4051 else if (letter == 'N')
4052 switch (code)
4053 {
4054 case EQ: fputs ("ne", file); break;
4055 case NE: fputs ("eq", file); break;
4056 case GT: fputs ("le", file); break;
4057 case GE: fputs ("lt", file); break;
4058 case LT: fputs ("ge", file); break;
4059 case LE: fputs ("gt", file); break;
4060 case GTU: fputs ("leu", file); break;
4061 case GEU: fputs ("ltu", file); break;
4062 case LTU: fputs ("geu", file); break;
4063 case LEU: fputs ("gtu", file); break;
4064
4065 default:
4066 abort_with_insn (op, "PRINT_OPERAND, invalid insn for %%N");
4067 }
4068
4069 else if (letter == 'S')
4070 {
4071 char buffer[100];
4072
4073 ASM_GENERATE_INTERNAL_LABEL (buffer, "LS", CODE_LABEL_NUMBER (op));
4074 assemble_name (file, buffer);
4075 }
4076
4077 else if (letter == 'Z')
4078 {
4079 register int regnum;
4080
4081 if (code != REG)
4082 abort ();
4083 regnum = REGNO (op);
4084 if (! ST_REG_P (regnum))
4085 abort ();
4086 if (regnum != ST_REG_FIRST)
4087 fprintf (file, "%s,", reg_names[regnum]);
4088 }
4089
4090 else if (code == REG)
4091 {
4092 register int regnum = REGNO (op);
4093
4094 if ((letter == 'M' && ! WORDS_BIG_ENDIAN)
4095 || (letter == 'L' && WORDS_BIG_ENDIAN)
4096 || letter == 'D')
4097 regnum++;
4098
4099 fprintf (file, "%s", reg_names[regnum]);
4100 }
4101
4102 else if (code == MEM)
4103 output_address (XEXP (op, 0));
4104
4105 else if (code == CONST_DOUBLE
4106 && GET_MODE_CLASS (GET_MODE (op)) == MODE_FLOAT)
4107 {
4108 REAL_VALUE_TYPE d;
4109 char s[30];
4110
4111 REAL_VALUE_FROM_CONST_DOUBLE (d, op);
4112 REAL_VALUE_TO_DECIMAL (d, "%.20e", s);
4113 fprintf (file, s);
4114 }
4115
4116 else if ((letter == 'x') && (GET_CODE(op) == CONST_INT))
4117 fprintf (file, "0x%04x", 0xffff & (INTVAL(op)));
4118
4119 else if ((letter == 'X') && (GET_CODE(op) == CONST_INT)
4120 && HOST_BITS_PER_WIDE_INT == 32)
4121 fprintf (file, "0x%08x", INTVAL(op));
4122
4123 else if ((letter == 'X') && (GET_CODE(op) == CONST_INT)
4124 && HOST_BITS_PER_WIDE_INT == 64)
4125 fprintf (file, "0x%016lx", INTVAL(op));
4126
4127 else if ((letter == 'd') && (GET_CODE(op) == CONST_INT))
4128 fprintf (file, "%d", (INTVAL(op)));
4129
4130 else if (letter == 'z'
4131 && (GET_CODE (op) == CONST_INT)
4132 && INTVAL (op) == 0)
4133 fputs (reg_names[GP_REG_FIRST], file);
4134
4135 else if (letter == 'd' || letter == 'x' || letter == 'X')
4136 fatal ("PRINT_OPERAND: letter %c was found & insn was not CONST_INT", letter);
4137
4138 else if (letter == 'B')
4139 fputs (code == EQ ? "z" : "n", file);
4140 else if (letter == 'b')
4141 fputs (code == EQ ? "n" : "z", file);
4142 else if (letter == 'T')
4143 fputs (code == EQ ? "f" : "t", file);
4144 else if (letter == 't')
4145 fputs (code == EQ ? "t" : "f", file);
4146
4147 else
4148 output_addr_const (file, op);
4149 }
4150
4151 \f
4152 /* A C compound statement to output to stdio stream STREAM the
4153 assembler syntax for an instruction operand that is a memory
4154 reference whose address is ADDR. ADDR is an RTL expression.
4155
4156 On some machines, the syntax for a symbolic address depends on
4157 the section that the address refers to. On these machines,
4158 define the macro `ENCODE_SECTION_INFO' to store the information
4159 into the `symbol_ref', and then check for it here. */
4160
4161 void
4162 print_operand_address (file, addr)
4163 FILE *file;
4164 rtx addr;
4165 {
4166 if (!addr)
4167 error ("PRINT_OPERAND_ADDRESS, null pointer");
4168
4169 else
4170 switch (GET_CODE (addr))
4171 {
4172 default:
4173 abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, invalid insn #1");
4174 break;
4175
4176 case REG:
4177 if (REGNO (addr) == ARG_POINTER_REGNUM)
4178 abort_with_insn (addr, "Arg pointer not eliminated.");
4179
4180 fprintf (file, "0(%s)", reg_names [REGNO (addr)]);
4181 break;
4182
4183 case LO_SUM:
4184 {
4185 register rtx arg0 = XEXP (addr, 0);
4186 register rtx arg1 = XEXP (addr, 1);
4187
4188 if (! mips_split_addresses)
4189 abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, Spurious LO_SUM.");
4190
4191 if (GET_CODE (arg0) != REG)
4192 abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, LO_SUM with #1 not REG.");
4193
4194 fprintf (file, "%%lo(");
4195 print_operand_address (file, arg1);
4196 fprintf (file, ")(%s)", reg_names [REGNO (arg0)]);
4197 }
4198 break;
4199
4200 case PLUS:
4201 {
4202 register rtx reg = (rtx)0;
4203 register rtx offset = (rtx)0;
4204 register rtx arg0 = XEXP (addr, 0);
4205 register rtx arg1 = XEXP (addr, 1);
4206
4207 if (GET_CODE (arg0) == REG)
4208 {
4209 reg = arg0;
4210 offset = arg1;
4211 if (GET_CODE (offset) == REG)
4212 abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, 2 regs");
4213 }
4214 else if (GET_CODE (arg1) == REG)
4215 {
4216 reg = arg1;
4217 offset = arg0;
4218 }
4219 else if (CONSTANT_P (arg0) && CONSTANT_P (arg1))
4220 {
4221 output_addr_const (file, addr);
4222 break;
4223 }
4224 else
4225 abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, no regs");
4226
4227 if (!CONSTANT_P (offset))
4228 abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, invalid insn #2");
4229
4230 if (REGNO (reg) == ARG_POINTER_REGNUM)
4231 abort_with_insn (addr, "Arg pointer not eliminated.");
4232
4233 output_addr_const (file, offset);
4234 fprintf (file, "(%s)", reg_names [REGNO (reg)]);
4235 }
4236 break;
4237
4238 case LABEL_REF:
4239 case SYMBOL_REF:
4240 case CONST_INT:
4241 case CONST:
4242 output_addr_const (file, addr);
4243 break;
4244 }
4245 }
4246
4247 \f
4248 /* If optimizing for the global pointer, keep track of all of
4249 the externs, so that at the end of the file, we can emit
4250 the appropriate .extern declaration for them, before writing
4251 out the text section. We assume that all names passed to
4252 us are in the permanent obstack, so that they will be valid
4253 at the end of the compilation.
4254
4255 If we have -G 0, or the extern size is unknown, don't bother
4256 emitting the .externs. */
4257
4258 int
4259 mips_output_external (file, decl, name)
4260 FILE *file;
4261 tree decl;
4262 char *name;
4263 {
4264 register struct extern_list *p;
4265 int len;
4266
4267 if (TARGET_GP_OPT
4268 && ((TREE_CODE (decl)) != FUNCTION_DECL)
4269 && ((len = int_size_in_bytes (TREE_TYPE (decl))) > 0))
4270 {
4271 p = (struct extern_list *)permalloc ((long) sizeof (struct extern_list));
4272 p->next = extern_head;
4273 p->name = name;
4274 p->size = len;
4275 extern_head = p;
4276 }
4277
4278 #ifdef ASM_OUTPUT_UNDEF_FUNCTION
4279 if (TREE_CODE (decl) == FUNCTION_DECL
4280 /* ??? Don't include alloca, since gcc will always expand it
4281 inline. If we don't do this, libg++ fails to build. */
4282 && strcmp (name, "alloca")
4283 /* ??? Don't include __builtin_next_arg, because then gcc will not
4284 bootstrap under Irix 5.1. */
4285 && strcmp (name, "__builtin_next_arg"))
4286 {
4287 p = (struct extern_list *)permalloc ((long) sizeof (struct extern_list));
4288 p->next = extern_head;
4289 p->name = name;
4290 p->size = -1;
4291 extern_head = p;
4292 }
4293 #endif
4294
4295 return 0;
4296 }
4297
4298 #ifdef ASM_OUTPUT_UNDEF_FUNCTION
4299 int
4300 mips_output_external_libcall (file, name)
4301 FILE *file;
4302 char *name;
4303 {
4304 register struct extern_list *p;
4305
4306 p = (struct extern_list *)permalloc ((long) sizeof (struct extern_list));
4307 p->next = extern_head;
4308 p->name = name;
4309 p->size = -1;
4310 extern_head = p;
4311
4312 return 0;
4313 }
4314 #endif
4315
4316 \f
4317 /* Compute a string to use as a temporary file name. */
4318
4319 /* On MSDOS, write temp files in current dir
4320 because there's no place else we can expect to use. */
4321 #if __MSDOS__
4322 #ifndef P_tmpdir
4323 #define P_tmpdir "./"
4324 #endif
4325 #endif
4326
4327 static FILE *
4328 make_temp_file ()
4329 {
4330 FILE *stream;
4331 char *base = getenv ("TMPDIR");
4332 int len;
4333
4334 if (base == (char *)0)
4335 {
4336 #ifdef P_tmpdir
4337 if (access (P_tmpdir, R_OK | W_OK) == 0)
4338 base = P_tmpdir;
4339 else
4340 #endif
4341 if (access ("/usr/tmp", R_OK | W_OK) == 0)
4342 base = "/usr/tmp/";
4343 else
4344 base = "/tmp/";
4345 }
4346
4347 len = strlen (base);
4348 /* temp_filename is global, so we must use malloc, not alloca. */
4349 temp_filename = (char *) xmalloc (len + sizeof("/ctXXXXXX"));
4350 strcpy (temp_filename, base);
4351 if (len > 0 && temp_filename[len-1] != '/')
4352 temp_filename[len++] = '/';
4353
4354 strcpy (temp_filename + len, "ctXXXXXX");
4355 mktemp (temp_filename);
4356
4357 stream = fopen (temp_filename, "w+");
4358 if (!stream)
4359 pfatal_with_name (temp_filename);
4360
4361 #ifndef __MSDOS__
4362 /* In MSDOS, we cannot unlink the temporary file until we are finished using
4363 it. Otherwise, we delete it now, so that it will be gone even if the
4364 compiler happens to crash. */
4365 unlink (temp_filename);
4366 #endif
4367 return stream;
4368 }
4369
4370 \f
4371 /* Emit a new filename to a stream. If this is MIPS ECOFF, watch out
4372 for .file's that start within a function. If we are smuggling stabs, try to
4373 put out a MIPS ECOFF file and a stab. */
4374
4375 void
4376 mips_output_filename (stream, name)
4377 FILE *stream;
4378 char *name;
4379 {
4380 static int first_time = TRUE;
4381 char ltext_label_name[100];
4382
4383 if (first_time)
4384 {
4385 first_time = FALSE;
4386 SET_FILE_NUMBER ();
4387 current_function_file = name;
4388 ASM_OUTPUT_FILENAME (stream, num_source_filenames, name);
4389 /* This tells mips-tfile that stabs will follow. */
4390 if (!TARGET_GAS && write_symbols == DBX_DEBUG)
4391 fprintf (stream, "\t#@stabs\n");
4392 }
4393
4394 else if (write_symbols == DBX_DEBUG)
4395 {
4396 ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", 0);
4397 fprintf (stream, "%s ", ASM_STABS_OP);
4398 output_quoted_string (stream, name);
4399 fprintf (stream, ",%d,0,0,%s\n", N_SOL, &ltext_label_name[1]);
4400 }
4401
4402 else if (name != current_function_file
4403 && strcmp (name, current_function_file) != 0)
4404 {
4405 if (inside_function && !TARGET_GAS)
4406 {
4407 if (!file_in_function_warning)
4408 {
4409 file_in_function_warning = TRUE;
4410 ignore_line_number = TRUE;
4411 warning ("MIPS ECOFF format does not allow changing filenames within functions with #line");
4412 }
4413 }
4414 else
4415 {
4416 SET_FILE_NUMBER ();
4417 current_function_file = name;
4418 ASM_OUTPUT_FILENAME (stream, num_source_filenames, name);
4419 }
4420 }
4421 }
4422
4423 \f
4424 /* Emit a linenumber. For encapsulated stabs, we need to put out a stab
4425 as well as a .loc, since it is possible that MIPS ECOFF might not be
4426 able to represent the location for inlines that come from a different
4427 file. */
4428
4429 void
4430 mips_output_lineno (stream, line)
4431 FILE *stream;
4432 int line;
4433 {
4434 if (write_symbols == DBX_DEBUG)
4435 {
4436 ++sym_lineno;
4437 fprintf (stream, "%sLM%d:\n\t%s %d,0,%d,%sLM%d\n",
4438 LOCAL_LABEL_PREFIX, sym_lineno, ASM_STABN_OP, N_SLINE, line,
4439 LOCAL_LABEL_PREFIX, sym_lineno);
4440 }
4441
4442 else
4443 {
4444 fprintf (stream, "\n\t%s.loc\t%d %d\n",
4445 (ignore_line_number) ? "#" : "",
4446 num_source_filenames, line);
4447
4448 LABEL_AFTER_LOC (stream);
4449 }
4450 }
4451
4452 \f
4453 /* If defined, a C statement to be executed just prior to the
4454 output of assembler code for INSN, to modify the extracted
4455 operands so they will be output differently.
4456
4457 Here the argument OPVEC is the vector containing the operands
4458 extracted from INSN, and NOPERANDS is the number of elements of
4459 the vector which contain meaningful data for this insn. The
4460 contents of this vector are what will be used to convert the
4461 insn template into assembler code, so you can change the
4462 assembler output by changing the contents of the vector.
4463
4464 We use it to check if the current insn needs a nop in front of it
4465 because of load delays, and also to update the delay slot
4466 statistics. */
4467
4468 /* ??? There is no real need for this function, because it never actually
4469 emits a NOP anymore. */
4470
4471 void
4472 final_prescan_insn (insn, opvec, noperands)
4473 rtx insn;
4474 rtx opvec[];
4475 int noperands;
4476 {
4477 if (dslots_number_nops > 0)
4478 {
4479 rtx pattern = PATTERN (insn);
4480 int length = get_attr_length (insn);
4481
4482 /* Do we need to emit a NOP? */
4483 if (length == 0
4484 || (mips_load_reg != (rtx)0 && reg_mentioned_p (mips_load_reg, pattern))
4485 || (mips_load_reg2 != (rtx)0 && reg_mentioned_p (mips_load_reg2, pattern))
4486 || (mips_load_reg3 != (rtx)0 && reg_mentioned_p (mips_load_reg3, pattern))
4487 || (mips_load_reg4 != (rtx)0 && reg_mentioned_p (mips_load_reg4, pattern)))
4488 fputs ("\t#nop\n", asm_out_file);
4489
4490 else
4491 dslots_load_filled++;
4492
4493 while (--dslots_number_nops > 0)
4494 fputs ("\t#nop\n", asm_out_file);
4495
4496 mips_load_reg = (rtx)0;
4497 mips_load_reg2 = (rtx)0;
4498 mips_load_reg3 = (rtx)0;
4499 mips_load_reg4 = (rtx)0;
4500 }
4501
4502 if (TARGET_STATS)
4503 {
4504 enum rtx_code code = GET_CODE (insn);
4505 if (code == JUMP_INSN || code == CALL_INSN)
4506 dslots_jump_total++;
4507 }
4508 }
4509
4510 \f
4511 /* Output at beginning of assembler file.
4512 If we are optimizing to use the global pointer, create a temporary
4513 file to hold all of the text stuff, and write it out to the end.
4514 This is needed because the MIPS assembler is evidently one pass,
4515 and if it hasn't seen the relevant .comm/.lcomm/.extern/.sdata
4516 declaration when the code is processed, it generates a two
4517 instruction sequence. */
4518
4519 void
4520 mips_asm_file_start (stream)
4521 FILE *stream;
4522 {
4523 ASM_OUTPUT_SOURCE_FILENAME (stream, main_input_filename);
4524
4525 /* Versions of the MIPS assembler before 2.20 generate errors
4526 if a branch inside of a .set noreorder section jumps to a
4527 label outside of the .set noreorder section. Revision 2.20
4528 just set nobopt silently rather than fixing the bug. */
4529
4530 if (TARGET_MIPS_AS && optimize && flag_delayed_branch)
4531 fprintf (stream, "\t.set\tnobopt\n");
4532
4533 /* Generate the pseudo ops that System V.4 wants. */
4534 #ifndef ABICALLS_ASM_OP
4535 #define ABICALLS_ASM_OP ".abicalls"
4536 #endif
4537 if (TARGET_ABICALLS)
4538 /* ??? but do not want this (or want pic0) if -non-shared? */
4539 fprintf (stream, "\t%s\n", ABICALLS_ASM_OP);
4540
4541 /* Start a section, so that the first .popsection directive is guaranteed
4542 to have a previously defined section to pop back to. */
4543 if (mips_abi != ABI_32 && mips_abi != ABI_EABI)
4544 fprintf (stream, "\t.section\t.text\n");
4545
4546 /* This code exists so that we can put all externs before all symbol
4547 references. This is necessary for the assembler's global pointer
4548 optimizations to work. */
4549 /* ??? Current versions of gas do not require that externs occur before
4550 symbol references. This means that this code is unnecessary when
4551 gas is being used. This gas feature hasn't been well tested as yet
4552 though. */
4553 if (TARGET_GP_OPT)
4554 {
4555 asm_out_data_file = stream;
4556 asm_out_text_file = make_temp_file ();
4557 }
4558 else
4559 asm_out_data_file = asm_out_text_file = stream;
4560
4561 if (flag_verbose_asm)
4562 fprintf (stream, "\n%s -G value = %d, Cpu = %s, ISA = %d\n",
4563 ASM_COMMENT_START,
4564 mips_section_threshold, mips_cpu_string, mips_isa);
4565 }
4566
4567 \f
4568 /* If we are optimizing the global pointer, emit the text section now
4569 and any small externs which did not have .comm, etc that are
4570 needed. Also, give a warning if the data area is more than 32K and
4571 -pic because 3 instructions are needed to reference the data
4572 pointers. */
4573
4574 void
4575 mips_asm_file_end (file)
4576 FILE *file;
4577 {
4578 char buffer[8192];
4579 tree name_tree;
4580 struct extern_list *p;
4581 int len;
4582
4583 if (HALF_PIC_P ())
4584 HALF_PIC_FINISH (file);
4585
4586 if (extern_head)
4587 {
4588 fputs ("\n", file);
4589
4590 for (p = extern_head; p != 0; p = p->next)
4591 {
4592 name_tree = get_identifier (p->name);
4593
4594 /* Positively ensure only one .extern for any given symbol. */
4595 if (! TREE_ASM_WRITTEN (name_tree))
4596 {
4597 TREE_ASM_WRITTEN (name_tree) = 1;
4598 #ifdef ASM_OUTPUT_UNDEF_FUNCTION
4599 if (p->size == -1)
4600 ASM_OUTPUT_UNDEF_FUNCTION (file, p->name);
4601 else
4602 #endif
4603 {
4604 fputs ("\t.extern\t", file);
4605 assemble_name (file, p->name);
4606 fprintf (file, ", %d\n", p->size);
4607 }
4608 }
4609 }
4610 }
4611
4612 if (TARGET_GP_OPT)
4613 {
4614 fprintf (file, "\n\t.text\n");
4615 rewind (asm_out_text_file);
4616 if (ferror (asm_out_text_file))
4617 fatal_io_error (temp_filename);
4618
4619 while ((len = fread (buffer, 1, sizeof (buffer), asm_out_text_file)) > 0)
4620 if (fwrite (buffer, 1, len, file) != len)
4621 pfatal_with_name (asm_file_name);
4622
4623 if (len < 0)
4624 pfatal_with_name (temp_filename);
4625
4626 if (fclose (asm_out_text_file) != 0)
4627 pfatal_with_name (temp_filename);
4628
4629 #ifdef __MSDOS__
4630 unlink (temp_filename);
4631 #endif
4632 }
4633 }
4634
4635 \f
4636 /* Emit either a label, .comm, or .lcomm directive, and mark
4637 that the symbol is used, so that we don't emit an .extern
4638 for it in mips_asm_file_end. */
4639
4640 void
4641 mips_declare_object (stream, name, init_string, final_string, size)
4642 FILE *stream;
4643 char *name;
4644 char *init_string;
4645 char *final_string;
4646 int size;
4647 {
4648 fputs (init_string, stream); /* "", "\t.comm\t", or "\t.lcomm\t" */
4649 assemble_name (stream, name);
4650 fprintf (stream, final_string, size); /* ":\n", ",%u\n", ",%u\n" */
4651
4652 if (TARGET_GP_OPT)
4653 {
4654 tree name_tree = get_identifier (name);
4655 TREE_ASM_WRITTEN (name_tree) = 1;
4656 }
4657 }
4658
4659 \f
4660 /* Output a double precision value to the assembler. If both the
4661 host and target are IEEE, emit the values in hex. */
4662
4663 void
4664 mips_output_double (stream, value)
4665 FILE *stream;
4666 REAL_VALUE_TYPE value;
4667 {
4668 #ifdef REAL_VALUE_TO_TARGET_DOUBLE
4669 long value_long[2];
4670 REAL_VALUE_TO_TARGET_DOUBLE (value, value_long);
4671
4672 fprintf (stream, "\t.word\t0x%08lx\t\t# %.20g\n\t.word\t0x%08lx\n",
4673 value_long[0], value, value_long[1]);
4674 #else
4675 fprintf (stream, "\t.double\t%.20g\n", value);
4676 #endif
4677 }
4678
4679
4680 /* Output a single precision value to the assembler. If both the
4681 host and target are IEEE, emit the values in hex. */
4682
4683 void
4684 mips_output_float (stream, value)
4685 FILE *stream;
4686 REAL_VALUE_TYPE value;
4687 {
4688 #ifdef REAL_VALUE_TO_TARGET_SINGLE
4689 long value_long;
4690 REAL_VALUE_TO_TARGET_SINGLE (value, value_long);
4691
4692 fprintf (stream, "\t.word\t0x%08lx\t\t# %.12g (float)\n", value_long, value);
4693 #else
4694 fprintf (stream, "\t.float\t%.12g\n", value);
4695 #endif
4696 }
4697
4698 \f
4699 /* Return TRUE if any register used in the epilogue is used. This to insure
4700 any insn put into the epilogue delay slots is safe. */
4701
4702 int
4703 epilogue_reg_mentioned_p (insn)
4704 rtx insn;
4705 {
4706 register char *fmt;
4707 register int i;
4708 register enum rtx_code code;
4709 register int regno;
4710
4711 if (insn == (rtx)0)
4712 return 0;
4713
4714 if (GET_CODE (insn) == LABEL_REF)
4715 return 0;
4716
4717 code = GET_CODE (insn);
4718 switch (code)
4719 {
4720 case REG:
4721 regno = REGNO (insn);
4722 if (regno == STACK_POINTER_REGNUM)
4723 return 1;
4724
4725 if (regno == FRAME_POINTER_REGNUM && frame_pointer_needed)
4726 return 1;
4727
4728 if (!call_used_regs[regno])
4729 return 1;
4730
4731 if (regno != MIPS_TEMP1_REGNUM && regno != MIPS_TEMP2_REGNUM)
4732 return 0;
4733
4734 if (!current_frame_info.initialized)
4735 compute_frame_size (get_frame_size ());
4736
4737 return (current_frame_info.total_size >= 32768);
4738
4739 case SCRATCH:
4740 case CC0:
4741 case PC:
4742 case CONST_INT:
4743 case CONST_DOUBLE:
4744 return 0;
4745 }
4746
4747 fmt = GET_RTX_FORMAT (code);
4748 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4749 {
4750 if (fmt[i] == 'E')
4751 {
4752 register int j;
4753 for (j = XVECLEN (insn, i) - 1; j >= 0; j--)
4754 if (epilogue_reg_mentioned_p (XVECEXP (insn, i, j)))
4755 return 1;
4756 }
4757 else if (fmt[i] == 'e' && epilogue_reg_mentioned_p (XEXP (insn, i)))
4758 return 1;
4759 }
4760
4761 return 0;
4762 }
4763 \f
4764 /* Return the bytes needed to compute the frame pointer from the current
4765 stack pointer.
4766
4767 Mips stack frames look like:
4768
4769 Before call After call
4770 +-----------------------+ +-----------------------+
4771 high | | | |
4772 mem. | | | |
4773 | caller's temps. | | caller's temps. |
4774 | | | |
4775 +-----------------------+ +-----------------------+
4776 | | | |
4777 | arguments on stack. | | arguments on stack. |
4778 | | | |
4779 +-----------------------+ +-----------------------+
4780 | 4 words to save | | 4 words to save |
4781 | arguments passed | | arguments passed |
4782 | in registers, even | | in registers, even |
4783 SP->| if not passed. | VFP->| if not passed. |
4784 +-----------------------+ +-----------------------+
4785 | |
4786 | fp register save |
4787 | |
4788 +-----------------------+
4789 | |
4790 | gp register save |
4791 | |
4792 +-----------------------+
4793 | |
4794 | local variables |
4795 | |
4796 +-----------------------+
4797 | |
4798 | alloca allocations |
4799 | |
4800 +-----------------------+
4801 | |
4802 | GP save for V.4 abi |
4803 | |
4804 +-----------------------+
4805 | |
4806 | arguments on stack |
4807 | |
4808 +-----------------------+
4809 | 4 words to save |
4810 | arguments passed |
4811 | in registers, even |
4812 low SP->| if not passed. |
4813 memory +-----------------------+
4814
4815 */
4816
4817 long
4818 compute_frame_size (size)
4819 int size; /* # of var. bytes allocated */
4820 {
4821 int regno;
4822 long total_size; /* # bytes that the entire frame takes up */
4823 long var_size; /* # bytes that variables take up */
4824 long args_size; /* # bytes that outgoing arguments take up */
4825 long extra_size; /* # extra bytes */
4826 long gp_reg_rounded; /* # bytes needed to store gp after rounding */
4827 long gp_reg_size; /* # bytes needed to store gp regs */
4828 long fp_reg_size; /* # bytes needed to store fp regs */
4829 long mask; /* mask of saved gp registers */
4830 long fmask; /* mask of saved fp registers */
4831 int fp_inc; /* 1 or 2 depending on the size of fp regs */
4832 long fp_bits; /* bitmask to use for each fp register */
4833
4834 gp_reg_size = 0;
4835 fp_reg_size = 0;
4836 mask = 0;
4837 fmask = 0;
4838 extra_size = MIPS_STACK_ALIGN (((TARGET_ABICALLS) ? UNITS_PER_WORD : 0));
4839 var_size = MIPS_STACK_ALIGN (size);
4840 args_size = MIPS_STACK_ALIGN (current_function_outgoing_args_size);
4841
4842 /* The MIPS 3.0 linker does not like functions that dynamically
4843 allocate the stack and have 0 for STACK_DYNAMIC_OFFSET, since it
4844 looks like we are trying to create a second frame pointer to the
4845 function, so allocate some stack space to make it happy. */
4846
4847 if (args_size == 0 && current_function_calls_alloca)
4848 args_size = 4*UNITS_PER_WORD;
4849
4850 total_size = var_size + args_size + extra_size;
4851
4852 /* Calculate space needed for gp registers. */
4853 for (regno = GP_REG_FIRST; regno <= GP_REG_LAST; regno++)
4854 {
4855 if (MUST_SAVE_REGISTER (regno))
4856 {
4857 gp_reg_size += UNITS_PER_WORD;
4858 mask |= 1L << (regno - GP_REG_FIRST);
4859 }
4860 }
4861
4862 /* Calculate space needed for fp registers. */
4863 if (TARGET_FLOAT64 || TARGET_SINGLE_FLOAT)
4864 {
4865 fp_inc = 1;
4866 fp_bits = 1;
4867 }
4868 else
4869 {
4870 fp_inc = 2;
4871 fp_bits = 3;
4872 }
4873
4874 for (regno = FP_REG_FIRST; regno <= FP_REG_LAST; regno += fp_inc)
4875 {
4876 if (regs_ever_live[regno] && !call_used_regs[regno])
4877 {
4878 fp_reg_size += fp_inc * UNITS_PER_FPREG;
4879 fmask |= fp_bits << (regno - FP_REG_FIRST);
4880 }
4881 }
4882
4883 gp_reg_rounded = MIPS_STACK_ALIGN (gp_reg_size);
4884 total_size += gp_reg_rounded + MIPS_STACK_ALIGN (fp_reg_size);
4885
4886 /* The gp reg is caller saved in the 32 bit ABI, so there is no need
4887 for leaf routines (total_size == extra_size) to save the gp reg.
4888 The gp reg is callee saved in the 64 bit ABI, so all routines must
4889 save the gp reg. */
4890 if (total_size == extra_size && (mips_abi == ABI_32 || mips_abi == ABI_EABI))
4891 total_size = extra_size = 0;
4892 else if (TARGET_ABICALLS)
4893 {
4894 /* Add the context-pointer to the saved registers. */
4895 gp_reg_size += UNITS_PER_WORD;
4896 mask |= 1L << (PIC_OFFSET_TABLE_REGNUM - GP_REG_FIRST);
4897 total_size -= gp_reg_rounded;
4898 gp_reg_rounded = MIPS_STACK_ALIGN (gp_reg_size);
4899 total_size += gp_reg_rounded;
4900 }
4901
4902 /* Add in space reserved on the stack by the callee for storing arguments
4903 passed in registers. */
4904 if (mips_abi != ABI_32)
4905 total_size += MIPS_STACK_ALIGN (current_function_pretend_args_size);
4906
4907 /* Save other computed information. */
4908 current_frame_info.total_size = total_size;
4909 current_frame_info.var_size = var_size;
4910 current_frame_info.args_size = args_size;
4911 current_frame_info.extra_size = extra_size;
4912 current_frame_info.gp_reg_size = gp_reg_size;
4913 current_frame_info.fp_reg_size = fp_reg_size;
4914 current_frame_info.mask = mask;
4915 current_frame_info.fmask = fmask;
4916 current_frame_info.initialized = reload_completed;
4917 current_frame_info.num_gp = gp_reg_size / UNITS_PER_WORD;
4918 current_frame_info.num_fp = fp_reg_size / (fp_inc * UNITS_PER_FPREG);
4919
4920 if (mask)
4921 {
4922 unsigned long offset = (args_size + extra_size + var_size
4923 + gp_reg_size - UNITS_PER_WORD);
4924 current_frame_info.gp_sp_offset = offset;
4925 current_frame_info.gp_save_offset = offset - total_size;
4926 }
4927 else
4928 {
4929 current_frame_info.gp_sp_offset = 0;
4930 current_frame_info.gp_save_offset = 0;
4931 }
4932
4933
4934 if (fmask)
4935 {
4936 unsigned long offset = (args_size + extra_size + var_size
4937 + gp_reg_rounded + fp_reg_size
4938 - fp_inc * UNITS_PER_FPREG);
4939 current_frame_info.fp_sp_offset = offset;
4940 current_frame_info.fp_save_offset = offset - total_size + UNITS_PER_WORD;
4941 }
4942 else
4943 {
4944 current_frame_info.fp_sp_offset = 0;
4945 current_frame_info.fp_save_offset = 0;
4946 }
4947
4948 /* Ok, we're done. */
4949 return total_size;
4950 }
4951
4952 \f
4953 /* Common code to emit the insns (or to write the instructions to a file)
4954 to save/restore registers.
4955
4956 Other parts of the code assume that MIPS_TEMP1_REGNUM (aka large_reg)
4957 is not modified within save_restore_insns. */
4958
4959 #define BITSET_P(value,bit) (((value) & (1L << (bit))) != 0)
4960
4961 static void
4962 save_restore_insns (store_p, large_reg, large_offset, file)
4963 int store_p; /* true if this is prologue */
4964 rtx large_reg; /* register holding large offset constant or NULL */
4965 long large_offset; /* large constant offset value */
4966 FILE *file; /* file to write instructions to instead of making RTL */
4967 {
4968 long mask = current_frame_info.mask;
4969 long fmask = current_frame_info.fmask;
4970 int regno;
4971 rtx base_reg_rtx;
4972 long base_offset;
4973 long gp_offset;
4974 long fp_offset;
4975 long end_offset;
4976
4977 if (frame_pointer_needed && !BITSET_P (mask, FRAME_POINTER_REGNUM - GP_REG_FIRST))
4978 abort ();
4979
4980 if (mask == 0 && fmask == 0)
4981 return;
4982
4983 /* Save registers starting from high to low. The debuggers prefer
4984 at least the return register be stored at func+4, and also it
4985 allows us not to need a nop in the epilog if at least one
4986 register is reloaded in addition to return address. */
4987
4988 /* Save GP registers if needed. */
4989 if (mask)
4990 {
4991 /* Pick which pointer to use as a base register. For small
4992 frames, just use the stack pointer. Otherwise, use a
4993 temporary register. Save 2 cycles if the save area is near
4994 the end of a large frame, by reusing the constant created in
4995 the prologue/epilogue to adjust the stack frame. */
4996
4997 gp_offset = current_frame_info.gp_sp_offset;
4998 end_offset = gp_offset - (current_frame_info.gp_reg_size - UNITS_PER_WORD);
4999
5000 if (gp_offset < 0 || end_offset < 0)
5001 fatal ("gp_offset (%ld) or end_offset (%ld) is less than zero.",
5002 gp_offset, end_offset);
5003
5004 else if (gp_offset < 32768)
5005 {
5006 base_reg_rtx = stack_pointer_rtx;
5007 base_offset = 0;
5008 }
5009
5010 else if (large_reg != (rtx)0
5011 && (((unsigned long)(large_offset - gp_offset)) < 32768)
5012 && (((unsigned long)(large_offset - end_offset)) < 32768))
5013 {
5014 base_reg_rtx = gen_rtx (REG, Pmode, MIPS_TEMP2_REGNUM);
5015 base_offset = large_offset;
5016 if (file == (FILE *)0)
5017 {
5018 if (TARGET_LONG64)
5019 emit_insn (gen_adddi3 (base_reg_rtx, large_reg, stack_pointer_rtx));
5020 else
5021 emit_insn (gen_addsi3 (base_reg_rtx, large_reg, stack_pointer_rtx));
5022 }
5023 else
5024 fprintf (file, "\t%s\t%s,%s,%s\n",
5025 TARGET_LONG64 ? "daddu" : "addu",
5026 reg_names[MIPS_TEMP2_REGNUM],
5027 reg_names[REGNO (large_reg)],
5028 reg_names[STACK_POINTER_REGNUM]);
5029 }
5030
5031 else
5032 {
5033 base_reg_rtx = gen_rtx (REG, Pmode, MIPS_TEMP2_REGNUM);
5034 base_offset = gp_offset;
5035 if (file == (FILE *)0)
5036 {
5037 emit_move_insn (base_reg_rtx, GEN_INT (gp_offset));
5038 if (TARGET_LONG64)
5039 emit_insn (gen_adddi3 (base_reg_rtx, base_reg_rtx, stack_pointer_rtx));
5040 else
5041 emit_insn (gen_addsi3 (base_reg_rtx, base_reg_rtx, stack_pointer_rtx));
5042 }
5043 else
5044 fprintf (file, "\tli\t%s,0x%.08lx\t# %ld\n\t%s\t%s,%s,%s\n",
5045 reg_names[MIPS_TEMP2_REGNUM],
5046 (long)base_offset,
5047 (long)base_offset,
5048 TARGET_LONG64 ? "daddu" : "addu",
5049 reg_names[MIPS_TEMP2_REGNUM],
5050 reg_names[MIPS_TEMP2_REGNUM],
5051 reg_names[STACK_POINTER_REGNUM]);
5052 }
5053
5054 for (regno = GP_REG_LAST; regno >= GP_REG_FIRST; regno--)
5055 {
5056 if (BITSET_P (mask, regno - GP_REG_FIRST))
5057 {
5058 if (file == (FILE *)0)
5059 {
5060 rtx reg_rtx = gen_rtx (REG, word_mode, regno);
5061 rtx mem_rtx = gen_rtx (MEM, word_mode,
5062 gen_rtx (PLUS, Pmode, base_reg_rtx,
5063 GEN_INT (gp_offset - base_offset)));
5064
5065 if (store_p)
5066 emit_move_insn (mem_rtx, reg_rtx);
5067 else if (!TARGET_ABICALLS || mips_abi != ABI_32
5068 || regno != (PIC_OFFSET_TABLE_REGNUM - GP_REG_FIRST))
5069 emit_move_insn (reg_rtx, mem_rtx);
5070 }
5071 else
5072 {
5073 if (store_p || !TARGET_ABICALLS || mips_abi != ABI_32
5074 || regno != (PIC_OFFSET_TABLE_REGNUM - GP_REG_FIRST))
5075 fprintf (file, "\t%s\t%s,%ld(%s)\n",
5076 (TARGET_64BIT
5077 ? (store_p) ? "sd" : "ld"
5078 : (store_p) ? "sw" : "lw"),
5079 reg_names[regno],
5080 gp_offset - base_offset,
5081 reg_names[REGNO(base_reg_rtx)]);
5082
5083 }
5084 gp_offset -= UNITS_PER_WORD;
5085 }
5086 }
5087 }
5088 else
5089 {
5090 base_reg_rtx = (rtx)0; /* Make sure these are initialized */
5091 base_offset = 0;
5092 }
5093
5094 /* Save floating point registers if needed. */
5095 if (fmask)
5096 {
5097 int fp_inc = (TARGET_FLOAT64 || TARGET_SINGLE_FLOAT) ? 1 : 2;
5098 int fp_size = fp_inc * UNITS_PER_FPREG;
5099
5100 /* Pick which pointer to use as a base register. */
5101 fp_offset = current_frame_info.fp_sp_offset;
5102 end_offset = fp_offset - (current_frame_info.fp_reg_size - fp_size);
5103
5104 if (fp_offset < 0 || end_offset < 0)
5105 fatal ("fp_offset (%ld) or end_offset (%ld) is less than zero.",
5106 fp_offset, end_offset);
5107
5108 else if (fp_offset < 32768)
5109 {
5110 base_reg_rtx = stack_pointer_rtx;
5111 base_offset = 0;
5112 }
5113
5114 else if (base_reg_rtx != (rtx)0
5115 && (((unsigned long)(base_offset - fp_offset)) < 32768)
5116 && (((unsigned long)(base_offset - end_offset)) < 32768))
5117 {
5118 ; /* already set up for gp registers above */
5119 }
5120
5121 else if (large_reg != (rtx)0
5122 && (((unsigned long)(large_offset - fp_offset)) < 32768)
5123 && (((unsigned long)(large_offset - end_offset)) < 32768))
5124 {
5125 base_reg_rtx = gen_rtx (REG, Pmode, MIPS_TEMP2_REGNUM);
5126 base_offset = large_offset;
5127 if (file == (FILE *)0)
5128 {
5129 if (TARGET_LONG64)
5130 emit_insn (gen_adddi3 (base_reg_rtx, large_reg, stack_pointer_rtx));
5131 else
5132 emit_insn (gen_addsi3 (base_reg_rtx, large_reg, stack_pointer_rtx));
5133 }
5134 else
5135 fprintf (file, "\t%s\t%s,%s,%s\n",
5136 TARGET_LONG64 ? "daddu" : "addu",
5137 reg_names[MIPS_TEMP2_REGNUM],
5138 reg_names[REGNO (large_reg)],
5139 reg_names[STACK_POINTER_REGNUM]);
5140 }
5141
5142 else
5143 {
5144 base_reg_rtx = gen_rtx (REG, Pmode, MIPS_TEMP2_REGNUM);
5145 base_offset = fp_offset;
5146 if (file == (FILE *)0)
5147 {
5148 emit_move_insn (base_reg_rtx, GEN_INT (fp_offset));
5149 if (TARGET_LONG64)
5150 emit_insn (gen_adddi3 (base_reg_rtx, base_reg_rtx, stack_pointer_rtx));
5151 else
5152 emit_insn (gen_addsi3 (base_reg_rtx, base_reg_rtx, stack_pointer_rtx));
5153 }
5154 else
5155 fprintf (file, "\tli\t%s,0x%.08lx\t# %ld\n\t%s\t%s,%s,%s\n",
5156 reg_names[MIPS_TEMP2_REGNUM],
5157 (long)base_offset,
5158 (long)base_offset,
5159 TARGET_LONG64 ? "daddu" : "addu",
5160 reg_names[MIPS_TEMP2_REGNUM],
5161 reg_names[MIPS_TEMP2_REGNUM],
5162 reg_names[STACK_POINTER_REGNUM]);
5163 }
5164
5165 for (regno = FP_REG_LAST-1; regno >= FP_REG_FIRST; regno -= fp_inc)
5166 {
5167 if (BITSET_P (fmask, regno - FP_REG_FIRST))
5168 {
5169 if (file == (FILE *)0)
5170 {
5171 enum machine_mode sz =
5172 TARGET_SINGLE_FLOAT ? SFmode : DFmode;
5173 rtx reg_rtx = gen_rtx (REG, sz, regno);
5174 rtx mem_rtx = gen_rtx (MEM, sz,
5175 gen_rtx (PLUS, Pmode, base_reg_rtx,
5176 GEN_INT (fp_offset - base_offset)));
5177
5178 if (store_p)
5179 emit_move_insn (mem_rtx, reg_rtx);
5180 else
5181 emit_move_insn (reg_rtx, mem_rtx);
5182 }
5183 else
5184 fprintf (file, "\t%s\t%s,%ld(%s)\n",
5185 (TARGET_SINGLE_FLOAT
5186 ? ((store_p) ? "s.s" : "l.s")
5187 : ((store_p) ? "s.d" : "l.d")),
5188 reg_names[regno],
5189 fp_offset - base_offset,
5190 reg_names[REGNO(base_reg_rtx)]);
5191
5192
5193 fp_offset -= fp_size;
5194 }
5195 }
5196 }
5197 }
5198
5199 \f
5200 /* Set up the stack and frame (if desired) for the function. */
5201
5202 void
5203 function_prologue (file, size)
5204 FILE *file;
5205 int size;
5206 {
5207 char *fnname;
5208 long tsize = current_frame_info.total_size;
5209
5210 ASM_OUTPUT_SOURCE_FILENAME (file, DECL_SOURCE_FILE (current_function_decl));
5211
5212 #ifdef SDB_DEBUGGING_INFO
5213 if (debug_info_level != DINFO_LEVEL_TERSE && write_symbols == SDB_DEBUG)
5214 ASM_OUTPUT_SOURCE_LINE (file, DECL_SOURCE_LINE (current_function_decl));
5215 #endif
5216
5217 inside_function = 1;
5218
5219 #ifndef FUNCTION_NAME_ALREADY_DECLARED
5220 /* Get the function name the same way that toplev.c does before calling
5221 assemble_start_function. This is needed so that the name used here
5222 exactly matches the name used in ASM_DECLARE_FUNCTION_NAME. */
5223 fnname = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0);
5224
5225 fputs ("\t.ent\t", file);
5226 assemble_name (file, fnname);
5227 fputs ("\n", file);
5228
5229 assemble_name (file, fnname);
5230 fputs (":\n", file);
5231 #endif
5232
5233 fprintf (file, "\t.frame\t%s,%d,%s\t\t# vars= %d, regs= %d/%d, args= %d, extra= %d\n",
5234 reg_names[ (frame_pointer_needed) ? FRAME_POINTER_REGNUM : STACK_POINTER_REGNUM ],
5235 tsize,
5236 reg_names[31 + GP_REG_FIRST],
5237 current_frame_info.var_size,
5238 current_frame_info.num_gp,
5239 current_frame_info.num_fp,
5240 current_function_outgoing_args_size,
5241 current_frame_info.extra_size);
5242
5243 fprintf (file, "\t.mask\t0x%08lx,%d\n\t.fmask\t0x%08lx,%d\n",
5244 current_frame_info.mask,
5245 current_frame_info.gp_save_offset,
5246 current_frame_info.fmask,
5247 current_frame_info.fp_save_offset);
5248
5249 if (TARGET_ABICALLS && mips_abi == ABI_32)
5250 {
5251 char *sp_str = reg_names[STACK_POINTER_REGNUM];
5252
5253 fprintf (file, "\t.set\tnoreorder\n\t.cpload\t%s\n\t.set\treorder\n",
5254 reg_names[PIC_FUNCTION_ADDR_REGNUM]);
5255 if (tsize > 0)
5256 {
5257 fprintf (file, "\t%s\t%s,%s,%d\n",
5258 (TARGET_LONG64 ? "dsubu" : "subu"),
5259 sp_str, sp_str, tsize);
5260 fprintf (file, "\t.cprestore %d\n", current_frame_info.args_size);
5261 }
5262 }
5263 }
5264
5265 \f
5266 /* Expand the prologue into a bunch of separate insns. */
5267
5268 void
5269 mips_expand_prologue ()
5270 {
5271 int regno;
5272 long tsize;
5273 rtx tmp_rtx = (rtx)0;
5274 char *arg_name = (char *)0;
5275 tree fndecl = current_function_decl;
5276 tree fntype = TREE_TYPE (fndecl);
5277 tree fnargs = DECL_ARGUMENTS (fndecl);
5278 rtx next_arg_reg;
5279 int i;
5280 tree next_arg;
5281 tree cur_arg;
5282 CUMULATIVE_ARGS args_so_far;
5283
5284 /* If struct value address is treated as the first argument, make it so. */
5285 if (aggregate_value_p (DECL_RESULT (fndecl))
5286 && ! current_function_returns_pcc_struct
5287 && struct_value_incoming_rtx == 0)
5288 {
5289 tree type = build_pointer_type (fntype);
5290 tree function_result_decl = build_decl (PARM_DECL, NULL_TREE, type);
5291 DECL_ARG_TYPE (function_result_decl) = type;
5292 TREE_CHAIN (function_result_decl) = fnargs;
5293 fnargs = function_result_decl;
5294 }
5295
5296 /* Determine the last argument, and get its name. */
5297
5298 INIT_CUMULATIVE_ARGS (args_so_far, fntype, (rtx)0, 0);
5299 regno = GP_ARG_FIRST;
5300
5301 for (cur_arg = fnargs; cur_arg != (tree)0; cur_arg = next_arg)
5302 {
5303 tree passed_type = DECL_ARG_TYPE (cur_arg);
5304 enum machine_mode passed_mode = TYPE_MODE (passed_type);
5305 rtx entry_parm;
5306
5307 if (TREE_ADDRESSABLE (passed_type))
5308 {
5309 passed_type = build_pointer_type (passed_type);
5310 passed_mode = Pmode;
5311 }
5312
5313 entry_parm = FUNCTION_ARG (args_so_far, passed_mode, passed_type, 1);
5314
5315 if (entry_parm)
5316 {
5317 int words;
5318
5319 /* passed in a register, so will get homed automatically */
5320 if (GET_MODE (entry_parm) == BLKmode)
5321 words = (int_size_in_bytes (passed_type) + 3) / 4;
5322 else
5323 words = (GET_MODE_SIZE (GET_MODE (entry_parm)) + 3) / 4;
5324
5325 regno = REGNO (entry_parm) + words - 1;
5326 }
5327 else
5328 {
5329 regno = GP_ARG_LAST+1;
5330 break;
5331 }
5332
5333 FUNCTION_ARG_ADVANCE (args_so_far, passed_mode, passed_type, 1);
5334
5335 next_arg = TREE_CHAIN (cur_arg);
5336 if (next_arg == (tree)0)
5337 {
5338 if (DECL_NAME (cur_arg))
5339 arg_name = IDENTIFIER_POINTER (DECL_NAME (cur_arg));
5340
5341 break;
5342 }
5343 }
5344
5345 /* In order to pass small structures by value in registers
5346 compatibly with the MIPS compiler, we need to shift the value
5347 into the high part of the register. Function_arg has encoded a
5348 PARALLEL rtx, holding a vector of adjustments to be made as the
5349 next_arg_reg variable, so we split up the insns, and emit them
5350 separately. */
5351
5352 next_arg_reg = FUNCTION_ARG (args_so_far, VOIDmode, void_type_node, 1);
5353 if (next_arg_reg != (rtx)0 && GET_CODE (next_arg_reg) == PARALLEL)
5354 {
5355 rtvec adjust = XVEC (next_arg_reg, 0);
5356 int num = GET_NUM_ELEM (adjust);
5357
5358 for (i = 0; i < num; i++)
5359 {
5360 rtx pattern = RTVEC_ELT (adjust, i);
5361 if (GET_CODE (pattern) != SET
5362 || GET_CODE (SET_SRC (pattern)) != ASHIFT)
5363 abort_with_insn (pattern, "Insn is not a shift");
5364
5365 PUT_CODE (SET_SRC (pattern), ASHIFTRT);
5366 emit_insn (pattern);
5367 }
5368 }
5369
5370 tsize = compute_frame_size (get_frame_size ());
5371
5372 /* If this function is a varargs function, store any registers that
5373 would normally hold arguments ($4 - $7) on the stack. */
5374 if (mips_abi == ABI_32
5375 && ((TYPE_ARG_TYPES (fntype) != 0
5376 && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype))) != void_type_node))
5377 || (arg_name != (char *)0
5378 && ((arg_name[0] == '_' && strcmp (arg_name, "__builtin_va_alist") == 0)
5379 || (arg_name[0] == 'v' && strcmp (arg_name, "va_alist") == 0)))))
5380 {
5381 int offset = (regno - GP_ARG_FIRST) * UNITS_PER_WORD;
5382 rtx ptr = stack_pointer_rtx;
5383
5384 /* If we are doing svr4-abi, sp has already been decremented by tsize. */
5385 if (TARGET_ABICALLS)
5386 offset += tsize;
5387
5388 for (; regno <= GP_ARG_LAST; regno++)
5389 {
5390 if (offset != 0)
5391 ptr = gen_rtx (PLUS, Pmode, stack_pointer_rtx, GEN_INT (offset));
5392 emit_move_insn (gen_rtx (MEM, word_mode, ptr),
5393 gen_rtx (REG, word_mode, regno));
5394 offset += UNITS_PER_WORD;
5395 }
5396 }
5397
5398 if (tsize > 0)
5399 {
5400 rtx tsize_rtx = GEN_INT (tsize);
5401
5402 /* If we are doing svr4-abi, sp move is done by function_prologue. */
5403 if (!TARGET_ABICALLS || mips_abi != ABI_32)
5404 {
5405 if (tsize > 32767)
5406 {
5407 tmp_rtx = gen_rtx (REG, Pmode, MIPS_TEMP1_REGNUM);
5408 emit_move_insn (tmp_rtx, tsize_rtx);
5409 tsize_rtx = tmp_rtx;
5410 }
5411
5412 if (TARGET_LONG64)
5413 emit_insn (gen_subdi3 (stack_pointer_rtx, stack_pointer_rtx,
5414 tsize_rtx));
5415 else
5416 emit_insn (gen_subsi3 (stack_pointer_rtx, stack_pointer_rtx,
5417 tsize_rtx));
5418 }
5419
5420 save_restore_insns (TRUE, tmp_rtx, tsize, (FILE *)0);
5421
5422 if (frame_pointer_needed)
5423 {
5424 if (TARGET_64BIT)
5425 emit_insn (gen_movdi (frame_pointer_rtx, stack_pointer_rtx));
5426 else
5427 emit_insn (gen_movsi (frame_pointer_rtx, stack_pointer_rtx));
5428 }
5429
5430 if (TARGET_ABICALLS && mips_abi != ABI_32)
5431 emit_insn (gen_loadgp (XEXP (DECL_RTL (current_function_decl), 0)));
5432 }
5433
5434 /* If we are profiling, make sure no instructions are scheduled before
5435 the call to mcount. */
5436
5437 if (profile_flag || profile_block_flag)
5438 emit_insn (gen_blockage ());
5439 }
5440
5441 \f
5442 /* Do any necessary cleanup after a function to restore stack, frame, and regs. */
5443
5444 #define RA_MASK ((long) 0x80000000) /* 1 << 31 */
5445 #define PIC_OFFSET_TABLE_MASK (1 << (PIC_OFFSET_TABLE_REGNUM - GP_REG_FIRST))
5446
5447 void
5448 function_epilogue (file, size)
5449 FILE *file;
5450 int size;
5451 {
5452 char *fnname;
5453 long tsize;
5454 char *sp_str = reg_names[STACK_POINTER_REGNUM];
5455 char *t1_str = reg_names[MIPS_TEMP1_REGNUM];
5456 rtx epilogue_delay = current_function_epilogue_delay_list;
5457 int noreorder = (epilogue_delay != 0);
5458 int noepilogue = FALSE;
5459 int load_nop = FALSE;
5460 int load_only_r31;
5461 rtx tmp_rtx = (rtx)0;
5462 rtx restore_rtx;
5463 int i;
5464
5465 /* The epilogue does not depend on any registers, but the stack
5466 registers, so we assume that if we have 1 pending nop, it can be
5467 ignored, and 2 it must be filled (2 nops occur for integer
5468 multiply and divide). */
5469
5470 if (dslots_number_nops > 0)
5471 {
5472 if (dslots_number_nops == 1)
5473 {
5474 dslots_number_nops = 0;
5475 dslots_load_filled++;
5476 }
5477 else
5478 {
5479 while (--dslots_number_nops > 0)
5480 fputs ("\t#nop\n", asm_out_file);
5481 }
5482 }
5483
5484 if (set_noat != 0)
5485 {
5486 set_noat = 0;
5487 fputs ("\t.set\tat\n", file);
5488 error ("internal gcc error: .set noat left on in epilogue");
5489 }
5490
5491 if (set_nomacro != 0)
5492 {
5493 set_nomacro = 0;
5494 fputs ("\t.set\tmacro\n", file);
5495 error ("internal gcc error: .set nomacro left on in epilogue");
5496 }
5497
5498 if (set_noreorder != 0)
5499 {
5500 set_noreorder = 0;
5501 fputs ("\t.set\treorder\n", file);
5502 error ("internal gcc error: .set noreorder left on in epilogue");
5503 }
5504
5505 if (set_volatile != 0)
5506 {
5507 set_volatile = 0;
5508 fprintf (file, "\t%s.set\tnovolatile\n", (TARGET_MIPS_AS) ? "" : "#");
5509 error ("internal gcc error: .set volatile left on in epilogue");
5510 }
5511
5512 size = MIPS_STACK_ALIGN (size);
5513 tsize = (!current_frame_info.initialized)
5514 ? compute_frame_size (size)
5515 : current_frame_info.total_size;
5516
5517 if (tsize == 0 && epilogue_delay == 0)
5518 {
5519 rtx insn = get_last_insn ();
5520
5521 /* If the last insn was a BARRIER, we don't have to write any code
5522 because a jump (aka return) was put there. */
5523 if (GET_CODE (insn) == NOTE)
5524 insn = prev_nonnote_insn (insn);
5525 if (insn && GET_CODE (insn) == BARRIER)
5526 noepilogue = TRUE;
5527
5528 noreorder = FALSE;
5529 }
5530
5531 if (!noepilogue)
5532 {
5533 /* In the reload sequence, we don't need to fill the load delay
5534 slots for most of the loads, also see if we can fill the final
5535 delay slot if not otherwise filled by the reload sequence. */
5536
5537 if (noreorder)
5538 fprintf (file, "\t.set\tnoreorder\n");
5539
5540 if (tsize > 32767)
5541 {
5542 fprintf (file, "\tli\t%s,0x%.08lx\t# %ld\n", t1_str, (long)tsize, (long)tsize);
5543 tmp_rtx = gen_rtx (REG, Pmode, MIPS_TEMP1_REGNUM);
5544 }
5545
5546 if (frame_pointer_needed)
5547 fprintf (file, "\tmove\t%s,%s\t\t\t# sp not trusted here\n",
5548 sp_str, reg_names[FRAME_POINTER_REGNUM]);
5549
5550 save_restore_insns (FALSE, tmp_rtx, tsize, file);
5551
5552 load_only_r31 = (((current_frame_info.mask
5553 & ~ (TARGET_ABICALLS && mips_abi == ABI_32
5554 ? PIC_OFFSET_TABLE_MASK : 0))
5555 == RA_MASK)
5556 && current_frame_info.fmask == 0);
5557
5558 if (noreorder)
5559 {
5560 /* If the only register saved is the return address, we need a
5561 nop, unless we have an instruction to put into it. Otherwise
5562 we don't since reloading multiple registers doesn't reference
5563 the register being loaded. */
5564
5565 if (load_only_r31)
5566 {
5567 if (epilogue_delay)
5568 final_scan_insn (XEXP (epilogue_delay, 0),
5569 file,
5570 1, /* optimize */
5571 -2, /* prescan */
5572 1); /* nopeepholes */
5573 else
5574 {
5575 fprintf (file, "\tnop\n");
5576 load_nop = TRUE;
5577 }
5578 }
5579
5580 fprintf (file, "\tj\t%s\n", reg_names[GP_REG_FIRST + 31]);
5581
5582 if (tsize > 32767)
5583 fprintf (file, "\t%s\t%s,%s,%s\n",
5584 TARGET_LONG64 ? "daddu" : "addu",
5585 sp_str, sp_str, t1_str);
5586
5587 else if (tsize > 0)
5588 fprintf (file, "\t%s\t%s,%s,%d\n",
5589 TARGET_LONG64 ? "daddu" : "addu",
5590 sp_str, sp_str, tsize);
5591
5592 else if (!load_only_r31 && epilogue_delay != 0)
5593 final_scan_insn (XEXP (epilogue_delay, 0),
5594 file,
5595 1, /* optimize */
5596 -2, /* prescan */
5597 1); /* nopeepholes */
5598
5599 fprintf (file, "\t.set\treorder\n");
5600 }
5601
5602 else
5603 {
5604 if (tsize > 32767)
5605 fprintf (file, "\t%s\t%s,%s,%s\n",
5606 TARGET_LONG64 ? "daddu" : "addu",
5607 sp_str, sp_str, t1_str);
5608
5609 else if (tsize > 0)
5610 fprintf (file, "\t%s\t%s,%s,%d\n",
5611 TARGET_LONG64 ? "daddu" : "addu",
5612 sp_str, sp_str, tsize);
5613
5614 fprintf (file, "\tj\t%s\n", reg_names[GP_REG_FIRST + 31]);
5615 }
5616 }
5617
5618 #ifndef FUNCTION_NAME_ALREADY_DECLARED
5619 /* Get the function name the same way that toplev.c does before calling
5620 assemble_start_function. This is needed so that the name used here
5621 exactly matches the name used in ASM_DECLARE_FUNCTION_NAME. */
5622 fnname = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0);
5623
5624 fputs ("\t.end\t", file);
5625 assemble_name (file, fnname);
5626 fputs ("\n", file);
5627 #endif
5628
5629 if (TARGET_STATS)
5630 {
5631 int num_gp_regs = current_frame_info.gp_reg_size / 4;
5632 int num_fp_regs = current_frame_info.fp_reg_size / 8;
5633 int num_regs = num_gp_regs + num_fp_regs;
5634 char *name = fnname;
5635
5636 if (name[0] == '*')
5637 name++;
5638
5639 dslots_load_total += num_regs;
5640
5641 if (!noepilogue)
5642 dslots_jump_total++;
5643
5644 if (noreorder)
5645 {
5646 dslots_load_filled += num_regs;
5647
5648 /* If the only register saved is the return register, we
5649 can't fill this register's delay slot. */
5650
5651 if (load_only_r31 && epilogue_delay == 0)
5652 dslots_load_filled--;
5653
5654 if (tsize > 0 || (!load_only_r31 && epilogue_delay != 0))
5655 dslots_jump_filled++;
5656 }
5657
5658 fprintf (stderr,
5659 "%-20s fp=%c leaf=%c alloca=%c setjmp=%c stack=%4ld arg=%3ld reg=%2d/%d delay=%3d/%3dL %3d/%3dJ refs=%3d/%3d/%3d",
5660 name,
5661 (frame_pointer_needed) ? 'y' : 'n',
5662 ((current_frame_info.mask & RA_MASK) != 0) ? 'n' : 'y',
5663 (current_function_calls_alloca) ? 'y' : 'n',
5664 (current_function_calls_setjmp) ? 'y' : 'n',
5665 (long)current_frame_info.total_size,
5666 (long)current_function_outgoing_args_size,
5667 num_gp_regs, num_fp_regs,
5668 dslots_load_total, dslots_load_filled,
5669 dslots_jump_total, dslots_jump_filled,
5670 num_refs[0], num_refs[1], num_refs[2]);
5671
5672 if (HALF_PIC_NUMBER_PTRS > prev_half_pic_ptrs)
5673 {
5674 fprintf (stderr, " half-pic=%3d", HALF_PIC_NUMBER_PTRS - prev_half_pic_ptrs);
5675 prev_half_pic_ptrs = HALF_PIC_NUMBER_PTRS;
5676 }
5677
5678 if (HALF_PIC_NUMBER_REFS > prev_half_pic_refs)
5679 {
5680 fprintf (stderr, " pic-ref=%3d", HALF_PIC_NUMBER_REFS - prev_half_pic_refs);
5681 prev_half_pic_refs = HALF_PIC_NUMBER_REFS;
5682 }
5683
5684 fputc ('\n', stderr);
5685 }
5686
5687 /* Reset state info for each function. */
5688 inside_function = FALSE;
5689 ignore_line_number = FALSE;
5690 dslots_load_total = 0;
5691 dslots_jump_total = 0;
5692 dslots_load_filled = 0;
5693 dslots_jump_filled = 0;
5694 num_refs[0] = 0;
5695 num_refs[1] = 0;
5696 num_refs[2] = 0;
5697 mips_load_reg = (rtx)0;
5698 mips_load_reg2 = (rtx)0;
5699 current_frame_info = zero_frame_info;
5700
5701 /* Restore the output file if optimizing the GP (optimizing the GP causes
5702 the text to be diverted to a tempfile, so that data decls come before
5703 references to the data). */
5704
5705 if (TARGET_GP_OPT)
5706 asm_out_file = asm_out_data_file;
5707 }
5708
5709 \f
5710 /* Expand the epilogue into a bunch of separate insns. */
5711
5712 void
5713 mips_expand_epilogue ()
5714 {
5715 long tsize = current_frame_info.total_size;
5716 rtx tsize_rtx = GEN_INT (tsize);
5717 rtx tmp_rtx = (rtx)0;
5718
5719 if (tsize > 32767)
5720 {
5721 tmp_rtx = gen_rtx (REG, Pmode, MIPS_TEMP1_REGNUM);
5722 emit_move_insn (tmp_rtx, tsize_rtx);
5723 tsize_rtx = tmp_rtx;
5724 }
5725
5726 if (tsize > 0)
5727 {
5728 if (frame_pointer_needed)
5729 {
5730 if (TARGET_LONG64)
5731 emit_insn (gen_movdi (stack_pointer_rtx, frame_pointer_rtx));
5732 else
5733 emit_insn (gen_movsi (stack_pointer_rtx, frame_pointer_rtx));
5734 }
5735
5736 save_restore_insns (FALSE, tmp_rtx, tsize, (FILE *)0);
5737
5738 if (TARGET_LONG64)
5739 emit_insn (gen_adddi3 (stack_pointer_rtx, stack_pointer_rtx,
5740 tsize_rtx));
5741 else
5742 emit_insn (gen_addsi3 (stack_pointer_rtx, stack_pointer_rtx,
5743 tsize_rtx));
5744 }
5745
5746 emit_jump_insn (gen_return_internal (gen_rtx (REG, Pmode, GP_REG_FIRST+31)));
5747 }
5748
5749 \f
5750 /* Define the number of delay slots needed for the function epilogue.
5751
5752 On the mips, we need a slot if either no stack has been allocated,
5753 or the only register saved is the return register. */
5754
5755 int
5756 mips_epilogue_delay_slots ()
5757 {
5758 if (!current_frame_info.initialized)
5759 (void) compute_frame_size (get_frame_size ());
5760
5761 if (current_frame_info.total_size == 0)
5762 return 1;
5763
5764 if (current_frame_info.mask == RA_MASK && current_frame_info.fmask == 0)
5765 return 1;
5766
5767 return 0;
5768 }
5769
5770 \f
5771 /* Return true if this function is known to have a null epilogue.
5772 This allows the optimizer to omit jumps to jumps if no stack
5773 was created. */
5774
5775 int
5776 simple_epilogue_p ()
5777 {
5778 if (!reload_completed)
5779 return 0;
5780
5781 if (current_frame_info.initialized)
5782 return current_frame_info.total_size == 0;
5783
5784 return (compute_frame_size (get_frame_size ())) == 0;
5785 }
5786 \f
5787 /* Choose the section to use for the constant rtx expression X that has
5788 mode MODE. */
5789
5790 mips_select_rtx_section (mode, x)
5791 enum machine_mode mode;
5792 rtx x;
5793 {
5794 if (TARGET_EMBEDDED_DATA)
5795 {
5796 /* For embedded applications, always put constants in read-only data,
5797 in order to reduce RAM usage. */
5798 READONLY_DATA_SECTION ();
5799 }
5800 else
5801 {
5802 /* For hosted applications, always put constants in small data if
5803 possible, as this gives the best performance. */
5804
5805 if (GET_MODE_SIZE (mode) <= mips_section_threshold
5806 && mips_section_threshold > 0)
5807 SMALL_DATA_SECTION ();
5808 else
5809 READONLY_DATA_SECTION ();
5810 }
5811 }
5812
5813 /* Choose the section to use for DECL. RELOC is true if its value contains
5814 any relocatable expression. */
5815
5816 mips_select_section (decl, reloc)
5817 tree decl;
5818 int reloc;
5819 {
5820 int size = int_size_in_bytes (TREE_TYPE (decl));
5821
5822 if (TARGET_EMBEDDED_PIC
5823 && TREE_CODE (decl) == STRING_CST
5824 && !flag_writable_strings)
5825 {
5826 /* For embedded position independent code, put constant strings
5827 in the text section, because the data section is limited to
5828 64K in size. */
5829
5830 text_section ();
5831 }
5832 else if (TARGET_EMBEDDED_DATA)
5833 {
5834 /* For embedded applications, always put an object in read-only data
5835 if possible, in order to reduce RAM usage. */
5836
5837 if (((TREE_CODE (decl) == VAR_DECL
5838 && TREE_READONLY (decl) && !TREE_SIDE_EFFECTS (decl)
5839 && DECL_INITIAL (decl)
5840 && (DECL_INITIAL (decl) == error_mark_node
5841 || TREE_CONSTANT (DECL_INITIAL (decl))))
5842 /* Deal with calls from output_constant_def_contents. */
5843 || (TREE_CODE (decl) != VAR_DECL
5844 && (TREE_CODE (decl) != STRING_CST
5845 || !flag_writable_strings)))
5846 && ! (flag_pic && reloc))
5847 READONLY_DATA_SECTION ();
5848 else if (size > 0 && size <= mips_section_threshold)
5849 SMALL_DATA_SECTION ();
5850 else
5851 data_section ();
5852 }
5853 else
5854 {
5855 /* For hosted applications, always put an object in small data if
5856 possible, as this gives the best performance. */
5857
5858 if (size > 0 && size <= mips_section_threshold)
5859 SMALL_DATA_SECTION ();
5860 else if (((TREE_CODE (decl) == VAR_DECL
5861 && TREE_READONLY (decl) && !TREE_SIDE_EFFECTS (decl)
5862 && DECL_INITIAL (decl)
5863 && (DECL_INITIAL (decl) == error_mark_node
5864 || TREE_CONSTANT (DECL_INITIAL (decl))))
5865 /* Deal with calls from output_constant_def_contents. */
5866 || (TREE_CODE (decl) != VAR_DECL
5867 && (TREE_CODE (decl) != STRING_CST
5868 || !flag_writable_strings)))
5869 && ! (flag_pic && reloc))
5870 READONLY_DATA_SECTION ();
5871 else
5872 data_section ();
5873 }
5874 }
5875 \f
5876 #ifdef MIPS_ABI_DEFAULT
5877 /* Support functions for the 64 bit ABI. */
5878
5879 /* Return register to use for a function return value with VALTYPE for function
5880 FUNC. */
5881
5882 rtx
5883 mips_function_value (valtype, func)
5884 tree valtype;
5885 tree func;
5886 {
5887 int reg = GP_RETURN;
5888 enum machine_mode mode = TYPE_MODE (valtype);
5889 enum mode_class mclass = GET_MODE_CLASS (mode);
5890
5891 /* ??? How should we return complex float? */
5892 if (mclass == MODE_FLOAT || mclass == MODE_COMPLEX_FLOAT)
5893 reg = FP_RETURN;
5894 else if (TREE_CODE (valtype) == RECORD_TYPE
5895 && mips_abi != ABI_32 && mips_abi != ABI_EABI)
5896 {
5897 /* A struct with only one or two floating point fields is returned in
5898 the floating point registers. */
5899 tree field, fields[2];
5900 int i;
5901
5902 for (i = 0, field = TYPE_FIELDS (valtype); field;
5903 field = TREE_CHAIN (field))
5904 {
5905 if (TREE_CODE (field) != FIELD_DECL)
5906 continue;
5907 if (TREE_CODE (TREE_TYPE (field)) != REAL_TYPE || i >= 2)
5908 break;
5909
5910 fields[i++] = field;
5911 }
5912
5913 /* Must check i, so that we reject structures with no elements. */
5914 if (! field)
5915 {
5916 if (i == 1)
5917 {
5918 /* The structure has DImode, but we don't allow DImode values
5919 in FP registers, so we use a PARALLEL even though it isn't
5920 strictly necessary. */
5921 enum machine_mode field_mode = TYPE_MODE (TREE_TYPE (fields[0]));
5922
5923 return gen_rtx (PARALLEL, mode,
5924 gen_rtvec (1,
5925 gen_rtx (EXPR_LIST, VOIDmode,
5926 gen_rtx (REG, field_mode, FP_RETURN),
5927 const0_rtx)));
5928 }
5929 else if (i == 2)
5930 {
5931 enum machine_mode first_mode
5932 = TYPE_MODE (TREE_TYPE (fields[0]));
5933 enum machine_mode second_mode
5934 = TYPE_MODE (TREE_TYPE (fields[1]));
5935 int first_offset
5936 = TREE_INT_CST_LOW (DECL_FIELD_BITPOS (fields[0]));
5937 int second_offset
5938 = TREE_INT_CST_LOW (DECL_FIELD_BITPOS (fields[1]));
5939
5940 return gen_rtx (PARALLEL, mode,
5941 gen_rtvec (2,
5942 gen_rtx (EXPR_LIST, VOIDmode,
5943 gen_rtx (REG, first_mode, FP_RETURN),
5944 GEN_INT (first_offset / BITS_PER_UNIT)),
5945 gen_rtx (EXPR_LIST, VOIDmode,
5946 gen_rtx (REG, second_mode, FP_RETURN + 2),
5947 GEN_INT (second_offset / BITS_PER_UNIT))));
5948 }
5949 }
5950 }
5951
5952 return gen_rtx (REG, mode, reg);
5953 }
5954
5955 /* The implementation of FUNCTION_ARG_PASS_BY_REFERENCE. Return
5956 nonzero when an argument must be passed by reference. */
5957
5958 int
5959 function_arg_pass_by_reference (cum, mode, type, named)
5960 CUMULATIVE_ARGS *cum;
5961 enum machine_mode mode;
5962 tree type;
5963 int named;
5964 {
5965 int size;
5966
5967 if (mips_abi != ABI_EABI)
5968 return 0;
5969
5970 /* ??? How should SCmode be handled? */
5971 if (type == NULL_TREE || mode == DImode || mode == DFmode)
5972 return 0;
5973
5974 size = int_size_in_bytes (type);
5975 return size == -1 || size > UNITS_PER_WORD;
5976 }
5977
5978 #endif
5979
5980 /* This function returns the register class required for a secondary
5981 register when copying between one of the registers in CLASS, and X,
5982 using MODE. If IN_P is nonzero, the copy is going from X to the
5983 register, otherwise the register is the source. A return value of
5984 NO_REGS means that no secondary register is required. */
5985
5986 enum reg_class
5987 mips_secondary_reload_class (class, mode, x, in_p)
5988 enum reg_class class;
5989 enum machine_mode mode;
5990 rtx x;
5991 int in_p;
5992 {
5993 int regno = -1;
5994
5995 if (GET_CODE (x) == REG || GET_CODE (x) == SUBREG)
5996 regno = true_regnum (x);
5997
5998 /* We always require a general register when copying anything to
5999 HILO_REGNUM, except when copying an SImode value from HILO_REGNUM
6000 to a general register, or when copying from register 0. */
6001 if (class == HILO_REG && regno != GP_REG_FIRST + 0)
6002 {
6003 if (! in_p
6004 && GP_REG_P (regno)
6005 && GET_MODE_SIZE (mode) <= GET_MODE_SIZE (SImode))
6006 return NO_REGS;
6007 return GR_REGS;
6008 }
6009 if (regno == HILO_REGNUM)
6010 {
6011 if (in_p
6012 && class == GR_REGS
6013 && GET_MODE_SIZE (mode) <= GET_MODE_SIZE (SImode))
6014 return NO_REGS;
6015 return GR_REGS;
6016 }
6017
6018 /* Copying from HI or LO to anywhere other than a general register
6019 requires a general register. */
6020 if (class == HI_REG || class == LO_REG || class == MD_REGS)
6021 {
6022 if (GP_REG_P (regno))
6023 return NO_REGS;
6024 return GR_REGS;
6025 }
6026 if (MD_REG_P (regno))
6027 {
6028 if (class == GR_REGS)
6029 return NO_REGS;
6030 return GR_REGS;
6031 }
6032
6033 /* We can only copy a value to a condition code register from a
6034 floating point register, and even then we require a scratch
6035 floating point register. We can only copy a value out of a
6036 condition code register into a general register. */
6037 if (class == ST_REGS)
6038 {
6039 if (in_p)
6040 return FP_REGS;
6041 if (GP_REG_P (regno))
6042 return NO_REGS;
6043 return GR_REGS;
6044 }
6045 if (ST_REG_P (regno))
6046 {
6047 if (! in_p)
6048 return FP_REGS;
6049 if (class == GR_REGS)
6050 return NO_REGS;
6051 return GR_REGS;
6052 }
6053
6054 return NO_REGS;
6055 }