Merge with gcc-4_3-branch up to revision 175516.
[official-gcc.git] / gcc / config / s390 / s390.c
blob9c806467e9f67fffda5d0c34b3bf961b1694e5a5
1 /* Subroutines used for code generation on IBM S/390 and zSeries
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3 2007 Free Software Foundation, Inc.
4 Contributed by Hartmut Penner (hpenner@de.ibm.com) and
5 Ulrich Weigand (uweigand@de.ibm.com).
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "rtl.h"
28 #include "tree.h"
29 #include "tm_p.h"
30 #include "regs.h"
31 #include "hard-reg-set.h"
32 #include "real.h"
33 #include "insn-config.h"
34 #include "conditions.h"
35 #include "output.h"
36 #include "insn-attr.h"
37 #include "flags.h"
38 #include "except.h"
39 #include "function.h"
40 #include "recog.h"
41 #include "expr.h"
42 #include "reload.h"
43 #include "toplev.h"
44 #include "basic-block.h"
45 #include "integrate.h"
46 #include "ggc.h"
47 #include "target.h"
48 #include "target-def.h"
49 #include "debug.h"
50 #include "langhooks.h"
51 #include "optabs.h"
52 #include "tree-gimple.h"
53 #include "df.h"
56 /* Define the specific costs for a given cpu. */
58 struct processor_costs
60 /* multiplication */
61 const int m; /* cost of an M instruction. */
62 const int mghi; /* cost of an MGHI instruction. */
63 const int mh; /* cost of an MH instruction. */
64 const int mhi; /* cost of an MHI instruction. */
65 const int ml; /* cost of an ML instruction. */
66 const int mr; /* cost of an MR instruction. */
67 const int ms; /* cost of an MS instruction. */
68 const int msg; /* cost of an MSG instruction. */
69 const int msgf; /* cost of an MSGF instruction. */
70 const int msgfr; /* cost of an MSGFR instruction. */
71 const int msgr; /* cost of an MSGR instruction. */
72 const int msr; /* cost of an MSR instruction. */
73 const int mult_df; /* cost of multiplication in DFmode. */
74 const int mxbr;
75 /* square root */
76 const int sqxbr; /* cost of square root in TFmode. */
77 const int sqdbr; /* cost of square root in DFmode. */
78 const int sqebr; /* cost of square root in SFmode. */
79 /* multiply and add */
80 const int madbr; /* cost of multiply and add in DFmode. */
81 const int maebr; /* cost of multiply and add in SFmode. */
82 /* division */
83 const int dxbr;
84 const int ddbr;
85 const int debr;
86 const int dlgr;
87 const int dlr;
88 const int dr;
89 const int dsgfr;
90 const int dsgr;
93 const struct processor_costs *s390_cost;
95 static const
96 struct processor_costs z900_cost =
98 COSTS_N_INSNS (5), /* M */
99 COSTS_N_INSNS (10), /* MGHI */
100 COSTS_N_INSNS (5), /* MH */
101 COSTS_N_INSNS (4), /* MHI */
102 COSTS_N_INSNS (5), /* ML */
103 COSTS_N_INSNS (5), /* MR */
104 COSTS_N_INSNS (4), /* MS */
105 COSTS_N_INSNS (15), /* MSG */
106 COSTS_N_INSNS (7), /* MSGF */
107 COSTS_N_INSNS (7), /* MSGFR */
108 COSTS_N_INSNS (10), /* MSGR */
109 COSTS_N_INSNS (4), /* MSR */
110 COSTS_N_INSNS (7), /* multiplication in DFmode */
111 COSTS_N_INSNS (13), /* MXBR */
112 COSTS_N_INSNS (136), /* SQXBR */
113 COSTS_N_INSNS (44), /* SQDBR */
114 COSTS_N_INSNS (35), /* SQEBR */
115 COSTS_N_INSNS (18), /* MADBR */
116 COSTS_N_INSNS (13), /* MAEBR */
117 COSTS_N_INSNS (134), /* DXBR */
118 COSTS_N_INSNS (30), /* DDBR */
119 COSTS_N_INSNS (27), /* DEBR */
120 COSTS_N_INSNS (220), /* DLGR */
121 COSTS_N_INSNS (34), /* DLR */
122 COSTS_N_INSNS (34), /* DR */
123 COSTS_N_INSNS (32), /* DSGFR */
124 COSTS_N_INSNS (32), /* DSGR */
127 static const
128 struct processor_costs z990_cost =
130 COSTS_N_INSNS (4), /* M */
131 COSTS_N_INSNS (2), /* MGHI */
132 COSTS_N_INSNS (2), /* MH */
133 COSTS_N_INSNS (2), /* MHI */
134 COSTS_N_INSNS (4), /* ML */
135 COSTS_N_INSNS (4), /* MR */
136 COSTS_N_INSNS (5), /* MS */
137 COSTS_N_INSNS (6), /* MSG */
138 COSTS_N_INSNS (4), /* MSGF */
139 COSTS_N_INSNS (4), /* MSGFR */
140 COSTS_N_INSNS (4), /* MSGR */
141 COSTS_N_INSNS (4), /* MSR */
142 COSTS_N_INSNS (1), /* multiplication in DFmode */
143 COSTS_N_INSNS (28), /* MXBR */
144 COSTS_N_INSNS (130), /* SQXBR */
145 COSTS_N_INSNS (66), /* SQDBR */
146 COSTS_N_INSNS (38), /* SQEBR */
147 COSTS_N_INSNS (1), /* MADBR */
148 COSTS_N_INSNS (1), /* MAEBR */
149 COSTS_N_INSNS (60), /* DXBR */
150 COSTS_N_INSNS (40), /* DDBR */
151 COSTS_N_INSNS (26), /* DEBR */
152 COSTS_N_INSNS (176), /* DLGR */
153 COSTS_N_INSNS (31), /* DLR */
154 COSTS_N_INSNS (31), /* DR */
155 COSTS_N_INSNS (31), /* DSGFR */
156 COSTS_N_INSNS (31), /* DSGR */
159 static const
160 struct processor_costs z9_109_cost =
162 COSTS_N_INSNS (4), /* M */
163 COSTS_N_INSNS (2), /* MGHI */
164 COSTS_N_INSNS (2), /* MH */
165 COSTS_N_INSNS (2), /* MHI */
166 COSTS_N_INSNS (4), /* ML */
167 COSTS_N_INSNS (4), /* MR */
168 COSTS_N_INSNS (5), /* MS */
169 COSTS_N_INSNS (6), /* MSG */
170 COSTS_N_INSNS (4), /* MSGF */
171 COSTS_N_INSNS (4), /* MSGFR */
172 COSTS_N_INSNS (4), /* MSGR */
173 COSTS_N_INSNS (4), /* MSR */
174 COSTS_N_INSNS (1), /* multiplication in DFmode */
175 COSTS_N_INSNS (28), /* MXBR */
176 COSTS_N_INSNS (130), /* SQXBR */
177 COSTS_N_INSNS (66), /* SQDBR */
178 COSTS_N_INSNS (38), /* SQEBR */
179 COSTS_N_INSNS (1), /* MADBR */
180 COSTS_N_INSNS (1), /* MAEBR */
181 COSTS_N_INSNS (60), /* DXBR */
182 COSTS_N_INSNS (40), /* DDBR */
183 COSTS_N_INSNS (26), /* DEBR */
184 COSTS_N_INSNS (30), /* DLGR */
185 COSTS_N_INSNS (23), /* DLR */
186 COSTS_N_INSNS (23), /* DR */
187 COSTS_N_INSNS (24), /* DSGFR */
188 COSTS_N_INSNS (24), /* DSGR */
191 extern int reload_completed;
193 /* Save information from a "cmpxx" operation until the branch or scc is
194 emitted. */
195 rtx s390_compare_op0, s390_compare_op1;
197 /* Save the result of a compare_and_swap until the branch or scc is
198 emitted. */
199 rtx s390_compare_emitted = NULL_RTX;
201 /* Structure used to hold the components of a S/390 memory
202 address. A legitimate address on S/390 is of the general
203 form
204 base + index + displacement
205 where any of the components is optional.
207 base and index are registers of the class ADDR_REGS,
208 displacement is an unsigned 12-bit immediate constant. */
210 struct s390_address
212 rtx base;
213 rtx indx;
214 rtx disp;
215 bool pointer;
216 bool literal_pool;
219 /* Which cpu are we tuning for. */
220 enum processor_type s390_tune = PROCESSOR_max;
221 enum processor_flags s390_tune_flags;
222 /* Which instruction set architecture to use. */
223 enum processor_type s390_arch;
224 enum processor_flags s390_arch_flags;
226 HOST_WIDE_INT s390_warn_framesize = 0;
227 HOST_WIDE_INT s390_stack_size = 0;
228 HOST_WIDE_INT s390_stack_guard = 0;
230 /* The following structure is embedded in the machine
231 specific part of struct function. */
233 struct s390_frame_layout GTY (())
235 /* Offset within stack frame. */
236 HOST_WIDE_INT gprs_offset;
237 HOST_WIDE_INT f0_offset;
238 HOST_WIDE_INT f4_offset;
239 HOST_WIDE_INT f8_offset;
240 HOST_WIDE_INT backchain_offset;
242 /* Number of first and last gpr where slots in the register
243 save area are reserved for. */
244 int first_save_gpr_slot;
245 int last_save_gpr_slot;
247 /* Number of first and last gpr to be saved, restored. */
248 int first_save_gpr;
249 int first_restore_gpr;
250 int last_save_gpr;
251 int last_restore_gpr;
253 /* Bits standing for floating point registers. Set, if the
254 respective register has to be saved. Starting with reg 16 (f0)
255 at the rightmost bit.
256 Bit 15 - 8 7 6 5 4 3 2 1 0
257 fpr 15 - 8 7 5 3 1 6 4 2 0
258 reg 31 - 24 23 22 21 20 19 18 17 16 */
259 unsigned int fpr_bitmap;
261 /* Number of floating point registers f8-f15 which must be saved. */
262 int high_fprs;
264 /* Set if return address needs to be saved.
265 This flag is set by s390_return_addr_rtx if it could not use
266 the initial value of r14 and therefore depends on r14 saved
267 to the stack. */
268 bool save_return_addr_p;
270 /* Size of stack frame. */
271 HOST_WIDE_INT frame_size;
274 /* Define the structure for the machine field in struct function. */
276 struct machine_function GTY(())
278 struct s390_frame_layout frame_layout;
280 /* Literal pool base register. */
281 rtx base_reg;
283 /* True if we may need to perform branch splitting. */
284 bool split_branches_pending_p;
286 /* True during final stage of literal pool processing. */
287 bool decomposed_literal_pool_addresses_ok_p;
289 /* Some local-dynamic TLS symbol name. */
290 const char *some_ld_name;
292 bool has_landing_pad_p;
295 /* Few accessor macros for struct cfun->machine->s390_frame_layout. */
297 #define cfun_frame_layout (cfun->machine->frame_layout)
298 #define cfun_save_high_fprs_p (!!cfun_frame_layout.high_fprs)
299 #define cfun_gprs_save_area_size ((cfun_frame_layout.last_save_gpr_slot - \
300 cfun_frame_layout.first_save_gpr_slot + 1) * UNITS_PER_WORD)
301 #define cfun_set_fpr_bit(BITNUM) (cfun->machine->frame_layout.fpr_bitmap |= \
302 (1 << (BITNUM)))
303 #define cfun_fpr_bit_p(BITNUM) (!!(cfun->machine->frame_layout.fpr_bitmap & \
304 (1 << (BITNUM))))
306 /* Number of GPRs and FPRs used for argument passing. */
307 #define GP_ARG_NUM_REG 5
308 #define FP_ARG_NUM_REG (TARGET_64BIT? 4 : 2)
310 /* A couple of shortcuts. */
311 #define CONST_OK_FOR_J(x) \
312 CONST_OK_FOR_CONSTRAINT_P((x), 'J', "J")
313 #define CONST_OK_FOR_K(x) \
314 CONST_OK_FOR_CONSTRAINT_P((x), 'K', "K")
315 #define CONST_OK_FOR_Os(x) \
316 CONST_OK_FOR_CONSTRAINT_P((x), 'O', "Os")
317 #define CONST_OK_FOR_Op(x) \
318 CONST_OK_FOR_CONSTRAINT_P((x), 'O', "Op")
319 #define CONST_OK_FOR_On(x) \
320 CONST_OK_FOR_CONSTRAINT_P((x), 'O', "On")
322 #define REGNO_PAIR_OK(REGNO, MODE) \
323 (HARD_REGNO_NREGS ((REGNO), (MODE)) == 1 || !((REGNO) & 1))
325 static enum machine_mode
326 s390_libgcc_cmp_return_mode (void)
328 return TARGET_64BIT ? DImode : SImode;
331 static enum machine_mode
332 s390_libgcc_shift_count_mode (void)
334 return TARGET_64BIT ? DImode : SImode;
337 /* Return true if the back end supports mode MODE. */
338 static bool
339 s390_scalar_mode_supported_p (enum machine_mode mode)
341 if (DECIMAL_FLOAT_MODE_P (mode))
342 return true;
343 else
344 return default_scalar_mode_supported_p (mode);
347 /* Set the has_landing_pad_p flag in struct machine_function to VALUE. */
349 void
350 s390_set_has_landing_pad_p (bool value)
352 cfun->machine->has_landing_pad_p = value;
355 /* If two condition code modes are compatible, return a condition code
356 mode which is compatible with both. Otherwise, return
357 VOIDmode. */
359 static enum machine_mode
360 s390_cc_modes_compatible (enum machine_mode m1, enum machine_mode m2)
362 if (m1 == m2)
363 return m1;
365 switch (m1)
367 case CCZmode:
368 if (m2 == CCUmode || m2 == CCTmode || m2 == CCZ1mode
369 || m2 == CCSmode || m2 == CCSRmode || m2 == CCURmode)
370 return m2;
371 return VOIDmode;
373 case CCSmode:
374 case CCUmode:
375 case CCTmode:
376 case CCSRmode:
377 case CCURmode:
378 case CCZ1mode:
379 if (m2 == CCZmode)
380 return m1;
382 return VOIDmode;
384 default:
385 return VOIDmode;
387 return VOIDmode;
390 /* Return true if SET either doesn't set the CC register, or else
391 the source and destination have matching CC modes and that
392 CC mode is at least as constrained as REQ_MODE. */
394 static bool
395 s390_match_ccmode_set (rtx set, enum machine_mode req_mode)
397 enum machine_mode set_mode;
399 gcc_assert (GET_CODE (set) == SET);
401 if (GET_CODE (SET_DEST (set)) != REG || !CC_REGNO_P (REGNO (SET_DEST (set))))
402 return 1;
404 set_mode = GET_MODE (SET_DEST (set));
405 switch (set_mode)
407 case CCSmode:
408 case CCSRmode:
409 case CCUmode:
410 case CCURmode:
411 case CCLmode:
412 case CCL1mode:
413 case CCL2mode:
414 case CCL3mode:
415 case CCT1mode:
416 case CCT2mode:
417 case CCT3mode:
418 if (req_mode != set_mode)
419 return 0;
420 break;
422 case CCZmode:
423 if (req_mode != CCSmode && req_mode != CCUmode && req_mode != CCTmode
424 && req_mode != CCSRmode && req_mode != CCURmode)
425 return 0;
426 break;
428 case CCAPmode:
429 case CCANmode:
430 if (req_mode != CCAmode)
431 return 0;
432 break;
434 default:
435 gcc_unreachable ();
438 return (GET_MODE (SET_SRC (set)) == set_mode);
441 /* Return true if every SET in INSN that sets the CC register
442 has source and destination with matching CC modes and that
443 CC mode is at least as constrained as REQ_MODE.
444 If REQ_MODE is VOIDmode, always return false. */
446 bool
447 s390_match_ccmode (rtx insn, enum machine_mode req_mode)
449 int i;
451 /* s390_tm_ccmode returns VOIDmode to indicate failure. */
452 if (req_mode == VOIDmode)
453 return false;
455 if (GET_CODE (PATTERN (insn)) == SET)
456 return s390_match_ccmode_set (PATTERN (insn), req_mode);
458 if (GET_CODE (PATTERN (insn)) == PARALLEL)
459 for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
461 rtx set = XVECEXP (PATTERN (insn), 0, i);
462 if (GET_CODE (set) == SET)
463 if (!s390_match_ccmode_set (set, req_mode))
464 return false;
467 return true;
470 /* If a test-under-mask instruction can be used to implement
471 (compare (and ... OP1) OP2), return the CC mode required
472 to do that. Otherwise, return VOIDmode.
473 MIXED is true if the instruction can distinguish between
474 CC1 and CC2 for mixed selected bits (TMxx), it is false
475 if the instruction cannot (TM). */
477 enum machine_mode
478 s390_tm_ccmode (rtx op1, rtx op2, bool mixed)
480 int bit0, bit1;
482 /* ??? Fixme: should work on CONST_DOUBLE as well. */
483 if (GET_CODE (op1) != CONST_INT || GET_CODE (op2) != CONST_INT)
484 return VOIDmode;
486 /* Selected bits all zero: CC0.
487 e.g.: int a; if ((a & (16 + 128)) == 0) */
488 if (INTVAL (op2) == 0)
489 return CCTmode;
491 /* Selected bits all one: CC3.
492 e.g.: int a; if ((a & (16 + 128)) == 16 + 128) */
493 if (INTVAL (op2) == INTVAL (op1))
494 return CCT3mode;
496 /* Exactly two bits selected, mixed zeroes and ones: CC1 or CC2. e.g.:
497 int a;
498 if ((a & (16 + 128)) == 16) -> CCT1
499 if ((a & (16 + 128)) == 128) -> CCT2 */
500 if (mixed)
502 bit1 = exact_log2 (INTVAL (op2));
503 bit0 = exact_log2 (INTVAL (op1) ^ INTVAL (op2));
504 if (bit0 != -1 && bit1 != -1)
505 return bit0 > bit1 ? CCT1mode : CCT2mode;
508 return VOIDmode;
511 /* Given a comparison code OP (EQ, NE, etc.) and the operands
512 OP0 and OP1 of a COMPARE, return the mode to be used for the
513 comparison. */
515 enum machine_mode
516 s390_select_ccmode (enum rtx_code code, rtx op0, rtx op1)
518 switch (code)
520 case EQ:
521 case NE:
522 if ((GET_CODE (op0) == NEG || GET_CODE (op0) == ABS)
523 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT)
524 return CCAPmode;
525 if (GET_CODE (op0) == PLUS && GET_CODE (XEXP (op0, 1)) == CONST_INT
526 && CONST_OK_FOR_K (INTVAL (XEXP (op0, 1))))
527 return CCAPmode;
528 if ((GET_CODE (op0) == PLUS || GET_CODE (op0) == MINUS
529 || GET_CODE (op1) == NEG)
530 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT)
531 return CCLmode;
533 if (GET_CODE (op0) == AND)
535 /* Check whether we can potentially do it via TM. */
536 enum machine_mode ccmode;
537 ccmode = s390_tm_ccmode (XEXP (op0, 1), op1, 1);
538 if (ccmode != VOIDmode)
540 /* Relax CCTmode to CCZmode to allow fall-back to AND
541 if that turns out to be beneficial. */
542 return ccmode == CCTmode ? CCZmode : ccmode;
546 if (register_operand (op0, HImode)
547 && GET_CODE (op1) == CONST_INT
548 && (INTVAL (op1) == -1 || INTVAL (op1) == 65535))
549 return CCT3mode;
550 if (register_operand (op0, QImode)
551 && GET_CODE (op1) == CONST_INT
552 && (INTVAL (op1) == -1 || INTVAL (op1) == 255))
553 return CCT3mode;
555 return CCZmode;
557 case LE:
558 case LT:
559 case GE:
560 case GT:
561 /* The only overflow condition of NEG and ABS happens when
562 -INT_MAX is used as parameter, which stays negative. So
563 we have an overflow from a positive value to a negative.
564 Using CCAP mode the resulting cc can be used for comparisons. */
565 if ((GET_CODE (op0) == NEG || GET_CODE (op0) == ABS)
566 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT)
567 return CCAPmode;
569 /* If constants are involved in an add instruction it is possible to use
570 the resulting cc for comparisons with zero. Knowing the sign of the
571 constant the overflow behavior gets predictable. e.g.:
572 int a, b; if ((b = a + c) > 0)
573 with c as a constant value: c < 0 -> CCAN and c >= 0 -> CCAP */
574 if (GET_CODE (op0) == PLUS && GET_CODE (XEXP (op0, 1)) == CONST_INT
575 && CONST_OK_FOR_K (INTVAL (XEXP (op0, 1))))
577 if (INTVAL (XEXP((op0), 1)) < 0)
578 return CCANmode;
579 else
580 return CCAPmode;
582 /* Fall through. */
583 case UNORDERED:
584 case ORDERED:
585 case UNEQ:
586 case UNLE:
587 case UNLT:
588 case UNGE:
589 case UNGT:
590 case LTGT:
591 if ((GET_CODE (op0) == SIGN_EXTEND || GET_CODE (op0) == ZERO_EXTEND)
592 && GET_CODE (op1) != CONST_INT)
593 return CCSRmode;
594 return CCSmode;
596 case LTU:
597 case GEU:
598 if (GET_CODE (op0) == PLUS
599 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT)
600 return CCL1mode;
602 if ((GET_CODE (op0) == SIGN_EXTEND || GET_CODE (op0) == ZERO_EXTEND)
603 && GET_CODE (op1) != CONST_INT)
604 return CCURmode;
605 return CCUmode;
607 case LEU:
608 case GTU:
609 if (GET_CODE (op0) == MINUS
610 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT)
611 return CCL2mode;
613 if ((GET_CODE (op0) == SIGN_EXTEND || GET_CODE (op0) == ZERO_EXTEND)
614 && GET_CODE (op1) != CONST_INT)
615 return CCURmode;
616 return CCUmode;
618 default:
619 gcc_unreachable ();
623 /* Replace the comparison OP0 CODE OP1 by a semantically equivalent one
624 that we can implement more efficiently. */
626 void
627 s390_canonicalize_comparison (enum rtx_code *code, rtx *op0, rtx *op1)
629 /* Convert ZERO_EXTRACT back to AND to enable TM patterns. */
630 if ((*code == EQ || *code == NE)
631 && *op1 == const0_rtx
632 && GET_CODE (*op0) == ZERO_EXTRACT
633 && GET_CODE (XEXP (*op0, 1)) == CONST_INT
634 && GET_CODE (XEXP (*op0, 2)) == CONST_INT
635 && SCALAR_INT_MODE_P (GET_MODE (XEXP (*op0, 0))))
637 rtx inner = XEXP (*op0, 0);
638 HOST_WIDE_INT modesize = GET_MODE_BITSIZE (GET_MODE (inner));
639 HOST_WIDE_INT len = INTVAL (XEXP (*op0, 1));
640 HOST_WIDE_INT pos = INTVAL (XEXP (*op0, 2));
642 if (len > 0 && len < modesize
643 && pos >= 0 && pos + len <= modesize
644 && modesize <= HOST_BITS_PER_WIDE_INT)
646 unsigned HOST_WIDE_INT block;
647 block = ((unsigned HOST_WIDE_INT) 1 << len) - 1;
648 block <<= modesize - pos - len;
650 *op0 = gen_rtx_AND (GET_MODE (inner), inner,
651 gen_int_mode (block, GET_MODE (inner)));
655 /* Narrow AND of memory against immediate to enable TM. */
656 if ((*code == EQ || *code == NE)
657 && *op1 == const0_rtx
658 && GET_CODE (*op0) == AND
659 && GET_CODE (XEXP (*op0, 1)) == CONST_INT
660 && SCALAR_INT_MODE_P (GET_MODE (XEXP (*op0, 0))))
662 rtx inner = XEXP (*op0, 0);
663 rtx mask = XEXP (*op0, 1);
665 /* Ignore paradoxical SUBREGs if all extra bits are masked out. */
666 if (GET_CODE (inner) == SUBREG
667 && SCALAR_INT_MODE_P (GET_MODE (SUBREG_REG (inner)))
668 && (GET_MODE_SIZE (GET_MODE (inner))
669 >= GET_MODE_SIZE (GET_MODE (SUBREG_REG (inner))))
670 && ((INTVAL (mask)
671 & GET_MODE_MASK (GET_MODE (inner))
672 & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (inner))))
673 == 0))
674 inner = SUBREG_REG (inner);
676 /* Do not change volatile MEMs. */
677 if (MEM_P (inner) && !MEM_VOLATILE_P (inner))
679 int part = s390_single_part (XEXP (*op0, 1),
680 GET_MODE (inner), QImode, 0);
681 if (part >= 0)
683 mask = gen_int_mode (s390_extract_part (mask, QImode, 0), QImode);
684 inner = adjust_address_nv (inner, QImode, part);
685 *op0 = gen_rtx_AND (QImode, inner, mask);
690 /* Narrow comparisons against 0xffff to HImode if possible. */
691 if ((*code == EQ || *code == NE)
692 && GET_CODE (*op1) == CONST_INT
693 && INTVAL (*op1) == 0xffff
694 && SCALAR_INT_MODE_P (GET_MODE (*op0))
695 && (nonzero_bits (*op0, GET_MODE (*op0))
696 & ~(unsigned HOST_WIDE_INT) 0xffff) == 0)
698 *op0 = gen_lowpart (HImode, *op0);
699 *op1 = constm1_rtx;
702 /* Remove redundant UNSPEC_CCU_TO_INT conversions if possible. */
703 if (GET_CODE (*op0) == UNSPEC
704 && XINT (*op0, 1) == UNSPEC_CCU_TO_INT
705 && XVECLEN (*op0, 0) == 1
706 && GET_MODE (XVECEXP (*op0, 0, 0)) == CCUmode
707 && GET_CODE (XVECEXP (*op0, 0, 0)) == REG
708 && REGNO (XVECEXP (*op0, 0, 0)) == CC_REGNUM
709 && *op1 == const0_rtx)
711 enum rtx_code new_code = UNKNOWN;
712 switch (*code)
714 case EQ: new_code = EQ; break;
715 case NE: new_code = NE; break;
716 case LT: new_code = GTU; break;
717 case GT: new_code = LTU; break;
718 case LE: new_code = GEU; break;
719 case GE: new_code = LEU; break;
720 default: break;
723 if (new_code != UNKNOWN)
725 *op0 = XVECEXP (*op0, 0, 0);
726 *code = new_code;
730 /* Remove redundant UNSPEC_CCZ_TO_INT conversions if possible. */
731 if (GET_CODE (*op0) == UNSPEC
732 && XINT (*op0, 1) == UNSPEC_CCZ_TO_INT
733 && XVECLEN (*op0, 0) == 1
734 && GET_MODE (XVECEXP (*op0, 0, 0)) == CCZmode
735 && GET_CODE (XVECEXP (*op0, 0, 0)) == REG
736 && REGNO (XVECEXP (*op0, 0, 0)) == CC_REGNUM
737 && *op1 == const0_rtx)
739 enum rtx_code new_code = UNKNOWN;
740 switch (*code)
742 case EQ: new_code = EQ; break;
743 case NE: new_code = NE; break;
744 default: break;
747 if (new_code != UNKNOWN)
749 *op0 = XVECEXP (*op0, 0, 0);
750 *code = new_code;
754 /* Simplify cascaded EQ, NE with const0_rtx. */
755 if ((*code == NE || *code == EQ)
756 && (GET_CODE (*op0) == EQ || GET_CODE (*op0) == NE)
757 && GET_MODE (*op0) == SImode
758 && GET_MODE (XEXP (*op0, 0)) == CCZ1mode
759 && REG_P (XEXP (*op0, 0))
760 && XEXP (*op0, 1) == const0_rtx
761 && *op1 == const0_rtx)
763 if ((*code == EQ && GET_CODE (*op0) == NE)
764 || (*code == NE && GET_CODE (*op0) == EQ))
765 *code = EQ;
766 else
767 *code = NE;
768 *op0 = XEXP (*op0, 0);
771 /* Prefer register over memory as first operand. */
772 if (MEM_P (*op0) && REG_P (*op1))
774 rtx tem = *op0; *op0 = *op1; *op1 = tem;
775 *code = swap_condition (*code);
779 /* Emit a compare instruction suitable to implement the comparison
780 OP0 CODE OP1. Return the correct condition RTL to be placed in
781 the IF_THEN_ELSE of the conditional branch testing the result. */
784 s390_emit_compare (enum rtx_code code, rtx op0, rtx op1)
786 enum machine_mode mode = s390_select_ccmode (code, op0, op1);
787 rtx ret = NULL_RTX;
789 /* Do not output a redundant compare instruction if a compare_and_swap
790 pattern already computed the result and the machine modes are compatible. */
791 if (s390_compare_emitted
792 && (s390_cc_modes_compatible (GET_MODE (s390_compare_emitted), mode)
793 == GET_MODE (s390_compare_emitted)))
794 ret = gen_rtx_fmt_ee (code, VOIDmode, s390_compare_emitted, const0_rtx);
795 else
797 rtx cc = gen_rtx_REG (mode, CC_REGNUM);
799 emit_insn (gen_rtx_SET (VOIDmode, cc, gen_rtx_COMPARE (mode, op0, op1)));
800 ret = gen_rtx_fmt_ee (code, VOIDmode, cc, const0_rtx);
802 s390_compare_emitted = NULL_RTX;
803 return ret;
806 /* Emit a SImode compare and swap instruction setting MEM to NEW if OLD
807 matches CMP.
808 Return the correct condition RTL to be placed in the IF_THEN_ELSE of the
809 conditional branch testing the result. */
811 static rtx
812 s390_emit_compare_and_swap (enum rtx_code code, rtx old, rtx mem, rtx cmp, rtx new)
814 rtx ret;
816 emit_insn (gen_sync_compare_and_swap_ccsi (old, mem, cmp, new));
817 ret = gen_rtx_fmt_ee (code, VOIDmode, s390_compare_emitted, const0_rtx);
819 s390_compare_emitted = NULL_RTX;
821 return ret;
824 /* Emit a jump instruction to TARGET. If COND is NULL_RTX, emit an
825 unconditional jump, else a conditional jump under condition COND. */
827 void
828 s390_emit_jump (rtx target, rtx cond)
830 rtx insn;
832 target = gen_rtx_LABEL_REF (VOIDmode, target);
833 if (cond)
834 target = gen_rtx_IF_THEN_ELSE (VOIDmode, cond, target, pc_rtx);
836 insn = gen_rtx_SET (VOIDmode, pc_rtx, target);
837 emit_jump_insn (insn);
840 /* Return branch condition mask to implement a branch
841 specified by CODE. Return -1 for invalid comparisons. */
844 s390_branch_condition_mask (rtx code)
846 const int CC0 = 1 << 3;
847 const int CC1 = 1 << 2;
848 const int CC2 = 1 << 1;
849 const int CC3 = 1 << 0;
851 gcc_assert (GET_CODE (XEXP (code, 0)) == REG);
852 gcc_assert (REGNO (XEXP (code, 0)) == CC_REGNUM);
853 gcc_assert (XEXP (code, 1) == const0_rtx);
855 switch (GET_MODE (XEXP (code, 0)))
857 case CCZmode:
858 case CCZ1mode:
859 switch (GET_CODE (code))
861 case EQ: return CC0;
862 case NE: return CC1 | CC2 | CC3;
863 default: return -1;
865 break;
867 case CCT1mode:
868 switch (GET_CODE (code))
870 case EQ: return CC1;
871 case NE: return CC0 | CC2 | CC3;
872 default: return -1;
874 break;
876 case CCT2mode:
877 switch (GET_CODE (code))
879 case EQ: return CC2;
880 case NE: return CC0 | CC1 | CC3;
881 default: return -1;
883 break;
885 case CCT3mode:
886 switch (GET_CODE (code))
888 case EQ: return CC3;
889 case NE: return CC0 | CC1 | CC2;
890 default: return -1;
892 break;
894 case CCLmode:
895 switch (GET_CODE (code))
897 case EQ: return CC0 | CC2;
898 case NE: return CC1 | CC3;
899 default: return -1;
901 break;
903 case CCL1mode:
904 switch (GET_CODE (code))
906 case LTU: return CC2 | CC3; /* carry */
907 case GEU: return CC0 | CC1; /* no carry */
908 default: return -1;
910 break;
912 case CCL2mode:
913 switch (GET_CODE (code))
915 case GTU: return CC0 | CC1; /* borrow */
916 case LEU: return CC2 | CC3; /* no borrow */
917 default: return -1;
919 break;
921 case CCL3mode:
922 switch (GET_CODE (code))
924 case EQ: return CC0 | CC2;
925 case NE: return CC1 | CC3;
926 case LTU: return CC1;
927 case GTU: return CC3;
928 case LEU: return CC1 | CC2;
929 case GEU: return CC2 | CC3;
930 default: return -1;
933 case CCUmode:
934 switch (GET_CODE (code))
936 case EQ: return CC0;
937 case NE: return CC1 | CC2 | CC3;
938 case LTU: return CC1;
939 case GTU: return CC2;
940 case LEU: return CC0 | CC1;
941 case GEU: return CC0 | CC2;
942 default: return -1;
944 break;
946 case CCURmode:
947 switch (GET_CODE (code))
949 case EQ: return CC0;
950 case NE: return CC2 | CC1 | CC3;
951 case LTU: return CC2;
952 case GTU: return CC1;
953 case LEU: return CC0 | CC2;
954 case GEU: return CC0 | CC1;
955 default: return -1;
957 break;
959 case CCAPmode:
960 switch (GET_CODE (code))
962 case EQ: return CC0;
963 case NE: return CC1 | CC2 | CC3;
964 case LT: return CC1 | CC3;
965 case GT: return CC2;
966 case LE: return CC0 | CC1 | CC3;
967 case GE: return CC0 | CC2;
968 default: return -1;
970 break;
972 case CCANmode:
973 switch (GET_CODE (code))
975 case EQ: return CC0;
976 case NE: return CC1 | CC2 | CC3;
977 case LT: return CC1;
978 case GT: return CC2 | CC3;
979 case LE: return CC0 | CC1;
980 case GE: return CC0 | CC2 | CC3;
981 default: return -1;
983 break;
985 case CCSmode:
986 switch (GET_CODE (code))
988 case EQ: return CC0;
989 case NE: return CC1 | CC2 | CC3;
990 case LT: return CC1;
991 case GT: return CC2;
992 case LE: return CC0 | CC1;
993 case GE: return CC0 | CC2;
994 case UNORDERED: return CC3;
995 case ORDERED: return CC0 | CC1 | CC2;
996 case UNEQ: return CC0 | CC3;
997 case UNLT: return CC1 | CC3;
998 case UNGT: return CC2 | CC3;
999 case UNLE: return CC0 | CC1 | CC3;
1000 case UNGE: return CC0 | CC2 | CC3;
1001 case LTGT: return CC1 | CC2;
1002 default: return -1;
1004 break;
1006 case CCSRmode:
1007 switch (GET_CODE (code))
1009 case EQ: return CC0;
1010 case NE: return CC2 | CC1 | CC3;
1011 case LT: return CC2;
1012 case GT: return CC1;
1013 case LE: return CC0 | CC2;
1014 case GE: return CC0 | CC1;
1015 case UNORDERED: return CC3;
1016 case ORDERED: return CC0 | CC2 | CC1;
1017 case UNEQ: return CC0 | CC3;
1018 case UNLT: return CC2 | CC3;
1019 case UNGT: return CC1 | CC3;
1020 case UNLE: return CC0 | CC2 | CC3;
1021 case UNGE: return CC0 | CC1 | CC3;
1022 case LTGT: return CC2 | CC1;
1023 default: return -1;
1025 break;
1027 default:
1028 return -1;
1032 /* If INV is false, return assembler mnemonic string to implement
1033 a branch specified by CODE. If INV is true, return mnemonic
1034 for the corresponding inverted branch. */
1036 static const char *
1037 s390_branch_condition_mnemonic (rtx code, int inv)
1039 static const char *const mnemonic[16] =
1041 NULL, "o", "h", "nle",
1042 "l", "nhe", "lh", "ne",
1043 "e", "nlh", "he", "nl",
1044 "le", "nh", "no", NULL
1047 int mask = s390_branch_condition_mask (code);
1048 gcc_assert (mask >= 0);
1050 if (inv)
1051 mask ^= 15;
1053 gcc_assert (mask >= 1 && mask <= 14);
1055 return mnemonic[mask];
1058 /* Return the part of op which has a value different from def.
1059 The size of the part is determined by mode.
1060 Use this function only if you already know that op really
1061 contains such a part. */
1063 unsigned HOST_WIDE_INT
1064 s390_extract_part (rtx op, enum machine_mode mode, int def)
1066 unsigned HOST_WIDE_INT value = 0;
1067 int max_parts = HOST_BITS_PER_WIDE_INT / GET_MODE_BITSIZE (mode);
1068 int part_bits = GET_MODE_BITSIZE (mode);
1069 unsigned HOST_WIDE_INT part_mask
1070 = ((unsigned HOST_WIDE_INT)1 << part_bits) - 1;
1071 int i;
1073 for (i = 0; i < max_parts; i++)
1075 if (i == 0)
1076 value = (unsigned HOST_WIDE_INT) INTVAL (op);
1077 else
1078 value >>= part_bits;
1080 if ((value & part_mask) != (def & part_mask))
1081 return value & part_mask;
1084 gcc_unreachable ();
1087 /* If OP is an integer constant of mode MODE with exactly one
1088 part of mode PART_MODE unequal to DEF, return the number of that
1089 part. Otherwise, return -1. */
1092 s390_single_part (rtx op,
1093 enum machine_mode mode,
1094 enum machine_mode part_mode,
1095 int def)
1097 unsigned HOST_WIDE_INT value = 0;
1098 int n_parts = GET_MODE_SIZE (mode) / GET_MODE_SIZE (part_mode);
1099 unsigned HOST_WIDE_INT part_mask
1100 = ((unsigned HOST_WIDE_INT)1 << GET_MODE_BITSIZE (part_mode)) - 1;
1101 int i, part = -1;
1103 if (GET_CODE (op) != CONST_INT)
1104 return -1;
1106 for (i = 0; i < n_parts; i++)
1108 if (i == 0)
1109 value = (unsigned HOST_WIDE_INT) INTVAL (op);
1110 else
1111 value >>= GET_MODE_BITSIZE (part_mode);
1113 if ((value & part_mask) != (def & part_mask))
1115 if (part != -1)
1116 return -1;
1117 else
1118 part = i;
1121 return part == -1 ? -1 : n_parts - 1 - part;
1124 /* Check whether we can (and want to) split a double-word
1125 move in mode MODE from SRC to DST into two single-word
1126 moves, moving the subword FIRST_SUBWORD first. */
1128 bool
1129 s390_split_ok_p (rtx dst, rtx src, enum machine_mode mode, int first_subword)
1131 /* Floating point registers cannot be split. */
1132 if (FP_REG_P (src) || FP_REG_P (dst))
1133 return false;
1135 /* We don't need to split if operands are directly accessible. */
1136 if (s_operand (src, mode) || s_operand (dst, mode))
1137 return false;
1139 /* Non-offsettable memory references cannot be split. */
1140 if ((GET_CODE (src) == MEM && !offsettable_memref_p (src))
1141 || (GET_CODE (dst) == MEM && !offsettable_memref_p (dst)))
1142 return false;
1144 /* Moving the first subword must not clobber a register
1145 needed to move the second subword. */
1146 if (register_operand (dst, mode))
1148 rtx subreg = operand_subword (dst, first_subword, 0, mode);
1149 if (reg_overlap_mentioned_p (subreg, src))
1150 return false;
1153 return true;
1156 /* Return true if it can be proven that [MEM1, MEM1 + SIZE]
1157 and [MEM2, MEM2 + SIZE] do overlap and false
1158 otherwise. */
1160 bool
1161 s390_overlap_p (rtx mem1, rtx mem2, HOST_WIDE_INT size)
1163 rtx addr1, addr2, addr_delta;
1164 HOST_WIDE_INT delta;
1166 if (GET_CODE (mem1) != MEM || GET_CODE (mem2) != MEM)
1167 return true;
1169 if (size == 0)
1170 return false;
1172 addr1 = XEXP (mem1, 0);
1173 addr2 = XEXP (mem2, 0);
1175 addr_delta = simplify_binary_operation (MINUS, Pmode, addr2, addr1);
1177 /* This overlapping check is used by peepholes merging memory block operations.
1178 Overlapping operations would otherwise be recognized by the S/390 hardware
1179 and would fall back to a slower implementation. Allowing overlapping
1180 operations would lead to slow code but not to wrong code. Therefore we are
1181 somewhat optimistic if we cannot prove that the memory blocks are
1182 overlapping.
1183 That's why we return false here although this may accept operations on
1184 overlapping memory areas. */
1185 if (!addr_delta || GET_CODE (addr_delta) != CONST_INT)
1186 return false;
1188 delta = INTVAL (addr_delta);
1190 if (delta == 0
1191 || (delta > 0 && delta < size)
1192 || (delta < 0 && -delta < size))
1193 return true;
1195 return false;
1198 /* Check whether the address of memory reference MEM2 equals exactly
1199 the address of memory reference MEM1 plus DELTA. Return true if
1200 we can prove this to be the case, false otherwise. */
1202 bool
1203 s390_offset_p (rtx mem1, rtx mem2, rtx delta)
1205 rtx addr1, addr2, addr_delta;
1207 if (GET_CODE (mem1) != MEM || GET_CODE (mem2) != MEM)
1208 return false;
1210 addr1 = XEXP (mem1, 0);
1211 addr2 = XEXP (mem2, 0);
1213 addr_delta = simplify_binary_operation (MINUS, Pmode, addr2, addr1);
1214 if (!addr_delta || !rtx_equal_p (addr_delta, delta))
1215 return false;
1217 return true;
1220 /* Expand logical operator CODE in mode MODE with operands OPERANDS. */
1222 void
1223 s390_expand_logical_operator (enum rtx_code code, enum machine_mode mode,
1224 rtx *operands)
1226 enum machine_mode wmode = mode;
1227 rtx dst = operands[0];
1228 rtx src1 = operands[1];
1229 rtx src2 = operands[2];
1230 rtx op, clob, tem;
1232 /* If we cannot handle the operation directly, use a temp register. */
1233 if (!s390_logical_operator_ok_p (operands))
1234 dst = gen_reg_rtx (mode);
1236 /* QImode and HImode patterns make sense only if we have a destination
1237 in memory. Otherwise perform the operation in SImode. */
1238 if ((mode == QImode || mode == HImode) && GET_CODE (dst) != MEM)
1239 wmode = SImode;
1241 /* Widen operands if required. */
1242 if (mode != wmode)
1244 if (GET_CODE (dst) == SUBREG
1245 && (tem = simplify_subreg (wmode, dst, mode, 0)) != 0)
1246 dst = tem;
1247 else if (REG_P (dst))
1248 dst = gen_rtx_SUBREG (wmode, dst, 0);
1249 else
1250 dst = gen_reg_rtx (wmode);
1252 if (GET_CODE (src1) == SUBREG
1253 && (tem = simplify_subreg (wmode, src1, mode, 0)) != 0)
1254 src1 = tem;
1255 else if (GET_MODE (src1) != VOIDmode)
1256 src1 = gen_rtx_SUBREG (wmode, force_reg (mode, src1), 0);
1258 if (GET_CODE (src2) == SUBREG
1259 && (tem = simplify_subreg (wmode, src2, mode, 0)) != 0)
1260 src2 = tem;
1261 else if (GET_MODE (src2) != VOIDmode)
1262 src2 = gen_rtx_SUBREG (wmode, force_reg (mode, src2), 0);
1265 /* Emit the instruction. */
1266 op = gen_rtx_SET (VOIDmode, dst, gen_rtx_fmt_ee (code, wmode, src1, src2));
1267 clob = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (CCmode, CC_REGNUM));
1268 emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, op, clob)));
1270 /* Fix up the destination if needed. */
1271 if (dst != operands[0])
1272 emit_move_insn (operands[0], gen_lowpart (mode, dst));
1275 /* Check whether OPERANDS are OK for a logical operation (AND, IOR, XOR). */
1277 bool
1278 s390_logical_operator_ok_p (rtx *operands)
1280 /* If the destination operand is in memory, it needs to coincide
1281 with one of the source operands. After reload, it has to be
1282 the first source operand. */
1283 if (GET_CODE (operands[0]) == MEM)
1284 return rtx_equal_p (operands[0], operands[1])
1285 || (!reload_completed && rtx_equal_p (operands[0], operands[2]));
1287 return true;
1290 /* Narrow logical operation CODE of memory operand MEMOP with immediate
1291 operand IMMOP to switch from SS to SI type instructions. */
1293 void
1294 s390_narrow_logical_operator (enum rtx_code code, rtx *memop, rtx *immop)
1296 int def = code == AND ? -1 : 0;
1297 HOST_WIDE_INT mask;
1298 int part;
1300 gcc_assert (GET_CODE (*memop) == MEM);
1301 gcc_assert (!MEM_VOLATILE_P (*memop));
1303 mask = s390_extract_part (*immop, QImode, def);
1304 part = s390_single_part (*immop, GET_MODE (*memop), QImode, def);
1305 gcc_assert (part >= 0);
1307 *memop = adjust_address (*memop, QImode, part);
1308 *immop = gen_int_mode (mask, QImode);
1312 /* How to allocate a 'struct machine_function'. */
1314 static struct machine_function *
1315 s390_init_machine_status (void)
1317 return ggc_alloc_cleared (sizeof (struct machine_function));
1320 /* Change optimizations to be performed, depending on the
1321 optimization level.
1323 LEVEL is the optimization level specified; 2 if `-O2' is
1324 specified, 1 if `-O' is specified, and 0 if neither is specified.
1326 SIZE is nonzero if `-Os' is specified and zero otherwise. */
1328 void
1329 optimization_options (int level ATTRIBUTE_UNUSED, int size ATTRIBUTE_UNUSED)
1331 /* ??? There are apparently still problems with -fcaller-saves. */
1332 flag_caller_saves = 0;
1334 /* By default, always emit DWARF-2 unwind info. This allows debugging
1335 without maintaining a stack frame back-chain. */
1336 flag_asynchronous_unwind_tables = 1;
1338 /* Use MVCLE instructions to decrease code size if requested. */
1339 if (size != 0)
1340 target_flags |= MASK_MVCLE;
1343 /* Return true if ARG is the name of a processor. Set *TYPE and *FLAGS
1344 to the associated processor_type and processor_flags if so. */
1346 static bool
1347 s390_handle_arch_option (const char *arg,
1348 enum processor_type *type,
1349 enum processor_flags *flags)
1351 static struct pta
1353 const char *const name; /* processor name or nickname. */
1354 const enum processor_type processor;
1355 const enum processor_flags flags;
1357 const processor_alias_table[] =
1359 {"g5", PROCESSOR_9672_G5, PF_IEEE_FLOAT},
1360 {"g6", PROCESSOR_9672_G6, PF_IEEE_FLOAT},
1361 {"z900", PROCESSOR_2064_Z900, PF_IEEE_FLOAT | PF_ZARCH},
1362 {"z990", PROCESSOR_2084_Z990, PF_IEEE_FLOAT | PF_ZARCH
1363 | PF_LONG_DISPLACEMENT},
1364 {"z9-109", PROCESSOR_2094_Z9_109, PF_IEEE_FLOAT | PF_ZARCH
1365 | PF_LONG_DISPLACEMENT | PF_EXTIMM},
1366 {"z9-ec", PROCESSOR_2094_Z9_109, PF_IEEE_FLOAT | PF_ZARCH
1367 | PF_LONG_DISPLACEMENT | PF_EXTIMM | PF_DFP },
1369 size_t i;
1371 for (i = 0; i < ARRAY_SIZE (processor_alias_table); i++)
1372 if (strcmp (arg, processor_alias_table[i].name) == 0)
1374 *type = processor_alias_table[i].processor;
1375 *flags = processor_alias_table[i].flags;
1376 return true;
1378 return false;
1381 /* Implement TARGET_HANDLE_OPTION. */
1383 static bool
1384 s390_handle_option (size_t code, const char *arg, int value ATTRIBUTE_UNUSED)
1386 switch (code)
1388 case OPT_march_:
1389 return s390_handle_arch_option (arg, &s390_arch, &s390_arch_flags);
1391 case OPT_mstack_guard_:
1392 if (sscanf (arg, HOST_WIDE_INT_PRINT_DEC, &s390_stack_guard) != 1)
1393 return false;
1394 if (exact_log2 (s390_stack_guard) == -1)
1395 error ("stack guard value must be an exact power of 2");
1396 return true;
1398 case OPT_mstack_size_:
1399 if (sscanf (arg, HOST_WIDE_INT_PRINT_DEC, &s390_stack_size) != 1)
1400 return false;
1401 if (exact_log2 (s390_stack_size) == -1)
1402 error ("stack size must be an exact power of 2");
1403 return true;
1405 case OPT_mtune_:
1406 return s390_handle_arch_option (arg, &s390_tune, &s390_tune_flags);
1408 case OPT_mwarn_framesize_:
1409 return sscanf (arg, HOST_WIDE_INT_PRINT_DEC, &s390_warn_framesize) == 1;
1411 default:
1412 return true;
1416 void
1417 override_options (void)
1419 /* Set up function hooks. */
1420 init_machine_status = s390_init_machine_status;
1422 /* Architecture mode defaults according to ABI. */
1423 if (!(target_flags_explicit & MASK_ZARCH))
1425 if (TARGET_64BIT)
1426 target_flags |= MASK_ZARCH;
1427 else
1428 target_flags &= ~MASK_ZARCH;
1431 /* Determine processor architectural level. */
1432 if (!s390_arch_string)
1434 s390_arch_string = TARGET_ZARCH? "z900" : "g5";
1435 s390_handle_arch_option (s390_arch_string, &s390_arch, &s390_arch_flags);
1438 /* Determine processor to tune for. */
1439 if (s390_tune == PROCESSOR_max)
1441 s390_tune = s390_arch;
1442 s390_tune_flags = s390_arch_flags;
1445 /* Sanity checks. */
1446 if (TARGET_ZARCH && !TARGET_CPU_ZARCH)
1447 error ("z/Architecture mode not supported on %s", s390_arch_string);
1448 if (TARGET_64BIT && !TARGET_ZARCH)
1449 error ("64-bit ABI not supported in ESA/390 mode");
1451 if (TARGET_HARD_DFP && !TARGET_DFP)
1453 if (target_flags_explicit & MASK_HARD_DFP)
1455 if (!TARGET_CPU_DFP)
1456 error ("Hardware decimal floating point instructions"
1457 " not available on %s", s390_arch_string);
1458 if (!TARGET_ZARCH)
1459 error ("Hardware decimal floating point instructions"
1460 " not available in ESA/390 mode");
1462 else
1463 target_flags &= ~MASK_HARD_DFP;
1466 if ((target_flags_explicit & MASK_SOFT_FLOAT) && TARGET_SOFT_FLOAT)
1468 if ((target_flags_explicit & MASK_HARD_DFP) && TARGET_HARD_DFP)
1469 error ("-mhard-dfp can't be used in conjunction with -msoft-float");
1471 target_flags &= ~MASK_HARD_DFP;
1474 /* Set processor cost function. */
1475 if (s390_tune == PROCESSOR_2094_Z9_109)
1476 s390_cost = &z9_109_cost;
1477 else if (s390_tune == PROCESSOR_2084_Z990)
1478 s390_cost = &z990_cost;
1479 else
1480 s390_cost = &z900_cost;
1482 if (TARGET_BACKCHAIN && TARGET_PACKED_STACK && TARGET_HARD_FLOAT)
1483 error ("-mbackchain -mpacked-stack -mhard-float are not supported "
1484 "in combination");
1486 if (s390_stack_size)
1488 if (s390_stack_guard >= s390_stack_size)
1489 error ("stack size must be greater than the stack guard value");
1490 else if (s390_stack_size > 1 << 16)
1491 error ("stack size must not be greater than 64k");
1493 else if (s390_stack_guard)
1494 error ("-mstack-guard implies use of -mstack-size");
1496 #ifdef TARGET_DEFAULT_LONG_DOUBLE_128
1497 if (!(target_flags_explicit & MASK_LONG_DOUBLE_128))
1498 target_flags |= MASK_LONG_DOUBLE_128;
1499 #endif
1502 /* Map for smallest class containing reg regno. */
1504 const enum reg_class regclass_map[FIRST_PSEUDO_REGISTER] =
1505 { GENERAL_REGS, ADDR_REGS, ADDR_REGS, ADDR_REGS,
1506 ADDR_REGS, ADDR_REGS, ADDR_REGS, ADDR_REGS,
1507 ADDR_REGS, ADDR_REGS, ADDR_REGS, ADDR_REGS,
1508 ADDR_REGS, ADDR_REGS, ADDR_REGS, ADDR_REGS,
1509 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
1510 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
1511 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
1512 FP_REGS, FP_REGS, FP_REGS, FP_REGS,
1513 ADDR_REGS, CC_REGS, ADDR_REGS, ADDR_REGS,
1514 ACCESS_REGS, ACCESS_REGS
1517 /* Return attribute type of insn. */
1519 static enum attr_type
1520 s390_safe_attr_type (rtx insn)
1522 if (recog_memoized (insn) >= 0)
1523 return get_attr_type (insn);
1524 else
1525 return TYPE_NONE;
1528 /* Return true if DISP is a valid short displacement. */
1530 static bool
1531 s390_short_displacement (rtx disp)
1533 /* No displacement is OK. */
1534 if (!disp)
1535 return true;
1537 /* Integer displacement in range. */
1538 if (GET_CODE (disp) == CONST_INT)
1539 return INTVAL (disp) >= 0 && INTVAL (disp) < 4096;
1541 /* GOT offset is not OK, the GOT can be large. */
1542 if (GET_CODE (disp) == CONST
1543 && GET_CODE (XEXP (disp, 0)) == UNSPEC
1544 && (XINT (XEXP (disp, 0), 1) == UNSPEC_GOT
1545 || XINT (XEXP (disp, 0), 1) == UNSPEC_GOTNTPOFF))
1546 return false;
1548 /* All other symbolic constants are literal pool references,
1549 which are OK as the literal pool must be small. */
1550 if (GET_CODE (disp) == CONST)
1551 return true;
1553 return false;
1556 /* Decompose a RTL expression ADDR for a memory address into
1557 its components, returned in OUT.
1559 Returns false if ADDR is not a valid memory address, true
1560 otherwise. If OUT is NULL, don't return the components,
1561 but check for validity only.
1563 Note: Only addresses in canonical form are recognized.
1564 LEGITIMIZE_ADDRESS should convert non-canonical forms to the
1565 canonical form so that they will be recognized. */
1567 static int
1568 s390_decompose_address (rtx addr, struct s390_address *out)
1570 HOST_WIDE_INT offset = 0;
1571 rtx base = NULL_RTX;
1572 rtx indx = NULL_RTX;
1573 rtx disp = NULL_RTX;
1574 rtx orig_disp;
1575 bool pointer = false;
1576 bool base_ptr = false;
1577 bool indx_ptr = false;
1578 bool literal_pool = false;
1580 /* We may need to substitute the literal pool base register into the address
1581 below. However, at this point we do not know which register is going to
1582 be used as base, so we substitute the arg pointer register. This is going
1583 to be treated as holding a pointer below -- it shouldn't be used for any
1584 other purpose. */
1585 rtx fake_pool_base = gen_rtx_REG (Pmode, ARG_POINTER_REGNUM);
1587 /* Decompose address into base + index + displacement. */
1589 if (GET_CODE (addr) == REG || GET_CODE (addr) == UNSPEC)
1590 base = addr;
1592 else if (GET_CODE (addr) == PLUS)
1594 rtx op0 = XEXP (addr, 0);
1595 rtx op1 = XEXP (addr, 1);
1596 enum rtx_code code0 = GET_CODE (op0);
1597 enum rtx_code code1 = GET_CODE (op1);
1599 if (code0 == REG || code0 == UNSPEC)
1601 if (code1 == REG || code1 == UNSPEC)
1603 indx = op0; /* index + base */
1604 base = op1;
1607 else
1609 base = op0; /* base + displacement */
1610 disp = op1;
1614 else if (code0 == PLUS)
1616 indx = XEXP (op0, 0); /* index + base + disp */
1617 base = XEXP (op0, 1);
1618 disp = op1;
1621 else
1623 return false;
1627 else
1628 disp = addr; /* displacement */
1630 /* Extract integer part of displacement. */
1631 orig_disp = disp;
1632 if (disp)
1634 if (GET_CODE (disp) == CONST_INT)
1636 offset = INTVAL (disp);
1637 disp = NULL_RTX;
1639 else if (GET_CODE (disp) == CONST
1640 && GET_CODE (XEXP (disp, 0)) == PLUS
1641 && GET_CODE (XEXP (XEXP (disp, 0), 1)) == CONST_INT)
1643 offset = INTVAL (XEXP (XEXP (disp, 0), 1));
1644 disp = XEXP (XEXP (disp, 0), 0);
1648 /* Strip off CONST here to avoid special case tests later. */
1649 if (disp && GET_CODE (disp) == CONST)
1650 disp = XEXP (disp, 0);
1652 /* We can convert literal pool addresses to
1653 displacements by basing them off the base register. */
1654 if (disp && GET_CODE (disp) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (disp))
1656 /* Either base or index must be free to hold the base register. */
1657 if (!base)
1658 base = fake_pool_base, literal_pool = true;
1659 else if (!indx)
1660 indx = fake_pool_base, literal_pool = true;
1661 else
1662 return false;
1664 /* Mark up the displacement. */
1665 disp = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, disp),
1666 UNSPEC_LTREL_OFFSET);
1669 /* Validate base register. */
1670 if (base)
1672 if (GET_CODE (base) == UNSPEC)
1673 switch (XINT (base, 1))
1675 case UNSPEC_LTREF:
1676 if (!disp)
1677 disp = gen_rtx_UNSPEC (Pmode,
1678 gen_rtvec (1, XVECEXP (base, 0, 0)),
1679 UNSPEC_LTREL_OFFSET);
1680 else
1681 return false;
1683 base = XVECEXP (base, 0, 1);
1684 break;
1686 case UNSPEC_LTREL_BASE:
1687 if (XVECLEN (base, 0) == 1)
1688 base = fake_pool_base, literal_pool = true;
1689 else
1690 base = XVECEXP (base, 0, 1);
1691 break;
1693 default:
1694 return false;
1697 if (!REG_P (base)
1698 || (GET_MODE (base) != SImode
1699 && GET_MODE (base) != Pmode))
1700 return false;
1702 if (REGNO (base) == STACK_POINTER_REGNUM
1703 || REGNO (base) == FRAME_POINTER_REGNUM
1704 || ((reload_completed || reload_in_progress)
1705 && frame_pointer_needed
1706 && REGNO (base) == HARD_FRAME_POINTER_REGNUM)
1707 || REGNO (base) == ARG_POINTER_REGNUM
1708 || (flag_pic
1709 && REGNO (base) == PIC_OFFSET_TABLE_REGNUM))
1710 pointer = base_ptr = true;
1712 if ((reload_completed || reload_in_progress)
1713 && base == cfun->machine->base_reg)
1714 pointer = base_ptr = literal_pool = true;
1717 /* Validate index register. */
1718 if (indx)
1720 if (GET_CODE (indx) == UNSPEC)
1721 switch (XINT (indx, 1))
1723 case UNSPEC_LTREF:
1724 if (!disp)
1725 disp = gen_rtx_UNSPEC (Pmode,
1726 gen_rtvec (1, XVECEXP (indx, 0, 0)),
1727 UNSPEC_LTREL_OFFSET);
1728 else
1729 return false;
1731 indx = XVECEXP (indx, 0, 1);
1732 break;
1734 case UNSPEC_LTREL_BASE:
1735 if (XVECLEN (indx, 0) == 1)
1736 indx = fake_pool_base, literal_pool = true;
1737 else
1738 indx = XVECEXP (indx, 0, 1);
1739 break;
1741 default:
1742 return false;
1745 if (!REG_P (indx)
1746 || (GET_MODE (indx) != SImode
1747 && GET_MODE (indx) != Pmode))
1748 return false;
1750 if (REGNO (indx) == STACK_POINTER_REGNUM
1751 || REGNO (indx) == FRAME_POINTER_REGNUM
1752 || ((reload_completed || reload_in_progress)
1753 && frame_pointer_needed
1754 && REGNO (indx) == HARD_FRAME_POINTER_REGNUM)
1755 || REGNO (indx) == ARG_POINTER_REGNUM
1756 || (flag_pic
1757 && REGNO (indx) == PIC_OFFSET_TABLE_REGNUM))
1758 pointer = indx_ptr = true;
1760 if ((reload_completed || reload_in_progress)
1761 && indx == cfun->machine->base_reg)
1762 pointer = indx_ptr = literal_pool = true;
1765 /* Prefer to use pointer as base, not index. */
1766 if (base && indx && !base_ptr
1767 && (indx_ptr || (!REG_POINTER (base) && REG_POINTER (indx))))
1769 rtx tmp = base;
1770 base = indx;
1771 indx = tmp;
1774 /* Validate displacement. */
1775 if (!disp)
1777 /* If virtual registers are involved, the displacement will change later
1778 anyway as the virtual registers get eliminated. This could make a
1779 valid displacement invalid, but it is more likely to make an invalid
1780 displacement valid, because we sometimes access the register save area
1781 via negative offsets to one of those registers.
1782 Thus we don't check the displacement for validity here. If after
1783 elimination the displacement turns out to be invalid after all,
1784 this is fixed up by reload in any case. */
1785 if (base != arg_pointer_rtx
1786 && indx != arg_pointer_rtx
1787 && base != return_address_pointer_rtx
1788 && indx != return_address_pointer_rtx
1789 && base != frame_pointer_rtx
1790 && indx != frame_pointer_rtx
1791 && base != virtual_stack_vars_rtx
1792 && indx != virtual_stack_vars_rtx)
1793 if (!DISP_IN_RANGE (offset))
1794 return false;
1796 else
1798 /* All the special cases are pointers. */
1799 pointer = true;
1801 /* In the small-PIC case, the linker converts @GOT
1802 and @GOTNTPOFF offsets to possible displacements. */
1803 if (GET_CODE (disp) == UNSPEC
1804 && (XINT (disp, 1) == UNSPEC_GOT
1805 || XINT (disp, 1) == UNSPEC_GOTNTPOFF)
1806 && flag_pic == 1)
1811 /* Accept chunkified literal pool symbol references. */
1812 else if (cfun && cfun->machine
1813 && cfun->machine->decomposed_literal_pool_addresses_ok_p
1814 && GET_CODE (disp) == MINUS
1815 && GET_CODE (XEXP (disp, 0)) == LABEL_REF
1816 && GET_CODE (XEXP (disp, 1)) == LABEL_REF)
1821 /* Accept literal pool references. */
1822 else if (GET_CODE (disp) == UNSPEC
1823 && XINT (disp, 1) == UNSPEC_LTREL_OFFSET)
1825 orig_disp = gen_rtx_CONST (Pmode, disp);
1826 if (offset)
1828 /* If we have an offset, make sure it does not
1829 exceed the size of the constant pool entry. */
1830 rtx sym = XVECEXP (disp, 0, 0);
1831 if (offset >= GET_MODE_SIZE (get_pool_mode (sym)))
1832 return false;
1834 orig_disp = plus_constant (orig_disp, offset);
1838 else
1839 return false;
1842 if (!base && !indx)
1843 pointer = true;
1845 if (out)
1847 out->base = base;
1848 out->indx = indx;
1849 out->disp = orig_disp;
1850 out->pointer = pointer;
1851 out->literal_pool = literal_pool;
1854 return true;
1857 /* Decompose a RTL expression OP for a shift count into its components,
1858 and return the base register in BASE and the offset in OFFSET.
1860 Return true if OP is a valid shift count, false if not. */
1862 bool
1863 s390_decompose_shift_count (rtx op, rtx *base, HOST_WIDE_INT *offset)
1865 HOST_WIDE_INT off = 0;
1867 /* We can have an integer constant, an address register,
1868 or a sum of the two. */
1869 if (GET_CODE (op) == CONST_INT)
1871 off = INTVAL (op);
1872 op = NULL_RTX;
1874 if (op && GET_CODE (op) == PLUS && GET_CODE (XEXP (op, 1)) == CONST_INT)
1876 off = INTVAL (XEXP (op, 1));
1877 op = XEXP (op, 0);
1879 while (op && GET_CODE (op) == SUBREG)
1880 op = SUBREG_REG (op);
1882 if (op && GET_CODE (op) != REG)
1883 return false;
1885 if (offset)
1886 *offset = off;
1887 if (base)
1888 *base = op;
1890 return true;
1894 /* Return true if CODE is a valid address without index. */
1896 bool
1897 s390_legitimate_address_without_index_p (rtx op)
1899 struct s390_address addr;
1901 if (!s390_decompose_address (XEXP (op, 0), &addr))
1902 return false;
1903 if (addr.indx)
1904 return false;
1906 return true;
1910 /* Evaluates constraint strings described by the regular expression
1911 ([A|B](Q|R|S|T))|U|W and returns 1 if OP is a valid operand for the
1912 constraint given in STR, or 0 else. */
1915 s390_mem_constraint (const char *str, rtx op)
1917 struct s390_address addr;
1918 char c = str[0];
1920 /* Check for offsettable variants of memory constraints. */
1921 if (c == 'A')
1923 /* Only accept non-volatile MEMs. */
1924 if (!MEM_P (op) || MEM_VOLATILE_P (op))
1925 return 0;
1927 if ((reload_completed || reload_in_progress)
1928 ? !offsettable_memref_p (op) : !offsettable_nonstrict_memref_p (op))
1929 return 0;
1931 c = str[1];
1934 /* Check for non-literal-pool variants of memory constraints. */
1935 else if (c == 'B')
1937 if (GET_CODE (op) != MEM)
1938 return 0;
1939 if (!s390_decompose_address (XEXP (op, 0), &addr))
1940 return 0;
1941 if (addr.literal_pool)
1942 return 0;
1944 c = str[1];
1947 switch (c)
1949 case 'Q':
1950 if (GET_CODE (op) != MEM)
1951 return 0;
1952 if (!s390_decompose_address (XEXP (op, 0), &addr))
1953 return 0;
1954 if (addr.indx)
1955 return 0;
1957 if (TARGET_LONG_DISPLACEMENT)
1959 if (!s390_short_displacement (addr.disp))
1960 return 0;
1962 break;
1964 case 'R':
1965 if (GET_CODE (op) != MEM)
1966 return 0;
1968 if (TARGET_LONG_DISPLACEMENT)
1970 if (!s390_decompose_address (XEXP (op, 0), &addr))
1971 return 0;
1972 if (!s390_short_displacement (addr.disp))
1973 return 0;
1975 break;
1977 case 'S':
1978 if (!TARGET_LONG_DISPLACEMENT)
1979 return 0;
1980 if (GET_CODE (op) != MEM)
1981 return 0;
1982 if (!s390_decompose_address (XEXP (op, 0), &addr))
1983 return 0;
1984 if (addr.indx)
1985 return 0;
1986 if (s390_short_displacement (addr.disp))
1987 return 0;
1988 break;
1990 case 'T':
1991 if (!TARGET_LONG_DISPLACEMENT)
1992 return 0;
1993 if (GET_CODE (op) != MEM)
1994 return 0;
1995 /* Any invalid address here will be fixed up by reload,
1996 so accept it for the most generic constraint. */
1997 if (s390_decompose_address (XEXP (op, 0), &addr)
1998 && s390_short_displacement (addr.disp))
1999 return 0;
2000 break;
2002 case 'U':
2003 if (TARGET_LONG_DISPLACEMENT)
2005 if (!s390_decompose_address (op, &addr))
2006 return 0;
2007 if (!s390_short_displacement (addr.disp))
2008 return 0;
2010 break;
2012 case 'W':
2013 if (!TARGET_LONG_DISPLACEMENT)
2014 return 0;
2015 /* Any invalid address here will be fixed up by reload,
2016 so accept it for the most generic constraint. */
2017 if (s390_decompose_address (op, &addr)
2018 && s390_short_displacement (addr.disp))
2019 return 0;
2020 break;
2022 case 'Y':
2023 /* Simply check for the basic form of a shift count. Reload will
2024 take care of making sure we have a proper base register. */
2025 if (!s390_decompose_shift_count (op, NULL, NULL))
2026 return 0;
2027 break;
2029 default:
2030 return 0;
2033 return 1;
2038 /* Evaluates constraint strings starting with letter O. Input
2039 parameter C is the second letter following the "O" in the constraint
2040 string. Returns 1 if VALUE meets the respective constraint and 0
2041 otherwise. */
2044 s390_O_constraint_str (const char c, HOST_WIDE_INT value)
2046 if (!TARGET_EXTIMM)
2047 return 0;
2049 switch (c)
2051 case 's':
2052 return trunc_int_for_mode (value, SImode) == value;
2054 case 'p':
2055 return value == 0
2056 || s390_single_part (GEN_INT (value), DImode, SImode, 0) == 1;
2058 case 'n':
2059 return s390_single_part (GEN_INT (value - 1), DImode, SImode, -1) == 1;
2061 default:
2062 gcc_unreachable ();
2067 /* Evaluates constraint strings starting with letter N. Parameter STR
2068 contains the letters following letter "N" in the constraint string.
2069 Returns true if VALUE matches the constraint. */
2072 s390_N_constraint_str (const char *str, HOST_WIDE_INT value)
2074 enum machine_mode mode, part_mode;
2075 int def;
2076 int part, part_goal;
2079 if (str[0] == 'x')
2080 part_goal = -1;
2081 else
2082 part_goal = str[0] - '0';
2084 switch (str[1])
2086 case 'Q':
2087 part_mode = QImode;
2088 break;
2089 case 'H':
2090 part_mode = HImode;
2091 break;
2092 case 'S':
2093 part_mode = SImode;
2094 break;
2095 default:
2096 return 0;
2099 switch (str[2])
2101 case 'H':
2102 mode = HImode;
2103 break;
2104 case 'S':
2105 mode = SImode;
2106 break;
2107 case 'D':
2108 mode = DImode;
2109 break;
2110 default:
2111 return 0;
2114 switch (str[3])
2116 case '0':
2117 def = 0;
2118 break;
2119 case 'F':
2120 def = -1;
2121 break;
2122 default:
2123 return 0;
2126 if (GET_MODE_SIZE (mode) <= GET_MODE_SIZE (part_mode))
2127 return 0;
2129 part = s390_single_part (GEN_INT (value), mode, part_mode, def);
2130 if (part < 0)
2131 return 0;
2132 if (part_goal != -1 && part_goal != part)
2133 return 0;
2135 return 1;
2139 /* Returns true if the input parameter VALUE is a float zero. */
2142 s390_float_const_zero_p (rtx value)
2144 return (GET_MODE_CLASS (GET_MODE (value)) == MODE_FLOAT
2145 && value == CONST0_RTX (GET_MODE (value)));
2149 /* Compute a (partial) cost for rtx X. Return true if the complete
2150 cost has been computed, and false if subexpressions should be
2151 scanned. In either case, *TOTAL contains the cost result.
2152 CODE contains GET_CODE (x), OUTER_CODE contains the code
2153 of the superexpression of x. */
2155 static bool
2156 s390_rtx_costs (rtx x, int code, int outer_code, int *total)
2158 switch (code)
2160 case CONST:
2161 case CONST_INT:
2162 case LABEL_REF:
2163 case SYMBOL_REF:
2164 case CONST_DOUBLE:
2165 case MEM:
2166 *total = 0;
2167 return true;
2169 case ASHIFT:
2170 case ASHIFTRT:
2171 case LSHIFTRT:
2172 case ROTATE:
2173 case ROTATERT:
2174 case AND:
2175 case IOR:
2176 case XOR:
2177 case NEG:
2178 case NOT:
2179 *total = COSTS_N_INSNS (1);
2180 return false;
2182 case PLUS:
2183 case MINUS:
2184 /* Check for multiply and add. */
2185 if ((GET_MODE (x) == DFmode || GET_MODE (x) == SFmode)
2186 && GET_CODE (XEXP (x, 0)) == MULT
2187 && TARGET_HARD_FLOAT && TARGET_FUSED_MADD)
2189 /* This is the multiply and add case. */
2190 if (GET_MODE (x) == DFmode)
2191 *total = s390_cost->madbr;
2192 else
2193 *total = s390_cost->maebr;
2194 *total += rtx_cost (XEXP (XEXP (x, 0), 0), MULT)
2195 + rtx_cost (XEXP (XEXP (x, 0), 1), MULT)
2196 + rtx_cost (XEXP (x, 1), code);
2197 return true; /* Do not do an additional recursive descent. */
2199 *total = COSTS_N_INSNS (1);
2200 return false;
2202 case MULT:
2203 switch (GET_MODE (x))
2205 case SImode:
2207 rtx left = XEXP (x, 0);
2208 rtx right = XEXP (x, 1);
2209 if (GET_CODE (right) == CONST_INT
2210 && CONST_OK_FOR_K (INTVAL (right)))
2211 *total = s390_cost->mhi;
2212 else if (GET_CODE (left) == SIGN_EXTEND)
2213 *total = s390_cost->mh;
2214 else
2215 *total = s390_cost->ms; /* msr, ms, msy */
2216 break;
2218 case DImode:
2220 rtx left = XEXP (x, 0);
2221 rtx right = XEXP (x, 1);
2222 if (TARGET_64BIT)
2224 if (GET_CODE (right) == CONST_INT
2225 && CONST_OK_FOR_K (INTVAL (right)))
2226 *total = s390_cost->mghi;
2227 else if (GET_CODE (left) == SIGN_EXTEND)
2228 *total = s390_cost->msgf;
2229 else
2230 *total = s390_cost->msg; /* msgr, msg */
2232 else /* TARGET_31BIT */
2234 if (GET_CODE (left) == SIGN_EXTEND
2235 && GET_CODE (right) == SIGN_EXTEND)
2236 /* mulsidi case: mr, m */
2237 *total = s390_cost->m;
2238 else if (GET_CODE (left) == ZERO_EXTEND
2239 && GET_CODE (right) == ZERO_EXTEND
2240 && TARGET_CPU_ZARCH)
2241 /* umulsidi case: ml, mlr */
2242 *total = s390_cost->ml;
2243 else
2244 /* Complex calculation is required. */
2245 *total = COSTS_N_INSNS (40);
2247 break;
2249 case SFmode:
2250 case DFmode:
2251 *total = s390_cost->mult_df;
2252 break;
2253 case TFmode:
2254 *total = s390_cost->mxbr;
2255 break;
2256 default:
2257 return false;
2259 return false;
2261 case UDIV:
2262 case UMOD:
2263 if (GET_MODE (x) == TImode) /* 128 bit division */
2264 *total = s390_cost->dlgr;
2265 else if (GET_MODE (x) == DImode)
2267 rtx right = XEXP (x, 1);
2268 if (GET_CODE (right) == ZERO_EXTEND) /* 64 by 32 bit division */
2269 *total = s390_cost->dlr;
2270 else /* 64 by 64 bit division */
2271 *total = s390_cost->dlgr;
2273 else if (GET_MODE (x) == SImode) /* 32 bit division */
2274 *total = s390_cost->dlr;
2275 return false;
2277 case DIV:
2278 case MOD:
2279 if (GET_MODE (x) == DImode)
2281 rtx right = XEXP (x, 1);
2282 if (GET_CODE (right) == ZERO_EXTEND) /* 64 by 32 bit division */
2283 if (TARGET_64BIT)
2284 *total = s390_cost->dsgfr;
2285 else
2286 *total = s390_cost->dr;
2287 else /* 64 by 64 bit division */
2288 *total = s390_cost->dsgr;
2290 else if (GET_MODE (x) == SImode) /* 32 bit division */
2291 *total = s390_cost->dlr;
2292 else if (GET_MODE (x) == SFmode)
2294 *total = s390_cost->debr;
2296 else if (GET_MODE (x) == DFmode)
2298 *total = s390_cost->ddbr;
2300 else if (GET_MODE (x) == TFmode)
2302 *total = s390_cost->dxbr;
2304 return false;
2306 case SQRT:
2307 if (GET_MODE (x) == SFmode)
2308 *total = s390_cost->sqebr;
2309 else if (GET_MODE (x) == DFmode)
2310 *total = s390_cost->sqdbr;
2311 else /* TFmode */
2312 *total = s390_cost->sqxbr;
2313 return false;
2315 case SIGN_EXTEND:
2316 case ZERO_EXTEND:
2317 if (outer_code == MULT || outer_code == DIV || outer_code == MOD
2318 || outer_code == PLUS || outer_code == MINUS
2319 || outer_code == COMPARE)
2320 *total = 0;
2321 return false;
2323 case COMPARE:
2324 *total = COSTS_N_INSNS (1);
2325 if (GET_CODE (XEXP (x, 0)) == AND
2326 && GET_CODE (XEXP (x, 1)) == CONST_INT
2327 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
2329 rtx op0 = XEXP (XEXP (x, 0), 0);
2330 rtx op1 = XEXP (XEXP (x, 0), 1);
2331 rtx op2 = XEXP (x, 1);
2333 if (memory_operand (op0, GET_MODE (op0))
2334 && s390_tm_ccmode (op1, op2, 0) != VOIDmode)
2335 return true;
2336 if (register_operand (op0, GET_MODE (op0))
2337 && s390_tm_ccmode (op1, op2, 1) != VOIDmode)
2338 return true;
2340 return false;
2342 default:
2343 return false;
2347 /* Return the cost of an address rtx ADDR. */
2349 static int
2350 s390_address_cost (rtx addr)
2352 struct s390_address ad;
2353 if (!s390_decompose_address (addr, &ad))
2354 return 1000;
2356 return ad.indx? COSTS_N_INSNS (1) + 1 : COSTS_N_INSNS (1);
2359 /* If OP is a SYMBOL_REF of a thread-local symbol, return its TLS mode,
2360 otherwise return 0. */
2363 tls_symbolic_operand (rtx op)
2365 if (GET_CODE (op) != SYMBOL_REF)
2366 return 0;
2367 return SYMBOL_REF_TLS_MODEL (op);
2370 /* Split DImode access register reference REG (on 64-bit) into its constituent
2371 low and high parts, and store them into LO and HI. Note that gen_lowpart/
2372 gen_highpart cannot be used as they assume all registers are word-sized,
2373 while our access registers have only half that size. */
2375 void
2376 s390_split_access_reg (rtx reg, rtx *lo, rtx *hi)
2378 gcc_assert (TARGET_64BIT);
2379 gcc_assert (ACCESS_REG_P (reg));
2380 gcc_assert (GET_MODE (reg) == DImode);
2381 gcc_assert (!(REGNO (reg) & 1));
2383 *lo = gen_rtx_REG (SImode, REGNO (reg) + 1);
2384 *hi = gen_rtx_REG (SImode, REGNO (reg));
2387 /* Return true if OP contains a symbol reference */
2389 bool
2390 symbolic_reference_mentioned_p (rtx op)
2392 const char *fmt;
2393 int i;
2395 if (GET_CODE (op) == SYMBOL_REF || GET_CODE (op) == LABEL_REF)
2396 return 1;
2398 fmt = GET_RTX_FORMAT (GET_CODE (op));
2399 for (i = GET_RTX_LENGTH (GET_CODE (op)) - 1; i >= 0; i--)
2401 if (fmt[i] == 'E')
2403 int j;
2405 for (j = XVECLEN (op, i) - 1; j >= 0; j--)
2406 if (symbolic_reference_mentioned_p (XVECEXP (op, i, j)))
2407 return 1;
2410 else if (fmt[i] == 'e' && symbolic_reference_mentioned_p (XEXP (op, i)))
2411 return 1;
2414 return 0;
2417 /* Return true if OP contains a reference to a thread-local symbol. */
2419 bool
2420 tls_symbolic_reference_mentioned_p (rtx op)
2422 const char *fmt;
2423 int i;
2425 if (GET_CODE (op) == SYMBOL_REF)
2426 return tls_symbolic_operand (op);
2428 fmt = GET_RTX_FORMAT (GET_CODE (op));
2429 for (i = GET_RTX_LENGTH (GET_CODE (op)) - 1; i >= 0; i--)
2431 if (fmt[i] == 'E')
2433 int j;
2435 for (j = XVECLEN (op, i) - 1; j >= 0; j--)
2436 if (tls_symbolic_reference_mentioned_p (XVECEXP (op, i, j)))
2437 return true;
2440 else if (fmt[i] == 'e' && tls_symbolic_reference_mentioned_p (XEXP (op, i)))
2441 return true;
2444 return false;
2448 /* Return true if OP is a legitimate general operand when
2449 generating PIC code. It is given that flag_pic is on
2450 and that OP satisfies CONSTANT_P or is a CONST_DOUBLE. */
2453 legitimate_pic_operand_p (rtx op)
2455 /* Accept all non-symbolic constants. */
2456 if (!SYMBOLIC_CONST (op))
2457 return 1;
2459 /* Reject everything else; must be handled
2460 via emit_symbolic_move. */
2461 return 0;
2464 /* Returns true if the constant value OP is a legitimate general operand.
2465 It is given that OP satisfies CONSTANT_P or is a CONST_DOUBLE. */
2468 legitimate_constant_p (rtx op)
2470 /* Accept all non-symbolic constants. */
2471 if (!SYMBOLIC_CONST (op))
2472 return 1;
2474 /* Accept immediate LARL operands. */
2475 if (TARGET_CPU_ZARCH && larl_operand (op, VOIDmode))
2476 return 1;
2478 /* Thread-local symbols are never legal constants. This is
2479 so that emit_call knows that computing such addresses
2480 might require a function call. */
2481 if (TLS_SYMBOLIC_CONST (op))
2482 return 0;
2484 /* In the PIC case, symbolic constants must *not* be
2485 forced into the literal pool. We accept them here,
2486 so that they will be handled by emit_symbolic_move. */
2487 if (flag_pic)
2488 return 1;
2490 /* All remaining non-PIC symbolic constants are
2491 forced into the literal pool. */
2492 return 0;
2495 /* Determine if it's legal to put X into the constant pool. This
2496 is not possible if X contains the address of a symbol that is
2497 not constant (TLS) or not known at final link time (PIC). */
2499 static bool
2500 s390_cannot_force_const_mem (rtx x)
2502 switch (GET_CODE (x))
2504 case CONST_INT:
2505 case CONST_DOUBLE:
2506 /* Accept all non-symbolic constants. */
2507 return false;
2509 case LABEL_REF:
2510 /* Labels are OK iff we are non-PIC. */
2511 return flag_pic != 0;
2513 case SYMBOL_REF:
2514 /* 'Naked' TLS symbol references are never OK,
2515 non-TLS symbols are OK iff we are non-PIC. */
2516 if (tls_symbolic_operand (x))
2517 return true;
2518 else
2519 return flag_pic != 0;
2521 case CONST:
2522 return s390_cannot_force_const_mem (XEXP (x, 0));
2523 case PLUS:
2524 case MINUS:
2525 return s390_cannot_force_const_mem (XEXP (x, 0))
2526 || s390_cannot_force_const_mem (XEXP (x, 1));
2528 case UNSPEC:
2529 switch (XINT (x, 1))
2531 /* Only lt-relative or GOT-relative UNSPECs are OK. */
2532 case UNSPEC_LTREL_OFFSET:
2533 case UNSPEC_GOT:
2534 case UNSPEC_GOTOFF:
2535 case UNSPEC_PLTOFF:
2536 case UNSPEC_TLSGD:
2537 case UNSPEC_TLSLDM:
2538 case UNSPEC_NTPOFF:
2539 case UNSPEC_DTPOFF:
2540 case UNSPEC_GOTNTPOFF:
2541 case UNSPEC_INDNTPOFF:
2542 return false;
2544 /* If the literal pool shares the code section, be put
2545 execute template placeholders into the pool as well. */
2546 case UNSPEC_INSN:
2547 return TARGET_CPU_ZARCH;
2549 default:
2550 return true;
2552 break;
2554 default:
2555 gcc_unreachable ();
2559 /* Returns true if the constant value OP is a legitimate general
2560 operand during and after reload. The difference to
2561 legitimate_constant_p is that this function will not accept
2562 a constant that would need to be forced to the literal pool
2563 before it can be used as operand. */
2565 bool
2566 legitimate_reload_constant_p (rtx op)
2568 /* Accept la(y) operands. */
2569 if (GET_CODE (op) == CONST_INT
2570 && DISP_IN_RANGE (INTVAL (op)))
2571 return true;
2573 /* Accept l(g)hi/l(g)fi operands. */
2574 if (GET_CODE (op) == CONST_INT
2575 && (CONST_OK_FOR_K (INTVAL (op)) || CONST_OK_FOR_Os (INTVAL (op))))
2576 return true;
2578 /* Accept lliXX operands. */
2579 if (TARGET_ZARCH
2580 && GET_CODE (op) == CONST_INT
2581 && trunc_int_for_mode (INTVAL (op), word_mode) == INTVAL (op)
2582 && s390_single_part (op, word_mode, HImode, 0) >= 0)
2583 return true;
2585 if (TARGET_EXTIMM
2586 && GET_CODE (op) == CONST_INT
2587 && trunc_int_for_mode (INTVAL (op), word_mode) == INTVAL (op)
2588 && s390_single_part (op, word_mode, SImode, 0) >= 0)
2589 return true;
2591 /* Accept larl operands. */
2592 if (TARGET_CPU_ZARCH
2593 && larl_operand (op, VOIDmode))
2594 return true;
2596 /* Accept lzXX operands. */
2597 if (GET_CODE (op) == CONST_DOUBLE
2598 && CONST_DOUBLE_OK_FOR_CONSTRAINT_P (op, 'G', "G"))
2599 return true;
2601 /* Accept double-word operands that can be split. */
2602 if (GET_CODE (op) == CONST_INT
2603 && trunc_int_for_mode (INTVAL (op), word_mode) != INTVAL (op))
2605 enum machine_mode dword_mode = word_mode == SImode ? DImode : TImode;
2606 rtx hi = operand_subword (op, 0, 0, dword_mode);
2607 rtx lo = operand_subword (op, 1, 0, dword_mode);
2608 return legitimate_reload_constant_p (hi)
2609 && legitimate_reload_constant_p (lo);
2612 /* Everything else cannot be handled without reload. */
2613 return false;
2616 /* Given an rtx OP being reloaded into a reg required to be in class CLASS,
2617 return the class of reg to actually use. */
2619 enum reg_class
2620 s390_preferred_reload_class (rtx op, enum reg_class class)
2622 switch (GET_CODE (op))
2624 /* Constants we cannot reload must be forced into the
2625 literal pool. */
2627 case CONST_DOUBLE:
2628 case CONST_INT:
2629 if (legitimate_reload_constant_p (op))
2630 return class;
2631 else
2632 return NO_REGS;
2634 /* If a symbolic constant or a PLUS is reloaded,
2635 it is most likely being used as an address, so
2636 prefer ADDR_REGS. If 'class' is not a superset
2637 of ADDR_REGS, e.g. FP_REGS, reject this reload. */
2638 case PLUS:
2639 case LABEL_REF:
2640 case SYMBOL_REF:
2641 case CONST:
2642 if (reg_class_subset_p (ADDR_REGS, class))
2643 return ADDR_REGS;
2644 else
2645 return NO_REGS;
2647 default:
2648 break;
2651 return class;
2654 /* Inform reload about cases where moving X with a mode MODE to a register in
2655 CLASS requires an extra scratch or immediate register. Return the class
2656 needed for the immediate register. */
2658 static enum reg_class
2659 s390_secondary_reload (bool in_p, rtx x, enum reg_class class,
2660 enum machine_mode mode, secondary_reload_info *sri)
2662 /* Intermediate register needed. */
2663 if (reg_classes_intersect_p (CC_REGS, class))
2664 return GENERAL_REGS;
2666 /* We need a scratch register when loading a PLUS expression which
2667 is not a legitimate operand of the LOAD ADDRESS instruction. */
2668 if (in_p && s390_plus_operand (x, mode))
2669 sri->icode = (TARGET_64BIT ?
2670 CODE_FOR_reloaddi_plus : CODE_FOR_reloadsi_plus);
2672 /* Performing a multiword move from or to memory we have to make sure the
2673 second chunk in memory is addressable without causing a displacement
2674 overflow. If that would be the case we calculate the address in
2675 a scratch register. */
2676 if (MEM_P (x)
2677 && GET_CODE (XEXP (x, 0)) == PLUS
2678 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
2679 && !DISP_IN_RANGE (INTVAL (XEXP (XEXP (x, 0), 1))
2680 + GET_MODE_SIZE (mode) - 1))
2682 /* For GENERAL_REGS a displacement overflow is no problem if occurring
2683 in a s_operand address since we may fallback to lm/stm. So we only
2684 have to care about overflows in the b+i+d case. */
2685 if ((reg_classes_intersect_p (GENERAL_REGS, class)
2686 && s390_class_max_nregs (GENERAL_REGS, mode) > 1
2687 && GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS)
2688 /* For FP_REGS no lm/stm is available so this check is triggered
2689 for displacement overflows in b+i+d and b+d like addresses. */
2690 || (reg_classes_intersect_p (FP_REGS, class)
2691 && s390_class_max_nregs (FP_REGS, mode) > 1))
2693 if (in_p)
2694 sri->icode = (TARGET_64BIT ?
2695 CODE_FOR_reloaddi_nonoffmem_in :
2696 CODE_FOR_reloadsi_nonoffmem_in);
2697 else
2698 sri->icode = (TARGET_64BIT ?
2699 CODE_FOR_reloaddi_nonoffmem_out :
2700 CODE_FOR_reloadsi_nonoffmem_out);
2704 /* Either scratch or no register needed. */
2705 return NO_REGS;
2708 /* Generate code to load SRC, which is PLUS that is not a
2709 legitimate operand for the LA instruction, into TARGET.
2710 SCRATCH may be used as scratch register. */
2712 void
2713 s390_expand_plus_operand (rtx target, rtx src,
2714 rtx scratch)
2716 rtx sum1, sum2;
2717 struct s390_address ad;
2719 /* src must be a PLUS; get its two operands. */
2720 gcc_assert (GET_CODE (src) == PLUS);
2721 gcc_assert (GET_MODE (src) == Pmode);
2723 /* Check if any of the two operands is already scheduled
2724 for replacement by reload. This can happen e.g. when
2725 float registers occur in an address. */
2726 sum1 = find_replacement (&XEXP (src, 0));
2727 sum2 = find_replacement (&XEXP (src, 1));
2728 src = gen_rtx_PLUS (Pmode, sum1, sum2);
2730 /* If the address is already strictly valid, there's nothing to do. */
2731 if (!s390_decompose_address (src, &ad)
2732 || (ad.base && !REGNO_OK_FOR_BASE_P (REGNO (ad.base)))
2733 || (ad.indx && !REGNO_OK_FOR_INDEX_P (REGNO (ad.indx))))
2735 /* Otherwise, one of the operands cannot be an address register;
2736 we reload its value into the scratch register. */
2737 if (true_regnum (sum1) < 1 || true_regnum (sum1) > 15)
2739 emit_move_insn (scratch, sum1);
2740 sum1 = scratch;
2742 if (true_regnum (sum2) < 1 || true_regnum (sum2) > 15)
2744 emit_move_insn (scratch, sum2);
2745 sum2 = scratch;
2748 /* According to the way these invalid addresses are generated
2749 in reload.c, it should never happen (at least on s390) that
2750 *neither* of the PLUS components, after find_replacements
2751 was applied, is an address register. */
2752 if (sum1 == scratch && sum2 == scratch)
2754 debug_rtx (src);
2755 gcc_unreachable ();
2758 src = gen_rtx_PLUS (Pmode, sum1, sum2);
2761 /* Emit the LOAD ADDRESS pattern. Note that reload of PLUS
2762 is only ever performed on addresses, so we can mark the
2763 sum as legitimate for LA in any case. */
2764 s390_load_address (target, src);
2768 /* Return true if ADDR is a valid memory address.
2769 STRICT specifies whether strict register checking applies. */
2771 bool
2772 legitimate_address_p (enum machine_mode mode ATTRIBUTE_UNUSED,
2773 rtx addr, int strict)
2775 struct s390_address ad;
2776 if (!s390_decompose_address (addr, &ad))
2777 return false;
2779 if (strict)
2781 if (ad.base && !REGNO_OK_FOR_BASE_P (REGNO (ad.base)))
2782 return false;
2784 if (ad.indx && !REGNO_OK_FOR_INDEX_P (REGNO (ad.indx)))
2785 return false;
2787 else
2789 if (ad.base
2790 && !(REGNO (ad.base) >= FIRST_PSEUDO_REGISTER
2791 || REGNO_REG_CLASS (REGNO (ad.base)) == ADDR_REGS))
2792 return false;
2794 if (ad.indx
2795 && !(REGNO (ad.indx) >= FIRST_PSEUDO_REGISTER
2796 || REGNO_REG_CLASS (REGNO (ad.indx)) == ADDR_REGS))
2797 return false;
2799 return true;
2802 /* Return true if OP is a valid operand for the LA instruction.
2803 In 31-bit, we need to prove that the result is used as an
2804 address, as LA performs only a 31-bit addition. */
2806 bool
2807 legitimate_la_operand_p (rtx op)
2809 struct s390_address addr;
2810 if (!s390_decompose_address (op, &addr))
2811 return false;
2813 return (TARGET_64BIT || addr.pointer);
2816 /* Return true if it is valid *and* preferable to use LA to
2817 compute the sum of OP1 and OP2. */
2819 bool
2820 preferred_la_operand_p (rtx op1, rtx op2)
2822 struct s390_address addr;
2824 if (op2 != const0_rtx)
2825 op1 = gen_rtx_PLUS (Pmode, op1, op2);
2827 if (!s390_decompose_address (op1, &addr))
2828 return false;
2829 if (addr.base && !REGNO_OK_FOR_BASE_P (REGNO (addr.base)))
2830 return false;
2831 if (addr.indx && !REGNO_OK_FOR_INDEX_P (REGNO (addr.indx)))
2832 return false;
2834 if (!TARGET_64BIT && !addr.pointer)
2835 return false;
2837 if (addr.pointer)
2838 return true;
2840 if ((addr.base && REG_P (addr.base) && REG_POINTER (addr.base))
2841 || (addr.indx && REG_P (addr.indx) && REG_POINTER (addr.indx)))
2842 return true;
2844 return false;
2847 /* Emit a forced load-address operation to load SRC into DST.
2848 This will use the LOAD ADDRESS instruction even in situations
2849 where legitimate_la_operand_p (SRC) returns false. */
2851 void
2852 s390_load_address (rtx dst, rtx src)
2854 if (TARGET_64BIT)
2855 emit_move_insn (dst, src);
2856 else
2857 emit_insn (gen_force_la_31 (dst, src));
2860 /* Return a legitimate reference for ORIG (an address) using the
2861 register REG. If REG is 0, a new pseudo is generated.
2863 There are two types of references that must be handled:
2865 1. Global data references must load the address from the GOT, via
2866 the PIC reg. An insn is emitted to do this load, and the reg is
2867 returned.
2869 2. Static data references, constant pool addresses, and code labels
2870 compute the address as an offset from the GOT, whose base is in
2871 the PIC reg. Static data objects have SYMBOL_FLAG_LOCAL set to
2872 differentiate them from global data objects. The returned
2873 address is the PIC reg + an unspec constant.
2875 GO_IF_LEGITIMATE_ADDRESS rejects symbolic references unless the PIC
2876 reg also appears in the address. */
2879 legitimize_pic_address (rtx orig, rtx reg)
2881 rtx addr = orig;
2882 rtx new = orig;
2883 rtx base;
2885 gcc_assert (!TLS_SYMBOLIC_CONST (addr));
2887 if (GET_CODE (addr) == LABEL_REF
2888 || (GET_CODE (addr) == SYMBOL_REF && SYMBOL_REF_LOCAL_P (addr)))
2890 /* This is a local symbol. */
2891 if (TARGET_CPU_ZARCH && larl_operand (addr, VOIDmode))
2893 /* Access local symbols PC-relative via LARL.
2894 This is the same as in the non-PIC case, so it is
2895 handled automatically ... */
2897 else
2899 /* Access local symbols relative to the GOT. */
2901 rtx temp = reg? reg : gen_reg_rtx (Pmode);
2903 if (reload_in_progress || reload_completed)
2904 df_set_regs_ever_live (PIC_OFFSET_TABLE_REGNUM, true);
2906 addr = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_GOTOFF);
2907 addr = gen_rtx_CONST (Pmode, addr);
2908 addr = force_const_mem (Pmode, addr);
2909 emit_move_insn (temp, addr);
2911 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp);
2912 if (reg != 0)
2914 s390_load_address (reg, new);
2915 new = reg;
2919 else if (GET_CODE (addr) == SYMBOL_REF)
2921 if (reg == 0)
2922 reg = gen_reg_rtx (Pmode);
2924 if (flag_pic == 1)
2926 /* Assume GOT offset < 4k. This is handled the same way
2927 in both 31- and 64-bit code (@GOT). */
2929 if (reload_in_progress || reload_completed)
2930 df_set_regs_ever_live (PIC_OFFSET_TABLE_REGNUM, true);
2932 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_GOT);
2933 new = gen_rtx_CONST (Pmode, new);
2934 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, new);
2935 new = gen_const_mem (Pmode, new);
2936 emit_move_insn (reg, new);
2937 new = reg;
2939 else if (TARGET_CPU_ZARCH)
2941 /* If the GOT offset might be >= 4k, we determine the position
2942 of the GOT entry via a PC-relative LARL (@GOTENT). */
2944 rtx temp = gen_reg_rtx (Pmode);
2946 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_GOTENT);
2947 new = gen_rtx_CONST (Pmode, new);
2948 emit_move_insn (temp, new);
2950 new = gen_const_mem (Pmode, temp);
2951 emit_move_insn (reg, new);
2952 new = reg;
2954 else
2956 /* If the GOT offset might be >= 4k, we have to load it
2957 from the literal pool (@GOT). */
2959 rtx temp = gen_reg_rtx (Pmode);
2961 if (reload_in_progress || reload_completed)
2962 df_set_regs_ever_live (PIC_OFFSET_TABLE_REGNUM, true);
2964 addr = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_GOT);
2965 addr = gen_rtx_CONST (Pmode, addr);
2966 addr = force_const_mem (Pmode, addr);
2967 emit_move_insn (temp, addr);
2969 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp);
2970 new = gen_const_mem (Pmode, new);
2971 emit_move_insn (reg, new);
2972 new = reg;
2975 else
2977 if (GET_CODE (addr) == CONST)
2979 addr = XEXP (addr, 0);
2980 if (GET_CODE (addr) == UNSPEC)
2982 gcc_assert (XVECLEN (addr, 0) == 1);
2983 switch (XINT (addr, 1))
2985 /* If someone moved a GOT-relative UNSPEC
2986 out of the literal pool, force them back in. */
2987 case UNSPEC_GOTOFF:
2988 case UNSPEC_PLTOFF:
2989 new = force_const_mem (Pmode, orig);
2990 break;
2992 /* @GOT is OK as is if small. */
2993 case UNSPEC_GOT:
2994 if (flag_pic == 2)
2995 new = force_const_mem (Pmode, orig);
2996 break;
2998 /* @GOTENT is OK as is. */
2999 case UNSPEC_GOTENT:
3000 break;
3002 /* @PLT is OK as is on 64-bit, must be converted to
3003 GOT-relative @PLTOFF on 31-bit. */
3004 case UNSPEC_PLT:
3005 if (!TARGET_CPU_ZARCH)
3007 rtx temp = reg? reg : gen_reg_rtx (Pmode);
3009 if (reload_in_progress || reload_completed)
3010 df_set_regs_ever_live (PIC_OFFSET_TABLE_REGNUM, true);
3012 addr = XVECEXP (addr, 0, 0);
3013 addr = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr),
3014 UNSPEC_PLTOFF);
3015 addr = gen_rtx_CONST (Pmode, addr);
3016 addr = force_const_mem (Pmode, addr);
3017 emit_move_insn (temp, addr);
3019 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp);
3020 if (reg != 0)
3022 s390_load_address (reg, new);
3023 new = reg;
3026 break;
3028 /* Everything else cannot happen. */
3029 default:
3030 gcc_unreachable ();
3033 else
3034 gcc_assert (GET_CODE (addr) == PLUS);
3036 if (GET_CODE (addr) == PLUS)
3038 rtx op0 = XEXP (addr, 0), op1 = XEXP (addr, 1);
3040 gcc_assert (!TLS_SYMBOLIC_CONST (op0));
3041 gcc_assert (!TLS_SYMBOLIC_CONST (op1));
3043 /* Check first to see if this is a constant offset
3044 from a local symbol reference. */
3045 if ((GET_CODE (op0) == LABEL_REF
3046 || (GET_CODE (op0) == SYMBOL_REF && SYMBOL_REF_LOCAL_P (op0)))
3047 && GET_CODE (op1) == CONST_INT)
3049 if (TARGET_CPU_ZARCH
3050 && larl_operand (op0, VOIDmode)
3051 && INTVAL (op1) < (HOST_WIDE_INT)1 << 31
3052 && INTVAL (op1) >= -((HOST_WIDE_INT)1 << 31))
3054 if (INTVAL (op1) & 1)
3056 /* LARL can't handle odd offsets, so emit a
3057 pair of LARL and LA. */
3058 rtx temp = reg? reg : gen_reg_rtx (Pmode);
3060 if (!DISP_IN_RANGE (INTVAL (op1)))
3062 HOST_WIDE_INT even = INTVAL (op1) - 1;
3063 op0 = gen_rtx_PLUS (Pmode, op0, GEN_INT (even));
3064 op0 = gen_rtx_CONST (Pmode, op0);
3065 op1 = const1_rtx;
3068 emit_move_insn (temp, op0);
3069 new = gen_rtx_PLUS (Pmode, temp, op1);
3071 if (reg != 0)
3073 s390_load_address (reg, new);
3074 new = reg;
3077 else
3079 /* If the offset is even, we can just use LARL.
3080 This will happen automatically. */
3083 else
3085 /* Access local symbols relative to the GOT. */
3087 rtx temp = reg? reg : gen_reg_rtx (Pmode);
3089 if (reload_in_progress || reload_completed)
3090 df_set_regs_ever_live (PIC_OFFSET_TABLE_REGNUM, true);
3092 addr = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, op0),
3093 UNSPEC_GOTOFF);
3094 addr = gen_rtx_PLUS (Pmode, addr, op1);
3095 addr = gen_rtx_CONST (Pmode, addr);
3096 addr = force_const_mem (Pmode, addr);
3097 emit_move_insn (temp, addr);
3099 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp);
3100 if (reg != 0)
3102 s390_load_address (reg, new);
3103 new = reg;
3108 /* Now, check whether it is a GOT relative symbol plus offset
3109 that was pulled out of the literal pool. Force it back in. */
3111 else if (GET_CODE (op0) == UNSPEC
3112 && GET_CODE (op1) == CONST_INT
3113 && XINT (op0, 1) == UNSPEC_GOTOFF)
3115 gcc_assert (XVECLEN (op0, 0) == 1);
3117 new = force_const_mem (Pmode, orig);
3120 /* Otherwise, compute the sum. */
3121 else
3123 base = legitimize_pic_address (XEXP (addr, 0), reg);
3124 new = legitimize_pic_address (XEXP (addr, 1),
3125 base == reg ? NULL_RTX : reg);
3126 if (GET_CODE (new) == CONST_INT)
3127 new = plus_constant (base, INTVAL (new));
3128 else
3130 if (GET_CODE (new) == PLUS && CONSTANT_P (XEXP (new, 1)))
3132 base = gen_rtx_PLUS (Pmode, base, XEXP (new, 0));
3133 new = XEXP (new, 1);
3135 new = gen_rtx_PLUS (Pmode, base, new);
3138 if (GET_CODE (new) == CONST)
3139 new = XEXP (new, 0);
3140 new = force_operand (new, 0);
3144 return new;
3147 /* Load the thread pointer into a register. */
3150 s390_get_thread_pointer (void)
3152 rtx tp = gen_reg_rtx (Pmode);
3154 emit_move_insn (tp, gen_rtx_REG (Pmode, TP_REGNUM));
3155 mark_reg_pointer (tp, BITS_PER_WORD);
3157 return tp;
3160 /* Emit a tls call insn. The call target is the SYMBOL_REF stored
3161 in s390_tls_symbol which always refers to __tls_get_offset.
3162 The returned offset is written to RESULT_REG and an USE rtx is
3163 generated for TLS_CALL. */
3165 static GTY(()) rtx s390_tls_symbol;
3167 static void
3168 s390_emit_tls_call_insn (rtx result_reg, rtx tls_call)
3170 rtx insn;
3172 gcc_assert (flag_pic);
3174 if (!s390_tls_symbol)
3175 s390_tls_symbol = gen_rtx_SYMBOL_REF (Pmode, "__tls_get_offset");
3177 insn = s390_emit_call (s390_tls_symbol, tls_call, result_reg,
3178 gen_rtx_REG (Pmode, RETURN_REGNUM));
3180 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), result_reg);
3181 CONST_OR_PURE_CALL_P (insn) = 1;
3184 /* ADDR contains a thread-local SYMBOL_REF. Generate code to compute
3185 this (thread-local) address. REG may be used as temporary. */
3187 static rtx
3188 legitimize_tls_address (rtx addr, rtx reg)
3190 rtx new, tls_call, temp, base, r2, insn;
3192 if (GET_CODE (addr) == SYMBOL_REF)
3193 switch (tls_symbolic_operand (addr))
3195 case TLS_MODEL_GLOBAL_DYNAMIC:
3196 start_sequence ();
3197 r2 = gen_rtx_REG (Pmode, 2);
3198 tls_call = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_TLSGD);
3199 new = gen_rtx_CONST (Pmode, tls_call);
3200 new = force_const_mem (Pmode, new);
3201 emit_move_insn (r2, new);
3202 s390_emit_tls_call_insn (r2, tls_call);
3203 insn = get_insns ();
3204 end_sequence ();
3206 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_NTPOFF);
3207 temp = gen_reg_rtx (Pmode);
3208 emit_libcall_block (insn, temp, r2, new);
3210 new = gen_rtx_PLUS (Pmode, s390_get_thread_pointer (), temp);
3211 if (reg != 0)
3213 s390_load_address (reg, new);
3214 new = reg;
3216 break;
3218 case TLS_MODEL_LOCAL_DYNAMIC:
3219 start_sequence ();
3220 r2 = gen_rtx_REG (Pmode, 2);
3221 tls_call = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, const0_rtx), UNSPEC_TLSLDM);
3222 new = gen_rtx_CONST (Pmode, tls_call);
3223 new = force_const_mem (Pmode, new);
3224 emit_move_insn (r2, new);
3225 s390_emit_tls_call_insn (r2, tls_call);
3226 insn = get_insns ();
3227 end_sequence ();
3229 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, const0_rtx), UNSPEC_TLSLDM_NTPOFF);
3230 temp = gen_reg_rtx (Pmode);
3231 emit_libcall_block (insn, temp, r2, new);
3233 new = gen_rtx_PLUS (Pmode, s390_get_thread_pointer (), temp);
3234 base = gen_reg_rtx (Pmode);
3235 s390_load_address (base, new);
3237 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_DTPOFF);
3238 new = gen_rtx_CONST (Pmode, new);
3239 new = force_const_mem (Pmode, new);
3240 temp = gen_reg_rtx (Pmode);
3241 emit_move_insn (temp, new);
3243 new = gen_rtx_PLUS (Pmode, base, temp);
3244 if (reg != 0)
3246 s390_load_address (reg, new);
3247 new = reg;
3249 break;
3251 case TLS_MODEL_INITIAL_EXEC:
3252 if (flag_pic == 1)
3254 /* Assume GOT offset < 4k. This is handled the same way
3255 in both 31- and 64-bit code. */
3257 if (reload_in_progress || reload_completed)
3258 df_set_regs_ever_live (PIC_OFFSET_TABLE_REGNUM, true);
3260 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_GOTNTPOFF);
3261 new = gen_rtx_CONST (Pmode, new);
3262 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, new);
3263 new = gen_const_mem (Pmode, new);
3264 temp = gen_reg_rtx (Pmode);
3265 emit_move_insn (temp, new);
3267 else if (TARGET_CPU_ZARCH)
3269 /* If the GOT offset might be >= 4k, we determine the position
3270 of the GOT entry via a PC-relative LARL. */
3272 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_INDNTPOFF);
3273 new = gen_rtx_CONST (Pmode, new);
3274 temp = gen_reg_rtx (Pmode);
3275 emit_move_insn (temp, new);
3277 new = gen_const_mem (Pmode, temp);
3278 temp = gen_reg_rtx (Pmode);
3279 emit_move_insn (temp, new);
3281 else if (flag_pic)
3283 /* If the GOT offset might be >= 4k, we have to load it
3284 from the literal pool. */
3286 if (reload_in_progress || reload_completed)
3287 df_set_regs_ever_live (PIC_OFFSET_TABLE_REGNUM, true);
3289 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_GOTNTPOFF);
3290 new = gen_rtx_CONST (Pmode, new);
3291 new = force_const_mem (Pmode, new);
3292 temp = gen_reg_rtx (Pmode);
3293 emit_move_insn (temp, new);
3295 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp);
3296 new = gen_const_mem (Pmode, new);
3298 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, new, addr), UNSPEC_TLS_LOAD);
3299 temp = gen_reg_rtx (Pmode);
3300 emit_insn (gen_rtx_SET (Pmode, temp, new));
3302 else
3304 /* In position-dependent code, load the absolute address of
3305 the GOT entry from the literal pool. */
3307 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_INDNTPOFF);
3308 new = gen_rtx_CONST (Pmode, new);
3309 new = force_const_mem (Pmode, new);
3310 temp = gen_reg_rtx (Pmode);
3311 emit_move_insn (temp, new);
3313 new = temp;
3314 new = gen_const_mem (Pmode, new);
3315 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, new, addr), UNSPEC_TLS_LOAD);
3316 temp = gen_reg_rtx (Pmode);
3317 emit_insn (gen_rtx_SET (Pmode, temp, new));
3320 new = gen_rtx_PLUS (Pmode, s390_get_thread_pointer (), temp);
3321 if (reg != 0)
3323 s390_load_address (reg, new);
3324 new = reg;
3326 break;
3328 case TLS_MODEL_LOCAL_EXEC:
3329 new = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, addr), UNSPEC_NTPOFF);
3330 new = gen_rtx_CONST (Pmode, new);
3331 new = force_const_mem (Pmode, new);
3332 temp = gen_reg_rtx (Pmode);
3333 emit_move_insn (temp, new);
3335 new = gen_rtx_PLUS (Pmode, s390_get_thread_pointer (), temp);
3336 if (reg != 0)
3338 s390_load_address (reg, new);
3339 new = reg;
3341 break;
3343 default:
3344 gcc_unreachable ();
3347 else if (GET_CODE (addr) == CONST && GET_CODE (XEXP (addr, 0)) == UNSPEC)
3349 switch (XINT (XEXP (addr, 0), 1))
3351 case UNSPEC_INDNTPOFF:
3352 gcc_assert (TARGET_CPU_ZARCH);
3353 new = addr;
3354 break;
3356 default:
3357 gcc_unreachable ();
3361 else if (GET_CODE (addr) == CONST && GET_CODE (XEXP (addr, 0)) == PLUS
3362 && GET_CODE (XEXP (XEXP (addr, 0), 1)) == CONST_INT)
3364 new = XEXP (XEXP (addr, 0), 0);
3365 if (GET_CODE (new) != SYMBOL_REF)
3366 new = gen_rtx_CONST (Pmode, new);
3368 new = legitimize_tls_address (new, reg);
3369 new = plus_constant (new, INTVAL (XEXP (XEXP (addr, 0), 1)));
3370 new = force_operand (new, 0);
3373 else
3374 gcc_unreachable (); /* for now ... */
3376 return new;
3379 /* Emit insns to move operands[1] into operands[0]. */
3381 void
3382 emit_symbolic_move (rtx *operands)
3384 rtx temp = !can_create_pseudo_p () ? operands[0] : gen_reg_rtx (Pmode);
3386 if (GET_CODE (operands[0]) == MEM)
3387 operands[1] = force_reg (Pmode, operands[1]);
3388 else if (TLS_SYMBOLIC_CONST (operands[1]))
3389 operands[1] = legitimize_tls_address (operands[1], temp);
3390 else if (flag_pic)
3391 operands[1] = legitimize_pic_address (operands[1], temp);
3394 /* Try machine-dependent ways of modifying an illegitimate address X
3395 to be legitimate. If we find one, return the new, valid address.
3397 OLDX is the address as it was before break_out_memory_refs was called.
3398 In some cases it is useful to look at this to decide what needs to be done.
3400 MODE is the mode of the operand pointed to by X.
3402 When -fpic is used, special handling is needed for symbolic references.
3403 See comments by legitimize_pic_address for details. */
3406 legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
3407 enum machine_mode mode ATTRIBUTE_UNUSED)
3409 rtx constant_term = const0_rtx;
3411 if (TLS_SYMBOLIC_CONST (x))
3413 x = legitimize_tls_address (x, 0);
3415 if (legitimate_address_p (mode, x, FALSE))
3416 return x;
3418 else if (GET_CODE (x) == PLUS
3419 && (TLS_SYMBOLIC_CONST (XEXP (x, 0))
3420 || TLS_SYMBOLIC_CONST (XEXP (x, 1))))
3422 return x;
3424 else if (flag_pic)
3426 if (SYMBOLIC_CONST (x)
3427 || (GET_CODE (x) == PLUS
3428 && (SYMBOLIC_CONST (XEXP (x, 0))
3429 || SYMBOLIC_CONST (XEXP (x, 1)))))
3430 x = legitimize_pic_address (x, 0);
3432 if (legitimate_address_p (mode, x, FALSE))
3433 return x;
3436 x = eliminate_constant_term (x, &constant_term);
3438 /* Optimize loading of large displacements by splitting them
3439 into the multiple of 4K and the rest; this allows the
3440 former to be CSE'd if possible.
3442 Don't do this if the displacement is added to a register
3443 pointing into the stack frame, as the offsets will
3444 change later anyway. */
3446 if (GET_CODE (constant_term) == CONST_INT
3447 && !TARGET_LONG_DISPLACEMENT
3448 && !DISP_IN_RANGE (INTVAL (constant_term))
3449 && !(REG_P (x) && REGNO_PTR_FRAME_P (REGNO (x))))
3451 HOST_WIDE_INT lower = INTVAL (constant_term) & 0xfff;
3452 HOST_WIDE_INT upper = INTVAL (constant_term) ^ lower;
3454 rtx temp = gen_reg_rtx (Pmode);
3455 rtx val = force_operand (GEN_INT (upper), temp);
3456 if (val != temp)
3457 emit_move_insn (temp, val);
3459 x = gen_rtx_PLUS (Pmode, x, temp);
3460 constant_term = GEN_INT (lower);
3463 if (GET_CODE (x) == PLUS)
3465 if (GET_CODE (XEXP (x, 0)) == REG)
3467 rtx temp = gen_reg_rtx (Pmode);
3468 rtx val = force_operand (XEXP (x, 1), temp);
3469 if (val != temp)
3470 emit_move_insn (temp, val);
3472 x = gen_rtx_PLUS (Pmode, XEXP (x, 0), temp);
3475 else if (GET_CODE (XEXP (x, 1)) == REG)
3477 rtx temp = gen_reg_rtx (Pmode);
3478 rtx val = force_operand (XEXP (x, 0), temp);
3479 if (val != temp)
3480 emit_move_insn (temp, val);
3482 x = gen_rtx_PLUS (Pmode, temp, XEXP (x, 1));
3486 if (constant_term != const0_rtx)
3487 x = gen_rtx_PLUS (Pmode, x, constant_term);
3489 return x;
3492 /* Try a machine-dependent way of reloading an illegitimate address AD
3493 operand. If we find one, push the reload and and return the new address.
3495 MODE is the mode of the enclosing MEM. OPNUM is the operand number
3496 and TYPE is the reload type of the current reload. */
3498 rtx
3499 legitimize_reload_address (rtx ad, enum machine_mode mode ATTRIBUTE_UNUSED,
3500 int opnum, int type)
3502 if (!optimize || TARGET_LONG_DISPLACEMENT)
3503 return NULL_RTX;
3505 if (GET_CODE (ad) == PLUS)
3507 rtx tem = simplify_binary_operation (PLUS, Pmode,
3508 XEXP (ad, 0), XEXP (ad, 1));
3509 if (tem)
3510 ad = tem;
3513 if (GET_CODE (ad) == PLUS
3514 && GET_CODE (XEXP (ad, 0)) == REG
3515 && GET_CODE (XEXP (ad, 1)) == CONST_INT
3516 && !DISP_IN_RANGE (INTVAL (XEXP (ad, 1))))
3518 HOST_WIDE_INT lower = INTVAL (XEXP (ad, 1)) & 0xfff;
3519 HOST_WIDE_INT upper = INTVAL (XEXP (ad, 1)) ^ lower;
3520 rtx cst, tem, new;
3522 cst = GEN_INT (upper);
3523 if (!legitimate_reload_constant_p (cst))
3524 cst = force_const_mem (Pmode, cst);
3526 tem = gen_rtx_PLUS (Pmode, XEXP (ad, 0), cst);
3527 new = gen_rtx_PLUS (Pmode, tem, GEN_INT (lower));
3529 push_reload (XEXP (tem, 1), 0, &XEXP (tem, 1), 0,
3530 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
3531 opnum, (enum reload_type) type);
3532 return new;
3535 return NULL_RTX;
3538 /* Emit code to move LEN bytes from DST to SRC. */
3540 void
3541 s390_expand_movmem (rtx dst, rtx src, rtx len)
3543 if (GET_CODE (len) == CONST_INT && INTVAL (len) >= 0 && INTVAL (len) <= 256)
3545 if (INTVAL (len) > 0)
3546 emit_insn (gen_movmem_short (dst, src, GEN_INT (INTVAL (len) - 1)));
3549 else if (TARGET_MVCLE)
3551 emit_insn (gen_movmem_long (dst, src, convert_to_mode (Pmode, len, 1)));
3554 else
3556 rtx dst_addr, src_addr, count, blocks, temp;
3557 rtx loop_start_label = gen_label_rtx ();
3558 rtx loop_end_label = gen_label_rtx ();
3559 rtx end_label = gen_label_rtx ();
3560 enum machine_mode mode;
3562 mode = GET_MODE (len);
3563 if (mode == VOIDmode)
3564 mode = Pmode;
3566 dst_addr = gen_reg_rtx (Pmode);
3567 src_addr = gen_reg_rtx (Pmode);
3568 count = gen_reg_rtx (mode);
3569 blocks = gen_reg_rtx (mode);
3571 convert_move (count, len, 1);
3572 emit_cmp_and_jump_insns (count, const0_rtx,
3573 EQ, NULL_RTX, mode, 1, end_label);
3575 emit_move_insn (dst_addr, force_operand (XEXP (dst, 0), NULL_RTX));
3576 emit_move_insn (src_addr, force_operand (XEXP (src, 0), NULL_RTX));
3577 dst = change_address (dst, VOIDmode, dst_addr);
3578 src = change_address (src, VOIDmode, src_addr);
3580 temp = expand_binop (mode, add_optab, count, constm1_rtx, count, 1, 0);
3581 if (temp != count)
3582 emit_move_insn (count, temp);
3584 temp = expand_binop (mode, lshr_optab, count, GEN_INT (8), blocks, 1, 0);
3585 if (temp != blocks)
3586 emit_move_insn (blocks, temp);
3588 emit_cmp_and_jump_insns (blocks, const0_rtx,
3589 EQ, NULL_RTX, mode, 1, loop_end_label);
3591 emit_label (loop_start_label);
3593 emit_insn (gen_movmem_short (dst, src, GEN_INT (255)));
3594 s390_load_address (dst_addr,
3595 gen_rtx_PLUS (Pmode, dst_addr, GEN_INT (256)));
3596 s390_load_address (src_addr,
3597 gen_rtx_PLUS (Pmode, src_addr, GEN_INT (256)));
3599 temp = expand_binop (mode, add_optab, blocks, constm1_rtx, blocks, 1, 0);
3600 if (temp != blocks)
3601 emit_move_insn (blocks, temp);
3603 emit_cmp_and_jump_insns (blocks, const0_rtx,
3604 EQ, NULL_RTX, mode, 1, loop_end_label);
3606 emit_jump (loop_start_label);
3607 emit_label (loop_end_label);
3609 emit_insn (gen_movmem_short (dst, src,
3610 convert_to_mode (Pmode, count, 1)));
3611 emit_label (end_label);
3615 /* Emit code to set LEN bytes at DST to VAL.
3616 Make use of clrmem if VAL is zero. */
3618 void
3619 s390_expand_setmem (rtx dst, rtx len, rtx val)
3621 if (GET_CODE (len) == CONST_INT && INTVAL (len) == 0)
3622 return;
3624 gcc_assert (GET_CODE (val) == CONST_INT || GET_MODE (val) == QImode);
3626 if (GET_CODE (len) == CONST_INT && INTVAL (len) > 0 && INTVAL (len) <= 257)
3628 if (val == const0_rtx && INTVAL (len) <= 256)
3629 emit_insn (gen_clrmem_short (dst, GEN_INT (INTVAL (len) - 1)));
3630 else
3632 /* Initialize memory by storing the first byte. */
3633 emit_move_insn (adjust_address (dst, QImode, 0), val);
3635 if (INTVAL (len) > 1)
3637 /* Initiate 1 byte overlap move.
3638 The first byte of DST is propagated through DSTP1.
3639 Prepare a movmem for: DST+1 = DST (length = LEN - 1).
3640 DST is set to size 1 so the rest of the memory location
3641 does not count as source operand. */
3642 rtx dstp1 = adjust_address (dst, VOIDmode, 1);
3643 set_mem_size (dst, const1_rtx);
3645 emit_insn (gen_movmem_short (dstp1, dst,
3646 GEN_INT (INTVAL (len) - 2)));
3651 else if (TARGET_MVCLE)
3653 val = force_not_mem (convert_modes (Pmode, QImode, val, 1));
3654 emit_insn (gen_setmem_long (dst, convert_to_mode (Pmode, len, 1), val));
3657 else
3659 rtx dst_addr, src_addr, count, blocks, temp, dstp1 = NULL_RTX;
3660 rtx loop_start_label = gen_label_rtx ();
3661 rtx loop_end_label = gen_label_rtx ();
3662 rtx end_label = gen_label_rtx ();
3663 enum machine_mode mode;
3665 mode = GET_MODE (len);
3666 if (mode == VOIDmode)
3667 mode = Pmode;
3669 dst_addr = gen_reg_rtx (Pmode);
3670 src_addr = gen_reg_rtx (Pmode);
3671 count = gen_reg_rtx (mode);
3672 blocks = gen_reg_rtx (mode);
3674 convert_move (count, len, 1);
3675 emit_cmp_and_jump_insns (count, const0_rtx,
3676 EQ, NULL_RTX, mode, 1, end_label);
3678 emit_move_insn (dst_addr, force_operand (XEXP (dst, 0), NULL_RTX));
3679 dst = change_address (dst, VOIDmode, dst_addr);
3681 if (val == const0_rtx)
3682 temp = expand_binop (mode, add_optab, count, constm1_rtx, count, 1, 0);
3683 else
3685 dstp1 = adjust_address (dst, VOIDmode, 1);
3686 set_mem_size (dst, const1_rtx);
3688 /* Initialize memory by storing the first byte. */
3689 emit_move_insn (adjust_address (dst, QImode, 0), val);
3691 /* If count is 1 we are done. */
3692 emit_cmp_and_jump_insns (count, const1_rtx,
3693 EQ, NULL_RTX, mode, 1, end_label);
3695 temp = expand_binop (mode, add_optab, count, GEN_INT (-2), count, 1, 0);
3697 if (temp != count)
3698 emit_move_insn (count, temp);
3700 temp = expand_binop (mode, lshr_optab, count, GEN_INT (8), blocks, 1, 0);
3701 if (temp != blocks)
3702 emit_move_insn (blocks, temp);
3704 emit_cmp_and_jump_insns (blocks, const0_rtx,
3705 EQ, NULL_RTX, mode, 1, loop_end_label);
3707 emit_label (loop_start_label);
3709 if (val == const0_rtx)
3710 emit_insn (gen_clrmem_short (dst, GEN_INT (255)));
3711 else
3712 emit_insn (gen_movmem_short (dstp1, dst, GEN_INT (255)));
3713 s390_load_address (dst_addr,
3714 gen_rtx_PLUS (Pmode, dst_addr, GEN_INT (256)));
3716 temp = expand_binop (mode, add_optab, blocks, constm1_rtx, blocks, 1, 0);
3717 if (temp != blocks)
3718 emit_move_insn (blocks, temp);
3720 emit_cmp_and_jump_insns (blocks, const0_rtx,
3721 EQ, NULL_RTX, mode, 1, loop_end_label);
3723 emit_jump (loop_start_label);
3724 emit_label (loop_end_label);
3726 if (val == const0_rtx)
3727 emit_insn (gen_clrmem_short (dst, convert_to_mode (Pmode, count, 1)));
3728 else
3729 emit_insn (gen_movmem_short (dstp1, dst, convert_to_mode (Pmode, count, 1)));
3730 emit_label (end_label);
3734 /* Emit code to compare LEN bytes at OP0 with those at OP1,
3735 and return the result in TARGET. */
3737 void
3738 s390_expand_cmpmem (rtx target, rtx op0, rtx op1, rtx len)
3740 rtx ccreg = gen_rtx_REG (CCUmode, CC_REGNUM);
3741 rtx tmp;
3743 /* As the result of CMPINT is inverted compared to what we need,
3744 we have to swap the operands. */
3745 tmp = op0; op0 = op1; op1 = tmp;
3747 if (GET_CODE (len) == CONST_INT && INTVAL (len) >= 0 && INTVAL (len) <= 256)
3749 if (INTVAL (len) > 0)
3751 emit_insn (gen_cmpmem_short (op0, op1, GEN_INT (INTVAL (len) - 1)));
3752 emit_insn (gen_cmpint (target, ccreg));
3754 else
3755 emit_move_insn (target, const0_rtx);
3757 else if (TARGET_MVCLE)
3759 emit_insn (gen_cmpmem_long (op0, op1, convert_to_mode (Pmode, len, 1)));
3760 emit_insn (gen_cmpint (target, ccreg));
3762 else
3764 rtx addr0, addr1, count, blocks, temp;
3765 rtx loop_start_label = gen_label_rtx ();
3766 rtx loop_end_label = gen_label_rtx ();
3767 rtx end_label = gen_label_rtx ();
3768 enum machine_mode mode;
3770 mode = GET_MODE (len);
3771 if (mode == VOIDmode)
3772 mode = Pmode;
3774 addr0 = gen_reg_rtx (Pmode);
3775 addr1 = gen_reg_rtx (Pmode);
3776 count = gen_reg_rtx (mode);
3777 blocks = gen_reg_rtx (mode);
3779 convert_move (count, len, 1);
3780 emit_cmp_and_jump_insns (count, const0_rtx,
3781 EQ, NULL_RTX, mode, 1, end_label);
3783 emit_move_insn (addr0, force_operand (XEXP (op0, 0), NULL_RTX));
3784 emit_move_insn (addr1, force_operand (XEXP (op1, 0), NULL_RTX));
3785 op0 = change_address (op0, VOIDmode, addr0);
3786 op1 = change_address (op1, VOIDmode, addr1);
3788 temp = expand_binop (mode, add_optab, count, constm1_rtx, count, 1, 0);
3789 if (temp != count)
3790 emit_move_insn (count, temp);
3792 temp = expand_binop (mode, lshr_optab, count, GEN_INT (8), blocks, 1, 0);
3793 if (temp != blocks)
3794 emit_move_insn (blocks, temp);
3796 emit_cmp_and_jump_insns (blocks, const0_rtx,
3797 EQ, NULL_RTX, mode, 1, loop_end_label);
3799 emit_label (loop_start_label);
3801 emit_insn (gen_cmpmem_short (op0, op1, GEN_INT (255)));
3802 temp = gen_rtx_NE (VOIDmode, ccreg, const0_rtx);
3803 temp = gen_rtx_IF_THEN_ELSE (VOIDmode, temp,
3804 gen_rtx_LABEL_REF (VOIDmode, end_label), pc_rtx);
3805 temp = gen_rtx_SET (VOIDmode, pc_rtx, temp);
3806 emit_jump_insn (temp);
3808 s390_load_address (addr0,
3809 gen_rtx_PLUS (Pmode, addr0, GEN_INT (256)));
3810 s390_load_address (addr1,
3811 gen_rtx_PLUS (Pmode, addr1, GEN_INT (256)));
3813 temp = expand_binop (mode, add_optab, blocks, constm1_rtx, blocks, 1, 0);
3814 if (temp != blocks)
3815 emit_move_insn (blocks, temp);
3817 emit_cmp_and_jump_insns (blocks, const0_rtx,
3818 EQ, NULL_RTX, mode, 1, loop_end_label);
3820 emit_jump (loop_start_label);
3821 emit_label (loop_end_label);
3823 emit_insn (gen_cmpmem_short (op0, op1,
3824 convert_to_mode (Pmode, count, 1)));
3825 emit_label (end_label);
3827 emit_insn (gen_cmpint (target, ccreg));
3832 /* Expand conditional increment or decrement using alc/slb instructions.
3833 Should generate code setting DST to either SRC or SRC + INCREMENT,
3834 depending on the result of the comparison CMP_OP0 CMP_CODE CMP_OP1.
3835 Returns true if successful, false otherwise.
3837 That makes it possible to implement some if-constructs without jumps e.g.:
3838 (borrow = CC0 | CC1 and carry = CC2 | CC3)
3839 unsigned int a, b, c;
3840 if (a < b) c++; -> CCU b > a -> CC2; c += carry;
3841 if (a < b) c--; -> CCL3 a - b -> borrow; c -= borrow;
3842 if (a <= b) c++; -> CCL3 b - a -> borrow; c += carry;
3843 if (a <= b) c--; -> CCU a <= b -> borrow; c -= borrow;
3845 Checks for EQ and NE with a nonzero value need an additional xor e.g.:
3846 if (a == b) c++; -> CCL3 a ^= b; 0 - a -> borrow; c += carry;
3847 if (a == b) c--; -> CCU a ^= b; a <= 0 -> CC0 | CC1; c -= borrow;
3848 if (a != b) c++; -> CCU a ^= b; a > 0 -> CC2; c += carry;
3849 if (a != b) c--; -> CCL3 a ^= b; 0 - a -> borrow; c -= borrow; */
3851 bool
3852 s390_expand_addcc (enum rtx_code cmp_code, rtx cmp_op0, rtx cmp_op1,
3853 rtx dst, rtx src, rtx increment)
3855 enum machine_mode cmp_mode;
3856 enum machine_mode cc_mode;
3857 rtx op_res;
3858 rtx insn;
3859 rtvec p;
3860 int ret;
3862 if ((GET_MODE (cmp_op0) == SImode || GET_MODE (cmp_op0) == VOIDmode)
3863 && (GET_MODE (cmp_op1) == SImode || GET_MODE (cmp_op1) == VOIDmode))
3864 cmp_mode = SImode;
3865 else if ((GET_MODE (cmp_op0) == DImode || GET_MODE (cmp_op0) == VOIDmode)
3866 && (GET_MODE (cmp_op1) == DImode || GET_MODE (cmp_op1) == VOIDmode))
3867 cmp_mode = DImode;
3868 else
3869 return false;
3871 /* Try ADD LOGICAL WITH CARRY. */
3872 if (increment == const1_rtx)
3874 /* Determine CC mode to use. */
3875 if (cmp_code == EQ || cmp_code == NE)
3877 if (cmp_op1 != const0_rtx)
3879 cmp_op0 = expand_simple_binop (cmp_mode, XOR, cmp_op0, cmp_op1,
3880 NULL_RTX, 0, OPTAB_WIDEN);
3881 cmp_op1 = const0_rtx;
3884 cmp_code = cmp_code == EQ ? LEU : GTU;
3887 if (cmp_code == LTU || cmp_code == LEU)
3889 rtx tem = cmp_op0;
3890 cmp_op0 = cmp_op1;
3891 cmp_op1 = tem;
3892 cmp_code = swap_condition (cmp_code);
3895 switch (cmp_code)
3897 case GTU:
3898 cc_mode = CCUmode;
3899 break;
3901 case GEU:
3902 cc_mode = CCL3mode;
3903 break;
3905 default:
3906 return false;
3909 /* Emit comparison instruction pattern. */
3910 if (!register_operand (cmp_op0, cmp_mode))
3911 cmp_op0 = force_reg (cmp_mode, cmp_op0);
3913 insn = gen_rtx_SET (VOIDmode, gen_rtx_REG (cc_mode, CC_REGNUM),
3914 gen_rtx_COMPARE (cc_mode, cmp_op0, cmp_op1));
3915 /* We use insn_invalid_p here to add clobbers if required. */
3916 ret = insn_invalid_p (emit_insn (insn));
3917 gcc_assert (!ret);
3919 /* Emit ALC instruction pattern. */
3920 op_res = gen_rtx_fmt_ee (cmp_code, GET_MODE (dst),
3921 gen_rtx_REG (cc_mode, CC_REGNUM),
3922 const0_rtx);
3924 if (src != const0_rtx)
3926 if (!register_operand (src, GET_MODE (dst)))
3927 src = force_reg (GET_MODE (dst), src);
3929 op_res = gen_rtx_PLUS (GET_MODE (dst), op_res, src);
3930 op_res = gen_rtx_PLUS (GET_MODE (dst), op_res, const0_rtx);
3933 p = rtvec_alloc (2);
3934 RTVEC_ELT (p, 0) =
3935 gen_rtx_SET (VOIDmode, dst, op_res);
3936 RTVEC_ELT (p, 1) =
3937 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (CCmode, CC_REGNUM));
3938 emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
3940 return true;
3943 /* Try SUBTRACT LOGICAL WITH BORROW. */
3944 if (increment == constm1_rtx)
3946 /* Determine CC mode to use. */
3947 if (cmp_code == EQ || cmp_code == NE)
3949 if (cmp_op1 != const0_rtx)
3951 cmp_op0 = expand_simple_binop (cmp_mode, XOR, cmp_op0, cmp_op1,
3952 NULL_RTX, 0, OPTAB_WIDEN);
3953 cmp_op1 = const0_rtx;
3956 cmp_code = cmp_code == EQ ? LEU : GTU;
3959 if (cmp_code == GTU || cmp_code == GEU)
3961 rtx tem = cmp_op0;
3962 cmp_op0 = cmp_op1;
3963 cmp_op1 = tem;
3964 cmp_code = swap_condition (cmp_code);
3967 switch (cmp_code)
3969 case LEU:
3970 cc_mode = CCUmode;
3971 break;
3973 case LTU:
3974 cc_mode = CCL3mode;
3975 break;
3977 default:
3978 return false;
3981 /* Emit comparison instruction pattern. */
3982 if (!register_operand (cmp_op0, cmp_mode))
3983 cmp_op0 = force_reg (cmp_mode, cmp_op0);
3985 insn = gen_rtx_SET (VOIDmode, gen_rtx_REG (cc_mode, CC_REGNUM),
3986 gen_rtx_COMPARE (cc_mode, cmp_op0, cmp_op1));
3987 /* We use insn_invalid_p here to add clobbers if required. */
3988 ret = insn_invalid_p (emit_insn (insn));
3989 gcc_assert (!ret);
3991 /* Emit SLB instruction pattern. */
3992 if (!register_operand (src, GET_MODE (dst)))
3993 src = force_reg (GET_MODE (dst), src);
3995 op_res = gen_rtx_MINUS (GET_MODE (dst),
3996 gen_rtx_MINUS (GET_MODE (dst), src, const0_rtx),
3997 gen_rtx_fmt_ee (cmp_code, GET_MODE (dst),
3998 gen_rtx_REG (cc_mode, CC_REGNUM),
3999 const0_rtx));
4000 p = rtvec_alloc (2);
4001 RTVEC_ELT (p, 0) =
4002 gen_rtx_SET (VOIDmode, dst, op_res);
4003 RTVEC_ELT (p, 1) =
4004 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (CCmode, CC_REGNUM));
4005 emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
4007 return true;
4010 return false;
4013 /* Expand code for the insv template. Return true if successful, false else. */
4015 bool
4016 s390_expand_insv (rtx dest, rtx op1, rtx op2, rtx src)
4018 int bitsize = INTVAL (op1);
4019 int bitpos = INTVAL (op2);
4021 /* We need byte alignment. */
4022 if (bitsize % BITS_PER_UNIT)
4023 return false;
4025 if (bitpos == 0
4026 && memory_operand (dest, VOIDmode)
4027 && (register_operand (src, word_mode)
4028 || const_int_operand (src, VOIDmode)))
4030 /* Emit standard pattern if possible. */
4031 enum machine_mode mode = smallest_mode_for_size (bitsize, MODE_INT);
4032 if (GET_MODE_BITSIZE (mode) == bitsize)
4033 emit_move_insn (adjust_address (dest, mode, 0), gen_lowpart (mode, src));
4035 /* (set (ze (mem)) (const_int)). */
4036 else if (const_int_operand (src, VOIDmode))
4038 int size = bitsize / BITS_PER_UNIT;
4039 rtx src_mem = adjust_address (force_const_mem (word_mode, src), BLKmode,
4040 GET_MODE_SIZE (word_mode) - size);
4042 dest = adjust_address (dest, BLKmode, 0);
4043 set_mem_size (dest, GEN_INT (size));
4044 s390_expand_movmem (dest, src_mem, GEN_INT (size));
4047 /* (set (ze (mem)) (reg)). */
4048 else if (register_operand (src, word_mode))
4050 if (bitsize <= GET_MODE_BITSIZE (SImode))
4051 emit_move_insn (gen_rtx_ZERO_EXTRACT (word_mode, dest, op1,
4052 const0_rtx), src);
4053 else
4055 /* Emit st,stcmh sequence. */
4056 int stcmh_width = bitsize - GET_MODE_BITSIZE (SImode);
4057 int size = stcmh_width / BITS_PER_UNIT;
4059 emit_move_insn (adjust_address (dest, SImode, size),
4060 gen_lowpart (SImode, src));
4061 set_mem_size (dest, GEN_INT (size));
4062 emit_move_insn (gen_rtx_ZERO_EXTRACT (word_mode, dest, GEN_INT
4063 (stcmh_width), const0_rtx),
4064 gen_rtx_LSHIFTRT (word_mode, src, GEN_INT
4065 (GET_MODE_BITSIZE (SImode))));
4068 else
4069 return false;
4071 return true;
4074 /* (set (ze (reg)) (const_int)). */
4075 if (TARGET_ZARCH
4076 && register_operand (dest, word_mode)
4077 && (bitpos % 16) == 0
4078 && (bitsize % 16) == 0
4079 && const_int_operand (src, VOIDmode))
4081 HOST_WIDE_INT val = INTVAL (src);
4082 int regpos = bitpos + bitsize;
4084 while (regpos > bitpos)
4086 enum machine_mode putmode;
4087 int putsize;
4089 if (TARGET_EXTIMM && (regpos % 32 == 0) && (regpos >= bitpos + 32))
4090 putmode = SImode;
4091 else
4092 putmode = HImode;
4094 putsize = GET_MODE_BITSIZE (putmode);
4095 regpos -= putsize;
4096 emit_move_insn (gen_rtx_ZERO_EXTRACT (word_mode, dest,
4097 GEN_INT (putsize),
4098 GEN_INT (regpos)),
4099 gen_int_mode (val, putmode));
4100 val >>= putsize;
4102 gcc_assert (regpos == bitpos);
4103 return true;
4106 return false;
4109 /* A subroutine of s390_expand_cs_hqi and s390_expand_atomic which returns a
4110 register that holds VAL of mode MODE shifted by COUNT bits. */
4112 static inline rtx
4113 s390_expand_mask_and_shift (rtx val, enum machine_mode mode, rtx count)
4115 val = expand_simple_binop (SImode, AND, val, GEN_INT (GET_MODE_MASK (mode)),
4116 NULL_RTX, 1, OPTAB_DIRECT);
4117 return expand_simple_binop (SImode, ASHIFT, val, count,
4118 NULL_RTX, 1, OPTAB_DIRECT);
4121 /* Structure to hold the initial parameters for a compare_and_swap operation
4122 in HImode and QImode. */
4124 struct alignment_context
4126 rtx memsi; /* SI aligned memory location. */
4127 rtx shift; /* Bit offset with regard to lsb. */
4128 rtx modemask; /* Mask of the HQImode shifted by SHIFT bits. */
4129 rtx modemaski; /* ~modemask */
4130 bool aligned; /* True if memory is aligned, false else. */
4133 /* A subroutine of s390_expand_cs_hqi and s390_expand_atomic to initialize
4134 structure AC for transparent simplifying, if the memory alignment is known
4135 to be at least 32bit. MEM is the memory location for the actual operation
4136 and MODE its mode. */
4138 static void
4139 init_alignment_context (struct alignment_context *ac, rtx mem,
4140 enum machine_mode mode)
4142 ac->shift = GEN_INT (GET_MODE_SIZE (SImode) - GET_MODE_SIZE (mode));
4143 ac->aligned = (MEM_ALIGN (mem) >= GET_MODE_BITSIZE (SImode));
4145 if (ac->aligned)
4146 ac->memsi = adjust_address (mem, SImode, 0); /* Memory is aligned. */
4147 else
4149 /* Alignment is unknown. */
4150 rtx byteoffset, addr, align;
4152 /* Force the address into a register. */
4153 addr = force_reg (Pmode, XEXP (mem, 0));
4155 /* Align it to SImode. */
4156 align = expand_simple_binop (Pmode, AND, addr,
4157 GEN_INT (-GET_MODE_SIZE (SImode)),
4158 NULL_RTX, 1, OPTAB_DIRECT);
4159 /* Generate MEM. */
4160 ac->memsi = gen_rtx_MEM (SImode, align);
4161 MEM_VOLATILE_P (ac->memsi) = MEM_VOLATILE_P (mem);
4162 set_mem_alias_set (ac->memsi, ALIAS_SET_MEMORY_BARRIER);
4163 set_mem_align (ac->memsi, GET_MODE_BITSIZE (SImode));
4165 /* Calculate shiftcount. */
4166 byteoffset = expand_simple_binop (Pmode, AND, addr,
4167 GEN_INT (GET_MODE_SIZE (SImode) - 1),
4168 NULL_RTX, 1, OPTAB_DIRECT);
4169 /* As we already have some offset, evaluate the remaining distance. */
4170 ac->shift = expand_simple_binop (SImode, MINUS, ac->shift, byteoffset,
4171 NULL_RTX, 1, OPTAB_DIRECT);
4174 /* Shift is the byte count, but we need the bitcount. */
4175 ac->shift = expand_simple_binop (SImode, MULT, ac->shift, GEN_INT (BITS_PER_UNIT),
4176 NULL_RTX, 1, OPTAB_DIRECT);
4177 /* Calculate masks. */
4178 ac->modemask = expand_simple_binop (SImode, ASHIFT,
4179 GEN_INT (GET_MODE_MASK (mode)), ac->shift,
4180 NULL_RTX, 1, OPTAB_DIRECT);
4181 ac->modemaski = expand_simple_unop (SImode, NOT, ac->modemask, NULL_RTX, 1);
4184 /* Expand an atomic compare and swap operation for HImode and QImode. MEM is
4185 the memory location, CMP the old value to compare MEM with and NEW the value
4186 to set if CMP == MEM.
4187 CMP is never in memory for compare_and_swap_cc because
4188 expand_bool_compare_and_swap puts it into a register for later compare. */
4190 void
4191 s390_expand_cs_hqi (enum machine_mode mode, rtx target, rtx mem, rtx cmp, rtx new)
4193 struct alignment_context ac;
4194 rtx cmpv, newv, val, resv, cc;
4195 rtx res = gen_reg_rtx (SImode);
4196 rtx csloop = gen_label_rtx ();
4197 rtx csend = gen_label_rtx ();
4199 gcc_assert (register_operand (target, VOIDmode));
4200 gcc_assert (MEM_P (mem));
4202 init_alignment_context (&ac, mem, mode);
4204 /* Shift the values to the correct bit positions. */
4205 if (!(ac.aligned && MEM_P (cmp)))
4206 cmp = s390_expand_mask_and_shift (cmp, mode, ac.shift);
4207 if (!(ac.aligned && MEM_P (new)))
4208 new = s390_expand_mask_and_shift (new, mode, ac.shift);
4210 /* Load full word. Subsequent loads are performed by CS. */
4211 val = expand_simple_binop (SImode, AND, ac.memsi, ac.modemaski,
4212 NULL_RTX, 1, OPTAB_DIRECT);
4214 /* Start CS loop. */
4215 emit_label (csloop);
4216 /* val = "<mem>00..0<mem>"
4217 * cmp = "00..0<cmp>00..0"
4218 * new = "00..0<new>00..0"
4221 /* Patch cmp and new with val at correct position. */
4222 if (ac.aligned && MEM_P (cmp))
4224 cmpv = force_reg (SImode, val);
4225 store_bit_field (cmpv, GET_MODE_BITSIZE (mode), 0, SImode, cmp);
4227 else
4228 cmpv = force_reg (SImode, expand_simple_binop (SImode, IOR, cmp, val,
4229 NULL_RTX, 1, OPTAB_DIRECT));
4230 if (ac.aligned && MEM_P (new))
4232 newv = force_reg (SImode, val);
4233 store_bit_field (newv, GET_MODE_BITSIZE (mode), 0, SImode, new);
4235 else
4236 newv = force_reg (SImode, expand_simple_binop (SImode, IOR, new, val,
4237 NULL_RTX, 1, OPTAB_DIRECT));
4239 /* Jump to end if we're done (likely?). */
4240 s390_emit_jump (csend, s390_emit_compare_and_swap (EQ, res, ac.memsi,
4241 cmpv, newv));
4243 /* Check for changes outside mode. */
4244 resv = expand_simple_binop (SImode, AND, res, ac.modemaski,
4245 NULL_RTX, 1, OPTAB_DIRECT);
4246 cc = s390_emit_compare (NE, resv, val);
4247 emit_move_insn (val, resv);
4248 /* Loop internal if so. */
4249 s390_emit_jump (csloop, cc);
4251 emit_label (csend);
4253 /* Return the correct part of the bitfield. */
4254 convert_move (target, expand_simple_binop (SImode, LSHIFTRT, res, ac.shift,
4255 NULL_RTX, 1, OPTAB_DIRECT), 1);
4258 /* Expand an atomic operation CODE of mode MODE. MEM is the memory location
4259 and VAL the value to play with. If AFTER is true then store the value
4260 MEM holds after the operation, if AFTER is false then store the value MEM
4261 holds before the operation. If TARGET is zero then discard that value, else
4262 store it to TARGET. */
4264 void
4265 s390_expand_atomic (enum machine_mode mode, enum rtx_code code,
4266 rtx target, rtx mem, rtx val, bool after)
4268 struct alignment_context ac;
4269 rtx cmp;
4270 rtx new = gen_reg_rtx (SImode);
4271 rtx orig = gen_reg_rtx (SImode);
4272 rtx csloop = gen_label_rtx ();
4274 gcc_assert (!target || register_operand (target, VOIDmode));
4275 gcc_assert (MEM_P (mem));
4277 init_alignment_context (&ac, mem, mode);
4279 /* Shift val to the correct bit positions.
4280 Preserve "icm", but prevent "ex icm". */
4281 if (!(ac.aligned && code == SET && MEM_P (val)))
4282 val = s390_expand_mask_and_shift (val, mode, ac.shift);
4284 /* Further preparation insns. */
4285 if (code == PLUS || code == MINUS)
4286 emit_move_insn (orig, val);
4287 else if (code == MULT || code == AND) /* val = "11..1<val>11..1" */
4288 val = expand_simple_binop (SImode, XOR, val, ac.modemaski,
4289 NULL_RTX, 1, OPTAB_DIRECT);
4291 /* Load full word. Subsequent loads are performed by CS. */
4292 cmp = force_reg (SImode, ac.memsi);
4294 /* Start CS loop. */
4295 emit_label (csloop);
4296 emit_move_insn (new, cmp);
4298 /* Patch new with val at correct position. */
4299 switch (code)
4301 case PLUS:
4302 case MINUS:
4303 val = expand_simple_binop (SImode, code, new, orig,
4304 NULL_RTX, 1, OPTAB_DIRECT);
4305 val = expand_simple_binop (SImode, AND, val, ac.modemask,
4306 NULL_RTX, 1, OPTAB_DIRECT);
4307 /* FALLTHRU */
4308 case SET:
4309 if (ac.aligned && MEM_P (val))
4310 store_bit_field (new, GET_MODE_BITSIZE (mode), 0, SImode, val);
4311 else
4313 new = expand_simple_binop (SImode, AND, new, ac.modemaski,
4314 NULL_RTX, 1, OPTAB_DIRECT);
4315 new = expand_simple_binop (SImode, IOR, new, val,
4316 NULL_RTX, 1, OPTAB_DIRECT);
4318 break;
4319 case AND:
4320 case IOR:
4321 case XOR:
4322 new = expand_simple_binop (SImode, code, new, val,
4323 NULL_RTX, 1, OPTAB_DIRECT);
4324 break;
4325 case MULT: /* NAND */
4326 new = expand_simple_binop (SImode, XOR, new, ac.modemask,
4327 NULL_RTX, 1, OPTAB_DIRECT);
4328 new = expand_simple_binop (SImode, AND, new, val,
4329 NULL_RTX, 1, OPTAB_DIRECT);
4330 break;
4331 default:
4332 gcc_unreachable ();
4335 s390_emit_jump (csloop, s390_emit_compare_and_swap (NE, cmp,
4336 ac.memsi, cmp, new));
4338 /* Return the correct part of the bitfield. */
4339 if (target)
4340 convert_move (target, expand_simple_binop (SImode, LSHIFTRT,
4341 after ? new : cmp, ac.shift,
4342 NULL_RTX, 1, OPTAB_DIRECT), 1);
4345 /* This is called from dwarf2out.c via TARGET_ASM_OUTPUT_DWARF_DTPREL.
4346 We need to emit DTP-relative relocations. */
4348 static void s390_output_dwarf_dtprel (FILE *, int, rtx) ATTRIBUTE_UNUSED;
4350 static void
4351 s390_output_dwarf_dtprel (FILE *file, int size, rtx x)
4353 switch (size)
4355 case 4:
4356 fputs ("\t.long\t", file);
4357 break;
4358 case 8:
4359 fputs ("\t.quad\t", file);
4360 break;
4361 default:
4362 gcc_unreachable ();
4364 output_addr_const (file, x);
4365 fputs ("@DTPOFF", file);
4368 #ifdef TARGET_ALTERNATE_LONG_DOUBLE_MANGLING
4369 /* Implement TARGET_MANGLE_TYPE. */
4371 static const char *
4372 s390_mangle_type (const_tree type)
4374 if (TYPE_MAIN_VARIANT (type) == long_double_type_node
4375 && TARGET_LONG_DOUBLE_128)
4376 return "g";
4378 /* For all other types, use normal C++ mangling. */
4379 return NULL;
4381 #endif
4383 /* In the name of slightly smaller debug output, and to cater to
4384 general assembler lossage, recognize various UNSPEC sequences
4385 and turn them back into a direct symbol reference. */
4387 static rtx
4388 s390_delegitimize_address (rtx orig_x)
4390 rtx x = orig_x, y;
4392 if (GET_CODE (x) != MEM)
4393 return orig_x;
4395 x = XEXP (x, 0);
4396 if (GET_CODE (x) == PLUS
4397 && GET_CODE (XEXP (x, 1)) == CONST
4398 && GET_CODE (XEXP (x, 0)) == REG
4399 && REGNO (XEXP (x, 0)) == PIC_OFFSET_TABLE_REGNUM)
4401 y = XEXP (XEXP (x, 1), 0);
4402 if (GET_CODE (y) == UNSPEC
4403 && XINT (y, 1) == UNSPEC_GOT)
4404 return XVECEXP (y, 0, 0);
4405 return orig_x;
4408 if (GET_CODE (x) == CONST)
4410 y = XEXP (x, 0);
4411 if (GET_CODE (y) == UNSPEC
4412 && XINT (y, 1) == UNSPEC_GOTENT)
4413 return XVECEXP (y, 0, 0);
4414 return orig_x;
4417 return orig_x;
4420 /* Output operand OP to stdio stream FILE.
4421 OP is an address (register + offset) which is not used to address data;
4422 instead the rightmost bits are interpreted as the value. */
4424 static void
4425 print_shift_count_operand (FILE *file, rtx op)
4427 HOST_WIDE_INT offset;
4428 rtx base;
4430 /* Extract base register and offset. */
4431 if (!s390_decompose_shift_count (op, &base, &offset))
4432 gcc_unreachable ();
4434 /* Sanity check. */
4435 if (base)
4437 gcc_assert (GET_CODE (base) == REG);
4438 gcc_assert (REGNO (base) < FIRST_PSEUDO_REGISTER);
4439 gcc_assert (REGNO_REG_CLASS (REGNO (base)) == ADDR_REGS);
4442 /* Offsets are constricted to twelve bits. */
4443 fprintf (file, HOST_WIDE_INT_PRINT_DEC, offset & ((1 << 12) - 1));
4444 if (base)
4445 fprintf (file, "(%s)", reg_names[REGNO (base)]);
4448 /* See 'get_some_local_dynamic_name'. */
4450 static int
4451 get_some_local_dynamic_name_1 (rtx *px, void *data ATTRIBUTE_UNUSED)
4453 rtx x = *px;
4455 if (GET_CODE (x) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (x))
4457 x = get_pool_constant (x);
4458 return for_each_rtx (&x, get_some_local_dynamic_name_1, 0);
4461 if (GET_CODE (x) == SYMBOL_REF
4462 && tls_symbolic_operand (x) == TLS_MODEL_LOCAL_DYNAMIC)
4464 cfun->machine->some_ld_name = XSTR (x, 0);
4465 return 1;
4468 return 0;
4471 /* Locate some local-dynamic symbol still in use by this function
4472 so that we can print its name in local-dynamic base patterns. */
4474 static const char *
4475 get_some_local_dynamic_name (void)
4477 rtx insn;
4479 if (cfun->machine->some_ld_name)
4480 return cfun->machine->some_ld_name;
4482 for (insn = get_insns (); insn ; insn = NEXT_INSN (insn))
4483 if (INSN_P (insn)
4484 && for_each_rtx (&PATTERN (insn), get_some_local_dynamic_name_1, 0))
4485 return cfun->machine->some_ld_name;
4487 gcc_unreachable ();
4490 /* Output machine-dependent UNSPECs occurring in address constant X
4491 in assembler syntax to stdio stream FILE. Returns true if the
4492 constant X could be recognized, false otherwise. */
4494 bool
4495 s390_output_addr_const_extra (FILE *file, rtx x)
4497 if (GET_CODE (x) == UNSPEC && XVECLEN (x, 0) == 1)
4498 switch (XINT (x, 1))
4500 case UNSPEC_GOTENT:
4501 output_addr_const (file, XVECEXP (x, 0, 0));
4502 fprintf (file, "@GOTENT");
4503 return true;
4504 case UNSPEC_GOT:
4505 output_addr_const (file, XVECEXP (x, 0, 0));
4506 fprintf (file, "@GOT");
4507 return true;
4508 case UNSPEC_GOTOFF:
4509 output_addr_const (file, XVECEXP (x, 0, 0));
4510 fprintf (file, "@GOTOFF");
4511 return true;
4512 case UNSPEC_PLT:
4513 output_addr_const (file, XVECEXP (x, 0, 0));
4514 fprintf (file, "@PLT");
4515 return true;
4516 case UNSPEC_PLTOFF:
4517 output_addr_const (file, XVECEXP (x, 0, 0));
4518 fprintf (file, "@PLTOFF");
4519 return true;
4520 case UNSPEC_TLSGD:
4521 output_addr_const (file, XVECEXP (x, 0, 0));
4522 fprintf (file, "@TLSGD");
4523 return true;
4524 case UNSPEC_TLSLDM:
4525 assemble_name (file, get_some_local_dynamic_name ());
4526 fprintf (file, "@TLSLDM");
4527 return true;
4528 case UNSPEC_DTPOFF:
4529 output_addr_const (file, XVECEXP (x, 0, 0));
4530 fprintf (file, "@DTPOFF");
4531 return true;
4532 case UNSPEC_NTPOFF:
4533 output_addr_const (file, XVECEXP (x, 0, 0));
4534 fprintf (file, "@NTPOFF");
4535 return true;
4536 case UNSPEC_GOTNTPOFF:
4537 output_addr_const (file, XVECEXP (x, 0, 0));
4538 fprintf (file, "@GOTNTPOFF");
4539 return true;
4540 case UNSPEC_INDNTPOFF:
4541 output_addr_const (file, XVECEXP (x, 0, 0));
4542 fprintf (file, "@INDNTPOFF");
4543 return true;
4546 return false;
4549 /* Output address operand ADDR in assembler syntax to
4550 stdio stream FILE. */
4552 void
4553 print_operand_address (FILE *file, rtx addr)
4555 struct s390_address ad;
4557 if (!s390_decompose_address (addr, &ad)
4558 || (ad.base && !REGNO_OK_FOR_BASE_P (REGNO (ad.base)))
4559 || (ad.indx && !REGNO_OK_FOR_INDEX_P (REGNO (ad.indx))))
4560 output_operand_lossage ("cannot decompose address");
4562 if (ad.disp)
4563 output_addr_const (file, ad.disp);
4564 else
4565 fprintf (file, "0");
4567 if (ad.base && ad.indx)
4568 fprintf (file, "(%s,%s)", reg_names[REGNO (ad.indx)],
4569 reg_names[REGNO (ad.base)]);
4570 else if (ad.base)
4571 fprintf (file, "(%s)", reg_names[REGNO (ad.base)]);
4574 /* Output operand X in assembler syntax to stdio stream FILE.
4575 CODE specified the format flag. The following format flags
4576 are recognized:
4578 'C': print opcode suffix for branch condition.
4579 'D': print opcode suffix for inverse branch condition.
4580 'J': print tls_load/tls_gdcall/tls_ldcall suffix
4581 'G': print the size of the operand in bytes.
4582 'O': print only the displacement of a memory reference.
4583 'R': print only the base register of a memory reference.
4584 'S': print S-type memory reference (base+displacement).
4585 'N': print the second word of a DImode operand.
4586 'M': print the second word of a TImode operand.
4587 'Y': print shift count operand.
4589 'b': print integer X as if it's an unsigned byte.
4590 'x': print integer X as if it's an unsigned halfword.
4591 'h': print integer X as if it's a signed halfword.
4592 'i': print the first nonzero HImode part of X.
4593 'j': print the first HImode part unequal to -1 of X.
4594 'k': print the first nonzero SImode part of X.
4595 'm': print the first SImode part unequal to -1 of X.
4596 'o': print integer X as if it's an unsigned 32bit word. */
4598 void
4599 print_operand (FILE *file, rtx x, int code)
4601 switch (code)
4603 case 'C':
4604 fprintf (file, s390_branch_condition_mnemonic (x, FALSE));
4605 return;
4607 case 'D':
4608 fprintf (file, s390_branch_condition_mnemonic (x, TRUE));
4609 return;
4611 case 'J':
4612 if (GET_CODE (x) == SYMBOL_REF)
4614 fprintf (file, "%s", ":tls_load:");
4615 output_addr_const (file, x);
4617 else if (GET_CODE (x) == UNSPEC && XINT (x, 1) == UNSPEC_TLSGD)
4619 fprintf (file, "%s", ":tls_gdcall:");
4620 output_addr_const (file, XVECEXP (x, 0, 0));
4622 else if (GET_CODE (x) == UNSPEC && XINT (x, 1) == UNSPEC_TLSLDM)
4624 fprintf (file, "%s", ":tls_ldcall:");
4625 assemble_name (file, get_some_local_dynamic_name ());
4627 else
4628 gcc_unreachable ();
4629 return;
4631 case 'G':
4632 fprintf (file, "%u", GET_MODE_SIZE (GET_MODE (x)));
4633 return;
4635 case 'O':
4637 struct s390_address ad;
4638 int ret;
4640 gcc_assert (GET_CODE (x) == MEM);
4641 ret = s390_decompose_address (XEXP (x, 0), &ad);
4642 gcc_assert (ret);
4643 gcc_assert (!ad.base || REGNO_OK_FOR_BASE_P (REGNO (ad.base)));
4644 gcc_assert (!ad.indx);
4646 if (ad.disp)
4647 output_addr_const (file, ad.disp);
4648 else
4649 fprintf (file, "0");
4651 return;
4653 case 'R':
4655 struct s390_address ad;
4656 int ret;
4658 gcc_assert (GET_CODE (x) == MEM);
4659 ret = s390_decompose_address (XEXP (x, 0), &ad);
4660 gcc_assert (ret);
4661 gcc_assert (!ad.base || REGNO_OK_FOR_BASE_P (REGNO (ad.base)));
4662 gcc_assert (!ad.indx);
4664 if (ad.base)
4665 fprintf (file, "%s", reg_names[REGNO (ad.base)]);
4666 else
4667 fprintf (file, "0");
4669 return;
4671 case 'S':
4673 struct s390_address ad;
4674 int ret;
4676 gcc_assert (GET_CODE (x) == MEM);
4677 ret = s390_decompose_address (XEXP (x, 0), &ad);
4678 gcc_assert (ret);
4679 gcc_assert (!ad.base || REGNO_OK_FOR_BASE_P (REGNO (ad.base)));
4680 gcc_assert (!ad.indx);
4682 if (ad.disp)
4683 output_addr_const (file, ad.disp);
4684 else
4685 fprintf (file, "0");
4687 if (ad.base)
4688 fprintf (file, "(%s)", reg_names[REGNO (ad.base)]);
4690 return;
4692 case 'N':
4693 if (GET_CODE (x) == REG)
4694 x = gen_rtx_REG (GET_MODE (x), REGNO (x) + 1);
4695 else if (GET_CODE (x) == MEM)
4696 x = change_address (x, VOIDmode, plus_constant (XEXP (x, 0), 4));
4697 else
4698 gcc_unreachable ();
4699 break;
4701 case 'M':
4702 if (GET_CODE (x) == REG)
4703 x = gen_rtx_REG (GET_MODE (x), REGNO (x) + 1);
4704 else if (GET_CODE (x) == MEM)
4705 x = change_address (x, VOIDmode, plus_constant (XEXP (x, 0), 8));
4706 else
4707 gcc_unreachable ();
4708 break;
4710 case 'Y':
4711 print_shift_count_operand (file, x);
4712 return;
4715 switch (GET_CODE (x))
4717 case REG:
4718 fprintf (file, "%s", reg_names[REGNO (x)]);
4719 break;
4721 case MEM:
4722 output_address (XEXP (x, 0));
4723 break;
4725 case CONST:
4726 case CODE_LABEL:
4727 case LABEL_REF:
4728 case SYMBOL_REF:
4729 output_addr_const (file, x);
4730 break;
4732 case CONST_INT:
4733 if (code == 'b')
4734 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) & 0xff);
4735 else if (code == 'x')
4736 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) & 0xffff);
4737 else if (code == 'h')
4738 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ((INTVAL (x) & 0xffff) ^ 0x8000) - 0x8000);
4739 else if (code == 'i')
4740 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
4741 s390_extract_part (x, HImode, 0));
4742 else if (code == 'j')
4743 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
4744 s390_extract_part (x, HImode, -1));
4745 else if (code == 'k')
4746 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
4747 s390_extract_part (x, SImode, 0));
4748 else if (code == 'm')
4749 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
4750 s390_extract_part (x, SImode, -1));
4751 else if (code == 'o')
4752 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) & 0xffffffff);
4753 else
4754 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
4755 break;
4757 case CONST_DOUBLE:
4758 gcc_assert (GET_MODE (x) == VOIDmode);
4759 if (code == 'b')
4760 fprintf (file, HOST_WIDE_INT_PRINT_DEC, CONST_DOUBLE_LOW (x) & 0xff);
4761 else if (code == 'x')
4762 fprintf (file, HOST_WIDE_INT_PRINT_DEC, CONST_DOUBLE_LOW (x) & 0xffff);
4763 else if (code == 'h')
4764 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ((CONST_DOUBLE_LOW (x) & 0xffff) ^ 0x8000) - 0x8000);
4765 else
4766 gcc_unreachable ();
4767 break;
4769 default:
4770 fatal_insn ("UNKNOWN in print_operand !?", x);
4771 break;
4775 /* Target hook for assembling integer objects. We need to define it
4776 here to work a round a bug in some versions of GAS, which couldn't
4777 handle values smaller than INT_MIN when printed in decimal. */
4779 static bool
4780 s390_assemble_integer (rtx x, unsigned int size, int aligned_p)
4782 if (size == 8 && aligned_p
4783 && GET_CODE (x) == CONST_INT && INTVAL (x) < INT_MIN)
4785 fprintf (asm_out_file, "\t.quad\t" HOST_WIDE_INT_PRINT_HEX "\n",
4786 INTVAL (x));
4787 return true;
4789 return default_assemble_integer (x, size, aligned_p);
4792 /* Returns true if register REGNO is used for forming
4793 a memory address in expression X. */
4795 static bool
4796 reg_used_in_mem_p (int regno, rtx x)
4798 enum rtx_code code = GET_CODE (x);
4799 int i, j;
4800 const char *fmt;
4802 if (code == MEM)
4804 if (refers_to_regno_p (regno, regno+1,
4805 XEXP (x, 0), 0))
4806 return true;
4808 else if (code == SET
4809 && GET_CODE (SET_DEST (x)) == PC)
4811 if (refers_to_regno_p (regno, regno+1,
4812 SET_SRC (x), 0))
4813 return true;
4816 fmt = GET_RTX_FORMAT (code);
4817 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4819 if (fmt[i] == 'e'
4820 && reg_used_in_mem_p (regno, XEXP (x, i)))
4821 return true;
4823 else if (fmt[i] == 'E')
4824 for (j = 0; j < XVECLEN (x, i); j++)
4825 if (reg_used_in_mem_p (regno, XVECEXP (x, i, j)))
4826 return true;
4828 return false;
4831 /* Returns true if expression DEP_RTX sets an address register
4832 used by instruction INSN to address memory. */
4834 static bool
4835 addr_generation_dependency_p (rtx dep_rtx, rtx insn)
4837 rtx target, pat;
4839 if (GET_CODE (dep_rtx) == INSN)
4840 dep_rtx = PATTERN (dep_rtx);
4842 if (GET_CODE (dep_rtx) == SET)
4844 target = SET_DEST (dep_rtx);
4845 if (GET_CODE (target) == STRICT_LOW_PART)
4846 target = XEXP (target, 0);
4847 while (GET_CODE (target) == SUBREG)
4848 target = SUBREG_REG (target);
4850 if (GET_CODE (target) == REG)
4852 int regno = REGNO (target);
4854 if (s390_safe_attr_type (insn) == TYPE_LA)
4856 pat = PATTERN (insn);
4857 if (GET_CODE (pat) == PARALLEL)
4859 gcc_assert (XVECLEN (pat, 0) == 2);
4860 pat = XVECEXP (pat, 0, 0);
4862 gcc_assert (GET_CODE (pat) == SET);
4863 return refers_to_regno_p (regno, regno+1, SET_SRC (pat), 0);
4865 else if (get_attr_atype (insn) == ATYPE_AGEN)
4866 return reg_used_in_mem_p (regno, PATTERN (insn));
4869 return false;
4872 /* Return 1, if dep_insn sets register used in insn in the agen unit. */
4875 s390_agen_dep_p (rtx dep_insn, rtx insn)
4877 rtx dep_rtx = PATTERN (dep_insn);
4878 int i;
4880 if (GET_CODE (dep_rtx) == SET
4881 && addr_generation_dependency_p (dep_rtx, insn))
4882 return 1;
4883 else if (GET_CODE (dep_rtx) == PARALLEL)
4885 for (i = 0; i < XVECLEN (dep_rtx, 0); i++)
4887 if (addr_generation_dependency_p (XVECEXP (dep_rtx, 0, i), insn))
4888 return 1;
4891 return 0;
4894 /* A C statement (sans semicolon) to update the integer scheduling priority
4895 INSN_PRIORITY (INSN). Increase the priority to execute the INSN earlier,
4896 reduce the priority to execute INSN later. Do not define this macro if
4897 you do not need to adjust the scheduling priorities of insns.
4899 A STD instruction should be scheduled earlier,
4900 in order to use the bypass. */
4902 static int
4903 s390_adjust_priority (rtx insn ATTRIBUTE_UNUSED, int priority)
4905 if (! INSN_P (insn))
4906 return priority;
4908 if (s390_tune != PROCESSOR_2084_Z990
4909 && s390_tune != PROCESSOR_2094_Z9_109)
4910 return priority;
4912 switch (s390_safe_attr_type (insn))
4914 case TYPE_FSTOREDF:
4915 case TYPE_FSTORESF:
4916 priority = priority << 3;
4917 break;
4918 case TYPE_STORE:
4919 case TYPE_STM:
4920 priority = priority << 1;
4921 break;
4922 default:
4923 break;
4925 return priority;
4928 /* The number of instructions that can be issued per cycle. */
4930 static int
4931 s390_issue_rate (void)
4933 if (s390_tune == PROCESSOR_2084_Z990
4934 || s390_tune == PROCESSOR_2094_Z9_109)
4935 return 3;
4936 return 1;
4939 static int
4940 s390_first_cycle_multipass_dfa_lookahead (void)
4942 return 4;
4946 /* Annotate every literal pool reference in X by an UNSPEC_LTREF expression.
4947 Fix up MEMs as required. */
4949 static void
4950 annotate_constant_pool_refs (rtx *x)
4952 int i, j;
4953 const char *fmt;
4955 gcc_assert (GET_CODE (*x) != SYMBOL_REF
4956 || !CONSTANT_POOL_ADDRESS_P (*x));
4958 /* Literal pool references can only occur inside a MEM ... */
4959 if (GET_CODE (*x) == MEM)
4961 rtx memref = XEXP (*x, 0);
4963 if (GET_CODE (memref) == SYMBOL_REF
4964 && CONSTANT_POOL_ADDRESS_P (memref))
4966 rtx base = cfun->machine->base_reg;
4967 rtx addr = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, memref, base),
4968 UNSPEC_LTREF);
4970 *x = replace_equiv_address (*x, addr);
4971 return;
4974 if (GET_CODE (memref) == CONST
4975 && GET_CODE (XEXP (memref, 0)) == PLUS
4976 && GET_CODE (XEXP (XEXP (memref, 0), 1)) == CONST_INT
4977 && GET_CODE (XEXP (XEXP (memref, 0), 0)) == SYMBOL_REF
4978 && CONSTANT_POOL_ADDRESS_P (XEXP (XEXP (memref, 0), 0)))
4980 HOST_WIDE_INT off = INTVAL (XEXP (XEXP (memref, 0), 1));
4981 rtx sym = XEXP (XEXP (memref, 0), 0);
4982 rtx base = cfun->machine->base_reg;
4983 rtx addr = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, sym, base),
4984 UNSPEC_LTREF);
4986 *x = replace_equiv_address (*x, plus_constant (addr, off));
4987 return;
4991 /* ... or a load-address type pattern. */
4992 if (GET_CODE (*x) == SET)
4994 rtx addrref = SET_SRC (*x);
4996 if (GET_CODE (addrref) == SYMBOL_REF
4997 && CONSTANT_POOL_ADDRESS_P (addrref))
4999 rtx base = cfun->machine->base_reg;
5000 rtx addr = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, addrref, base),
5001 UNSPEC_LTREF);
5003 SET_SRC (*x) = addr;
5004 return;
5007 if (GET_CODE (addrref) == CONST
5008 && GET_CODE (XEXP (addrref, 0)) == PLUS
5009 && GET_CODE (XEXP (XEXP (addrref, 0), 1)) == CONST_INT
5010 && GET_CODE (XEXP (XEXP (addrref, 0), 0)) == SYMBOL_REF
5011 && CONSTANT_POOL_ADDRESS_P (XEXP (XEXP (addrref, 0), 0)))
5013 HOST_WIDE_INT off = INTVAL (XEXP (XEXP (addrref, 0), 1));
5014 rtx sym = XEXP (XEXP (addrref, 0), 0);
5015 rtx base = cfun->machine->base_reg;
5016 rtx addr = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, sym, base),
5017 UNSPEC_LTREF);
5019 SET_SRC (*x) = plus_constant (addr, off);
5020 return;
5024 /* Annotate LTREL_BASE as well. */
5025 if (GET_CODE (*x) == UNSPEC
5026 && XINT (*x, 1) == UNSPEC_LTREL_BASE)
5028 rtx base = cfun->machine->base_reg;
5029 *x = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, XVECEXP (*x, 0, 0), base),
5030 UNSPEC_LTREL_BASE);
5031 return;
5034 fmt = GET_RTX_FORMAT (GET_CODE (*x));
5035 for (i = GET_RTX_LENGTH (GET_CODE (*x)) - 1; i >= 0; i--)
5037 if (fmt[i] == 'e')
5039 annotate_constant_pool_refs (&XEXP (*x, i));
5041 else if (fmt[i] == 'E')
5043 for (j = 0; j < XVECLEN (*x, i); j++)
5044 annotate_constant_pool_refs (&XVECEXP (*x, i, j));
5049 /* Split all branches that exceed the maximum distance.
5050 Returns true if this created a new literal pool entry. */
5052 static int
5053 s390_split_branches (void)
5055 rtx temp_reg = gen_rtx_REG (Pmode, RETURN_REGNUM);
5056 int new_literal = 0, ret;
5057 rtx insn, pat, tmp, target;
5058 rtx *label;
5060 /* We need correct insn addresses. */
5062 shorten_branches (get_insns ());
5064 /* Find all branches that exceed 64KB, and split them. */
5066 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
5068 if (GET_CODE (insn) != JUMP_INSN)
5069 continue;
5071 pat = PATTERN (insn);
5072 if (GET_CODE (pat) == PARALLEL && XVECLEN (pat, 0) > 2)
5073 pat = XVECEXP (pat, 0, 0);
5074 if (GET_CODE (pat) != SET || SET_DEST (pat) != pc_rtx)
5075 continue;
5077 if (GET_CODE (SET_SRC (pat)) == LABEL_REF)
5079 label = &SET_SRC (pat);
5081 else if (GET_CODE (SET_SRC (pat)) == IF_THEN_ELSE)
5083 if (GET_CODE (XEXP (SET_SRC (pat), 1)) == LABEL_REF)
5084 label = &XEXP (SET_SRC (pat), 1);
5085 else if (GET_CODE (XEXP (SET_SRC (pat), 2)) == LABEL_REF)
5086 label = &XEXP (SET_SRC (pat), 2);
5087 else
5088 continue;
5090 else
5091 continue;
5093 if (get_attr_length (insn) <= 4)
5094 continue;
5096 /* We are going to use the return register as scratch register,
5097 make sure it will be saved/restored by the prologue/epilogue. */
5098 cfun_frame_layout.save_return_addr_p = 1;
5100 if (!flag_pic)
5102 new_literal = 1;
5103 tmp = force_const_mem (Pmode, *label);
5104 tmp = emit_insn_before (gen_rtx_SET (Pmode, temp_reg, tmp), insn);
5105 INSN_ADDRESSES_NEW (tmp, -1);
5106 annotate_constant_pool_refs (&PATTERN (tmp));
5108 target = temp_reg;
5110 else
5112 new_literal = 1;
5113 target = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, *label),
5114 UNSPEC_LTREL_OFFSET);
5115 target = gen_rtx_CONST (Pmode, target);
5116 target = force_const_mem (Pmode, target);
5117 tmp = emit_insn_before (gen_rtx_SET (Pmode, temp_reg, target), insn);
5118 INSN_ADDRESSES_NEW (tmp, -1);
5119 annotate_constant_pool_refs (&PATTERN (tmp));
5121 target = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, XEXP (target, 0),
5122 cfun->machine->base_reg),
5123 UNSPEC_LTREL_BASE);
5124 target = gen_rtx_PLUS (Pmode, temp_reg, target);
5127 ret = validate_change (insn, label, target, 0);
5128 gcc_assert (ret);
5131 return new_literal;
5135 /* Find an annotated literal pool symbol referenced in RTX X,
5136 and store it at REF. Will abort if X contains references to
5137 more than one such pool symbol; multiple references to the same
5138 symbol are allowed, however.
5140 The rtx pointed to by REF must be initialized to NULL_RTX
5141 by the caller before calling this routine. */
5143 static void
5144 find_constant_pool_ref (rtx x, rtx *ref)
5146 int i, j;
5147 const char *fmt;
5149 /* Ignore LTREL_BASE references. */
5150 if (GET_CODE (x) == UNSPEC
5151 && XINT (x, 1) == UNSPEC_LTREL_BASE)
5152 return;
5153 /* Likewise POOL_ENTRY insns. */
5154 if (GET_CODE (x) == UNSPEC_VOLATILE
5155 && XINT (x, 1) == UNSPECV_POOL_ENTRY)
5156 return;
5158 gcc_assert (GET_CODE (x) != SYMBOL_REF
5159 || !CONSTANT_POOL_ADDRESS_P (x));
5161 if (GET_CODE (x) == UNSPEC && XINT (x, 1) == UNSPEC_LTREF)
5163 rtx sym = XVECEXP (x, 0, 0);
5164 gcc_assert (GET_CODE (sym) == SYMBOL_REF
5165 && CONSTANT_POOL_ADDRESS_P (sym));
5167 if (*ref == NULL_RTX)
5168 *ref = sym;
5169 else
5170 gcc_assert (*ref == sym);
5172 return;
5175 fmt = GET_RTX_FORMAT (GET_CODE (x));
5176 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
5178 if (fmt[i] == 'e')
5180 find_constant_pool_ref (XEXP (x, i), ref);
5182 else if (fmt[i] == 'E')
5184 for (j = 0; j < XVECLEN (x, i); j++)
5185 find_constant_pool_ref (XVECEXP (x, i, j), ref);
5190 /* Replace every reference to the annotated literal pool
5191 symbol REF in X by its base plus OFFSET. */
5193 static void
5194 replace_constant_pool_ref (rtx *x, rtx ref, rtx offset)
5196 int i, j;
5197 const char *fmt;
5199 gcc_assert (*x != ref);
5201 if (GET_CODE (*x) == UNSPEC
5202 && XINT (*x, 1) == UNSPEC_LTREF
5203 && XVECEXP (*x, 0, 0) == ref)
5205 *x = gen_rtx_PLUS (Pmode, XVECEXP (*x, 0, 1), offset);
5206 return;
5209 if (GET_CODE (*x) == PLUS
5210 && GET_CODE (XEXP (*x, 1)) == CONST_INT
5211 && GET_CODE (XEXP (*x, 0)) == UNSPEC
5212 && XINT (XEXP (*x, 0), 1) == UNSPEC_LTREF
5213 && XVECEXP (XEXP (*x, 0), 0, 0) == ref)
5215 rtx addr = gen_rtx_PLUS (Pmode, XVECEXP (XEXP (*x, 0), 0, 1), offset);
5216 *x = plus_constant (addr, INTVAL (XEXP (*x, 1)));
5217 return;
5220 fmt = GET_RTX_FORMAT (GET_CODE (*x));
5221 for (i = GET_RTX_LENGTH (GET_CODE (*x)) - 1; i >= 0; i--)
5223 if (fmt[i] == 'e')
5225 replace_constant_pool_ref (&XEXP (*x, i), ref, offset);
5227 else if (fmt[i] == 'E')
5229 for (j = 0; j < XVECLEN (*x, i); j++)
5230 replace_constant_pool_ref (&XVECEXP (*x, i, j), ref, offset);
5235 /* Check whether X contains an UNSPEC_LTREL_BASE.
5236 Return its constant pool symbol if found, NULL_RTX otherwise. */
5238 static rtx
5239 find_ltrel_base (rtx x)
5241 int i, j;
5242 const char *fmt;
5244 if (GET_CODE (x) == UNSPEC
5245 && XINT (x, 1) == UNSPEC_LTREL_BASE)
5246 return XVECEXP (x, 0, 0);
5248 fmt = GET_RTX_FORMAT (GET_CODE (x));
5249 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
5251 if (fmt[i] == 'e')
5253 rtx fnd = find_ltrel_base (XEXP (x, i));
5254 if (fnd)
5255 return fnd;
5257 else if (fmt[i] == 'E')
5259 for (j = 0; j < XVECLEN (x, i); j++)
5261 rtx fnd = find_ltrel_base (XVECEXP (x, i, j));
5262 if (fnd)
5263 return fnd;
5268 return NULL_RTX;
5271 /* Replace any occurrence of UNSPEC_LTREL_BASE in X with its base. */
5273 static void
5274 replace_ltrel_base (rtx *x)
5276 int i, j;
5277 const char *fmt;
5279 if (GET_CODE (*x) == UNSPEC
5280 && XINT (*x, 1) == UNSPEC_LTREL_BASE)
5282 *x = XVECEXP (*x, 0, 1);
5283 return;
5286 fmt = GET_RTX_FORMAT (GET_CODE (*x));
5287 for (i = GET_RTX_LENGTH (GET_CODE (*x)) - 1; i >= 0; i--)
5289 if (fmt[i] == 'e')
5291 replace_ltrel_base (&XEXP (*x, i));
5293 else if (fmt[i] == 'E')
5295 for (j = 0; j < XVECLEN (*x, i); j++)
5296 replace_ltrel_base (&XVECEXP (*x, i, j));
5302 /* We keep a list of constants which we have to add to internal
5303 constant tables in the middle of large functions. */
5305 #define NR_C_MODES 11
5306 enum machine_mode constant_modes[NR_C_MODES] =
5308 TFmode, TImode, TDmode,
5309 DFmode, DImode, DDmode,
5310 SFmode, SImode, SDmode,
5311 HImode,
5312 QImode
5315 struct constant
5317 struct constant *next;
5318 rtx value;
5319 rtx label;
5322 struct constant_pool
5324 struct constant_pool *next;
5325 rtx first_insn;
5326 rtx pool_insn;
5327 bitmap insns;
5328 rtx emit_pool_after;
5330 struct constant *constants[NR_C_MODES];
5331 struct constant *execute;
5332 rtx label;
5333 int size;
5336 /* Allocate new constant_pool structure. */
5338 static struct constant_pool *
5339 s390_alloc_pool (void)
5341 struct constant_pool *pool;
5342 int i;
5344 pool = (struct constant_pool *) xmalloc (sizeof *pool);
5345 pool->next = NULL;
5346 for (i = 0; i < NR_C_MODES; i++)
5347 pool->constants[i] = NULL;
5349 pool->execute = NULL;
5350 pool->label = gen_label_rtx ();
5351 pool->first_insn = NULL_RTX;
5352 pool->pool_insn = NULL_RTX;
5353 pool->insns = BITMAP_ALLOC (NULL);
5354 pool->size = 0;
5355 pool->emit_pool_after = NULL_RTX;
5357 return pool;
5360 /* Create new constant pool covering instructions starting at INSN
5361 and chain it to the end of POOL_LIST. */
5363 static struct constant_pool *
5364 s390_start_pool (struct constant_pool **pool_list, rtx insn)
5366 struct constant_pool *pool, **prev;
5368 pool = s390_alloc_pool ();
5369 pool->first_insn = insn;
5371 for (prev = pool_list; *prev; prev = &(*prev)->next)
5373 *prev = pool;
5375 return pool;
5378 /* End range of instructions covered by POOL at INSN and emit
5379 placeholder insn representing the pool. */
5381 static void
5382 s390_end_pool (struct constant_pool *pool, rtx insn)
5384 rtx pool_size = GEN_INT (pool->size + 8 /* alignment slop */);
5386 if (!insn)
5387 insn = get_last_insn ();
5389 pool->pool_insn = emit_insn_after (gen_pool (pool_size), insn);
5390 INSN_ADDRESSES_NEW (pool->pool_insn, -1);
5393 /* Add INSN to the list of insns covered by POOL. */
5395 static void
5396 s390_add_pool_insn (struct constant_pool *pool, rtx insn)
5398 bitmap_set_bit (pool->insns, INSN_UID (insn));
5401 /* Return pool out of POOL_LIST that covers INSN. */
5403 static struct constant_pool *
5404 s390_find_pool (struct constant_pool *pool_list, rtx insn)
5406 struct constant_pool *pool;
5408 for (pool = pool_list; pool; pool = pool->next)
5409 if (bitmap_bit_p (pool->insns, INSN_UID (insn)))
5410 break;
5412 return pool;
5415 /* Add constant VAL of mode MODE to the constant pool POOL. */
5417 static void
5418 s390_add_constant (struct constant_pool *pool, rtx val, enum machine_mode mode)
5420 struct constant *c;
5421 int i;
5423 for (i = 0; i < NR_C_MODES; i++)
5424 if (constant_modes[i] == mode)
5425 break;
5426 gcc_assert (i != NR_C_MODES);
5428 for (c = pool->constants[i]; c != NULL; c = c->next)
5429 if (rtx_equal_p (val, c->value))
5430 break;
5432 if (c == NULL)
5434 c = (struct constant *) xmalloc (sizeof *c);
5435 c->value = val;
5436 c->label = gen_label_rtx ();
5437 c->next = pool->constants[i];
5438 pool->constants[i] = c;
5439 pool->size += GET_MODE_SIZE (mode);
5443 /* Find constant VAL of mode MODE in the constant pool POOL.
5444 Return an RTX describing the distance from the start of
5445 the pool to the location of the new constant. */
5447 static rtx
5448 s390_find_constant (struct constant_pool *pool, rtx val,
5449 enum machine_mode mode)
5451 struct constant *c;
5452 rtx offset;
5453 int i;
5455 for (i = 0; i < NR_C_MODES; i++)
5456 if (constant_modes[i] == mode)
5457 break;
5458 gcc_assert (i != NR_C_MODES);
5460 for (c = pool->constants[i]; c != NULL; c = c->next)
5461 if (rtx_equal_p (val, c->value))
5462 break;
5464 gcc_assert (c);
5466 offset = gen_rtx_MINUS (Pmode, gen_rtx_LABEL_REF (Pmode, c->label),
5467 gen_rtx_LABEL_REF (Pmode, pool->label));
5468 offset = gen_rtx_CONST (Pmode, offset);
5469 return offset;
5472 /* Check whether INSN is an execute. Return the label_ref to its
5473 execute target template if so, NULL_RTX otherwise. */
5475 static rtx
5476 s390_execute_label (rtx insn)
5478 if (GET_CODE (insn) == INSN
5479 && GET_CODE (PATTERN (insn)) == PARALLEL
5480 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == UNSPEC
5481 && XINT (XVECEXP (PATTERN (insn), 0, 0), 1) == UNSPEC_EXECUTE)
5482 return XVECEXP (XVECEXP (PATTERN (insn), 0, 0), 0, 2);
5484 return NULL_RTX;
5487 /* Add execute target for INSN to the constant pool POOL. */
5489 static void
5490 s390_add_execute (struct constant_pool *pool, rtx insn)
5492 struct constant *c;
5494 for (c = pool->execute; c != NULL; c = c->next)
5495 if (INSN_UID (insn) == INSN_UID (c->value))
5496 break;
5498 if (c == NULL)
5500 c = (struct constant *) xmalloc (sizeof *c);
5501 c->value = insn;
5502 c->label = gen_label_rtx ();
5503 c->next = pool->execute;
5504 pool->execute = c;
5505 pool->size += 6;
5509 /* Find execute target for INSN in the constant pool POOL.
5510 Return an RTX describing the distance from the start of
5511 the pool to the location of the execute target. */
5513 static rtx
5514 s390_find_execute (struct constant_pool *pool, rtx insn)
5516 struct constant *c;
5517 rtx offset;
5519 for (c = pool->execute; c != NULL; c = c->next)
5520 if (INSN_UID (insn) == INSN_UID (c->value))
5521 break;
5523 gcc_assert (c);
5525 offset = gen_rtx_MINUS (Pmode, gen_rtx_LABEL_REF (Pmode, c->label),
5526 gen_rtx_LABEL_REF (Pmode, pool->label));
5527 offset = gen_rtx_CONST (Pmode, offset);
5528 return offset;
5531 /* For an execute INSN, extract the execute target template. */
5533 static rtx
5534 s390_execute_target (rtx insn)
5536 rtx pattern = PATTERN (insn);
5537 gcc_assert (s390_execute_label (insn));
5539 if (XVECLEN (pattern, 0) == 2)
5541 pattern = copy_rtx (XVECEXP (pattern, 0, 1));
5543 else
5545 rtvec vec = rtvec_alloc (XVECLEN (pattern, 0) - 1);
5546 int i;
5548 for (i = 0; i < XVECLEN (pattern, 0) - 1; i++)
5549 RTVEC_ELT (vec, i) = copy_rtx (XVECEXP (pattern, 0, i + 1));
5551 pattern = gen_rtx_PARALLEL (VOIDmode, vec);
5554 return pattern;
5557 /* Indicate that INSN cannot be duplicated. This is the case for
5558 execute insns that carry a unique label. */
5560 static bool
5561 s390_cannot_copy_insn_p (rtx insn)
5563 rtx label = s390_execute_label (insn);
5564 return label && label != const0_rtx;
5567 /* Dump out the constants in POOL. If REMOTE_LABEL is true,
5568 do not emit the pool base label. */
5570 static void
5571 s390_dump_pool (struct constant_pool *pool, bool remote_label)
5573 struct constant *c;
5574 rtx insn = pool->pool_insn;
5575 int i;
5577 /* Switch to rodata section. */
5578 if (TARGET_CPU_ZARCH)
5580 insn = emit_insn_after (gen_pool_section_start (), insn);
5581 INSN_ADDRESSES_NEW (insn, -1);
5584 /* Ensure minimum pool alignment. */
5585 if (TARGET_CPU_ZARCH)
5586 insn = emit_insn_after (gen_pool_align (GEN_INT (8)), insn);
5587 else
5588 insn = emit_insn_after (gen_pool_align (GEN_INT (4)), insn);
5589 INSN_ADDRESSES_NEW (insn, -1);
5591 /* Emit pool base label. */
5592 if (!remote_label)
5594 insn = emit_label_after (pool->label, insn);
5595 INSN_ADDRESSES_NEW (insn, -1);
5598 /* Dump constants in descending alignment requirement order,
5599 ensuring proper alignment for every constant. */
5600 for (i = 0; i < NR_C_MODES; i++)
5601 for (c = pool->constants[i]; c; c = c->next)
5603 /* Convert UNSPEC_LTREL_OFFSET unspecs to pool-relative references. */
5604 rtx value = copy_rtx (c->value);
5605 if (GET_CODE (value) == CONST
5606 && GET_CODE (XEXP (value, 0)) == UNSPEC
5607 && XINT (XEXP (value, 0), 1) == UNSPEC_LTREL_OFFSET
5608 && XVECLEN (XEXP (value, 0), 0) == 1)
5610 value = gen_rtx_MINUS (Pmode, XVECEXP (XEXP (value, 0), 0, 0),
5611 gen_rtx_LABEL_REF (VOIDmode, pool->label));
5612 value = gen_rtx_CONST (VOIDmode, value);
5615 insn = emit_label_after (c->label, insn);
5616 INSN_ADDRESSES_NEW (insn, -1);
5618 value = gen_rtx_UNSPEC_VOLATILE (constant_modes[i],
5619 gen_rtvec (1, value),
5620 UNSPECV_POOL_ENTRY);
5621 insn = emit_insn_after (value, insn);
5622 INSN_ADDRESSES_NEW (insn, -1);
5625 /* Ensure minimum alignment for instructions. */
5626 insn = emit_insn_after (gen_pool_align (GEN_INT (2)), insn);
5627 INSN_ADDRESSES_NEW (insn, -1);
5629 /* Output in-pool execute template insns. */
5630 for (c = pool->execute; c; c = c->next)
5632 insn = emit_label_after (c->label, insn);
5633 INSN_ADDRESSES_NEW (insn, -1);
5635 insn = emit_insn_after (s390_execute_target (c->value), insn);
5636 INSN_ADDRESSES_NEW (insn, -1);
5639 /* Switch back to previous section. */
5640 if (TARGET_CPU_ZARCH)
5642 insn = emit_insn_after (gen_pool_section_end (), insn);
5643 INSN_ADDRESSES_NEW (insn, -1);
5646 insn = emit_barrier_after (insn);
5647 INSN_ADDRESSES_NEW (insn, -1);
5649 /* Remove placeholder insn. */
5650 remove_insn (pool->pool_insn);
5653 /* Free all memory used by POOL. */
5655 static void
5656 s390_free_pool (struct constant_pool *pool)
5658 struct constant *c, *next;
5659 int i;
5661 for (i = 0; i < NR_C_MODES; i++)
5662 for (c = pool->constants[i]; c; c = next)
5664 next = c->next;
5665 free (c);
5668 for (c = pool->execute; c; c = next)
5670 next = c->next;
5671 free (c);
5674 BITMAP_FREE (pool->insns);
5675 free (pool);
5679 /* Collect main literal pool. Return NULL on overflow. */
5681 static struct constant_pool *
5682 s390_mainpool_start (void)
5684 struct constant_pool *pool;
5685 rtx insn;
5687 pool = s390_alloc_pool ();
5689 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
5691 if (GET_CODE (insn) == INSN
5692 && GET_CODE (PATTERN (insn)) == SET
5693 && GET_CODE (SET_SRC (PATTERN (insn))) == UNSPEC_VOLATILE
5694 && XINT (SET_SRC (PATTERN (insn)), 1) == UNSPECV_MAIN_POOL)
5696 gcc_assert (!pool->pool_insn);
5697 pool->pool_insn = insn;
5700 if (!TARGET_CPU_ZARCH && s390_execute_label (insn))
5702 s390_add_execute (pool, insn);
5704 else if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN)
5706 rtx pool_ref = NULL_RTX;
5707 find_constant_pool_ref (PATTERN (insn), &pool_ref);
5708 if (pool_ref)
5710 rtx constant = get_pool_constant (pool_ref);
5711 enum machine_mode mode = get_pool_mode (pool_ref);
5712 s390_add_constant (pool, constant, mode);
5716 /* If hot/cold partitioning is enabled we have to make sure that
5717 the literal pool is emitted in the same section where the
5718 initialization of the literal pool base pointer takes place.
5719 emit_pool_after is only used in the non-overflow case on non
5720 Z cpus where we can emit the literal pool at the end of the
5721 function body within the text section. */
5722 if (NOTE_P (insn)
5723 && NOTE_KIND (insn) == NOTE_INSN_SWITCH_TEXT_SECTIONS
5724 && !pool->emit_pool_after)
5725 pool->emit_pool_after = PREV_INSN (insn);
5728 gcc_assert (pool->pool_insn || pool->size == 0);
5730 if (pool->size >= 4096)
5732 /* We're going to chunkify the pool, so remove the main
5733 pool placeholder insn. */
5734 remove_insn (pool->pool_insn);
5736 s390_free_pool (pool);
5737 pool = NULL;
5740 /* If the functions ends with the section where the literal pool
5741 should be emitted set the marker to its end. */
5742 if (pool && !pool->emit_pool_after)
5743 pool->emit_pool_after = get_last_insn ();
5745 return pool;
5748 /* POOL holds the main literal pool as collected by s390_mainpool_start.
5749 Modify the current function to output the pool constants as well as
5750 the pool register setup instruction. */
5752 static void
5753 s390_mainpool_finish (struct constant_pool *pool)
5755 rtx base_reg = cfun->machine->base_reg;
5756 rtx insn;
5758 /* If the pool is empty, we're done. */
5759 if (pool->size == 0)
5761 /* We don't actually need a base register after all. */
5762 cfun->machine->base_reg = NULL_RTX;
5764 if (pool->pool_insn)
5765 remove_insn (pool->pool_insn);
5766 s390_free_pool (pool);
5767 return;
5770 /* We need correct insn addresses. */
5771 shorten_branches (get_insns ());
5773 /* On zSeries, we use a LARL to load the pool register. The pool is
5774 located in the .rodata section, so we emit it after the function. */
5775 if (TARGET_CPU_ZARCH)
5777 insn = gen_main_base_64 (base_reg, pool->label);
5778 insn = emit_insn_after (insn, pool->pool_insn);
5779 INSN_ADDRESSES_NEW (insn, -1);
5780 remove_insn (pool->pool_insn);
5782 insn = get_last_insn ();
5783 pool->pool_insn = emit_insn_after (gen_pool (const0_rtx), insn);
5784 INSN_ADDRESSES_NEW (pool->pool_insn, -1);
5786 s390_dump_pool (pool, 0);
5789 /* On S/390, if the total size of the function's code plus literal pool
5790 does not exceed 4096 bytes, we use BASR to set up a function base
5791 pointer, and emit the literal pool at the end of the function. */
5792 else if (INSN_ADDRESSES (INSN_UID (pool->emit_pool_after))
5793 + pool->size + 8 /* alignment slop */ < 4096)
5795 insn = gen_main_base_31_small (base_reg, pool->label);
5796 insn = emit_insn_after (insn, pool->pool_insn);
5797 INSN_ADDRESSES_NEW (insn, -1);
5798 remove_insn (pool->pool_insn);
5800 insn = emit_label_after (pool->label, insn);
5801 INSN_ADDRESSES_NEW (insn, -1);
5803 /* emit_pool_after will be set by s390_mainpool_start to the
5804 last insn of the section where the literal pool should be
5805 emitted. */
5806 insn = pool->emit_pool_after;
5808 pool->pool_insn = emit_insn_after (gen_pool (const0_rtx), insn);
5809 INSN_ADDRESSES_NEW (pool->pool_insn, -1);
5811 s390_dump_pool (pool, 1);
5814 /* Otherwise, we emit an inline literal pool and use BASR to branch
5815 over it, setting up the pool register at the same time. */
5816 else
5818 rtx pool_end = gen_label_rtx ();
5820 insn = gen_main_base_31_large (base_reg, pool->label, pool_end);
5821 insn = emit_insn_after (insn, pool->pool_insn);
5822 INSN_ADDRESSES_NEW (insn, -1);
5823 remove_insn (pool->pool_insn);
5825 insn = emit_label_after (pool->label, insn);
5826 INSN_ADDRESSES_NEW (insn, -1);
5828 pool->pool_insn = emit_insn_after (gen_pool (const0_rtx), insn);
5829 INSN_ADDRESSES_NEW (pool->pool_insn, -1);
5831 insn = emit_label_after (pool_end, pool->pool_insn);
5832 INSN_ADDRESSES_NEW (insn, -1);
5834 s390_dump_pool (pool, 1);
5838 /* Replace all literal pool references. */
5840 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
5842 if (INSN_P (insn))
5843 replace_ltrel_base (&PATTERN (insn));
5845 if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN)
5847 rtx addr, pool_ref = NULL_RTX;
5848 find_constant_pool_ref (PATTERN (insn), &pool_ref);
5849 if (pool_ref)
5851 if (s390_execute_label (insn))
5852 addr = s390_find_execute (pool, insn);
5853 else
5854 addr = s390_find_constant (pool, get_pool_constant (pool_ref),
5855 get_pool_mode (pool_ref));
5857 replace_constant_pool_ref (&PATTERN (insn), pool_ref, addr);
5858 INSN_CODE (insn) = -1;
5864 /* Free the pool. */
5865 s390_free_pool (pool);
5868 /* POOL holds the main literal pool as collected by s390_mainpool_start.
5869 We have decided we cannot use this pool, so revert all changes
5870 to the current function that were done by s390_mainpool_start. */
5871 static void
5872 s390_mainpool_cancel (struct constant_pool *pool)
5874 /* We didn't actually change the instruction stream, so simply
5875 free the pool memory. */
5876 s390_free_pool (pool);
5880 /* Chunkify the literal pool. */
5882 #define S390_POOL_CHUNK_MIN 0xc00
5883 #define S390_POOL_CHUNK_MAX 0xe00
5885 static struct constant_pool *
5886 s390_chunkify_start (void)
5888 struct constant_pool *curr_pool = NULL, *pool_list = NULL;
5889 int extra_size = 0;
5890 bitmap far_labels;
5891 rtx pending_ltrel = NULL_RTX;
5892 rtx insn;
5894 rtx (*gen_reload_base) (rtx, rtx) =
5895 TARGET_CPU_ZARCH? gen_reload_base_64 : gen_reload_base_31;
5898 /* We need correct insn addresses. */
5900 shorten_branches (get_insns ());
5902 /* Scan all insns and move literals to pool chunks. */
5904 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
5906 bool section_switch_p = false;
5908 /* Check for pending LTREL_BASE. */
5909 if (INSN_P (insn))
5911 rtx ltrel_base = find_ltrel_base (PATTERN (insn));
5912 if (ltrel_base)
5914 gcc_assert (ltrel_base == pending_ltrel);
5915 pending_ltrel = NULL_RTX;
5919 if (!TARGET_CPU_ZARCH && s390_execute_label (insn))
5921 if (!curr_pool)
5922 curr_pool = s390_start_pool (&pool_list, insn);
5924 s390_add_execute (curr_pool, insn);
5925 s390_add_pool_insn (curr_pool, insn);
5927 else if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN)
5929 rtx pool_ref = NULL_RTX;
5930 find_constant_pool_ref (PATTERN (insn), &pool_ref);
5931 if (pool_ref)
5933 rtx constant = get_pool_constant (pool_ref);
5934 enum machine_mode mode = get_pool_mode (pool_ref);
5936 if (!curr_pool)
5937 curr_pool = s390_start_pool (&pool_list, insn);
5939 s390_add_constant (curr_pool, constant, mode);
5940 s390_add_pool_insn (curr_pool, insn);
5942 /* Don't split the pool chunk between a LTREL_OFFSET load
5943 and the corresponding LTREL_BASE. */
5944 if (GET_CODE (constant) == CONST
5945 && GET_CODE (XEXP (constant, 0)) == UNSPEC
5946 && XINT (XEXP (constant, 0), 1) == UNSPEC_LTREL_OFFSET)
5948 gcc_assert (!pending_ltrel);
5949 pending_ltrel = pool_ref;
5954 if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == CODE_LABEL)
5956 if (curr_pool)
5957 s390_add_pool_insn (curr_pool, insn);
5958 /* An LTREL_BASE must follow within the same basic block. */
5959 gcc_assert (!pending_ltrel);
5962 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_SWITCH_TEXT_SECTIONS)
5963 section_switch_p = true;
5965 if (!curr_pool
5966 || INSN_ADDRESSES_SIZE () <= (size_t) INSN_UID (insn)
5967 || INSN_ADDRESSES (INSN_UID (insn)) == -1)
5968 continue;
5970 if (TARGET_CPU_ZARCH)
5972 if (curr_pool->size < S390_POOL_CHUNK_MAX)
5973 continue;
5975 s390_end_pool (curr_pool, NULL_RTX);
5976 curr_pool = NULL;
5978 else
5980 int chunk_size = INSN_ADDRESSES (INSN_UID (insn))
5981 - INSN_ADDRESSES (INSN_UID (curr_pool->first_insn))
5982 + extra_size;
5984 /* We will later have to insert base register reload insns.
5985 Those will have an effect on code size, which we need to
5986 consider here. This calculation makes rather pessimistic
5987 worst-case assumptions. */
5988 if (GET_CODE (insn) == CODE_LABEL)
5989 extra_size += 6;
5991 if (chunk_size < S390_POOL_CHUNK_MIN
5992 && curr_pool->size < S390_POOL_CHUNK_MIN
5993 && !section_switch_p)
5994 continue;
5996 /* Pool chunks can only be inserted after BARRIERs ... */
5997 if (GET_CODE (insn) == BARRIER)
5999 s390_end_pool (curr_pool, insn);
6000 curr_pool = NULL;
6001 extra_size = 0;
6004 /* ... so if we don't find one in time, create one. */
6005 else if (chunk_size > S390_POOL_CHUNK_MAX
6006 || curr_pool->size > S390_POOL_CHUNK_MAX
6007 || section_switch_p)
6009 rtx label, jump, barrier;
6011 if (!section_switch_p)
6013 /* We can insert the barrier only after a 'real' insn. */
6014 if (GET_CODE (insn) != INSN && GET_CODE (insn) != CALL_INSN)
6015 continue;
6016 if (get_attr_length (insn) == 0)
6017 continue;
6018 /* Don't separate LTREL_BASE from the corresponding
6019 LTREL_OFFSET load. */
6020 if (pending_ltrel)
6021 continue;
6023 else
6025 gcc_assert (!pending_ltrel);
6027 /* The old pool has to end before the section switch
6028 note in order to make it part of the current
6029 section. */
6030 insn = PREV_INSN (insn);
6033 label = gen_label_rtx ();
6034 jump = emit_jump_insn_after (gen_jump (label), insn);
6035 barrier = emit_barrier_after (jump);
6036 insn = emit_label_after (label, barrier);
6037 JUMP_LABEL (jump) = label;
6038 LABEL_NUSES (label) = 1;
6040 INSN_ADDRESSES_NEW (jump, -1);
6041 INSN_ADDRESSES_NEW (barrier, -1);
6042 INSN_ADDRESSES_NEW (insn, -1);
6044 s390_end_pool (curr_pool, barrier);
6045 curr_pool = NULL;
6046 extra_size = 0;
6051 if (curr_pool)
6052 s390_end_pool (curr_pool, NULL_RTX);
6053 gcc_assert (!pending_ltrel);
6055 /* Find all labels that are branched into
6056 from an insn belonging to a different chunk. */
6058 far_labels = BITMAP_ALLOC (NULL);
6060 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
6062 /* Labels marked with LABEL_PRESERVE_P can be target
6063 of non-local jumps, so we have to mark them.
6064 The same holds for named labels.
6066 Don't do that, however, if it is the label before
6067 a jump table. */
6069 if (GET_CODE (insn) == CODE_LABEL
6070 && (LABEL_PRESERVE_P (insn) || LABEL_NAME (insn)))
6072 rtx vec_insn = next_real_insn (insn);
6073 rtx vec_pat = vec_insn && GET_CODE (vec_insn) == JUMP_INSN ?
6074 PATTERN (vec_insn) : NULL_RTX;
6075 if (!vec_pat
6076 || !(GET_CODE (vec_pat) == ADDR_VEC
6077 || GET_CODE (vec_pat) == ADDR_DIFF_VEC))
6078 bitmap_set_bit (far_labels, CODE_LABEL_NUMBER (insn));
6081 /* If we have a direct jump (conditional or unconditional)
6082 or a casesi jump, check all potential targets. */
6083 else if (GET_CODE (insn) == JUMP_INSN)
6085 rtx pat = PATTERN (insn);
6086 if (GET_CODE (pat) == PARALLEL && XVECLEN (pat, 0) > 2)
6087 pat = XVECEXP (pat, 0, 0);
6089 if (GET_CODE (pat) == SET)
6091 rtx label = JUMP_LABEL (insn);
6092 if (label)
6094 if (s390_find_pool (pool_list, label)
6095 != s390_find_pool (pool_list, insn))
6096 bitmap_set_bit (far_labels, CODE_LABEL_NUMBER (label));
6099 else if (GET_CODE (pat) == PARALLEL
6100 && XVECLEN (pat, 0) == 2
6101 && GET_CODE (XVECEXP (pat, 0, 0)) == SET
6102 && GET_CODE (XVECEXP (pat, 0, 1)) == USE
6103 && GET_CODE (XEXP (XVECEXP (pat, 0, 1), 0)) == LABEL_REF)
6105 /* Find the jump table used by this casesi jump. */
6106 rtx vec_label = XEXP (XEXP (XVECEXP (pat, 0, 1), 0), 0);
6107 rtx vec_insn = next_real_insn (vec_label);
6108 rtx vec_pat = vec_insn && GET_CODE (vec_insn) == JUMP_INSN ?
6109 PATTERN (vec_insn) : NULL_RTX;
6110 if (vec_pat
6111 && (GET_CODE (vec_pat) == ADDR_VEC
6112 || GET_CODE (vec_pat) == ADDR_DIFF_VEC))
6114 int i, diff_p = GET_CODE (vec_pat) == ADDR_DIFF_VEC;
6116 for (i = 0; i < XVECLEN (vec_pat, diff_p); i++)
6118 rtx label = XEXP (XVECEXP (vec_pat, diff_p, i), 0);
6120 if (s390_find_pool (pool_list, label)
6121 != s390_find_pool (pool_list, insn))
6122 bitmap_set_bit (far_labels, CODE_LABEL_NUMBER (label));
6129 /* Insert base register reload insns before every pool. */
6131 for (curr_pool = pool_list; curr_pool; curr_pool = curr_pool->next)
6133 rtx new_insn = gen_reload_base (cfun->machine->base_reg,
6134 curr_pool->label);
6135 rtx insn = curr_pool->first_insn;
6136 INSN_ADDRESSES_NEW (emit_insn_before (new_insn, insn), -1);
6139 /* Insert base register reload insns at every far label. */
6141 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
6142 if (GET_CODE (insn) == CODE_LABEL
6143 && bitmap_bit_p (far_labels, CODE_LABEL_NUMBER (insn)))
6145 struct constant_pool *pool = s390_find_pool (pool_list, insn);
6146 if (pool)
6148 rtx new_insn = gen_reload_base (cfun->machine->base_reg,
6149 pool->label);
6150 INSN_ADDRESSES_NEW (emit_insn_after (new_insn, insn), -1);
6155 BITMAP_FREE (far_labels);
6158 /* Recompute insn addresses. */
6160 init_insn_lengths ();
6161 shorten_branches (get_insns ());
6163 return pool_list;
6166 /* POOL_LIST is a chunk list as prepared by s390_chunkify_start.
6167 After we have decided to use this list, finish implementing
6168 all changes to the current function as required. */
6170 static void
6171 s390_chunkify_finish (struct constant_pool *pool_list)
6173 struct constant_pool *curr_pool = NULL;
6174 rtx insn;
6177 /* Replace all literal pool references. */
6179 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
6181 if (INSN_P (insn))
6182 replace_ltrel_base (&PATTERN (insn));
6184 curr_pool = s390_find_pool (pool_list, insn);
6185 if (!curr_pool)
6186 continue;
6188 if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN)
6190 rtx addr, pool_ref = NULL_RTX;
6191 find_constant_pool_ref (PATTERN (insn), &pool_ref);
6192 if (pool_ref)
6194 if (s390_execute_label (insn))
6195 addr = s390_find_execute (curr_pool, insn);
6196 else
6197 addr = s390_find_constant (curr_pool,
6198 get_pool_constant (pool_ref),
6199 get_pool_mode (pool_ref));
6201 replace_constant_pool_ref (&PATTERN (insn), pool_ref, addr);
6202 INSN_CODE (insn) = -1;
6207 /* Dump out all literal pools. */
6209 for (curr_pool = pool_list; curr_pool; curr_pool = curr_pool->next)
6210 s390_dump_pool (curr_pool, 0);
6212 /* Free pool list. */
6214 while (pool_list)
6216 struct constant_pool *next = pool_list->next;
6217 s390_free_pool (pool_list);
6218 pool_list = next;
6222 /* POOL_LIST is a chunk list as prepared by s390_chunkify_start.
6223 We have decided we cannot use this list, so revert all changes
6224 to the current function that were done by s390_chunkify_start. */
6226 static void
6227 s390_chunkify_cancel (struct constant_pool *pool_list)
6229 struct constant_pool *curr_pool = NULL;
6230 rtx insn;
6232 /* Remove all pool placeholder insns. */
6234 for (curr_pool = pool_list; curr_pool; curr_pool = curr_pool->next)
6236 /* Did we insert an extra barrier? Remove it. */
6237 rtx barrier = PREV_INSN (curr_pool->pool_insn);
6238 rtx jump = barrier? PREV_INSN (barrier) : NULL_RTX;
6239 rtx label = NEXT_INSN (curr_pool->pool_insn);
6241 if (jump && GET_CODE (jump) == JUMP_INSN
6242 && barrier && GET_CODE (barrier) == BARRIER
6243 && label && GET_CODE (label) == CODE_LABEL
6244 && GET_CODE (PATTERN (jump)) == SET
6245 && SET_DEST (PATTERN (jump)) == pc_rtx
6246 && GET_CODE (SET_SRC (PATTERN (jump))) == LABEL_REF
6247 && XEXP (SET_SRC (PATTERN (jump)), 0) == label)
6249 remove_insn (jump);
6250 remove_insn (barrier);
6251 remove_insn (label);
6254 remove_insn (curr_pool->pool_insn);
6257 /* Remove all base register reload insns. */
6259 for (insn = get_insns (); insn; )
6261 rtx next_insn = NEXT_INSN (insn);
6263 if (GET_CODE (insn) == INSN
6264 && GET_CODE (PATTERN (insn)) == SET
6265 && GET_CODE (SET_SRC (PATTERN (insn))) == UNSPEC
6266 && XINT (SET_SRC (PATTERN (insn)), 1) == UNSPEC_RELOAD_BASE)
6267 remove_insn (insn);
6269 insn = next_insn;
6272 /* Free pool list. */
6274 while (pool_list)
6276 struct constant_pool *next = pool_list->next;
6277 s390_free_pool (pool_list);
6278 pool_list = next;
6283 /* Output the constant pool entry EXP in mode MODE with alignment ALIGN. */
6285 void
6286 s390_output_pool_entry (rtx exp, enum machine_mode mode, unsigned int align)
6288 REAL_VALUE_TYPE r;
6290 switch (GET_MODE_CLASS (mode))
6292 case MODE_FLOAT:
6293 case MODE_DECIMAL_FLOAT:
6294 gcc_assert (GET_CODE (exp) == CONST_DOUBLE);
6296 REAL_VALUE_FROM_CONST_DOUBLE (r, exp);
6297 assemble_real (r, mode, align);
6298 break;
6300 case MODE_INT:
6301 assemble_integer (exp, GET_MODE_SIZE (mode), align, 1);
6302 break;
6304 default:
6305 gcc_unreachable ();
6310 /* Return an RTL expression representing the value of the return address
6311 for the frame COUNT steps up from the current frame. FRAME is the
6312 frame pointer of that frame. */
6315 s390_return_addr_rtx (int count, rtx frame ATTRIBUTE_UNUSED)
6317 int offset;
6318 rtx addr;
6320 /* Without backchain, we fail for all but the current frame. */
6322 if (!TARGET_BACKCHAIN && count > 0)
6323 return NULL_RTX;
6325 /* For the current frame, we need to make sure the initial
6326 value of RETURN_REGNUM is actually saved. */
6328 if (count == 0)
6330 /* On non-z architectures branch splitting could overwrite r14. */
6331 if (TARGET_CPU_ZARCH)
6332 return get_hard_reg_initial_val (Pmode, RETURN_REGNUM);
6333 else
6335 cfun_frame_layout.save_return_addr_p = true;
6336 return gen_rtx_MEM (Pmode, return_address_pointer_rtx);
6340 if (TARGET_PACKED_STACK)
6341 offset = -2 * UNITS_PER_WORD;
6342 else
6343 offset = RETURN_REGNUM * UNITS_PER_WORD;
6345 addr = plus_constant (frame, offset);
6346 addr = memory_address (Pmode, addr);
6347 return gen_rtx_MEM (Pmode, addr);
6350 /* Return an RTL expression representing the back chain stored in
6351 the current stack frame. */
6354 s390_back_chain_rtx (void)
6356 rtx chain;
6358 gcc_assert (TARGET_BACKCHAIN);
6360 if (TARGET_PACKED_STACK)
6361 chain = plus_constant (stack_pointer_rtx,
6362 STACK_POINTER_OFFSET - UNITS_PER_WORD);
6363 else
6364 chain = stack_pointer_rtx;
6366 chain = gen_rtx_MEM (Pmode, chain);
6367 return chain;
6370 /* Find first call clobbered register unused in a function.
6371 This could be used as base register in a leaf function
6372 or for holding the return address before epilogue. */
6374 static int
6375 find_unused_clobbered_reg (void)
6377 int i;
6378 for (i = 0; i < 6; i++)
6379 if (!df_regs_ever_live_p (i))
6380 return i;
6381 return 0;
6385 /* Helper function for s390_regs_ever_clobbered. Sets the fields in DATA for all
6386 clobbered hard regs in SETREG. */
6388 static void
6389 s390_reg_clobbered_rtx (rtx setreg, const_rtx set_insn ATTRIBUTE_UNUSED, void *data)
6391 int *regs_ever_clobbered = (int *)data;
6392 unsigned int i, regno;
6393 enum machine_mode mode = GET_MODE (setreg);
6395 if (GET_CODE (setreg) == SUBREG)
6397 rtx inner = SUBREG_REG (setreg);
6398 if (!GENERAL_REG_P (inner))
6399 return;
6400 regno = subreg_regno (setreg);
6402 else if (GENERAL_REG_P (setreg))
6403 regno = REGNO (setreg);
6404 else
6405 return;
6407 for (i = regno;
6408 i < regno + HARD_REGNO_NREGS (regno, mode);
6409 i++)
6410 regs_ever_clobbered[i] = 1;
6413 /* Walks through all basic blocks of the current function looking
6414 for clobbered hard regs using s390_reg_clobbered_rtx. The fields
6415 of the passed integer array REGS_EVER_CLOBBERED are set to one for
6416 each of those regs. */
6418 static void
6419 s390_regs_ever_clobbered (int *regs_ever_clobbered)
6421 basic_block cur_bb;
6422 rtx cur_insn;
6423 unsigned int i;
6425 memset (regs_ever_clobbered, 0, 16 * sizeof (int));
6427 /* For non-leaf functions we have to consider all call clobbered regs to be
6428 clobbered. */
6429 if (!current_function_is_leaf)
6431 for (i = 0; i < 16; i++)
6432 regs_ever_clobbered[i] = call_really_used_regs[i];
6435 /* Make the "magic" eh_return registers live if necessary. For regs_ever_live
6436 this work is done by liveness analysis (mark_regs_live_at_end).
6437 Special care is needed for functions containing landing pads. Landing pads
6438 may use the eh registers, but the code which sets these registers is not
6439 contained in that function. Hence s390_regs_ever_clobbered is not able to
6440 deal with this automatically. */
6441 if (current_function_calls_eh_return || cfun->machine->has_landing_pad_p)
6442 for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM ; i++)
6443 if (current_function_calls_eh_return
6444 || (cfun->machine->has_landing_pad_p
6445 && df_regs_ever_live_p (EH_RETURN_DATA_REGNO (i))))
6446 regs_ever_clobbered[EH_RETURN_DATA_REGNO (i)] = 1;
6448 /* For nonlocal gotos all call-saved registers have to be saved.
6449 This flag is also set for the unwinding code in libgcc.
6450 See expand_builtin_unwind_init. For regs_ever_live this is done by
6451 reload. */
6452 if (current_function_has_nonlocal_label)
6453 for (i = 0; i < 16; i++)
6454 if (!call_really_used_regs[i])
6455 regs_ever_clobbered[i] = 1;
6457 FOR_EACH_BB (cur_bb)
6459 FOR_BB_INSNS (cur_bb, cur_insn)
6461 if (INSN_P (cur_insn))
6462 note_stores (PATTERN (cur_insn),
6463 s390_reg_clobbered_rtx,
6464 regs_ever_clobbered);
6469 /* Determine the frame area which actually has to be accessed
6470 in the function epilogue. The values are stored at the
6471 given pointers AREA_BOTTOM (address of the lowest used stack
6472 address) and AREA_TOP (address of the first item which does
6473 not belong to the stack frame). */
6475 static void
6476 s390_frame_area (int *area_bottom, int *area_top)
6478 int b, t;
6479 int i;
6481 b = INT_MAX;
6482 t = INT_MIN;
6484 if (cfun_frame_layout.first_restore_gpr != -1)
6486 b = (cfun_frame_layout.gprs_offset
6487 + cfun_frame_layout.first_restore_gpr * UNITS_PER_WORD);
6488 t = b + (cfun_frame_layout.last_restore_gpr
6489 - cfun_frame_layout.first_restore_gpr + 1) * UNITS_PER_WORD;
6492 if (TARGET_64BIT && cfun_save_high_fprs_p)
6494 b = MIN (b, cfun_frame_layout.f8_offset);
6495 t = MAX (t, (cfun_frame_layout.f8_offset
6496 + cfun_frame_layout.high_fprs * 8));
6499 if (!TARGET_64BIT)
6500 for (i = 2; i < 4; i++)
6501 if (cfun_fpr_bit_p (i))
6503 b = MIN (b, cfun_frame_layout.f4_offset + (i - 2) * 8);
6504 t = MAX (t, cfun_frame_layout.f4_offset + (i - 1) * 8);
6507 *area_bottom = b;
6508 *area_top = t;
6511 /* Fill cfun->machine with info about register usage of current function.
6512 Return in CLOBBERED_REGS which GPRs are currently considered set. */
6514 static void
6515 s390_register_info (int clobbered_regs[])
6517 int i, j;
6519 /* fprs 8 - 15 are call saved for 64 Bit ABI. */
6520 cfun_frame_layout.fpr_bitmap = 0;
6521 cfun_frame_layout.high_fprs = 0;
6522 if (TARGET_64BIT)
6523 for (i = 24; i < 32; i++)
6524 if (df_regs_ever_live_p (i) && !global_regs[i])
6526 cfun_set_fpr_bit (i - 16);
6527 cfun_frame_layout.high_fprs++;
6530 /* Find first and last gpr to be saved. We trust regs_ever_live
6531 data, except that we don't save and restore global registers.
6533 Also, all registers with special meaning to the compiler need
6534 to be handled extra. */
6536 s390_regs_ever_clobbered (clobbered_regs);
6538 for (i = 0; i < 16; i++)
6539 clobbered_regs[i] = clobbered_regs[i] && !global_regs[i] && !fixed_regs[i];
6541 if (frame_pointer_needed)
6542 clobbered_regs[HARD_FRAME_POINTER_REGNUM] = 1;
6544 if (flag_pic)
6545 clobbered_regs[PIC_OFFSET_TABLE_REGNUM]
6546 |= df_regs_ever_live_p (PIC_OFFSET_TABLE_REGNUM);
6548 clobbered_regs[BASE_REGNUM]
6549 |= (cfun->machine->base_reg
6550 && REGNO (cfun->machine->base_reg) == BASE_REGNUM);
6552 clobbered_regs[RETURN_REGNUM]
6553 |= (!current_function_is_leaf
6554 || TARGET_TPF_PROFILING
6555 || cfun->machine->split_branches_pending_p
6556 || cfun_frame_layout.save_return_addr_p
6557 || current_function_calls_eh_return
6558 || current_function_stdarg);
6560 clobbered_regs[STACK_POINTER_REGNUM]
6561 |= (!current_function_is_leaf
6562 || TARGET_TPF_PROFILING
6563 || cfun_save_high_fprs_p
6564 || get_frame_size () > 0
6565 || current_function_calls_alloca
6566 || current_function_stdarg);
6568 for (i = 6; i < 16; i++)
6569 if (df_regs_ever_live_p (i) || clobbered_regs[i])
6570 break;
6571 for (j = 15; j > i; j--)
6572 if (df_regs_ever_live_p (j) || clobbered_regs[j])
6573 break;
6575 if (i == 16)
6577 /* Nothing to save/restore. */
6578 cfun_frame_layout.first_save_gpr_slot = -1;
6579 cfun_frame_layout.last_save_gpr_slot = -1;
6580 cfun_frame_layout.first_save_gpr = -1;
6581 cfun_frame_layout.first_restore_gpr = -1;
6582 cfun_frame_layout.last_save_gpr = -1;
6583 cfun_frame_layout.last_restore_gpr = -1;
6585 else
6587 /* Save slots for gprs from i to j. */
6588 cfun_frame_layout.first_save_gpr_slot = i;
6589 cfun_frame_layout.last_save_gpr_slot = j;
6591 for (i = cfun_frame_layout.first_save_gpr_slot;
6592 i < cfun_frame_layout.last_save_gpr_slot + 1;
6593 i++)
6594 if (clobbered_regs[i])
6595 break;
6597 for (j = cfun_frame_layout.last_save_gpr_slot; j > i; j--)
6598 if (clobbered_regs[j])
6599 break;
6601 if (i == cfun_frame_layout.last_save_gpr_slot + 1)
6603 /* Nothing to save/restore. */
6604 cfun_frame_layout.first_save_gpr = -1;
6605 cfun_frame_layout.first_restore_gpr = -1;
6606 cfun_frame_layout.last_save_gpr = -1;
6607 cfun_frame_layout.last_restore_gpr = -1;
6609 else
6611 /* Save / Restore from gpr i to j. */
6612 cfun_frame_layout.first_save_gpr = i;
6613 cfun_frame_layout.first_restore_gpr = i;
6614 cfun_frame_layout.last_save_gpr = j;
6615 cfun_frame_layout.last_restore_gpr = j;
6619 if (current_function_stdarg)
6621 /* Varargs functions need to save gprs 2 to 6. */
6622 if (cfun->va_list_gpr_size
6623 && current_function_args_info.gprs < GP_ARG_NUM_REG)
6625 int min_gpr = current_function_args_info.gprs;
6626 int max_gpr = min_gpr + cfun->va_list_gpr_size;
6627 if (max_gpr > GP_ARG_NUM_REG)
6628 max_gpr = GP_ARG_NUM_REG;
6630 if (cfun_frame_layout.first_save_gpr == -1
6631 || cfun_frame_layout.first_save_gpr > 2 + min_gpr)
6633 cfun_frame_layout.first_save_gpr = 2 + min_gpr;
6634 cfun_frame_layout.first_save_gpr_slot = 2 + min_gpr;
6637 if (cfun_frame_layout.last_save_gpr == -1
6638 || cfun_frame_layout.last_save_gpr < 2 + max_gpr - 1)
6640 cfun_frame_layout.last_save_gpr = 2 + max_gpr - 1;
6641 cfun_frame_layout.last_save_gpr_slot = 2 + max_gpr - 1;
6645 /* Mark f0, f2 for 31 bit and f0-f4 for 64 bit to be saved. */
6646 if (TARGET_HARD_FLOAT && cfun->va_list_fpr_size
6647 && current_function_args_info.fprs < FP_ARG_NUM_REG)
6649 int min_fpr = current_function_args_info.fprs;
6650 int max_fpr = min_fpr + cfun->va_list_fpr_size;
6651 if (max_fpr > FP_ARG_NUM_REG)
6652 max_fpr = FP_ARG_NUM_REG;
6654 /* ??? This is currently required to ensure proper location
6655 of the fpr save slots within the va_list save area. */
6656 if (TARGET_PACKED_STACK)
6657 min_fpr = 0;
6659 for (i = min_fpr; i < max_fpr; i++)
6660 cfun_set_fpr_bit (i);
6664 if (!TARGET_64BIT)
6665 for (i = 2; i < 4; i++)
6666 if (df_regs_ever_live_p (i + 16) && !global_regs[i + 16])
6667 cfun_set_fpr_bit (i);
6670 /* Fill cfun->machine with info about frame of current function. */
6672 static void
6673 s390_frame_info (void)
6675 int i;
6677 cfun_frame_layout.frame_size = get_frame_size ();
6678 if (!TARGET_64BIT && cfun_frame_layout.frame_size > 0x7fff0000)
6679 fatal_error ("total size of local variables exceeds architecture limit");
6681 if (!TARGET_PACKED_STACK)
6683 cfun_frame_layout.backchain_offset = 0;
6684 cfun_frame_layout.f0_offset = 16 * UNITS_PER_WORD;
6685 cfun_frame_layout.f4_offset = cfun_frame_layout.f0_offset + 2 * 8;
6686 cfun_frame_layout.f8_offset = -cfun_frame_layout.high_fprs * 8;
6687 cfun_frame_layout.gprs_offset = (cfun_frame_layout.first_save_gpr_slot
6688 * UNITS_PER_WORD);
6690 else if (TARGET_BACKCHAIN) /* kernel stack layout */
6692 cfun_frame_layout.backchain_offset = (STACK_POINTER_OFFSET
6693 - UNITS_PER_WORD);
6694 cfun_frame_layout.gprs_offset
6695 = (cfun_frame_layout.backchain_offset
6696 - (STACK_POINTER_REGNUM - cfun_frame_layout.first_save_gpr_slot + 1)
6697 * UNITS_PER_WORD);
6699 if (TARGET_64BIT)
6701 cfun_frame_layout.f4_offset
6702 = (cfun_frame_layout.gprs_offset
6703 - 8 * (cfun_fpr_bit_p (2) + cfun_fpr_bit_p (3)));
6705 cfun_frame_layout.f0_offset
6706 = (cfun_frame_layout.f4_offset
6707 - 8 * (cfun_fpr_bit_p (0) + cfun_fpr_bit_p (1)));
6709 else
6711 /* On 31 bit we have to care about alignment of the
6712 floating point regs to provide fastest access. */
6713 cfun_frame_layout.f0_offset
6714 = ((cfun_frame_layout.gprs_offset
6715 & ~(STACK_BOUNDARY / BITS_PER_UNIT - 1))
6716 - 8 * (cfun_fpr_bit_p (0) + cfun_fpr_bit_p (1)));
6718 cfun_frame_layout.f4_offset
6719 = (cfun_frame_layout.f0_offset
6720 - 8 * (cfun_fpr_bit_p (2) + cfun_fpr_bit_p (3)));
6723 else /* no backchain */
6725 cfun_frame_layout.f4_offset
6726 = (STACK_POINTER_OFFSET
6727 - 8 * (cfun_fpr_bit_p (2) + cfun_fpr_bit_p (3)));
6729 cfun_frame_layout.f0_offset
6730 = (cfun_frame_layout.f4_offset
6731 - 8 * (cfun_fpr_bit_p (0) + cfun_fpr_bit_p (1)));
6733 cfun_frame_layout.gprs_offset
6734 = cfun_frame_layout.f0_offset - cfun_gprs_save_area_size;
6737 if (current_function_is_leaf
6738 && !TARGET_TPF_PROFILING
6739 && cfun_frame_layout.frame_size == 0
6740 && !cfun_save_high_fprs_p
6741 && !current_function_calls_alloca
6742 && !current_function_stdarg)
6743 return;
6745 if (!TARGET_PACKED_STACK)
6746 cfun_frame_layout.frame_size += (STACK_POINTER_OFFSET
6747 + current_function_outgoing_args_size
6748 + cfun_frame_layout.high_fprs * 8);
6749 else
6751 if (TARGET_BACKCHAIN)
6752 cfun_frame_layout.frame_size += UNITS_PER_WORD;
6754 /* No alignment trouble here because f8-f15 are only saved under
6755 64 bit. */
6756 cfun_frame_layout.f8_offset = (MIN (MIN (cfun_frame_layout.f0_offset,
6757 cfun_frame_layout.f4_offset),
6758 cfun_frame_layout.gprs_offset)
6759 - cfun_frame_layout.high_fprs * 8);
6761 cfun_frame_layout.frame_size += cfun_frame_layout.high_fprs * 8;
6763 for (i = 0; i < 8; i++)
6764 if (cfun_fpr_bit_p (i))
6765 cfun_frame_layout.frame_size += 8;
6767 cfun_frame_layout.frame_size += cfun_gprs_save_area_size;
6769 /* If under 31 bit an odd number of gprs has to be saved we have to adjust
6770 the frame size to sustain 8 byte alignment of stack frames. */
6771 cfun_frame_layout.frame_size = ((cfun_frame_layout.frame_size +
6772 STACK_BOUNDARY / BITS_PER_UNIT - 1)
6773 & ~(STACK_BOUNDARY / BITS_PER_UNIT - 1));
6775 cfun_frame_layout.frame_size += current_function_outgoing_args_size;
6779 /* Generate frame layout. Fills in register and frame data for the current
6780 function in cfun->machine. This routine can be called multiple times;
6781 it will re-do the complete frame layout every time. */
6783 static void
6784 s390_init_frame_layout (void)
6786 HOST_WIDE_INT frame_size;
6787 int base_used;
6788 int clobbered_regs[16];
6790 /* On S/390 machines, we may need to perform branch splitting, which
6791 will require both base and return address register. We have no
6792 choice but to assume we're going to need them until right at the
6793 end of the machine dependent reorg phase. */
6794 if (!TARGET_CPU_ZARCH)
6795 cfun->machine->split_branches_pending_p = true;
6799 frame_size = cfun_frame_layout.frame_size;
6801 /* Try to predict whether we'll need the base register. */
6802 base_used = cfun->machine->split_branches_pending_p
6803 || current_function_uses_const_pool
6804 || (!DISP_IN_RANGE (frame_size)
6805 && !CONST_OK_FOR_K (frame_size));
6807 /* Decide which register to use as literal pool base. In small
6808 leaf functions, try to use an unused call-clobbered register
6809 as base register to avoid save/restore overhead. */
6810 if (!base_used)
6811 cfun->machine->base_reg = NULL_RTX;
6812 else if (current_function_is_leaf && !df_regs_ever_live_p (5))
6813 cfun->machine->base_reg = gen_rtx_REG (Pmode, 5);
6814 else
6815 cfun->machine->base_reg = gen_rtx_REG (Pmode, BASE_REGNUM);
6817 s390_register_info (clobbered_regs);
6818 s390_frame_info ();
6820 while (frame_size != cfun_frame_layout.frame_size);
6823 /* Update frame layout. Recompute actual register save data based on
6824 current info and update regs_ever_live for the special registers.
6825 May be called multiple times, but may never cause *more* registers
6826 to be saved than s390_init_frame_layout allocated room for. */
6828 static void
6829 s390_update_frame_layout (void)
6831 int clobbered_regs[16];
6833 s390_register_info (clobbered_regs);
6835 df_set_regs_ever_live (BASE_REGNUM,
6836 clobbered_regs[BASE_REGNUM] ? true : false);
6837 df_set_regs_ever_live (RETURN_REGNUM,
6838 clobbered_regs[RETURN_REGNUM] ? true : false);
6839 df_set_regs_ever_live (STACK_POINTER_REGNUM,
6840 clobbered_regs[STACK_POINTER_REGNUM] ? true : false);
6842 if (cfun->machine->base_reg)
6843 df_set_regs_ever_live (REGNO (cfun->machine->base_reg), true);
6846 /* Return true if it is legal to put a value with MODE into REGNO. */
6848 bool
6849 s390_hard_regno_mode_ok (unsigned int regno, enum machine_mode mode)
6851 switch (REGNO_REG_CLASS (regno))
6853 case FP_REGS:
6854 if (REGNO_PAIR_OK (regno, mode))
6856 if (mode == SImode || mode == DImode)
6857 return true;
6859 if (FLOAT_MODE_P (mode) && GET_MODE_CLASS (mode) != MODE_VECTOR_FLOAT)
6860 return true;
6862 break;
6863 case ADDR_REGS:
6864 if (FRAME_REGNO_P (regno) && mode == Pmode)
6865 return true;
6867 /* fallthrough */
6868 case GENERAL_REGS:
6869 if (REGNO_PAIR_OK (regno, mode))
6871 if (TARGET_64BIT
6872 || (mode != TFmode && mode != TCmode && mode != TDmode))
6873 return true;
6875 break;
6876 case CC_REGS:
6877 if (GET_MODE_CLASS (mode) == MODE_CC)
6878 return true;
6879 break;
6880 case ACCESS_REGS:
6881 if (REGNO_PAIR_OK (regno, mode))
6883 if (mode == SImode || mode == Pmode)
6884 return true;
6886 break;
6887 default:
6888 return false;
6891 return false;
6894 /* Return nonzero if register OLD_REG can be renamed to register NEW_REG. */
6896 bool
6897 s390_hard_regno_rename_ok (unsigned int old_reg, unsigned int new_reg)
6899 /* Once we've decided upon a register to use as base register, it must
6900 no longer be used for any other purpose. */
6901 if (cfun->machine->base_reg)
6902 if (REGNO (cfun->machine->base_reg) == old_reg
6903 || REGNO (cfun->machine->base_reg) == new_reg)
6904 return false;
6906 return true;
6909 /* Maximum number of registers to represent a value of mode MODE
6910 in a register of class CLASS. */
6912 bool
6913 s390_class_max_nregs (enum reg_class class, enum machine_mode mode)
6915 switch (class)
6917 case FP_REGS:
6918 if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT)
6919 return 2 * ((GET_MODE_SIZE (mode) / 2 + 8 - 1) / 8);
6920 else
6921 return (GET_MODE_SIZE (mode) + 8 - 1) / 8;
6922 case ACCESS_REGS:
6923 return (GET_MODE_SIZE (mode) + 4 - 1) / 4;
6924 default:
6925 break;
6927 return (GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
6930 /* Return true if register FROM can be eliminated via register TO. */
6932 bool
6933 s390_can_eliminate (int from, int to)
6935 /* On zSeries machines, we have not marked the base register as fixed.
6936 Instead, we have an elimination rule BASE_REGNUM -> BASE_REGNUM.
6937 If a function requires the base register, we say here that this
6938 elimination cannot be performed. This will cause reload to free
6939 up the base register (as if it were fixed). On the other hand,
6940 if the current function does *not* require the base register, we
6941 say here the elimination succeeds, which in turn allows reload
6942 to allocate the base register for any other purpose. */
6943 if (from == BASE_REGNUM && to == BASE_REGNUM)
6945 if (TARGET_CPU_ZARCH)
6947 s390_init_frame_layout ();
6948 return cfun->machine->base_reg == NULL_RTX;
6951 return false;
6954 /* Everything else must point into the stack frame. */
6955 gcc_assert (to == STACK_POINTER_REGNUM
6956 || to == HARD_FRAME_POINTER_REGNUM);
6958 gcc_assert (from == FRAME_POINTER_REGNUM
6959 || from == ARG_POINTER_REGNUM
6960 || from == RETURN_ADDRESS_POINTER_REGNUM);
6962 /* Make sure we actually saved the return address. */
6963 if (from == RETURN_ADDRESS_POINTER_REGNUM)
6964 if (!current_function_calls_eh_return
6965 && !current_function_stdarg
6966 && !cfun_frame_layout.save_return_addr_p)
6967 return false;
6969 return true;
6972 /* Return offset between register FROM and TO initially after prolog. */
6974 HOST_WIDE_INT
6975 s390_initial_elimination_offset (int from, int to)
6977 HOST_WIDE_INT offset;
6978 int index;
6980 /* ??? Why are we called for non-eliminable pairs? */
6981 if (!s390_can_eliminate (from, to))
6982 return 0;
6984 switch (from)
6986 case FRAME_POINTER_REGNUM:
6987 offset = (get_frame_size()
6988 + STACK_POINTER_OFFSET
6989 + current_function_outgoing_args_size);
6990 break;
6992 case ARG_POINTER_REGNUM:
6993 s390_init_frame_layout ();
6994 offset = cfun_frame_layout.frame_size + STACK_POINTER_OFFSET;
6995 break;
6997 case RETURN_ADDRESS_POINTER_REGNUM:
6998 s390_init_frame_layout ();
6999 index = RETURN_REGNUM - cfun_frame_layout.first_save_gpr_slot;
7000 gcc_assert (index >= 0);
7001 offset = cfun_frame_layout.frame_size + cfun_frame_layout.gprs_offset;
7002 offset += index * UNITS_PER_WORD;
7003 break;
7005 case BASE_REGNUM:
7006 offset = 0;
7007 break;
7009 default:
7010 gcc_unreachable ();
7013 return offset;
7016 /* Emit insn to save fpr REGNUM at offset OFFSET relative
7017 to register BASE. Return generated insn. */
7019 static rtx
7020 save_fpr (rtx base, int offset, int regnum)
7022 rtx addr;
7023 addr = gen_rtx_MEM (DFmode, plus_constant (base, offset));
7025 if (regnum >= 16 && regnum <= (16 + FP_ARG_NUM_REG))
7026 set_mem_alias_set (addr, get_varargs_alias_set ());
7027 else
7028 set_mem_alias_set (addr, get_frame_alias_set ());
7030 return emit_move_insn (addr, gen_rtx_REG (DFmode, regnum));
7033 /* Emit insn to restore fpr REGNUM from offset OFFSET relative
7034 to register BASE. Return generated insn. */
7036 static rtx
7037 restore_fpr (rtx base, int offset, int regnum)
7039 rtx addr;
7040 addr = gen_rtx_MEM (DFmode, plus_constant (base, offset));
7041 set_mem_alias_set (addr, get_frame_alias_set ());
7043 return emit_move_insn (gen_rtx_REG (DFmode, regnum), addr);
7046 /* Generate insn to save registers FIRST to LAST into
7047 the register save area located at offset OFFSET
7048 relative to register BASE. */
7050 static rtx
7051 save_gprs (rtx base, int offset, int first, int last)
7053 rtx addr, insn, note;
7054 int i;
7056 addr = plus_constant (base, offset);
7057 addr = gen_rtx_MEM (Pmode, addr);
7059 set_mem_alias_set (addr, get_frame_alias_set ());
7061 /* Special-case single register. */
7062 if (first == last)
7064 if (TARGET_64BIT)
7065 insn = gen_movdi (addr, gen_rtx_REG (Pmode, first));
7066 else
7067 insn = gen_movsi (addr, gen_rtx_REG (Pmode, first));
7069 RTX_FRAME_RELATED_P (insn) = 1;
7070 return insn;
7074 insn = gen_store_multiple (addr,
7075 gen_rtx_REG (Pmode, first),
7076 GEN_INT (last - first + 1));
7078 if (first <= 6 && current_function_stdarg)
7079 for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
7081 rtx mem = XEXP (XVECEXP (PATTERN (insn), 0, i), 0);
7083 if (first + i <= 6)
7084 set_mem_alias_set (mem, get_varargs_alias_set ());
7087 /* We need to set the FRAME_RELATED flag on all SETs
7088 inside the store-multiple pattern.
7090 However, we must not emit DWARF records for registers 2..5
7091 if they are stored for use by variable arguments ...
7093 ??? Unfortunately, it is not enough to simply not the
7094 FRAME_RELATED flags for those SETs, because the first SET
7095 of the PARALLEL is always treated as if it had the flag
7096 set, even if it does not. Therefore we emit a new pattern
7097 without those registers as REG_FRAME_RELATED_EXPR note. */
7099 if (first >= 6)
7101 rtx pat = PATTERN (insn);
7103 for (i = 0; i < XVECLEN (pat, 0); i++)
7104 if (GET_CODE (XVECEXP (pat, 0, i)) == SET)
7105 RTX_FRAME_RELATED_P (XVECEXP (pat, 0, i)) = 1;
7107 RTX_FRAME_RELATED_P (insn) = 1;
7109 else if (last >= 6)
7111 addr = plus_constant (base, offset + (6 - first) * UNITS_PER_WORD);
7112 note = gen_store_multiple (gen_rtx_MEM (Pmode, addr),
7113 gen_rtx_REG (Pmode, 6),
7114 GEN_INT (last - 6 + 1));
7115 note = PATTERN (note);
7117 REG_NOTES (insn) =
7118 gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
7119 note, REG_NOTES (insn));
7121 for (i = 0; i < XVECLEN (note, 0); i++)
7122 if (GET_CODE (XVECEXP (note, 0, i)) == SET)
7123 RTX_FRAME_RELATED_P (XVECEXP (note, 0, i)) = 1;
7125 RTX_FRAME_RELATED_P (insn) = 1;
7128 return insn;
7131 /* Generate insn to restore registers FIRST to LAST from
7132 the register save area located at offset OFFSET
7133 relative to register BASE. */
7135 static rtx
7136 restore_gprs (rtx base, int offset, int first, int last)
7138 rtx addr, insn;
7140 addr = plus_constant (base, offset);
7141 addr = gen_rtx_MEM (Pmode, addr);
7142 set_mem_alias_set (addr, get_frame_alias_set ());
7144 /* Special-case single register. */
7145 if (first == last)
7147 if (TARGET_64BIT)
7148 insn = gen_movdi (gen_rtx_REG (Pmode, first), addr);
7149 else
7150 insn = gen_movsi (gen_rtx_REG (Pmode, first), addr);
7152 return insn;
7155 insn = gen_load_multiple (gen_rtx_REG (Pmode, first),
7156 addr,
7157 GEN_INT (last - first + 1));
7158 return insn;
7161 /* Return insn sequence to load the GOT register. */
7163 static GTY(()) rtx got_symbol;
7165 s390_load_got (void)
7167 rtx insns;
7169 if (!got_symbol)
7171 got_symbol = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
7172 SYMBOL_REF_FLAGS (got_symbol) = SYMBOL_FLAG_LOCAL;
7175 start_sequence ();
7177 if (TARGET_CPU_ZARCH)
7179 emit_move_insn (pic_offset_table_rtx, got_symbol);
7181 else
7183 rtx offset;
7185 offset = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, got_symbol),
7186 UNSPEC_LTREL_OFFSET);
7187 offset = gen_rtx_CONST (Pmode, offset);
7188 offset = force_const_mem (Pmode, offset);
7190 emit_move_insn (pic_offset_table_rtx, offset);
7192 offset = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, XEXP (offset, 0)),
7193 UNSPEC_LTREL_BASE);
7194 offset = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, offset);
7196 emit_move_insn (pic_offset_table_rtx, offset);
7199 insns = get_insns ();
7200 end_sequence ();
7201 return insns;
7204 /* This ties together stack memory (MEM with an alias set of frame_alias_set)
7205 and the change to the stack pointer. */
7207 static void
7208 s390_emit_stack_tie (void)
7210 rtx mem = gen_frame_mem (BLKmode,
7211 gen_rtx_REG (Pmode, STACK_POINTER_REGNUM));
7213 emit_insn (gen_stack_tie (mem));
7216 /* Expand the prologue into a bunch of separate insns. */
7218 void
7219 s390_emit_prologue (void)
7221 rtx insn, addr;
7222 rtx temp_reg;
7223 int i;
7224 int offset;
7225 int next_fpr = 0;
7227 /* Complete frame layout. */
7229 s390_update_frame_layout ();
7231 /* Annotate all constant pool references to let the scheduler know
7232 they implicitly use the base register. */
7234 push_topmost_sequence ();
7236 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
7237 if (INSN_P (insn))
7239 annotate_constant_pool_refs (&PATTERN (insn));
7240 df_insn_rescan (insn);
7243 pop_topmost_sequence ();
7245 /* Choose best register to use for temp use within prologue.
7246 See below for why TPF must use the register 1. */
7248 if (!has_hard_reg_initial_val (Pmode, RETURN_REGNUM)
7249 && !current_function_is_leaf
7250 && !TARGET_TPF_PROFILING)
7251 temp_reg = gen_rtx_REG (Pmode, RETURN_REGNUM);
7252 else
7253 temp_reg = gen_rtx_REG (Pmode, 1);
7255 /* Save call saved gprs. */
7256 if (cfun_frame_layout.first_save_gpr != -1)
7258 insn = save_gprs (stack_pointer_rtx,
7259 cfun_frame_layout.gprs_offset +
7260 UNITS_PER_WORD * (cfun_frame_layout.first_save_gpr
7261 - cfun_frame_layout.first_save_gpr_slot),
7262 cfun_frame_layout.first_save_gpr,
7263 cfun_frame_layout.last_save_gpr);
7264 emit_insn (insn);
7267 /* Dummy insn to mark literal pool slot. */
7269 if (cfun->machine->base_reg)
7270 emit_insn (gen_main_pool (cfun->machine->base_reg));
7272 offset = cfun_frame_layout.f0_offset;
7274 /* Save f0 and f2. */
7275 for (i = 0; i < 2; i++)
7277 if (cfun_fpr_bit_p (i))
7279 save_fpr (stack_pointer_rtx, offset, i + 16);
7280 offset += 8;
7282 else if (!TARGET_PACKED_STACK)
7283 offset += 8;
7286 /* Save f4 and f6. */
7287 offset = cfun_frame_layout.f4_offset;
7288 for (i = 2; i < 4; i++)
7290 if (cfun_fpr_bit_p (i))
7292 insn = save_fpr (stack_pointer_rtx, offset, i + 16);
7293 offset += 8;
7295 /* If f4 and f6 are call clobbered they are saved due to stdargs and
7296 therefore are not frame related. */
7297 if (!call_really_used_regs[i + 16])
7298 RTX_FRAME_RELATED_P (insn) = 1;
7300 else if (!TARGET_PACKED_STACK)
7301 offset += 8;
7304 if (TARGET_PACKED_STACK
7305 && cfun_save_high_fprs_p
7306 && cfun_frame_layout.f8_offset + cfun_frame_layout.high_fprs * 8 > 0)
7308 offset = (cfun_frame_layout.f8_offset
7309 + (cfun_frame_layout.high_fprs - 1) * 8);
7311 for (i = 15; i > 7 && offset >= 0; i--)
7312 if (cfun_fpr_bit_p (i))
7314 insn = save_fpr (stack_pointer_rtx, offset, i + 16);
7316 RTX_FRAME_RELATED_P (insn) = 1;
7317 offset -= 8;
7319 if (offset >= cfun_frame_layout.f8_offset)
7320 next_fpr = i + 16;
7323 if (!TARGET_PACKED_STACK)
7324 next_fpr = cfun_save_high_fprs_p ? 31 : 0;
7326 /* Decrement stack pointer. */
7328 if (cfun_frame_layout.frame_size > 0)
7330 rtx frame_off = GEN_INT (-cfun_frame_layout.frame_size);
7332 if (s390_stack_size)
7334 HOST_WIDE_INT stack_guard;
7336 if (s390_stack_guard)
7337 stack_guard = s390_stack_guard;
7338 else
7340 /* If no value for stack guard is provided the smallest power of 2
7341 larger than the current frame size is chosen. */
7342 stack_guard = 1;
7343 while (stack_guard < cfun_frame_layout.frame_size)
7344 stack_guard <<= 1;
7347 if (cfun_frame_layout.frame_size >= s390_stack_size)
7349 warning (0, "frame size of function %qs is "
7350 HOST_WIDE_INT_PRINT_DEC
7351 " bytes exceeding user provided stack limit of "
7352 HOST_WIDE_INT_PRINT_DEC " bytes. "
7353 "An unconditional trap is added.",
7354 current_function_name(), cfun_frame_layout.frame_size,
7355 s390_stack_size);
7356 emit_insn (gen_trap ());
7358 else
7360 /* stack_guard has to be smaller than s390_stack_size.
7361 Otherwise we would emit an AND with zero which would
7362 not match the test under mask pattern. */
7363 if (stack_guard >= s390_stack_size)
7365 warning (0, "frame size of function %qs is "
7366 HOST_WIDE_INT_PRINT_DEC
7367 " bytes which is more than half the stack size. "
7368 "The dynamic check would not be reliable. "
7369 "No check emitted for this function.",
7370 current_function_name(),
7371 cfun_frame_layout.frame_size);
7373 else
7375 HOST_WIDE_INT stack_check_mask = ((s390_stack_size - 1)
7376 & ~(stack_guard - 1));
7377 rtx t = gen_rtx_AND (Pmode, stack_pointer_rtx,
7378 GEN_INT (stack_check_mask));
7379 if (TARGET_64BIT)
7380 gen_cmpdi (t, const0_rtx);
7381 else
7382 gen_cmpsi (t, const0_rtx);
7384 emit_insn (gen_conditional_trap (
7385 gen_rtx_EQ (CCmode,
7386 gen_rtx_REG (CCmode,
7387 CC_REGNUM),
7388 const0_rtx),
7389 const0_rtx));
7394 if (s390_warn_framesize > 0
7395 && cfun_frame_layout.frame_size >= s390_warn_framesize)
7396 warning (0, "frame size of %qs is " HOST_WIDE_INT_PRINT_DEC " bytes",
7397 current_function_name (), cfun_frame_layout.frame_size);
7399 if (s390_warn_dynamicstack_p && cfun->calls_alloca)
7400 warning (0, "%qs uses dynamic stack allocation", current_function_name ());
7402 /* Save incoming stack pointer into temp reg. */
7403 if (TARGET_BACKCHAIN || next_fpr)
7404 insn = emit_insn (gen_move_insn (temp_reg, stack_pointer_rtx));
7406 /* Subtract frame size from stack pointer. */
7408 if (DISP_IN_RANGE (INTVAL (frame_off)))
7410 insn = gen_rtx_SET (VOIDmode, stack_pointer_rtx,
7411 gen_rtx_PLUS (Pmode, stack_pointer_rtx,
7412 frame_off));
7413 insn = emit_insn (insn);
7415 else
7417 if (!CONST_OK_FOR_K (INTVAL (frame_off)))
7418 frame_off = force_const_mem (Pmode, frame_off);
7420 insn = emit_insn (gen_add2_insn (stack_pointer_rtx, frame_off));
7421 annotate_constant_pool_refs (&PATTERN (insn));
7424 RTX_FRAME_RELATED_P (insn) = 1;
7425 REG_NOTES (insn) =
7426 gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
7427 gen_rtx_SET (VOIDmode, stack_pointer_rtx,
7428 gen_rtx_PLUS (Pmode, stack_pointer_rtx,
7429 GEN_INT (-cfun_frame_layout.frame_size))),
7430 REG_NOTES (insn));
7432 /* Set backchain. */
7434 if (TARGET_BACKCHAIN)
7436 if (cfun_frame_layout.backchain_offset)
7437 addr = gen_rtx_MEM (Pmode,
7438 plus_constant (stack_pointer_rtx,
7439 cfun_frame_layout.backchain_offset));
7440 else
7441 addr = gen_rtx_MEM (Pmode, stack_pointer_rtx);
7442 set_mem_alias_set (addr, get_frame_alias_set ());
7443 insn = emit_insn (gen_move_insn (addr, temp_reg));
7446 /* If we support asynchronous exceptions (e.g. for Java),
7447 we need to make sure the backchain pointer is set up
7448 before any possibly trapping memory access. */
7450 if (TARGET_BACKCHAIN && flag_non_call_exceptions)
7452 addr = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode));
7453 emit_insn (gen_rtx_CLOBBER (VOIDmode, addr));
7457 /* Save fprs 8 - 15 (64 bit ABI). */
7459 if (cfun_save_high_fprs_p && next_fpr)
7461 /* If the stack might be accessed through a different register
7462 we have to make sure that the stack pointer decrement is not
7463 moved below the use of the stack slots. */
7464 s390_emit_stack_tie ();
7466 insn = emit_insn (gen_add2_insn (temp_reg,
7467 GEN_INT (cfun_frame_layout.f8_offset)));
7469 offset = 0;
7471 for (i = 24; i <= next_fpr; i++)
7472 if (cfun_fpr_bit_p (i - 16))
7474 rtx addr = plus_constant (stack_pointer_rtx,
7475 cfun_frame_layout.frame_size
7476 + cfun_frame_layout.f8_offset
7477 + offset);
7479 insn = save_fpr (temp_reg, offset, i);
7480 offset += 8;
7481 RTX_FRAME_RELATED_P (insn) = 1;
7482 REG_NOTES (insn) =
7483 gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
7484 gen_rtx_SET (VOIDmode,
7485 gen_rtx_MEM (DFmode, addr),
7486 gen_rtx_REG (DFmode, i)),
7487 REG_NOTES (insn));
7491 /* Set frame pointer, if needed. */
7493 if (frame_pointer_needed)
7495 insn = emit_move_insn (hard_frame_pointer_rtx, stack_pointer_rtx);
7496 RTX_FRAME_RELATED_P (insn) = 1;
7499 /* Set up got pointer, if needed. */
7501 if (flag_pic && df_regs_ever_live_p (PIC_OFFSET_TABLE_REGNUM))
7503 rtx insns = s390_load_got ();
7505 for (insn = insns; insn; insn = NEXT_INSN (insn))
7506 annotate_constant_pool_refs (&PATTERN (insn));
7508 emit_insn (insns);
7511 if (TARGET_TPF_PROFILING)
7513 /* Generate a BAS instruction to serve as a function
7514 entry intercept to facilitate the use of tracing
7515 algorithms located at the branch target. */
7516 emit_insn (gen_prologue_tpf ());
7518 /* Emit a blockage here so that all code
7519 lies between the profiling mechanisms. */
7520 emit_insn (gen_blockage ());
7524 /* Expand the epilogue into a bunch of separate insns. */
7526 void
7527 s390_emit_epilogue (bool sibcall)
7529 rtx frame_pointer, return_reg;
7530 int area_bottom, area_top, offset = 0;
7531 int next_offset;
7532 rtvec p;
7533 int i;
7535 if (TARGET_TPF_PROFILING)
7538 /* Generate a BAS instruction to serve as a function
7539 entry intercept to facilitate the use of tracing
7540 algorithms located at the branch target. */
7542 /* Emit a blockage here so that all code
7543 lies between the profiling mechanisms. */
7544 emit_insn (gen_blockage ());
7546 emit_insn (gen_epilogue_tpf ());
7549 /* Check whether to use frame or stack pointer for restore. */
7551 frame_pointer = (frame_pointer_needed
7552 ? hard_frame_pointer_rtx : stack_pointer_rtx);
7554 s390_frame_area (&area_bottom, &area_top);
7556 /* Check whether we can access the register save area.
7557 If not, increment the frame pointer as required. */
7559 if (area_top <= area_bottom)
7561 /* Nothing to restore. */
7563 else if (DISP_IN_RANGE (cfun_frame_layout.frame_size + area_bottom)
7564 && DISP_IN_RANGE (cfun_frame_layout.frame_size + area_top - 1))
7566 /* Area is in range. */
7567 offset = cfun_frame_layout.frame_size;
7569 else
7571 rtx insn, frame_off;
7573 offset = area_bottom < 0 ? -area_bottom : 0;
7574 frame_off = GEN_INT (cfun_frame_layout.frame_size - offset);
7576 if (DISP_IN_RANGE (INTVAL (frame_off)))
7578 insn = gen_rtx_SET (VOIDmode, frame_pointer,
7579 gen_rtx_PLUS (Pmode, frame_pointer, frame_off));
7580 insn = emit_insn (insn);
7582 else
7584 if (!CONST_OK_FOR_K (INTVAL (frame_off)))
7585 frame_off = force_const_mem (Pmode, frame_off);
7587 insn = emit_insn (gen_add2_insn (frame_pointer, frame_off));
7588 annotate_constant_pool_refs (&PATTERN (insn));
7592 /* Restore call saved fprs. */
7594 if (TARGET_64BIT)
7596 if (cfun_save_high_fprs_p)
7598 next_offset = cfun_frame_layout.f8_offset;
7599 for (i = 24; i < 32; i++)
7601 if (cfun_fpr_bit_p (i - 16))
7603 restore_fpr (frame_pointer,
7604 offset + next_offset, i);
7605 next_offset += 8;
7611 else
7613 next_offset = cfun_frame_layout.f4_offset;
7614 for (i = 18; i < 20; i++)
7616 if (cfun_fpr_bit_p (i - 16))
7618 restore_fpr (frame_pointer,
7619 offset + next_offset, i);
7620 next_offset += 8;
7622 else if (!TARGET_PACKED_STACK)
7623 next_offset += 8;
7628 /* Return register. */
7630 return_reg = gen_rtx_REG (Pmode, RETURN_REGNUM);
7632 /* Restore call saved gprs. */
7634 if (cfun_frame_layout.first_restore_gpr != -1)
7636 rtx insn, addr;
7637 int i;
7639 /* Check for global register and save them
7640 to stack location from where they get restored. */
7642 for (i = cfun_frame_layout.first_restore_gpr;
7643 i <= cfun_frame_layout.last_restore_gpr;
7644 i++)
7646 /* These registers are special and need to be
7647 restored in any case. */
7648 if (i == STACK_POINTER_REGNUM
7649 || i == RETURN_REGNUM
7650 || i == BASE_REGNUM
7651 || (flag_pic && i == (int)PIC_OFFSET_TABLE_REGNUM))
7652 continue;
7654 if (global_regs[i])
7656 addr = plus_constant (frame_pointer,
7657 offset + cfun_frame_layout.gprs_offset
7658 + (i - cfun_frame_layout.first_save_gpr_slot)
7659 * UNITS_PER_WORD);
7660 addr = gen_rtx_MEM (Pmode, addr);
7661 set_mem_alias_set (addr, get_frame_alias_set ());
7662 emit_move_insn (addr, gen_rtx_REG (Pmode, i));
7666 if (! sibcall)
7668 /* Fetch return address from stack before load multiple,
7669 this will do good for scheduling. */
7671 if (cfun_frame_layout.save_return_addr_p
7672 || (cfun_frame_layout.first_restore_gpr < BASE_REGNUM
7673 && cfun_frame_layout.last_restore_gpr > RETURN_REGNUM))
7675 int return_regnum = find_unused_clobbered_reg();
7676 if (!return_regnum)
7677 return_regnum = 4;
7678 return_reg = gen_rtx_REG (Pmode, return_regnum);
7680 addr = plus_constant (frame_pointer,
7681 offset + cfun_frame_layout.gprs_offset
7682 + (RETURN_REGNUM
7683 - cfun_frame_layout.first_save_gpr_slot)
7684 * UNITS_PER_WORD);
7685 addr = gen_rtx_MEM (Pmode, addr);
7686 set_mem_alias_set (addr, get_frame_alias_set ());
7687 emit_move_insn (return_reg, addr);
7691 insn = restore_gprs (frame_pointer,
7692 offset + cfun_frame_layout.gprs_offset
7693 + (cfun_frame_layout.first_restore_gpr
7694 - cfun_frame_layout.first_save_gpr_slot)
7695 * UNITS_PER_WORD,
7696 cfun_frame_layout.first_restore_gpr,
7697 cfun_frame_layout.last_restore_gpr);
7698 emit_insn (insn);
7701 if (! sibcall)
7704 /* Return to caller. */
7706 p = rtvec_alloc (2);
7708 RTVEC_ELT (p, 0) = gen_rtx_RETURN (VOIDmode);
7709 RTVEC_ELT (p, 1) = gen_rtx_USE (VOIDmode, return_reg);
7710 emit_jump_insn (gen_rtx_PARALLEL (VOIDmode, p));
7715 /* Return the size in bytes of a function argument of
7716 type TYPE and/or mode MODE. At least one of TYPE or
7717 MODE must be specified. */
7719 static int
7720 s390_function_arg_size (enum machine_mode mode, const_tree type)
7722 if (type)
7723 return int_size_in_bytes (type);
7725 /* No type info available for some library calls ... */
7726 if (mode != BLKmode)
7727 return GET_MODE_SIZE (mode);
7729 /* If we have neither type nor mode, abort */
7730 gcc_unreachable ();
7733 /* Return true if a function argument of type TYPE and mode MODE
7734 is to be passed in a floating-point register, if available. */
7736 static bool
7737 s390_function_arg_float (enum machine_mode mode, tree type)
7739 int size = s390_function_arg_size (mode, type);
7740 if (size > 8)
7741 return false;
7743 /* Soft-float changes the ABI: no floating-point registers are used. */
7744 if (TARGET_SOFT_FLOAT)
7745 return false;
7747 /* No type info available for some library calls ... */
7748 if (!type)
7749 return mode == SFmode || mode == DFmode || mode == SDmode || mode == DDmode;
7751 /* The ABI says that record types with a single member are treated
7752 just like that member would be. */
7753 while (TREE_CODE (type) == RECORD_TYPE)
7755 tree field, single = NULL_TREE;
7757 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
7759 if (TREE_CODE (field) != FIELD_DECL)
7760 continue;
7762 if (single == NULL_TREE)
7763 single = TREE_TYPE (field);
7764 else
7765 return false;
7768 if (single == NULL_TREE)
7769 return false;
7770 else
7771 type = single;
7774 return TREE_CODE (type) == REAL_TYPE;
7777 /* Return true if a function argument of type TYPE and mode MODE
7778 is to be passed in an integer register, or a pair of integer
7779 registers, if available. */
7781 static bool
7782 s390_function_arg_integer (enum machine_mode mode, tree type)
7784 int size = s390_function_arg_size (mode, type);
7785 if (size > 8)
7786 return false;
7788 /* No type info available for some library calls ... */
7789 if (!type)
7790 return GET_MODE_CLASS (mode) == MODE_INT
7791 || (TARGET_SOFT_FLOAT && SCALAR_FLOAT_MODE_P (mode));
7793 /* We accept small integral (and similar) types. */
7794 if (INTEGRAL_TYPE_P (type)
7795 || POINTER_TYPE_P (type)
7796 || TREE_CODE (type) == OFFSET_TYPE
7797 || (TARGET_SOFT_FLOAT && TREE_CODE (type) == REAL_TYPE))
7798 return true;
7800 /* We also accept structs of size 1, 2, 4, 8 that are not
7801 passed in floating-point registers. */
7802 if (AGGREGATE_TYPE_P (type)
7803 && exact_log2 (size) >= 0
7804 && !s390_function_arg_float (mode, type))
7805 return true;
7807 return false;
7810 /* Return 1 if a function argument of type TYPE and mode MODE
7811 is to be passed by reference. The ABI specifies that only
7812 structures of size 1, 2, 4, or 8 bytes are passed by value,
7813 all other structures (and complex numbers) are passed by
7814 reference. */
7816 static bool
7817 s390_pass_by_reference (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
7818 enum machine_mode mode, const_tree type,
7819 bool named ATTRIBUTE_UNUSED)
7821 int size = s390_function_arg_size (mode, type);
7822 if (size > 8)
7823 return true;
7825 if (type)
7827 if (AGGREGATE_TYPE_P (type) && exact_log2 (size) < 0)
7828 return 1;
7830 if (TREE_CODE (type) == COMPLEX_TYPE
7831 || TREE_CODE (type) == VECTOR_TYPE)
7832 return 1;
7835 return 0;
7838 /* Update the data in CUM to advance over an argument of mode MODE and
7839 data type TYPE. (TYPE is null for libcalls where that information
7840 may not be available.). The boolean NAMED specifies whether the
7841 argument is a named argument (as opposed to an unnamed argument
7842 matching an ellipsis). */
7844 void
7845 s390_function_arg_advance (CUMULATIVE_ARGS *cum, enum machine_mode mode,
7846 tree type, int named ATTRIBUTE_UNUSED)
7848 if (s390_function_arg_float (mode, type))
7850 cum->fprs += 1;
7852 else if (s390_function_arg_integer (mode, type))
7854 int size = s390_function_arg_size (mode, type);
7855 cum->gprs += ((size + UNITS_PER_WORD-1) / UNITS_PER_WORD);
7857 else
7858 gcc_unreachable ();
7861 /* Define where to put the arguments to a function.
7862 Value is zero to push the argument on the stack,
7863 or a hard register in which to store the argument.
7865 MODE is the argument's machine mode.
7866 TYPE is the data type of the argument (as a tree).
7867 This is null for libcalls where that information may
7868 not be available.
7869 CUM is a variable of type CUMULATIVE_ARGS which gives info about
7870 the preceding args and about the function being called.
7871 NAMED is nonzero if this argument is a named parameter
7872 (otherwise it is an extra parameter matching an ellipsis).
7874 On S/390, we use general purpose registers 2 through 6 to
7875 pass integer, pointer, and certain structure arguments, and
7876 floating point registers 0 and 2 (0, 2, 4, and 6 on 64-bit)
7877 to pass floating point arguments. All remaining arguments
7878 are pushed to the stack. */
7881 s390_function_arg (CUMULATIVE_ARGS *cum, enum machine_mode mode, tree type,
7882 int named ATTRIBUTE_UNUSED)
7884 if (s390_function_arg_float (mode, type))
7886 if (cum->fprs + 1 > FP_ARG_NUM_REG)
7887 return 0;
7888 else
7889 return gen_rtx_REG (mode, cum->fprs + 16);
7891 else if (s390_function_arg_integer (mode, type))
7893 int size = s390_function_arg_size (mode, type);
7894 int n_gprs = (size + UNITS_PER_WORD-1) / UNITS_PER_WORD;
7896 if (cum->gprs + n_gprs > GP_ARG_NUM_REG)
7897 return 0;
7898 else
7899 return gen_rtx_REG (mode, cum->gprs + 2);
7902 /* After the real arguments, expand_call calls us once again
7903 with a void_type_node type. Whatever we return here is
7904 passed as operand 2 to the call expanders.
7906 We don't need this feature ... */
7907 else if (type == void_type_node)
7908 return const0_rtx;
7910 gcc_unreachable ();
7913 /* Return true if return values of type TYPE should be returned
7914 in a memory buffer whose address is passed by the caller as
7915 hidden first argument. */
7917 static bool
7918 s390_return_in_memory (const_tree type, const_tree fundecl ATTRIBUTE_UNUSED)
7920 /* We accept small integral (and similar) types. */
7921 if (INTEGRAL_TYPE_P (type)
7922 || POINTER_TYPE_P (type)
7923 || TREE_CODE (type) == OFFSET_TYPE
7924 || TREE_CODE (type) == REAL_TYPE)
7925 return int_size_in_bytes (type) > 8;
7927 /* Aggregates and similar constructs are always returned
7928 in memory. */
7929 if (AGGREGATE_TYPE_P (type)
7930 || TREE_CODE (type) == COMPLEX_TYPE
7931 || TREE_CODE (type) == VECTOR_TYPE)
7932 return true;
7934 /* ??? We get called on all sorts of random stuff from
7935 aggregate_value_p. We can't abort, but it's not clear
7936 what's safe to return. Pretend it's a struct I guess. */
7937 return true;
7940 /* Define where to return a (scalar) value of type TYPE.
7941 If TYPE is null, define where to return a (scalar)
7942 value of mode MODE from a libcall. */
7945 s390_function_value (const_tree type, enum machine_mode mode)
7947 if (type)
7949 int unsignedp = TYPE_UNSIGNED (type);
7950 mode = promote_mode (type, TYPE_MODE (type), &unsignedp, 1);
7953 gcc_assert (GET_MODE_CLASS (mode) == MODE_INT || SCALAR_FLOAT_MODE_P (mode));
7954 gcc_assert (GET_MODE_SIZE (mode) <= 8);
7956 if (TARGET_HARD_FLOAT && SCALAR_FLOAT_MODE_P (mode))
7957 return gen_rtx_REG (mode, 16);
7958 else
7959 return gen_rtx_REG (mode, 2);
7963 /* Create and return the va_list datatype.
7965 On S/390, va_list is an array type equivalent to
7967 typedef struct __va_list_tag
7969 long __gpr;
7970 long __fpr;
7971 void *__overflow_arg_area;
7972 void *__reg_save_area;
7973 } va_list[1];
7975 where __gpr and __fpr hold the number of general purpose
7976 or floating point arguments used up to now, respectively,
7977 __overflow_arg_area points to the stack location of the
7978 next argument passed on the stack, and __reg_save_area
7979 always points to the start of the register area in the
7980 call frame of the current function. The function prologue
7981 saves all registers used for argument passing into this
7982 area if the function uses variable arguments. */
7984 static tree
7985 s390_build_builtin_va_list (void)
7987 tree f_gpr, f_fpr, f_ovf, f_sav, record, type_decl;
7989 record = lang_hooks.types.make_type (RECORD_TYPE);
7991 type_decl =
7992 build_decl (TYPE_DECL, get_identifier ("__va_list_tag"), record);
7994 f_gpr = build_decl (FIELD_DECL, get_identifier ("__gpr"),
7995 long_integer_type_node);
7996 f_fpr = build_decl (FIELD_DECL, get_identifier ("__fpr"),
7997 long_integer_type_node);
7998 f_ovf = build_decl (FIELD_DECL, get_identifier ("__overflow_arg_area"),
7999 ptr_type_node);
8000 f_sav = build_decl (FIELD_DECL, get_identifier ("__reg_save_area"),
8001 ptr_type_node);
8003 va_list_gpr_counter_field = f_gpr;
8004 va_list_fpr_counter_field = f_fpr;
8006 DECL_FIELD_CONTEXT (f_gpr) = record;
8007 DECL_FIELD_CONTEXT (f_fpr) = record;
8008 DECL_FIELD_CONTEXT (f_ovf) = record;
8009 DECL_FIELD_CONTEXT (f_sav) = record;
8011 TREE_CHAIN (record) = type_decl;
8012 TYPE_NAME (record) = type_decl;
8013 TYPE_FIELDS (record) = f_gpr;
8014 TREE_CHAIN (f_gpr) = f_fpr;
8015 TREE_CHAIN (f_fpr) = f_ovf;
8016 TREE_CHAIN (f_ovf) = f_sav;
8018 layout_type (record);
8020 /* The correct type is an array type of one element. */
8021 return build_array_type (record, build_index_type (size_zero_node));
8024 /* Implement va_start by filling the va_list structure VALIST.
8025 STDARG_P is always true, and ignored.
8026 NEXTARG points to the first anonymous stack argument.
8028 The following global variables are used to initialize
8029 the va_list structure:
8031 current_function_args_info:
8032 holds number of gprs and fprs used for named arguments.
8033 current_function_arg_offset_rtx:
8034 holds the offset of the first anonymous stack argument
8035 (relative to the virtual arg pointer). */
8037 static void
8038 s390_va_start (tree valist, rtx nextarg ATTRIBUTE_UNUSED)
8040 HOST_WIDE_INT n_gpr, n_fpr;
8041 int off;
8042 tree f_gpr, f_fpr, f_ovf, f_sav;
8043 tree gpr, fpr, ovf, sav, t;
8045 f_gpr = TYPE_FIELDS (TREE_TYPE (va_list_type_node));
8046 f_fpr = TREE_CHAIN (f_gpr);
8047 f_ovf = TREE_CHAIN (f_fpr);
8048 f_sav = TREE_CHAIN (f_ovf);
8050 valist = build_va_arg_indirect_ref (valist);
8051 gpr = build3 (COMPONENT_REF, TREE_TYPE (f_gpr), valist, f_gpr, NULL_TREE);
8052 fpr = build3 (COMPONENT_REF, TREE_TYPE (f_fpr), valist, f_fpr, NULL_TREE);
8053 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), valist, f_ovf, NULL_TREE);
8054 sav = build3 (COMPONENT_REF, TREE_TYPE (f_sav), valist, f_sav, NULL_TREE);
8056 /* Count number of gp and fp argument registers used. */
8058 n_gpr = current_function_args_info.gprs;
8059 n_fpr = current_function_args_info.fprs;
8061 if (cfun->va_list_gpr_size)
8063 t = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (gpr), gpr,
8064 build_int_cst (NULL_TREE, n_gpr));
8065 TREE_SIDE_EFFECTS (t) = 1;
8066 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
8069 if (cfun->va_list_fpr_size)
8071 t = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (fpr), fpr,
8072 build_int_cst (NULL_TREE, n_fpr));
8073 TREE_SIDE_EFFECTS (t) = 1;
8074 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
8077 /* Find the overflow area. */
8078 if (n_gpr + cfun->va_list_gpr_size > GP_ARG_NUM_REG
8079 || n_fpr + cfun->va_list_fpr_size > FP_ARG_NUM_REG)
8081 t = make_tree (TREE_TYPE (ovf), virtual_incoming_args_rtx);
8083 off = INTVAL (current_function_arg_offset_rtx);
8084 off = off < 0 ? 0 : off;
8085 if (TARGET_DEBUG_ARG)
8086 fprintf (stderr, "va_start: n_gpr = %d, n_fpr = %d off %d\n",
8087 (int)n_gpr, (int)n_fpr, off);
8089 t = build2 (POINTER_PLUS_EXPR, TREE_TYPE (ovf), t, size_int (off));
8091 t = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (ovf), ovf, t);
8092 TREE_SIDE_EFFECTS (t) = 1;
8093 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
8096 /* Find the register save area. */
8097 if ((cfun->va_list_gpr_size && n_gpr < GP_ARG_NUM_REG)
8098 || (cfun->va_list_fpr_size && n_fpr < FP_ARG_NUM_REG))
8100 t = make_tree (TREE_TYPE (sav), return_address_pointer_rtx);
8101 t = build2 (POINTER_PLUS_EXPR, TREE_TYPE (sav), t,
8102 size_int (-RETURN_REGNUM * UNITS_PER_WORD));
8104 t = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (sav), sav, t);
8105 TREE_SIDE_EFFECTS (t) = 1;
8106 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
8110 /* Implement va_arg by updating the va_list structure
8111 VALIST as required to retrieve an argument of type
8112 TYPE, and returning that argument.
8114 Generates code equivalent to:
8116 if (integral value) {
8117 if (size <= 4 && args.gpr < 5 ||
8118 size > 4 && args.gpr < 4 )
8119 ret = args.reg_save_area[args.gpr+8]
8120 else
8121 ret = *args.overflow_arg_area++;
8122 } else if (float value) {
8123 if (args.fgpr < 2)
8124 ret = args.reg_save_area[args.fpr+64]
8125 else
8126 ret = *args.overflow_arg_area++;
8127 } else if (aggregate value) {
8128 if (args.gpr < 5)
8129 ret = *args.reg_save_area[args.gpr]
8130 else
8131 ret = **args.overflow_arg_area++;
8132 } */
8134 static tree
8135 s390_gimplify_va_arg (tree valist, tree type, tree *pre_p,
8136 tree *post_p ATTRIBUTE_UNUSED)
8138 tree f_gpr, f_fpr, f_ovf, f_sav;
8139 tree gpr, fpr, ovf, sav, reg, t, u;
8140 int indirect_p, size, n_reg, sav_ofs, sav_scale, max_reg;
8141 tree lab_false, lab_over, addr;
8143 f_gpr = TYPE_FIELDS (TREE_TYPE (va_list_type_node));
8144 f_fpr = TREE_CHAIN (f_gpr);
8145 f_ovf = TREE_CHAIN (f_fpr);
8146 f_sav = TREE_CHAIN (f_ovf);
8148 valist = build_va_arg_indirect_ref (valist);
8149 gpr = build3 (COMPONENT_REF, TREE_TYPE (f_gpr), valist, f_gpr, NULL_TREE);
8150 fpr = build3 (COMPONENT_REF, TREE_TYPE (f_fpr), valist, f_fpr, NULL_TREE);
8151 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), valist, f_ovf, NULL_TREE);
8152 sav = build3 (COMPONENT_REF, TREE_TYPE (f_sav), valist, f_sav, NULL_TREE);
8154 size = int_size_in_bytes (type);
8156 if (pass_by_reference (NULL, TYPE_MODE (type), type, false))
8158 if (TARGET_DEBUG_ARG)
8160 fprintf (stderr, "va_arg: aggregate type");
8161 debug_tree (type);
8164 /* Aggregates are passed by reference. */
8165 indirect_p = 1;
8166 reg = gpr;
8167 n_reg = 1;
8169 /* kernel stack layout on 31 bit: It is assumed here that no padding
8170 will be added by s390_frame_info because for va_args always an even
8171 number of gprs has to be saved r15-r2 = 14 regs. */
8172 sav_ofs = 2 * UNITS_PER_WORD;
8173 sav_scale = UNITS_PER_WORD;
8174 size = UNITS_PER_WORD;
8175 max_reg = GP_ARG_NUM_REG - n_reg;
8177 else if (s390_function_arg_float (TYPE_MODE (type), type))
8179 if (TARGET_DEBUG_ARG)
8181 fprintf (stderr, "va_arg: float type");
8182 debug_tree (type);
8185 /* FP args go in FP registers, if present. */
8186 indirect_p = 0;
8187 reg = fpr;
8188 n_reg = 1;
8189 sav_ofs = 16 * UNITS_PER_WORD;
8190 sav_scale = 8;
8191 max_reg = FP_ARG_NUM_REG - n_reg;
8193 else
8195 if (TARGET_DEBUG_ARG)
8197 fprintf (stderr, "va_arg: other type");
8198 debug_tree (type);
8201 /* Otherwise into GP registers. */
8202 indirect_p = 0;
8203 reg = gpr;
8204 n_reg = (size + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
8206 /* kernel stack layout on 31 bit: It is assumed here that no padding
8207 will be added by s390_frame_info because for va_args always an even
8208 number of gprs has to be saved r15-r2 = 14 regs. */
8209 sav_ofs = 2 * UNITS_PER_WORD;
8211 if (size < UNITS_PER_WORD)
8212 sav_ofs += UNITS_PER_WORD - size;
8214 sav_scale = UNITS_PER_WORD;
8215 max_reg = GP_ARG_NUM_REG - n_reg;
8218 /* Pull the value out of the saved registers ... */
8220 lab_false = create_artificial_label ();
8221 lab_over = create_artificial_label ();
8222 addr = create_tmp_var (ptr_type_node, "addr");
8223 DECL_POINTER_ALIAS_SET (addr) = get_varargs_alias_set ();
8225 t = fold_convert (TREE_TYPE (reg), size_int (max_reg));
8226 t = build2 (GT_EXPR, boolean_type_node, reg, t);
8227 u = build1 (GOTO_EXPR, void_type_node, lab_false);
8228 t = build3 (COND_EXPR, void_type_node, t, u, NULL_TREE);
8229 gimplify_and_add (t, pre_p);
8231 t = build2 (POINTER_PLUS_EXPR, ptr_type_node, sav,
8232 size_int (sav_ofs));
8233 u = build2 (MULT_EXPR, TREE_TYPE (reg), reg,
8234 fold_convert (TREE_TYPE (reg), size_int (sav_scale)));
8235 t = build2 (POINTER_PLUS_EXPR, ptr_type_node, t, fold_convert (sizetype, u));
8237 t = build2 (GIMPLE_MODIFY_STMT, void_type_node, addr, t);
8238 gimplify_and_add (t, pre_p);
8240 t = build1 (GOTO_EXPR, void_type_node, lab_over);
8241 gimplify_and_add (t, pre_p);
8243 t = build1 (LABEL_EXPR, void_type_node, lab_false);
8244 append_to_statement_list (t, pre_p);
8247 /* ... Otherwise out of the overflow area. */
8249 t = ovf;
8250 if (size < UNITS_PER_WORD)
8251 t = build2 (POINTER_PLUS_EXPR, ptr_type_node, t,
8252 size_int (UNITS_PER_WORD - size));
8254 gimplify_expr (&t, pre_p, NULL, is_gimple_val, fb_rvalue);
8256 u = build2 (GIMPLE_MODIFY_STMT, void_type_node, addr, t);
8257 gimplify_and_add (u, pre_p);
8259 t = build2 (POINTER_PLUS_EXPR, ptr_type_node, t,
8260 size_int (size));
8261 t = build2 (GIMPLE_MODIFY_STMT, ptr_type_node, ovf, t);
8262 gimplify_and_add (t, pre_p);
8264 t = build1 (LABEL_EXPR, void_type_node, lab_over);
8265 append_to_statement_list (t, pre_p);
8268 /* Increment register save count. */
8270 u = build2 (PREINCREMENT_EXPR, TREE_TYPE (reg), reg,
8271 fold_convert (TREE_TYPE (reg), size_int (n_reg)));
8272 gimplify_and_add (u, pre_p);
8274 if (indirect_p)
8276 t = build_pointer_type (build_pointer_type (type));
8277 addr = fold_convert (t, addr);
8278 addr = build_va_arg_indirect_ref (addr);
8280 else
8282 t = build_pointer_type (type);
8283 addr = fold_convert (t, addr);
8286 return build_va_arg_indirect_ref (addr);
8290 /* Builtins. */
8292 enum s390_builtin
8294 S390_BUILTIN_THREAD_POINTER,
8295 S390_BUILTIN_SET_THREAD_POINTER,
8297 S390_BUILTIN_max
8300 static unsigned int const code_for_builtin_64[S390_BUILTIN_max] = {
8301 CODE_FOR_get_tp_64,
8302 CODE_FOR_set_tp_64
8305 static unsigned int const code_for_builtin_31[S390_BUILTIN_max] = {
8306 CODE_FOR_get_tp_31,
8307 CODE_FOR_set_tp_31
8310 static void
8311 s390_init_builtins (void)
8313 tree ftype;
8315 ftype = build_function_type (ptr_type_node, void_list_node);
8316 add_builtin_function ("__builtin_thread_pointer", ftype,
8317 S390_BUILTIN_THREAD_POINTER, BUILT_IN_MD,
8318 NULL, NULL_TREE);
8320 ftype = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
8321 add_builtin_function ("__builtin_set_thread_pointer", ftype,
8322 S390_BUILTIN_SET_THREAD_POINTER, BUILT_IN_MD,
8323 NULL, NULL_TREE);
8326 /* Expand an expression EXP that calls a built-in function,
8327 with result going to TARGET if that's convenient
8328 (and in mode MODE if that's convenient).
8329 SUBTARGET may be used as the target for computing one of EXP's operands.
8330 IGNORE is nonzero if the value is to be ignored. */
8332 static rtx
8333 s390_expand_builtin (tree exp, rtx target, rtx subtarget ATTRIBUTE_UNUSED,
8334 enum machine_mode mode ATTRIBUTE_UNUSED,
8335 int ignore ATTRIBUTE_UNUSED)
8337 #define MAX_ARGS 2
8339 unsigned int const *code_for_builtin =
8340 TARGET_64BIT ? code_for_builtin_64 : code_for_builtin_31;
8342 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
8343 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
8344 enum insn_code icode;
8345 rtx op[MAX_ARGS], pat;
8346 int arity;
8347 bool nonvoid;
8348 tree arg;
8349 call_expr_arg_iterator iter;
8351 if (fcode >= S390_BUILTIN_max)
8352 internal_error ("bad builtin fcode");
8353 icode = code_for_builtin[fcode];
8354 if (icode == 0)
8355 internal_error ("bad builtin fcode");
8357 nonvoid = TREE_TYPE (TREE_TYPE (fndecl)) != void_type_node;
8359 arity = 0;
8360 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
8362 const struct insn_operand_data *insn_op;
8364 if (arg == error_mark_node)
8365 return NULL_RTX;
8366 if (arity > MAX_ARGS)
8367 return NULL_RTX;
8369 insn_op = &insn_data[icode].operand[arity + nonvoid];
8371 op[arity] = expand_expr (arg, NULL_RTX, insn_op->mode, 0);
8373 if (!(*insn_op->predicate) (op[arity], insn_op->mode))
8374 op[arity] = copy_to_mode_reg (insn_op->mode, op[arity]);
8375 arity++;
8378 if (nonvoid)
8380 enum machine_mode tmode = insn_data[icode].operand[0].mode;
8381 if (!target
8382 || GET_MODE (target) != tmode
8383 || !(*insn_data[icode].operand[0].predicate) (target, tmode))
8384 target = gen_reg_rtx (tmode);
8387 switch (arity)
8389 case 0:
8390 pat = GEN_FCN (icode) (target);
8391 break;
8392 case 1:
8393 if (nonvoid)
8394 pat = GEN_FCN (icode) (target, op[0]);
8395 else
8396 pat = GEN_FCN (icode) (op[0]);
8397 break;
8398 case 2:
8399 pat = GEN_FCN (icode) (target, op[0], op[1]);
8400 break;
8401 default:
8402 gcc_unreachable ();
8404 if (!pat)
8405 return NULL_RTX;
8406 emit_insn (pat);
8408 if (nonvoid)
8409 return target;
8410 else
8411 return const0_rtx;
8415 /* Output assembly code for the trampoline template to
8416 stdio stream FILE.
8418 On S/390, we use gpr 1 internally in the trampoline code;
8419 gpr 0 is used to hold the static chain. */
8421 void
8422 s390_trampoline_template (FILE *file)
8424 rtx op[2];
8425 op[0] = gen_rtx_REG (Pmode, 0);
8426 op[1] = gen_rtx_REG (Pmode, 1);
8428 if (TARGET_64BIT)
8430 output_asm_insn ("basr\t%1,0", op);
8431 output_asm_insn ("lmg\t%0,%1,14(%1)", op);
8432 output_asm_insn ("br\t%1", op);
8433 ASM_OUTPUT_SKIP (file, (HOST_WIDE_INT)(TRAMPOLINE_SIZE - 10));
8435 else
8437 output_asm_insn ("basr\t%1,0", op);
8438 output_asm_insn ("lm\t%0,%1,6(%1)", op);
8439 output_asm_insn ("br\t%1", op);
8440 ASM_OUTPUT_SKIP (file, (HOST_WIDE_INT)(TRAMPOLINE_SIZE - 8));
8444 /* Emit RTL insns to initialize the variable parts of a trampoline.
8445 FNADDR is an RTX for the address of the function's pure code.
8446 CXT is an RTX for the static chain value for the function. */
8448 void
8449 s390_initialize_trampoline (rtx addr, rtx fnaddr, rtx cxt)
8451 emit_move_insn (gen_rtx_MEM (Pmode,
8452 memory_address (Pmode,
8453 plus_constant (addr, (TARGET_64BIT ? 16 : 8)))), cxt);
8454 emit_move_insn (gen_rtx_MEM (Pmode,
8455 memory_address (Pmode,
8456 plus_constant (addr, (TARGET_64BIT ? 24 : 12)))), fnaddr);
8459 /* Output assembler code to FILE to increment profiler label # LABELNO
8460 for profiling a function entry. */
8462 void
8463 s390_function_profiler (FILE *file, int labelno)
8465 rtx op[7];
8467 char label[128];
8468 ASM_GENERATE_INTERNAL_LABEL (label, "LP", labelno);
8470 fprintf (file, "# function profiler \n");
8472 op[0] = gen_rtx_REG (Pmode, RETURN_REGNUM);
8473 op[1] = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
8474 op[1] = gen_rtx_MEM (Pmode, plus_constant (op[1], UNITS_PER_WORD));
8476 op[2] = gen_rtx_REG (Pmode, 1);
8477 op[3] = gen_rtx_SYMBOL_REF (Pmode, label);
8478 SYMBOL_REF_FLAGS (op[3]) = SYMBOL_FLAG_LOCAL;
8480 op[4] = gen_rtx_SYMBOL_REF (Pmode, "_mcount");
8481 if (flag_pic)
8483 op[4] = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, op[4]), UNSPEC_PLT);
8484 op[4] = gen_rtx_CONST (Pmode, op[4]);
8487 if (TARGET_64BIT)
8489 output_asm_insn ("stg\t%0,%1", op);
8490 output_asm_insn ("larl\t%2,%3", op);
8491 output_asm_insn ("brasl\t%0,%4", op);
8492 output_asm_insn ("lg\t%0,%1", op);
8494 else if (!flag_pic)
8496 op[6] = gen_label_rtx ();
8498 output_asm_insn ("st\t%0,%1", op);
8499 output_asm_insn ("bras\t%2,%l6", op);
8500 output_asm_insn (".long\t%4", op);
8501 output_asm_insn (".long\t%3", op);
8502 targetm.asm_out.internal_label (file, "L", CODE_LABEL_NUMBER (op[6]));
8503 output_asm_insn ("l\t%0,0(%2)", op);
8504 output_asm_insn ("l\t%2,4(%2)", op);
8505 output_asm_insn ("basr\t%0,%0", op);
8506 output_asm_insn ("l\t%0,%1", op);
8508 else
8510 op[5] = gen_label_rtx ();
8511 op[6] = gen_label_rtx ();
8513 output_asm_insn ("st\t%0,%1", op);
8514 output_asm_insn ("bras\t%2,%l6", op);
8515 targetm.asm_out.internal_label (file, "L", CODE_LABEL_NUMBER (op[5]));
8516 output_asm_insn (".long\t%4-%l5", op);
8517 output_asm_insn (".long\t%3-%l5", op);
8518 targetm.asm_out.internal_label (file, "L", CODE_LABEL_NUMBER (op[6]));
8519 output_asm_insn ("lr\t%0,%2", op);
8520 output_asm_insn ("a\t%0,0(%2)", op);
8521 output_asm_insn ("a\t%2,4(%2)", op);
8522 output_asm_insn ("basr\t%0,%0", op);
8523 output_asm_insn ("l\t%0,%1", op);
8527 /* Encode symbol attributes (local vs. global, tls model) of a SYMBOL_REF
8528 into its SYMBOL_REF_FLAGS. */
8530 static void
8531 s390_encode_section_info (tree decl, rtx rtl, int first)
8533 default_encode_section_info (decl, rtl, first);
8535 /* If a variable has a forced alignment to < 2 bytes, mark it with
8536 SYMBOL_FLAG_ALIGN1 to prevent it from being used as LARL operand. */
8537 if (TREE_CODE (decl) == VAR_DECL
8538 && DECL_USER_ALIGN (decl) && DECL_ALIGN (decl) < 16)
8539 SYMBOL_REF_FLAGS (XEXP (rtl, 0)) |= SYMBOL_FLAG_ALIGN1;
8542 /* Output thunk to FILE that implements a C++ virtual function call (with
8543 multiple inheritance) to FUNCTION. The thunk adjusts the this pointer
8544 by DELTA, and unless VCALL_OFFSET is zero, applies an additional adjustment
8545 stored at VCALL_OFFSET in the vtable whose address is located at offset 0
8546 relative to the resulting this pointer. */
8548 static void
8549 s390_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED,
8550 HOST_WIDE_INT delta, HOST_WIDE_INT vcall_offset,
8551 tree function)
8553 rtx op[10];
8554 int nonlocal = 0;
8556 /* Operand 0 is the target function. */
8557 op[0] = XEXP (DECL_RTL (function), 0);
8558 if (flag_pic && !SYMBOL_REF_LOCAL_P (op[0]))
8560 nonlocal = 1;
8561 op[0] = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, op[0]),
8562 TARGET_64BIT ? UNSPEC_PLT : UNSPEC_GOT);
8563 op[0] = gen_rtx_CONST (Pmode, op[0]);
8566 /* Operand 1 is the 'this' pointer. */
8567 if (aggregate_value_p (TREE_TYPE (TREE_TYPE (function)), function))
8568 op[1] = gen_rtx_REG (Pmode, 3);
8569 else
8570 op[1] = gen_rtx_REG (Pmode, 2);
8572 /* Operand 2 is the delta. */
8573 op[2] = GEN_INT (delta);
8575 /* Operand 3 is the vcall_offset. */
8576 op[3] = GEN_INT (vcall_offset);
8578 /* Operand 4 is the temporary register. */
8579 op[4] = gen_rtx_REG (Pmode, 1);
8581 /* Operands 5 to 8 can be used as labels. */
8582 op[5] = NULL_RTX;
8583 op[6] = NULL_RTX;
8584 op[7] = NULL_RTX;
8585 op[8] = NULL_RTX;
8587 /* Operand 9 can be used for temporary register. */
8588 op[9] = NULL_RTX;
8590 /* Generate code. */
8591 if (TARGET_64BIT)
8593 /* Setup literal pool pointer if required. */
8594 if ((!DISP_IN_RANGE (delta)
8595 && !CONST_OK_FOR_K (delta)
8596 && !CONST_OK_FOR_Os (delta))
8597 || (!DISP_IN_RANGE (vcall_offset)
8598 && !CONST_OK_FOR_K (vcall_offset)
8599 && !CONST_OK_FOR_Os (vcall_offset)))
8601 op[5] = gen_label_rtx ();
8602 output_asm_insn ("larl\t%4,%5", op);
8605 /* Add DELTA to this pointer. */
8606 if (delta)
8608 if (CONST_OK_FOR_J (delta))
8609 output_asm_insn ("la\t%1,%2(%1)", op);
8610 else if (DISP_IN_RANGE (delta))
8611 output_asm_insn ("lay\t%1,%2(%1)", op);
8612 else if (CONST_OK_FOR_K (delta))
8613 output_asm_insn ("aghi\t%1,%2", op);
8614 else if (CONST_OK_FOR_Os (delta))
8615 output_asm_insn ("agfi\t%1,%2", op);
8616 else
8618 op[6] = gen_label_rtx ();
8619 output_asm_insn ("agf\t%1,%6-%5(%4)", op);
8623 /* Perform vcall adjustment. */
8624 if (vcall_offset)
8626 if (DISP_IN_RANGE (vcall_offset))
8628 output_asm_insn ("lg\t%4,0(%1)", op);
8629 output_asm_insn ("ag\t%1,%3(%4)", op);
8631 else if (CONST_OK_FOR_K (vcall_offset))
8633 output_asm_insn ("lghi\t%4,%3", op);
8634 output_asm_insn ("ag\t%4,0(%1)", op);
8635 output_asm_insn ("ag\t%1,0(%4)", op);
8637 else if (CONST_OK_FOR_Os (vcall_offset))
8639 output_asm_insn ("lgfi\t%4,%3", op);
8640 output_asm_insn ("ag\t%4,0(%1)", op);
8641 output_asm_insn ("ag\t%1,0(%4)", op);
8643 else
8645 op[7] = gen_label_rtx ();
8646 output_asm_insn ("llgf\t%4,%7-%5(%4)", op);
8647 output_asm_insn ("ag\t%4,0(%1)", op);
8648 output_asm_insn ("ag\t%1,0(%4)", op);
8652 /* Jump to target. */
8653 output_asm_insn ("jg\t%0", op);
8655 /* Output literal pool if required. */
8656 if (op[5])
8658 output_asm_insn (".align\t4", op);
8659 targetm.asm_out.internal_label (file, "L",
8660 CODE_LABEL_NUMBER (op[5]));
8662 if (op[6])
8664 targetm.asm_out.internal_label (file, "L",
8665 CODE_LABEL_NUMBER (op[6]));
8666 output_asm_insn (".long\t%2", op);
8668 if (op[7])
8670 targetm.asm_out.internal_label (file, "L",
8671 CODE_LABEL_NUMBER (op[7]));
8672 output_asm_insn (".long\t%3", op);
8675 else
8677 /* Setup base pointer if required. */
8678 if (!vcall_offset
8679 || (!DISP_IN_RANGE (delta)
8680 && !CONST_OK_FOR_K (delta)
8681 && !CONST_OK_FOR_Os (delta))
8682 || (!DISP_IN_RANGE (delta)
8683 && !CONST_OK_FOR_K (vcall_offset)
8684 && !CONST_OK_FOR_Os (vcall_offset)))
8686 op[5] = gen_label_rtx ();
8687 output_asm_insn ("basr\t%4,0", op);
8688 targetm.asm_out.internal_label (file, "L",
8689 CODE_LABEL_NUMBER (op[5]));
8692 /* Add DELTA to this pointer. */
8693 if (delta)
8695 if (CONST_OK_FOR_J (delta))
8696 output_asm_insn ("la\t%1,%2(%1)", op);
8697 else if (DISP_IN_RANGE (delta))
8698 output_asm_insn ("lay\t%1,%2(%1)", op);
8699 else if (CONST_OK_FOR_K (delta))
8700 output_asm_insn ("ahi\t%1,%2", op);
8701 else if (CONST_OK_FOR_Os (delta))
8702 output_asm_insn ("afi\t%1,%2", op);
8703 else
8705 op[6] = gen_label_rtx ();
8706 output_asm_insn ("a\t%1,%6-%5(%4)", op);
8710 /* Perform vcall adjustment. */
8711 if (vcall_offset)
8713 if (CONST_OK_FOR_J (vcall_offset))
8715 output_asm_insn ("l\t%4,0(%1)", op);
8716 output_asm_insn ("a\t%1,%3(%4)", op);
8718 else if (DISP_IN_RANGE (vcall_offset))
8720 output_asm_insn ("l\t%4,0(%1)", op);
8721 output_asm_insn ("ay\t%1,%3(%4)", op);
8723 else if (CONST_OK_FOR_K (vcall_offset))
8725 output_asm_insn ("lhi\t%4,%3", op);
8726 output_asm_insn ("a\t%4,0(%1)", op);
8727 output_asm_insn ("a\t%1,0(%4)", op);
8729 else if (CONST_OK_FOR_Os (vcall_offset))
8731 output_asm_insn ("iilf\t%4,%3", op);
8732 output_asm_insn ("a\t%4,0(%1)", op);
8733 output_asm_insn ("a\t%1,0(%4)", op);
8735 else
8737 op[7] = gen_label_rtx ();
8738 output_asm_insn ("l\t%4,%7-%5(%4)", op);
8739 output_asm_insn ("a\t%4,0(%1)", op);
8740 output_asm_insn ("a\t%1,0(%4)", op);
8743 /* We had to clobber the base pointer register.
8744 Re-setup the base pointer (with a different base). */
8745 op[5] = gen_label_rtx ();
8746 output_asm_insn ("basr\t%4,0", op);
8747 targetm.asm_out.internal_label (file, "L",
8748 CODE_LABEL_NUMBER (op[5]));
8751 /* Jump to target. */
8752 op[8] = gen_label_rtx ();
8754 if (!flag_pic)
8755 output_asm_insn ("l\t%4,%8-%5(%4)", op);
8756 else if (!nonlocal)
8757 output_asm_insn ("a\t%4,%8-%5(%4)", op);
8758 /* We cannot call through .plt, since .plt requires %r12 loaded. */
8759 else if (flag_pic == 1)
8761 output_asm_insn ("a\t%4,%8-%5(%4)", op);
8762 output_asm_insn ("l\t%4,%0(%4)", op);
8764 else if (flag_pic == 2)
8766 op[9] = gen_rtx_REG (Pmode, 0);
8767 output_asm_insn ("l\t%9,%8-4-%5(%4)", op);
8768 output_asm_insn ("a\t%4,%8-%5(%4)", op);
8769 output_asm_insn ("ar\t%4,%9", op);
8770 output_asm_insn ("l\t%4,0(%4)", op);
8773 output_asm_insn ("br\t%4", op);
8775 /* Output literal pool. */
8776 output_asm_insn (".align\t4", op);
8778 if (nonlocal && flag_pic == 2)
8779 output_asm_insn (".long\t%0", op);
8780 if (nonlocal)
8782 op[0] = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
8783 SYMBOL_REF_FLAGS (op[0]) = SYMBOL_FLAG_LOCAL;
8786 targetm.asm_out.internal_label (file, "L", CODE_LABEL_NUMBER (op[8]));
8787 if (!flag_pic)
8788 output_asm_insn (".long\t%0", op);
8789 else
8790 output_asm_insn (".long\t%0-%5", op);
8792 if (op[6])
8794 targetm.asm_out.internal_label (file, "L",
8795 CODE_LABEL_NUMBER (op[6]));
8796 output_asm_insn (".long\t%2", op);
8798 if (op[7])
8800 targetm.asm_out.internal_label (file, "L",
8801 CODE_LABEL_NUMBER (op[7]));
8802 output_asm_insn (".long\t%3", op);
8807 static bool
8808 s390_valid_pointer_mode (enum machine_mode mode)
8810 return (mode == SImode || (TARGET_64BIT && mode == DImode));
8813 /* Checks whether the given CALL_EXPR would use a caller
8814 saved register. This is used to decide whether sibling call
8815 optimization could be performed on the respective function
8816 call. */
8818 static bool
8819 s390_call_saved_register_used (tree call_expr)
8821 CUMULATIVE_ARGS cum;
8822 tree parameter;
8823 enum machine_mode mode;
8824 tree type;
8825 rtx parm_rtx;
8826 int reg, i;
8828 INIT_CUMULATIVE_ARGS (cum, NULL, NULL, 0, 0);
8830 for (i = 0; i < call_expr_nargs (call_expr); i++)
8832 parameter = CALL_EXPR_ARG (call_expr, i);
8833 gcc_assert (parameter);
8835 /* For an undeclared variable passed as parameter we will get
8836 an ERROR_MARK node here. */
8837 if (TREE_CODE (parameter) == ERROR_MARK)
8838 return true;
8840 type = TREE_TYPE (parameter);
8841 gcc_assert (type);
8843 mode = TYPE_MODE (type);
8844 gcc_assert (mode);
8846 if (pass_by_reference (&cum, mode, type, true))
8848 mode = Pmode;
8849 type = build_pointer_type (type);
8852 parm_rtx = s390_function_arg (&cum, mode, type, 0);
8854 s390_function_arg_advance (&cum, mode, type, 0);
8856 if (parm_rtx && REG_P (parm_rtx))
8858 for (reg = 0;
8859 reg < HARD_REGNO_NREGS (REGNO (parm_rtx), GET_MODE (parm_rtx));
8860 reg++)
8861 if (! call_used_regs[reg + REGNO (parm_rtx)])
8862 return true;
8865 return false;
8868 /* Return true if the given call expression can be
8869 turned into a sibling call.
8870 DECL holds the declaration of the function to be called whereas
8871 EXP is the call expression itself. */
8873 static bool
8874 s390_function_ok_for_sibcall (tree decl, tree exp)
8876 /* The TPF epilogue uses register 1. */
8877 if (TARGET_TPF_PROFILING)
8878 return false;
8880 /* The 31 bit PLT code uses register 12 (GOT pointer - caller saved)
8881 which would have to be restored before the sibcall. */
8882 if (!TARGET_64BIT && flag_pic && decl && !targetm.binds_local_p (decl))
8883 return false;
8885 /* Register 6 on s390 is available as an argument register but unfortunately
8886 "caller saved". This makes functions needing this register for arguments
8887 not suitable for sibcalls. */
8888 return !s390_call_saved_register_used (exp);
8891 /* Return the fixed registers used for condition codes. */
8893 static bool
8894 s390_fixed_condition_code_regs (unsigned int *p1, unsigned int *p2)
8896 *p1 = CC_REGNUM;
8897 *p2 = INVALID_REGNUM;
8899 return true;
8902 /* This function is used by the call expanders of the machine description.
8903 It emits the call insn itself together with the necessary operations
8904 to adjust the target address and returns the emitted insn.
8905 ADDR_LOCATION is the target address rtx
8906 TLS_CALL the location of the thread-local symbol
8907 RESULT_REG the register where the result of the call should be stored
8908 RETADDR_REG the register where the return address should be stored
8909 If this parameter is NULL_RTX the call is considered
8910 to be a sibling call. */
8913 s390_emit_call (rtx addr_location, rtx tls_call, rtx result_reg,
8914 rtx retaddr_reg)
8916 bool plt_call = false;
8917 rtx insn;
8918 rtx call;
8919 rtx clobber;
8920 rtvec vec;
8922 /* Direct function calls need special treatment. */
8923 if (GET_CODE (addr_location) == SYMBOL_REF)
8925 /* When calling a global routine in PIC mode, we must
8926 replace the symbol itself with the PLT stub. */
8927 if (flag_pic && !SYMBOL_REF_LOCAL_P (addr_location))
8929 addr_location = gen_rtx_UNSPEC (Pmode,
8930 gen_rtvec (1, addr_location),
8931 UNSPEC_PLT);
8932 addr_location = gen_rtx_CONST (Pmode, addr_location);
8933 plt_call = true;
8936 /* Unless we can use the bras(l) insn, force the
8937 routine address into a register. */
8938 if (!TARGET_SMALL_EXEC && !TARGET_CPU_ZARCH)
8940 if (flag_pic)
8941 addr_location = legitimize_pic_address (addr_location, 0);
8942 else
8943 addr_location = force_reg (Pmode, addr_location);
8947 /* If it is already an indirect call or the code above moved the
8948 SYMBOL_REF to somewhere else make sure the address can be found in
8949 register 1. */
8950 if (retaddr_reg == NULL_RTX
8951 && GET_CODE (addr_location) != SYMBOL_REF
8952 && !plt_call)
8954 emit_move_insn (gen_rtx_REG (Pmode, SIBCALL_REGNUM), addr_location);
8955 addr_location = gen_rtx_REG (Pmode, SIBCALL_REGNUM);
8958 addr_location = gen_rtx_MEM (QImode, addr_location);
8959 call = gen_rtx_CALL (VOIDmode, addr_location, const0_rtx);
8961 if (result_reg != NULL_RTX)
8962 call = gen_rtx_SET (VOIDmode, result_reg, call);
8964 if (retaddr_reg != NULL_RTX)
8966 clobber = gen_rtx_CLOBBER (VOIDmode, retaddr_reg);
8968 if (tls_call != NULL_RTX)
8969 vec = gen_rtvec (3, call, clobber,
8970 gen_rtx_USE (VOIDmode, tls_call));
8971 else
8972 vec = gen_rtvec (2, call, clobber);
8974 call = gen_rtx_PARALLEL (VOIDmode, vec);
8977 insn = emit_call_insn (call);
8979 /* 31-bit PLT stubs and tls calls use the GOT register implicitly. */
8980 if ((!TARGET_64BIT && plt_call) || tls_call != NULL_RTX)
8982 /* s390_function_ok_for_sibcall should
8983 have denied sibcalls in this case. */
8984 gcc_assert (retaddr_reg != NULL_RTX);
8986 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), pic_offset_table_rtx);
8988 return insn;
8991 /* Implement CONDITIONAL_REGISTER_USAGE. */
8993 void
8994 s390_conditional_register_usage (void)
8996 int i;
8998 if (flag_pic)
9000 fixed_regs[PIC_OFFSET_TABLE_REGNUM] = 1;
9001 call_used_regs[PIC_OFFSET_TABLE_REGNUM] = 1;
9003 if (TARGET_CPU_ZARCH)
9005 fixed_regs[BASE_REGNUM] = 0;
9006 call_used_regs[BASE_REGNUM] = 0;
9007 fixed_regs[RETURN_REGNUM] = 0;
9008 call_used_regs[RETURN_REGNUM] = 0;
9010 if (TARGET_64BIT)
9012 for (i = 24; i < 32; i++)
9013 call_used_regs[i] = call_really_used_regs[i] = 0;
9015 else
9017 for (i = 18; i < 20; i++)
9018 call_used_regs[i] = call_really_used_regs[i] = 0;
9021 if (TARGET_SOFT_FLOAT)
9023 for (i = 16; i < 32; i++)
9024 call_used_regs[i] = fixed_regs[i] = 1;
9028 /* Corresponding function to eh_return expander. */
9030 static GTY(()) rtx s390_tpf_eh_return_symbol;
9031 void
9032 s390_emit_tpf_eh_return (rtx target)
9034 rtx insn, reg;
9036 if (!s390_tpf_eh_return_symbol)
9037 s390_tpf_eh_return_symbol = gen_rtx_SYMBOL_REF (Pmode, "__tpf_eh_return");
9039 reg = gen_rtx_REG (Pmode, 2);
9041 emit_move_insn (reg, target);
9042 insn = s390_emit_call (s390_tpf_eh_return_symbol, NULL_RTX, reg,
9043 gen_rtx_REG (Pmode, RETURN_REGNUM));
9044 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), reg);
9046 emit_move_insn (EH_RETURN_HANDLER_RTX, reg);
9049 /* Rework the prologue/epilogue to avoid saving/restoring
9050 registers unnecessarily. */
9052 static void
9053 s390_optimize_prologue (void)
9055 rtx insn, new_insn, next_insn;
9057 /* Do a final recompute of the frame-related data. */
9059 s390_update_frame_layout ();
9061 /* If all special registers are in fact used, there's nothing we
9062 can do, so no point in walking the insn list. */
9064 if (cfun_frame_layout.first_save_gpr <= BASE_REGNUM
9065 && cfun_frame_layout.last_save_gpr >= BASE_REGNUM
9066 && (TARGET_CPU_ZARCH
9067 || (cfun_frame_layout.first_save_gpr <= RETURN_REGNUM
9068 && cfun_frame_layout.last_save_gpr >= RETURN_REGNUM)))
9069 return;
9071 /* Search for prologue/epilogue insns and replace them. */
9073 for (insn = get_insns (); insn; insn = next_insn)
9075 int first, last, off;
9076 rtx set, base, offset;
9078 next_insn = NEXT_INSN (insn);
9080 if (GET_CODE (insn) != INSN)
9081 continue;
9083 if (GET_CODE (PATTERN (insn)) == PARALLEL
9084 && store_multiple_operation (PATTERN (insn), VOIDmode))
9086 set = XVECEXP (PATTERN (insn), 0, 0);
9087 first = REGNO (SET_SRC (set));
9088 last = first + XVECLEN (PATTERN (insn), 0) - 1;
9089 offset = const0_rtx;
9090 base = eliminate_constant_term (XEXP (SET_DEST (set), 0), &offset);
9091 off = INTVAL (offset);
9093 if (GET_CODE (base) != REG || off < 0)
9094 continue;
9095 if (cfun_frame_layout.first_save_gpr != -1
9096 && (cfun_frame_layout.first_save_gpr < first
9097 || cfun_frame_layout.last_save_gpr > last))
9098 continue;
9099 if (REGNO (base) != STACK_POINTER_REGNUM
9100 && REGNO (base) != HARD_FRAME_POINTER_REGNUM)
9101 continue;
9102 if (first > BASE_REGNUM || last < BASE_REGNUM)
9103 continue;
9105 if (cfun_frame_layout.first_save_gpr != -1)
9107 new_insn = save_gprs (base,
9108 off + (cfun_frame_layout.first_save_gpr
9109 - first) * UNITS_PER_WORD,
9110 cfun_frame_layout.first_save_gpr,
9111 cfun_frame_layout.last_save_gpr);
9112 new_insn = emit_insn_before (new_insn, insn);
9113 INSN_ADDRESSES_NEW (new_insn, -1);
9116 remove_insn (insn);
9117 continue;
9120 if (cfun_frame_layout.first_save_gpr == -1
9121 && GET_CODE (PATTERN (insn)) == SET
9122 && GET_CODE (SET_SRC (PATTERN (insn))) == REG
9123 && (REGNO (SET_SRC (PATTERN (insn))) == BASE_REGNUM
9124 || (!TARGET_CPU_ZARCH
9125 && REGNO (SET_SRC (PATTERN (insn))) == RETURN_REGNUM))
9126 && GET_CODE (SET_DEST (PATTERN (insn))) == MEM)
9128 set = PATTERN (insn);
9129 first = REGNO (SET_SRC (set));
9130 offset = const0_rtx;
9131 base = eliminate_constant_term (XEXP (SET_DEST (set), 0), &offset);
9132 off = INTVAL (offset);
9134 if (GET_CODE (base) != REG || off < 0)
9135 continue;
9136 if (REGNO (base) != STACK_POINTER_REGNUM
9137 && REGNO (base) != HARD_FRAME_POINTER_REGNUM)
9138 continue;
9140 remove_insn (insn);
9141 continue;
9144 if (GET_CODE (PATTERN (insn)) == PARALLEL
9145 && load_multiple_operation (PATTERN (insn), VOIDmode))
9147 set = XVECEXP (PATTERN (insn), 0, 0);
9148 first = REGNO (SET_DEST (set));
9149 last = first + XVECLEN (PATTERN (insn), 0) - 1;
9150 offset = const0_rtx;
9151 base = eliminate_constant_term (XEXP (SET_SRC (set), 0), &offset);
9152 off = INTVAL (offset);
9154 if (GET_CODE (base) != REG || off < 0)
9155 continue;
9156 if (cfun_frame_layout.first_restore_gpr != -1
9157 && (cfun_frame_layout.first_restore_gpr < first
9158 || cfun_frame_layout.last_restore_gpr > last))
9159 continue;
9160 if (REGNO (base) != STACK_POINTER_REGNUM
9161 && REGNO (base) != HARD_FRAME_POINTER_REGNUM)
9162 continue;
9163 if (first > BASE_REGNUM || last < BASE_REGNUM)
9164 continue;
9166 if (cfun_frame_layout.first_restore_gpr != -1)
9168 new_insn = restore_gprs (base,
9169 off + (cfun_frame_layout.first_restore_gpr
9170 - first) * UNITS_PER_WORD,
9171 cfun_frame_layout.first_restore_gpr,
9172 cfun_frame_layout.last_restore_gpr);
9173 new_insn = emit_insn_before (new_insn, insn);
9174 INSN_ADDRESSES_NEW (new_insn, -1);
9177 remove_insn (insn);
9178 continue;
9181 if (cfun_frame_layout.first_restore_gpr == -1
9182 && GET_CODE (PATTERN (insn)) == SET
9183 && GET_CODE (SET_DEST (PATTERN (insn))) == REG
9184 && (REGNO (SET_DEST (PATTERN (insn))) == BASE_REGNUM
9185 || (!TARGET_CPU_ZARCH
9186 && REGNO (SET_DEST (PATTERN (insn))) == RETURN_REGNUM))
9187 && GET_CODE (SET_SRC (PATTERN (insn))) == MEM)
9189 set = PATTERN (insn);
9190 first = REGNO (SET_DEST (set));
9191 offset = const0_rtx;
9192 base = eliminate_constant_term (XEXP (SET_SRC (set), 0), &offset);
9193 off = INTVAL (offset);
9195 if (GET_CODE (base) != REG || off < 0)
9196 continue;
9197 if (REGNO (base) != STACK_POINTER_REGNUM
9198 && REGNO (base) != HARD_FRAME_POINTER_REGNUM)
9199 continue;
9201 remove_insn (insn);
9202 continue;
9207 /* Perform machine-dependent processing. */
9209 static void
9210 s390_reorg (void)
9212 bool pool_overflow = false;
9214 /* Make sure all splits have been performed; splits after
9215 machine_dependent_reorg might confuse insn length counts. */
9216 split_all_insns_noflow ();
9218 /* From here on decomposed literal pool addresses must be accepted. */
9219 cfun->machine->decomposed_literal_pool_addresses_ok_p = true;
9221 /* Install the main literal pool and the associated base
9222 register load insns.
9224 In addition, there are two problematic situations we need
9225 to correct:
9227 - the literal pool might be > 4096 bytes in size, so that
9228 some of its elements cannot be directly accessed
9230 - a branch target might be > 64K away from the branch, so that
9231 it is not possible to use a PC-relative instruction.
9233 To fix those, we split the single literal pool into multiple
9234 pool chunks, reloading the pool base register at various
9235 points throughout the function to ensure it always points to
9236 the pool chunk the following code expects, and / or replace
9237 PC-relative branches by absolute branches.
9239 However, the two problems are interdependent: splitting the
9240 literal pool can move a branch further away from its target,
9241 causing the 64K limit to overflow, and on the other hand,
9242 replacing a PC-relative branch by an absolute branch means
9243 we need to put the branch target address into the literal
9244 pool, possibly causing it to overflow.
9246 So, we loop trying to fix up both problems until we manage
9247 to satisfy both conditions at the same time. Note that the
9248 loop is guaranteed to terminate as every pass of the loop
9249 strictly decreases the total number of PC-relative branches
9250 in the function. (This is not completely true as there
9251 might be branch-over-pool insns introduced by chunkify_start.
9252 Those never need to be split however.) */
9254 for (;;)
9256 struct constant_pool *pool = NULL;
9258 /* Collect the literal pool. */
9259 if (!pool_overflow)
9261 pool = s390_mainpool_start ();
9262 if (!pool)
9263 pool_overflow = true;
9266 /* If literal pool overflowed, start to chunkify it. */
9267 if (pool_overflow)
9268 pool = s390_chunkify_start ();
9270 /* Split out-of-range branches. If this has created new
9271 literal pool entries, cancel current chunk list and
9272 recompute it. zSeries machines have large branch
9273 instructions, so we never need to split a branch. */
9274 if (!TARGET_CPU_ZARCH && s390_split_branches ())
9276 if (pool_overflow)
9277 s390_chunkify_cancel (pool);
9278 else
9279 s390_mainpool_cancel (pool);
9281 continue;
9284 /* If we made it up to here, both conditions are satisfied.
9285 Finish up literal pool related changes. */
9286 if (pool_overflow)
9287 s390_chunkify_finish (pool);
9288 else
9289 s390_mainpool_finish (pool);
9291 /* We're done splitting branches. */
9292 cfun->machine->split_branches_pending_p = false;
9293 break;
9296 /* Generate out-of-pool execute target insns. */
9297 if (TARGET_CPU_ZARCH)
9299 rtx insn, label, target;
9301 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
9303 label = s390_execute_label (insn);
9304 if (!label)
9305 continue;
9307 gcc_assert (label != const0_rtx);
9309 target = emit_label (XEXP (label, 0));
9310 INSN_ADDRESSES_NEW (target, -1);
9312 target = emit_insn (s390_execute_target (insn));
9313 INSN_ADDRESSES_NEW (target, -1);
9317 /* Try to optimize prologue and epilogue further. */
9318 s390_optimize_prologue ();
9322 /* Initialize GCC target structure. */
9324 #undef TARGET_ASM_ALIGNED_HI_OP
9325 #define TARGET_ASM_ALIGNED_HI_OP "\t.word\t"
9326 #undef TARGET_ASM_ALIGNED_DI_OP
9327 #define TARGET_ASM_ALIGNED_DI_OP "\t.quad\t"
9328 #undef TARGET_ASM_INTEGER
9329 #define TARGET_ASM_INTEGER s390_assemble_integer
9331 #undef TARGET_ASM_OPEN_PAREN
9332 #define TARGET_ASM_OPEN_PAREN ""
9334 #undef TARGET_ASM_CLOSE_PAREN
9335 #define TARGET_ASM_CLOSE_PAREN ""
9337 #undef TARGET_DEFAULT_TARGET_FLAGS
9338 #define TARGET_DEFAULT_TARGET_FLAGS (TARGET_DEFAULT | MASK_FUSED_MADD)
9339 #undef TARGET_HANDLE_OPTION
9340 #define TARGET_HANDLE_OPTION s390_handle_option
9342 #undef TARGET_ENCODE_SECTION_INFO
9343 #define TARGET_ENCODE_SECTION_INFO s390_encode_section_info
9345 #ifdef HAVE_AS_TLS
9346 #undef TARGET_HAVE_TLS
9347 #define TARGET_HAVE_TLS true
9348 #endif
9349 #undef TARGET_CANNOT_FORCE_CONST_MEM
9350 #define TARGET_CANNOT_FORCE_CONST_MEM s390_cannot_force_const_mem
9352 #undef TARGET_DELEGITIMIZE_ADDRESS
9353 #define TARGET_DELEGITIMIZE_ADDRESS s390_delegitimize_address
9355 #undef TARGET_RETURN_IN_MEMORY
9356 #define TARGET_RETURN_IN_MEMORY s390_return_in_memory
9358 #undef TARGET_INIT_BUILTINS
9359 #define TARGET_INIT_BUILTINS s390_init_builtins
9360 #undef TARGET_EXPAND_BUILTIN
9361 #define TARGET_EXPAND_BUILTIN s390_expand_builtin
9363 #undef TARGET_ASM_OUTPUT_MI_THUNK
9364 #define TARGET_ASM_OUTPUT_MI_THUNK s390_output_mi_thunk
9365 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
9366 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK hook_bool_const_tree_hwi_hwi_const_tree_true
9368 #undef TARGET_SCHED_ADJUST_PRIORITY
9369 #define TARGET_SCHED_ADJUST_PRIORITY s390_adjust_priority
9370 #undef TARGET_SCHED_ISSUE_RATE
9371 #define TARGET_SCHED_ISSUE_RATE s390_issue_rate
9372 #undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD
9373 #define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD s390_first_cycle_multipass_dfa_lookahead
9375 #undef TARGET_CANNOT_COPY_INSN_P
9376 #define TARGET_CANNOT_COPY_INSN_P s390_cannot_copy_insn_p
9377 #undef TARGET_RTX_COSTS
9378 #define TARGET_RTX_COSTS s390_rtx_costs
9379 #undef TARGET_ADDRESS_COST
9380 #define TARGET_ADDRESS_COST s390_address_cost
9382 #undef TARGET_MACHINE_DEPENDENT_REORG
9383 #define TARGET_MACHINE_DEPENDENT_REORG s390_reorg
9385 #undef TARGET_VALID_POINTER_MODE
9386 #define TARGET_VALID_POINTER_MODE s390_valid_pointer_mode
9388 #undef TARGET_BUILD_BUILTIN_VA_LIST
9389 #define TARGET_BUILD_BUILTIN_VA_LIST s390_build_builtin_va_list
9390 #undef TARGET_EXPAND_BUILTIN_VA_START
9391 #define TARGET_EXPAND_BUILTIN_VA_START s390_va_start
9392 #undef TARGET_GIMPLIFY_VA_ARG_EXPR
9393 #define TARGET_GIMPLIFY_VA_ARG_EXPR s390_gimplify_va_arg
9395 #undef TARGET_PROMOTE_FUNCTION_ARGS
9396 #define TARGET_PROMOTE_FUNCTION_ARGS hook_bool_const_tree_true
9397 #undef TARGET_PROMOTE_FUNCTION_RETURN
9398 #define TARGET_PROMOTE_FUNCTION_RETURN hook_bool_const_tree_true
9399 #undef TARGET_PASS_BY_REFERENCE
9400 #define TARGET_PASS_BY_REFERENCE s390_pass_by_reference
9402 #undef TARGET_FUNCTION_OK_FOR_SIBCALL
9403 #define TARGET_FUNCTION_OK_FOR_SIBCALL s390_function_ok_for_sibcall
9405 #undef TARGET_FIXED_CONDITION_CODE_REGS
9406 #define TARGET_FIXED_CONDITION_CODE_REGS s390_fixed_condition_code_regs
9408 #undef TARGET_CC_MODES_COMPATIBLE
9409 #define TARGET_CC_MODES_COMPATIBLE s390_cc_modes_compatible
9411 #undef TARGET_INVALID_WITHIN_DOLOOP
9412 #define TARGET_INVALID_WITHIN_DOLOOP hook_constcharptr_const_rtx_null
9414 #ifdef HAVE_AS_TLS
9415 #undef TARGET_ASM_OUTPUT_DWARF_DTPREL
9416 #define TARGET_ASM_OUTPUT_DWARF_DTPREL s390_output_dwarf_dtprel
9417 #endif
9419 #ifdef TARGET_ALTERNATE_LONG_DOUBLE_MANGLING
9420 #undef TARGET_MANGLE_TYPE
9421 #define TARGET_MANGLE_TYPE s390_mangle_type
9422 #endif
9424 #undef TARGET_SCALAR_MODE_SUPPORTED_P
9425 #define TARGET_SCALAR_MODE_SUPPORTED_P s390_scalar_mode_supported_p
9427 #undef TARGET_SECONDARY_RELOAD
9428 #define TARGET_SECONDARY_RELOAD s390_secondary_reload
9430 #undef TARGET_LIBGCC_CMP_RETURN_MODE
9431 #define TARGET_LIBGCC_CMP_RETURN_MODE s390_libgcc_cmp_return_mode
9433 #undef TARGET_LIBGCC_SHIFT_COUNT_MODE
9434 #define TARGET_LIBGCC_SHIFT_COUNT_MODE s390_libgcc_shift_count_mode
9436 struct gcc_target targetm = TARGET_INITIALIZER;
9438 #include "gt-s390.h"