OSDN Git Service

* reg-stack.c (struct tree_opt_pass pass_stack_regs): Nullify name
[pf3gnuchains/gcc-fork.git] / gcc / targhooks.c
1 /* Default target hook functions.
2    Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING.  If not, write to the Free
18 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301, USA.  */
20
21 /* The migration of target macros to target hooks works as follows:
22
23    1. Create a target hook that uses the existing target macros to
24       implement the same functionality.
25
26    2. Convert all the MI files to use the hook instead of the macro.
27
28    3. Repeat for a majority of the remaining target macros.  This will
29       take some time.
30
31    4. Tell target maintainers to start migrating.
32
33    5. Eventually convert the backends to override the hook instead of
34       defining the macros.  This will take some time too.
35
36    6. TBD when, poison the macros.  Unmigrated targets will break at
37       this point.
38
39    Note that we expect steps 1-3 to be done by the people that
40    understand what the MI does with each macro, and step 5 to be done
41    by the target maintainers for their respective targets.
42
43    Note that steps 1 and 2 don't have to be done together, but no
44    target can override the new hook until step 2 is complete for it.
45
46    Once the macros are poisoned, we will revert to the old migration
47    rules - migrate the macro, callers, and targets all at once.  This
48    comment can thus be removed at that point.  */
49
50 #include "config.h"
51 #include "system.h"
52 #include "coretypes.h"
53 #include "tm.h"
54 #include "machmode.h"
55 #include "rtl.h"
56 #include "tree.h"
57 #include "expr.h"
58 #include "output.h"
59 #include "toplev.h"
60 #include "function.h"
61 #include "target.h"
62 #include "tm_p.h"
63 #include "target-def.h"
64 #include "ggc.h"
65 #include "hard-reg-set.h"
66 #include "reload.h"
67 #include "optabs.h"
68 #include "recog.h"
69
70
71 void
72 default_external_libcall (rtx fun ATTRIBUTE_UNUSED)
73 {
74 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
75   ASM_OUTPUT_EXTERNAL_LIBCALL(asm_out_file, fun);
76 #endif
77 }
78
79 enum machine_mode
80 default_cc_modes_compatible (enum machine_mode m1, enum machine_mode m2)
81 {
82   if (m1 == m2)
83     return m1;
84   return VOIDmode;
85 }
86
87 bool
88 default_return_in_memory (tree type,
89                           tree fntype ATTRIBUTE_UNUSED)
90 {
91 #ifndef RETURN_IN_MEMORY
92   return (TYPE_MODE (type) == BLKmode);
93 #else
94   return RETURN_IN_MEMORY (type);
95 #endif
96 }
97
98 rtx
99 default_expand_builtin_saveregs (void)
100 {
101   error ("__builtin_saveregs not supported by this target");
102   return const0_rtx;
103 }
104
105 void
106 default_setup_incoming_varargs (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
107                                 enum machine_mode mode ATTRIBUTE_UNUSED,
108                                 tree type ATTRIBUTE_UNUSED,
109                                 int *pretend_arg_size ATTRIBUTE_UNUSED,
110                                 int second_time ATTRIBUTE_UNUSED)
111 {
112 }
113
114 /* The default implementation of TARGET_BUILTIN_SETJMP_FRAME_VALUE.  */
115
116 rtx
117 default_builtin_setjmp_frame_value (void)
118 {
119   return virtual_stack_vars_rtx;
120 }
121
122 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns false.  */
123
124 bool
125 hook_bool_CUMULATIVE_ARGS_false (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED)
126 {
127   return false;
128 }
129
130 bool
131 default_pretend_outgoing_varargs_named (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED)
132 {
133   return (targetm.calls.setup_incoming_varargs
134           != default_setup_incoming_varargs);
135 }
136
137 enum machine_mode
138 default_eh_return_filter_mode (void)
139 {
140   return word_mode;
141 }
142
143 enum machine_mode
144 default_libgcc_cmp_return_mode (void)
145 {
146   return word_mode;
147 }
148
149 enum machine_mode
150 default_libgcc_shift_count_mode (void)
151 {
152   return word_mode;
153 }
154
155 /* The default implementation of TARGET_SHIFT_TRUNCATION_MASK.  */
156
157 unsigned HOST_WIDE_INT
158 default_shift_truncation_mask (enum machine_mode mode)
159 {
160   return SHIFT_COUNT_TRUNCATED ? GET_MODE_BITSIZE (mode) - 1 : 0;
161 }
162
163 /* The default implementation of TARGET_MIN_DIVISIONS_FOR_RECIP_MUL.  */
164
165 unsigned int
166 default_min_divisions_for_recip_mul (enum machine_mode mode ATTRIBUTE_UNUSED)
167 {
168   return have_insn_for (DIV, mode) ? 3 : 2;
169 }
170
171 /* The default implementation of TARGET_MODE_REP_EXTENDED.  */
172
173 int
174 default_mode_rep_extended (enum machine_mode mode ATTRIBUTE_UNUSED,
175                            enum machine_mode mode_rep ATTRIBUTE_UNUSED)
176 {
177   return UNKNOWN;
178 }
179
180 /* Generic hook that takes a CUMULATIVE_ARGS pointer and returns true.  */
181
182 bool
183 hook_bool_CUMULATIVE_ARGS_true (CUMULATIVE_ARGS * a ATTRIBUTE_UNUSED)
184 {
185   return true;
186 }
187
188 /* Return machine mode for non-standard suffix
189    or VOIDmode if non-standard suffixes are unsupported.  */
190 enum machine_mode
191 default_mode_for_suffix (char suffix ATTRIBUTE_UNUSED)
192 {
193   return VOIDmode;
194 }
195
196 /* The generic C++ ABI specifies this is a 64-bit value.  */
197 tree
198 default_cxx_guard_type (void)
199 {
200   return long_long_integer_type_node;
201 }
202
203
204 /* Returns the size of the cookie to use when allocating an array
205    whose elements have the indicated TYPE.  Assumes that it is already
206    known that a cookie is needed.  */
207
208 tree
209 default_cxx_get_cookie_size (tree type)
210 {
211   tree cookie_size;
212
213   /* We need to allocate an additional max (sizeof (size_t), alignof
214      (true_type)) bytes.  */
215   tree sizetype_size;
216   tree type_align;
217
218   sizetype_size = size_in_bytes (sizetype);
219   type_align = size_int (TYPE_ALIGN_UNIT (type));
220   if (INT_CST_LT_UNSIGNED (type_align, sizetype_size))
221     cookie_size = sizetype_size;
222   else
223     cookie_size = type_align;
224
225   return cookie_size;
226 }
227
228 /* Return true if a parameter must be passed by reference.  This version
229    of the TARGET_PASS_BY_REFERENCE hook uses just MUST_PASS_IN_STACK.  */
230
231 bool
232 hook_pass_by_reference_must_pass_in_stack (CUMULATIVE_ARGS *c ATTRIBUTE_UNUSED,
233         enum machine_mode mode ATTRIBUTE_UNUSED, tree type ATTRIBUTE_UNUSED,
234         bool named_arg ATTRIBUTE_UNUSED)
235 {
236   return targetm.calls.must_pass_in_stack (mode, type);
237 }
238
239 /* Return true if a parameter follows callee copies conventions.  This
240    version of the hook is true for all named arguments.  */
241
242 bool
243 hook_callee_copies_named (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
244                           enum machine_mode mode ATTRIBUTE_UNUSED,
245                           tree type ATTRIBUTE_UNUSED, bool named)
246 {
247   return named;
248 }
249
250 /* Emit any directives required to unwind this instruction.  */
251
252 void
253 default_unwind_emit (FILE * stream ATTRIBUTE_UNUSED,
254                      rtx insn ATTRIBUTE_UNUSED)
255 {
256   /* Should never happen.  */
257   gcc_unreachable ();
258 }
259
260 /* True if MODE is valid for the target.  By "valid", we mean able to
261    be manipulated in non-trivial ways.  In particular, this means all
262    the arithmetic is supported.
263
264    By default we guess this means that any C type is supported.  If
265    we can't map the mode back to a type that would be available in C,
266    then reject it.  Special case, here, is the double-word arithmetic
267    supported by optabs.c.  */
268
269 bool
270 default_scalar_mode_supported_p (enum machine_mode mode)
271 {
272   int precision = GET_MODE_PRECISION (mode);
273
274   switch (GET_MODE_CLASS (mode))
275     {
276     case MODE_PARTIAL_INT:
277     case MODE_INT:
278       if (precision == CHAR_TYPE_SIZE)
279         return true;
280       if (precision == SHORT_TYPE_SIZE)
281         return true;
282       if (precision == INT_TYPE_SIZE)
283         return true;
284       if (precision == LONG_TYPE_SIZE)
285         return true;
286       if (precision == LONG_LONG_TYPE_SIZE)
287         return true;
288       if (precision == 2 * BITS_PER_WORD)
289         return true;
290       return false;
291
292     case MODE_FLOAT:
293       if (precision == FLOAT_TYPE_SIZE)
294         return true;
295       if (precision == DOUBLE_TYPE_SIZE)
296         return true;
297       if (precision == LONG_DOUBLE_TYPE_SIZE)
298         return true;
299       return false;
300
301     case MODE_DECIMAL_FLOAT:
302       return false;
303
304     default:
305       gcc_unreachable ();
306     }
307 }
308
309 /* True if the target supports decimal floating point.  */
310
311 bool
312 default_decimal_float_supported_p (void)
313 {
314   return ENABLE_DECIMAL_FLOAT;
315 }
316
317 /* NULL if INSN insn is valid within a low-overhead loop, otherwise returns
318    an error message.
319   
320    This function checks whether a given INSN is valid within a low-overhead
321    loop.  If INSN is invalid it returns the reason for that, otherwise it
322    returns NULL. A called function may clobber any special registers required
323    for low-overhead looping. Additionally, some targets (eg, PPC) use the count
324    register for branch on table instructions. We reject the doloop pattern in
325    these cases.  */
326
327 const char *
328 default_invalid_within_doloop (rtx insn)
329 {
330   if (CALL_P (insn))
331     return "Function call in loop.";
332   
333   if (JUMP_P (insn)
334       && (GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC
335           || GET_CODE (PATTERN (insn)) == ADDR_VEC))
336     return "Computed branch in the loop.";
337   
338   return NULL;
339 }
340
341 /* Mapping of builtin functions to vectorized variants.  */
342
343 tree
344 default_builtin_vectorized_function (enum built_in_function fn ATTRIBUTE_UNUSED,
345                                      tree type_out ATTRIBUTE_UNUSED,
346                                      tree type_in ATTRIBUTE_UNUSED)
347 {
348   return NULL_TREE;
349 }
350
351 /* Vectorized conversion.  */
352
353 tree
354 default_builtin_vectorized_conversion (enum tree_code code ATTRIBUTE_UNUSED,
355                                        tree type ATTRIBUTE_UNUSED)
356 {
357   return NULL_TREE;
358 }
359
360 /* Reciprocal.  */
361
362 tree
363 default_builtin_reciprocal (enum built_in_function fn ATTRIBUTE_UNUSED,
364                             bool md_fn ATTRIBUTE_UNUSED,
365                             bool sqrt ATTRIBUTE_UNUSED)
366 {
367   return NULL_TREE;
368 }
369
370 bool
371 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false (
372         CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
373         enum machine_mode mode ATTRIBUTE_UNUSED,
374         tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
375 {
376   return false;
377 }
378
379 bool
380 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true (
381         CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
382         enum machine_mode mode ATTRIBUTE_UNUSED,
383         tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
384 {
385   return true;
386 }
387
388 int
389 hook_int_CUMULATIVE_ARGS_mode_tree_bool_0 (
390         CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
391         enum machine_mode mode ATTRIBUTE_UNUSED,
392         tree type ATTRIBUTE_UNUSED, bool named ATTRIBUTE_UNUSED)
393 {
394   return 0;
395 }
396
397 void 
398 hook_void_bitmap (bitmap regs ATTRIBUTE_UNUSED)
399 {
400 }
401
402 const char *
403 hook_invalid_arg_for_unprototyped_fn (
404         tree typelist ATTRIBUTE_UNUSED,
405         tree funcdecl ATTRIBUTE_UNUSED,
406         tree val ATTRIBUTE_UNUSED)
407 {
408   return NULL;
409 }
410
411 /* Initialize the stack protection decls.  */
412
413 /* Stack protection related decls living in libgcc.  */
414 static GTY(()) tree stack_chk_guard_decl;
415
416 tree
417 default_stack_protect_guard (void)
418 {
419   tree t = stack_chk_guard_decl;
420
421   if (t == NULL)
422     {
423       t = build_decl (VAR_DECL, get_identifier ("__stack_chk_guard"),
424                       ptr_type_node);
425       TREE_STATIC (t) = 1;
426       TREE_PUBLIC (t) = 1;
427       DECL_EXTERNAL (t) = 1;
428       TREE_USED (t) = 1;
429       TREE_THIS_VOLATILE (t) = 1;
430       DECL_ARTIFICIAL (t) = 1;
431       DECL_IGNORED_P (t) = 1;
432
433       stack_chk_guard_decl = t;
434     }
435
436   return t;
437 }
438
439 static GTY(()) tree stack_chk_fail_decl;
440
441 tree 
442 default_external_stack_protect_fail (void)
443 {
444   tree t = stack_chk_fail_decl;
445
446   if (t == NULL_TREE)
447     {
448       t = build_function_type_list (void_type_node, NULL_TREE);
449       t = build_decl (FUNCTION_DECL, get_identifier ("__stack_chk_fail"), t);
450       TREE_STATIC (t) = 1;
451       TREE_PUBLIC (t) = 1;
452       DECL_EXTERNAL (t) = 1;
453       TREE_USED (t) = 1;
454       TREE_THIS_VOLATILE (t) = 1;
455       TREE_NOTHROW (t) = 1;
456       DECL_ARTIFICIAL (t) = 1;
457       DECL_IGNORED_P (t) = 1;
458       DECL_VISIBILITY (t) = VISIBILITY_DEFAULT;
459       DECL_VISIBILITY_SPECIFIED (t) = 1;
460
461       stack_chk_fail_decl = t;
462     }
463
464   return build_call_expr (t, 0);
465 }
466
467 tree
468 default_hidden_stack_protect_fail (void)
469 {
470 #ifndef HAVE_GAS_HIDDEN
471   return default_external_stack_protect_fail ();
472 #else
473   tree t = stack_chk_fail_decl;
474
475   if (!flag_pic)
476     return default_external_stack_protect_fail ();
477
478   if (t == NULL_TREE)
479     {
480       t = build_function_type_list (void_type_node, NULL_TREE);
481       t = build_decl (FUNCTION_DECL,
482                       get_identifier ("__stack_chk_fail_local"), t);
483       TREE_STATIC (t) = 1;
484       TREE_PUBLIC (t) = 1;
485       DECL_EXTERNAL (t) = 1;
486       TREE_USED (t) = 1;
487       TREE_THIS_VOLATILE (t) = 1;
488       TREE_NOTHROW (t) = 1;
489       DECL_ARTIFICIAL (t) = 1;
490       DECL_IGNORED_P (t) = 1;
491       DECL_VISIBILITY_SPECIFIED (t) = 1;
492       DECL_VISIBILITY (t) = VISIBILITY_HIDDEN;
493
494       stack_chk_fail_decl = t;
495     }
496
497   return build_call_expr (t, 0);
498 #endif
499 }
500
501 bool
502 hook_bool_rtx_commutative_p (rtx x, int outer_code ATTRIBUTE_UNUSED)
503 {
504   return COMMUTATIVE_P (x);
505 }
506
507 rtx
508 default_function_value (tree ret_type ATTRIBUTE_UNUSED,
509                         tree fn_decl_or_type,
510                         bool outgoing ATTRIBUTE_UNUSED)
511 {
512   /* The old interface doesn't handle receiving the function type.  */
513   if (fn_decl_or_type
514       && !DECL_P (fn_decl_or_type))
515     fn_decl_or_type = NULL;
516
517 #ifdef FUNCTION_OUTGOING_VALUE
518   if (outgoing)
519     return FUNCTION_OUTGOING_VALUE (ret_type, fn_decl_or_type);
520 #endif
521
522 #ifdef FUNCTION_VALUE
523   return FUNCTION_VALUE (ret_type, fn_decl_or_type);
524 #else
525   return NULL_RTX;
526 #endif
527 }
528
529 rtx
530 default_internal_arg_pointer (void)
531 {
532   /* If the reg that the virtual arg pointer will be translated into is
533      not a fixed reg or is the stack pointer, make a copy of the virtual
534      arg pointer, and address parms via the copy.  The frame pointer is
535      considered fixed even though it is not marked as such.  */
536   if ((ARG_POINTER_REGNUM == STACK_POINTER_REGNUM
537        || ! (fixed_regs[ARG_POINTER_REGNUM]
538              || ARG_POINTER_REGNUM == FRAME_POINTER_REGNUM)))
539     return copy_to_reg (virtual_incoming_args_rtx);
540   else
541     return virtual_incoming_args_rtx;
542 }
543
544 enum reg_class
545 default_secondary_reload (bool in_p ATTRIBUTE_UNUSED, rtx x ATTRIBUTE_UNUSED,
546                           enum reg_class reload_class ATTRIBUTE_UNUSED,
547                           enum machine_mode reload_mode ATTRIBUTE_UNUSED,
548                           secondary_reload_info *sri)
549 {
550   enum reg_class class = NO_REGS;
551
552   if (sri->prev_sri && sri->prev_sri->t_icode != CODE_FOR_nothing)
553     {
554       sri->icode = sri->prev_sri->t_icode;
555       return NO_REGS;
556     }
557 #ifdef SECONDARY_INPUT_RELOAD_CLASS
558   if (in_p)
559     class = SECONDARY_INPUT_RELOAD_CLASS (reload_class, reload_mode, x);
560 #endif
561 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
562   if (! in_p)
563     class = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class, reload_mode, x);
564 #endif
565   if (class != NO_REGS)
566     {
567       enum insn_code icode = (in_p ? reload_in_optab[(int) reload_mode]
568                               : reload_out_optab[(int) reload_mode]);
569
570       if (icode != CODE_FOR_nothing
571           && insn_data[(int) icode].operand[in_p].predicate
572           && ! insn_data[(int) icode].operand[in_p].predicate (x, reload_mode))
573         icode = CODE_FOR_nothing;
574       else if (icode != CODE_FOR_nothing)
575         {
576           const char *insn_constraint, *scratch_constraint;
577           char insn_letter, scratch_letter;
578           enum reg_class insn_class, scratch_class;
579
580           gcc_assert (insn_data[(int) icode].n_operands == 3);
581           insn_constraint = insn_data[(int) icode].operand[!in_p].constraint;
582           if (!*insn_constraint)
583             insn_class = ALL_REGS;
584           else
585             {
586               if (in_p)
587                 {
588                   gcc_assert (*insn_constraint == '=');
589                   insn_constraint++;
590                 }
591               insn_letter = *insn_constraint;
592               insn_class
593                 = (insn_letter == 'r' ? GENERAL_REGS
594                    : REG_CLASS_FROM_CONSTRAINT ((unsigned char) insn_letter,
595                                                 insn_constraint));
596               gcc_assert (insn_class != NO_REGS);
597             }
598
599           scratch_constraint = insn_data[(int) icode].operand[2].constraint;
600           /* The scratch register's constraint must start with "=&",
601              except for an input reload, where only "=" is necessary,
602              and where it might be beneficial to re-use registers from
603              the input.  */
604           gcc_assert (scratch_constraint[0] == '='
605                       && (in_p || scratch_constraint[1] == '&'));
606           scratch_constraint++;
607           if (*scratch_constraint == '&')
608             scratch_constraint++;
609           scratch_letter = *scratch_constraint;
610           scratch_class
611             = (scratch_letter == 'r' ? GENERAL_REGS
612                : REG_CLASS_FROM_CONSTRAINT ((unsigned char) scratch_letter,
613                                             scratch_constraint));
614
615           if (reg_class_subset_p (reload_class, insn_class))
616             {
617               gcc_assert (scratch_class == class);
618               class = NO_REGS;
619             }
620           else
621             class = insn_class;
622
623         }
624       if (class == NO_REGS)
625         sri->icode = icode;
626       else
627         sri->t_icode = icode;
628     }
629   return class;
630 }
631
632 bool
633 default_handle_c_option (size_t code ATTRIBUTE_UNUSED,
634                          const char *arg ATTRIBUTE_UNUSED,
635                          int value ATTRIBUTE_UNUSED)
636 {
637   return false;
638 }
639
640 /* By default, if flag_pic is true, then neither local nor global relocs
641    should be placed in readonly memory.  */
642
643 int
644 default_reloc_rw_mask (void)
645 {
646   return flag_pic ? 3 : 0;
647 }
648
649 /* By default, do no modification. */
650 tree default_mangle_decl_assembler_name (tree decl ATTRIBUTE_UNUSED,
651                                          tree id)
652 {
653    return id;
654 }
655
656 #include "gt-targhooks.h"