gcc/ada/
[official-gcc.git] / gcc / config / moxie / moxie.c
blobef1ed8fb2cc3e4bf5a874bbad00f75eccebcf440
1 /* Target Code for moxie
2 Copyright (C) 2008-2014 Free Software Foundation, Inc.
3 Contributed by Anthony Green.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published
9 by the Free Software Foundation; either version 3, or (at your
10 option) any later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "rtl.h"
26 #include "regs.h"
27 #include "hard-reg-set.h"
28 #include "insn-config.h"
29 #include "conditions.h"
30 #include "insn-flags.h"
31 #include "output.h"
32 #include "insn-attr.h"
33 #include "flags.h"
34 #include "recog.h"
35 #include "reload.h"
36 #include "diagnostic-core.h"
37 #include "obstack.h"
38 #include "tree.h"
39 #include "stor-layout.h"
40 #include "varasm.h"
41 #include "calls.h"
42 #include "expr.h"
43 #include "optabs.h"
44 #include "except.h"
45 #include "hashtab.h"
46 #include "hash-set.h"
47 #include "vec.h"
48 #include "machmode.h"
49 #include "input.h"
50 #include "function.h"
51 #include "ggc.h"
52 #include "target.h"
53 #include "target-def.h"
54 #include "tm_p.h"
55 #include "langhooks.h"
56 #include "dominance.h"
57 #include "cfg.h"
58 #include "cfgrtl.h"
59 #include "cfganal.h"
60 #include "lcm.h"
61 #include "cfgbuild.h"
62 #include "cfgcleanup.h"
63 #include "predict.h"
64 #include "basic-block.h"
65 #include "df.h"
66 #include "builtins.h"
68 #define LOSE_AND_RETURN(msgid, x) \
69 do \
70 { \
71 moxie_operand_lossage (msgid, x); \
72 return; \
73 } while (0)
75 /* Worker function for TARGET_RETURN_IN_MEMORY. */
77 static bool
78 moxie_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
80 const HOST_WIDE_INT size = int_size_in_bytes (type);
81 return (size == -1 || size > 2 * UNITS_PER_WORD);
84 /* Define how to find the value returned by a function.
85 VALTYPE is the data type of the value (as a tree).
86 If the precise function being called is known, FUNC is its
87 FUNCTION_DECL; otherwise, FUNC is 0.
89 We always return values in register $r0 for moxie. */
91 static rtx
92 moxie_function_value (const_tree valtype,
93 const_tree fntype_or_decl ATTRIBUTE_UNUSED,
94 bool outgoing ATTRIBUTE_UNUSED)
96 return gen_rtx_REG (TYPE_MODE (valtype), MOXIE_R0);
99 /* Define how to find the value returned by a library function.
101 We always return values in register $r0 for moxie. */
103 static rtx
104 moxie_libcall_value (machine_mode mode,
105 const_rtx fun ATTRIBUTE_UNUSED)
107 return gen_rtx_REG (mode, MOXIE_R0);
110 /* Handle TARGET_FUNCTION_VALUE_REGNO_P.
112 We always return values in register $r0 for moxie. */
114 static bool
115 moxie_function_value_regno_p (const unsigned int regno)
117 return (regno == MOXIE_R0);
120 /* Emit an error message when we're in an asm, and a fatal error for
121 "normal" insns. Formatted output isn't easily implemented, since we
122 use output_operand_lossage to output the actual message and handle the
123 categorization of the error. */
125 static void
126 moxie_operand_lossage (const char *msgid, rtx op)
128 debug_rtx (op);
129 output_operand_lossage ("%s", msgid);
132 /* The PRINT_OPERAND_ADDRESS worker. */
134 void
135 moxie_print_operand_address (FILE *file, rtx x)
137 switch (GET_CODE (x))
139 case REG:
140 fprintf (file, "(%s)", reg_names[REGNO (x)]);
141 break;
143 case PLUS:
144 switch (GET_CODE (XEXP (x, 1)))
146 case CONST_INT:
147 fprintf (file, "%ld(%s)",
148 INTVAL(XEXP (x, 1)), reg_names[REGNO (XEXP (x, 0))]);
149 break;
150 case SYMBOL_REF:
151 output_addr_const (file, XEXP (x, 1));
152 fprintf (file, "(%s)", reg_names[REGNO (XEXP (x, 0))]);
153 break;
154 case CONST:
156 rtx plus = XEXP (XEXP (x, 1), 0);
157 if (GET_CODE (XEXP (plus, 0)) == SYMBOL_REF
158 && CONST_INT_P (XEXP (plus, 1)))
160 output_addr_const(file, XEXP (plus, 0));
161 fprintf (file,"+%ld(%s)", INTVAL (XEXP (plus, 1)),
162 reg_names[REGNO (XEXP (x, 0))]);
164 else
165 abort();
167 break;
168 default:
169 abort();
171 break;
173 default:
174 output_addr_const (file, x);
175 break;
179 /* The PRINT_OPERAND worker. */
181 void
182 moxie_print_operand (FILE *file, rtx x, int code)
184 rtx operand = x;
186 /* New code entries should just be added to the switch below. If
187 handling is finished, just return. If handling was just a
188 modification of the operand, the modified operand should be put in
189 "operand", and then do a break to let default handling
190 (zero-modifier) output the operand. */
192 switch (code)
194 case 0:
195 /* No code, print as usual. */
196 break;
198 default:
199 LOSE_AND_RETURN ("invalid operand modifier letter", x);
202 /* Print an operand as without a modifier letter. */
203 switch (GET_CODE (operand))
205 case REG:
206 if (REGNO (operand) > MOXIE_R13)
207 internal_error ("internal error: bad register: %d", REGNO (operand));
208 fprintf (file, "%s", reg_names[REGNO (operand)]);
209 return;
211 case MEM:
212 output_address (XEXP (operand, 0));
213 return;
215 default:
216 /* No need to handle all strange variants, let output_addr_const
217 do it for us. */
218 if (CONSTANT_P (operand))
220 output_addr_const (file, operand);
221 return;
224 LOSE_AND_RETURN ("unexpected operand", x);
228 /* Per-function machine data. */
229 struct GTY(()) machine_function
231 /* Number of bytes saved on the stack for callee saved registers. */
232 int callee_saved_reg_size;
234 /* Number of bytes saved on the stack for local variables. */
235 int local_vars_size;
237 /* The sum of 2 sizes: locals vars and padding byte for saving the
238 * registers. Used in expand_prologue () and expand_epilogue(). */
239 int size_for_adjusting_sp;
242 /* Zero initialization is OK for all current fields. */
244 static struct machine_function *
245 moxie_init_machine_status (void)
247 return ggc_cleared_alloc<machine_function> ();
251 /* The TARGET_OPTION_OVERRIDE worker.
252 All this curently does is set init_machine_status. */
253 static void
254 moxie_option_override (void)
256 /* Set the per-function-data initializer. */
257 init_machine_status = moxie_init_machine_status;
260 /* Compute the size of the local area and the size to be adjusted by the
261 * prologue and epilogue. */
263 static void
264 moxie_compute_frame (void)
266 /* For aligning the local variables. */
267 int stack_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
268 int padding_locals;
269 int regno;
271 /* Padding needed for each element of the frame. */
272 cfun->machine->local_vars_size = get_frame_size ();
274 /* Align to the stack alignment. */
275 padding_locals = cfun->machine->local_vars_size % stack_alignment;
276 if (padding_locals)
277 padding_locals = stack_alignment - padding_locals;
279 cfun->machine->local_vars_size += padding_locals;
281 cfun->machine->callee_saved_reg_size = 0;
283 /* Save callee-saved registers. */
284 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
285 if (df_regs_ever_live_p (regno) && (! call_used_regs[regno]))
286 cfun->machine->callee_saved_reg_size += 4;
288 cfun->machine->size_for_adjusting_sp =
289 crtl->args.pretend_args_size
290 + cfun->machine->local_vars_size
291 + (ACCUMULATE_OUTGOING_ARGS ? crtl->outgoing_args_size : 0);
294 void
295 moxie_expand_prologue (void)
297 int regno;
298 rtx insn;
300 moxie_compute_frame ();
302 if (flag_stack_usage_info)
303 current_function_static_stack_size = cfun->machine->size_for_adjusting_sp;
305 /* Save callee-saved registers. */
306 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
308 if (!fixed_regs[regno] && df_regs_ever_live_p (regno) && !call_used_regs[regno])
310 insn = emit_insn (gen_movsi_push (gen_rtx_REG (Pmode, regno)));
311 RTX_FRAME_RELATED_P (insn) = 1;
315 if (cfun->machine->size_for_adjusting_sp > 0)
317 int i = cfun->machine->size_for_adjusting_sp;
318 while ((i >= 255) && (i <= 510))
320 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
321 stack_pointer_rtx,
322 GEN_INT (255)));
323 RTX_FRAME_RELATED_P (insn) = 1;
324 i -= 255;
326 if (i <= 255)
328 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
329 stack_pointer_rtx,
330 GEN_INT (i)));
331 RTX_FRAME_RELATED_P (insn) = 1;
333 else
335 rtx reg = gen_rtx_REG (SImode, MOXIE_R12);
336 insn = emit_move_insn (reg, GEN_INT (i));
337 RTX_FRAME_RELATED_P (insn) = 1;
338 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
339 stack_pointer_rtx,
340 reg));
341 RTX_FRAME_RELATED_P (insn) = 1;
346 void
347 moxie_expand_epilogue (void)
349 int regno;
350 rtx reg;
352 if (cfun->machine->callee_saved_reg_size != 0)
354 reg = gen_rtx_REG (Pmode, MOXIE_R12);
355 if (cfun->machine->callee_saved_reg_size <= 255)
357 emit_move_insn (reg, hard_frame_pointer_rtx);
358 emit_insn (gen_subsi3
359 (reg, reg,
360 GEN_INT (cfun->machine->callee_saved_reg_size)));
362 else
364 emit_move_insn (reg,
365 GEN_INT (-cfun->machine->callee_saved_reg_size));
366 emit_insn (gen_addsi3 (reg, reg, hard_frame_pointer_rtx));
368 for (regno = FIRST_PSEUDO_REGISTER; regno-- > 0; )
369 if (!fixed_regs[regno] && !call_used_regs[regno]
370 && df_regs_ever_live_p (regno))
372 rtx preg = gen_rtx_REG (Pmode, regno);
373 emit_insn (gen_movsi_pop (reg, preg));
377 emit_jump_insn (gen_returner ());
380 /* Implements the macro INITIAL_ELIMINATION_OFFSET, return the OFFSET. */
383 moxie_initial_elimination_offset (int from, int to)
385 int ret;
387 if ((from) == FRAME_POINTER_REGNUM && (to) == HARD_FRAME_POINTER_REGNUM)
389 /* Compute this since we need to use cfun->machine->local_vars_size. */
390 moxie_compute_frame ();
391 ret = -cfun->machine->callee_saved_reg_size;
393 else if ((from) == ARG_POINTER_REGNUM && (to) == HARD_FRAME_POINTER_REGNUM)
394 ret = 0x00;
395 else
396 abort ();
398 return ret;
401 /* Worker function for TARGET_SETUP_INCOMING_VARARGS. */
403 static void
404 moxie_setup_incoming_varargs (cumulative_args_t cum_v,
405 machine_mode mode ATTRIBUTE_UNUSED,
406 tree type ATTRIBUTE_UNUSED,
407 int *pretend_size, int no_rtl)
409 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
410 int regno;
411 int regs = 8 - *cum;
413 *pretend_size = regs < 0 ? 0 : GET_MODE_SIZE (SImode) * regs;
415 if (no_rtl)
416 return;
418 for (regno = *cum; regno < 8; regno++)
420 rtx reg = gen_rtx_REG (SImode, regno);
421 rtx slot = gen_rtx_PLUS (Pmode,
422 gen_rtx_REG (SImode, ARG_POINTER_REGNUM),
423 GEN_INT (UNITS_PER_WORD * (3 + (regno-2))));
425 emit_move_insn (gen_rtx_MEM (SImode, slot), reg);
430 /* Return the fixed registers used for condition codes. */
432 static bool
433 moxie_fixed_condition_code_regs (unsigned int *p1, unsigned int *p2)
435 *p1 = CC_REG;
436 *p2 = INVALID_REGNUM;
437 return true;
440 /* Return the next register to be used to hold a function argument or
441 NULL_RTX if there's no more space. */
443 static rtx
444 moxie_function_arg (cumulative_args_t cum_v, machine_mode mode,
445 const_tree type ATTRIBUTE_UNUSED,
446 bool named ATTRIBUTE_UNUSED)
448 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
450 if (*cum < 8)
451 return gen_rtx_REG (mode, *cum);
452 else
453 return NULL_RTX;
456 #define MOXIE_FUNCTION_ARG_SIZE(MODE, TYPE) \
457 ((MODE) != BLKmode ? GET_MODE_SIZE (MODE) \
458 : (unsigned) int_size_in_bytes (TYPE))
460 static void
461 moxie_function_arg_advance (cumulative_args_t cum_v, machine_mode mode,
462 const_tree type, bool named ATTRIBUTE_UNUSED)
464 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
466 *cum = (*cum < MOXIE_R6
467 ? *cum + ((3 + MOXIE_FUNCTION_ARG_SIZE (mode, type)) / 4)
468 : *cum);
471 /* Return non-zero if the function argument described by TYPE is to be
472 passed by reference. */
474 static bool
475 moxie_pass_by_reference (cumulative_args_t cum ATTRIBUTE_UNUSED,
476 machine_mode mode, const_tree type,
477 bool named ATTRIBUTE_UNUSED)
479 unsigned HOST_WIDE_INT size;
481 if (type)
483 if (AGGREGATE_TYPE_P (type))
484 return true;
485 size = int_size_in_bytes (type);
487 else
488 size = GET_MODE_SIZE (mode);
490 return size > 4*6;
493 /* Some function arguments will only partially fit in the registers
494 that hold arguments. Given a new arg, return the number of bytes
495 that fit in argument passing registers. */
497 static int
498 moxie_arg_partial_bytes (cumulative_args_t cum_v,
499 machine_mode mode,
500 tree type, bool named)
502 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
503 int bytes_left, size;
505 if (*cum >= 8)
506 return 0;
508 if (moxie_pass_by_reference (cum_v, mode, type, named))
509 size = 4;
510 else if (type)
512 if (AGGREGATE_TYPE_P (type))
513 return 0;
514 size = int_size_in_bytes (type);
516 else
517 size = GET_MODE_SIZE (mode);
519 bytes_left = (4 * 6) - ((*cum - 2) * 4);
521 if (size > bytes_left)
522 return bytes_left;
523 else
524 return 0;
527 /* Worker function for TARGET_STATIC_CHAIN. */
529 static rtx
530 moxie_static_chain (const_tree fndecl, bool incoming_p)
532 rtx addr, mem;
534 if (!DECL_STATIC_CHAIN (fndecl))
535 return NULL;
537 if (incoming_p)
538 addr = plus_constant (Pmode, arg_pointer_rtx, 2 * UNITS_PER_WORD);
539 else
540 addr = plus_constant (Pmode, stack_pointer_rtx, -UNITS_PER_WORD);
542 mem = gen_rtx_MEM (Pmode, addr);
543 MEM_NOTRAP_P (mem) = 1;
545 return mem;
548 /* Worker function for TARGET_ASM_TRAMPOLINE_TEMPLATE. */
550 static void
551 moxie_asm_trampoline_template (FILE *f)
553 fprintf (f, "\tpush $sp, $r0\n");
554 fprintf (f, "\tldi.l $r0, 0x0\n");
555 fprintf (f, "\tsto.l 0x8($fp), $r0\n");
556 fprintf (f, "\tpop $sp, $r0\n");
557 fprintf (f, "\tnop\n");
558 fprintf (f, "\tjmpa 0x0\n");
561 /* Worker function for TARGET_TRAMPOLINE_INIT. */
563 static void
564 moxie_trampoline_init (rtx m_tramp, tree fndecl, rtx chain_value)
566 rtx mem, fnaddr = XEXP (DECL_RTL (fndecl), 0);
568 emit_block_move (m_tramp, assemble_trampoline_template (),
569 GEN_INT (TRAMPOLINE_SIZE), BLOCK_OP_NORMAL);
571 mem = adjust_address (m_tramp, SImode, 4);
572 emit_move_insn (mem, chain_value);
573 mem = adjust_address (m_tramp, SImode, 20);
574 emit_move_insn (mem, fnaddr);
577 /* The Global `targetm' Variable. */
579 /* Initialize the GCC target structure. */
581 #undef TARGET_PROMOTE_PROTOTYPES
582 #define TARGET_PROMOTE_PROTOTYPES hook_bool_const_tree_true
584 #undef TARGET_RETURN_IN_MEMORY
585 #define TARGET_RETURN_IN_MEMORY moxie_return_in_memory
586 #undef TARGET_MUST_PASS_IN_STACK
587 #define TARGET_MUST_PASS_IN_STACK must_pass_in_stack_var_size
588 #undef TARGET_PASS_BY_REFERENCE
589 #define TARGET_PASS_BY_REFERENCE moxie_pass_by_reference
590 #undef TARGET_ARG_PARTIAL_BYTES
591 #define TARGET_ARG_PARTIAL_BYTES moxie_arg_partial_bytes
592 #undef TARGET_FUNCTION_ARG
593 #define TARGET_FUNCTION_ARG moxie_function_arg
594 #undef TARGET_FUNCTION_ARG_ADVANCE
595 #define TARGET_FUNCTION_ARG_ADVANCE moxie_function_arg_advance
598 #undef TARGET_SETUP_INCOMING_VARARGS
599 #define TARGET_SETUP_INCOMING_VARARGS moxie_setup_incoming_varargs
601 #undef TARGET_FIXED_CONDITION_CODE_REGS
602 #define TARGET_FIXED_CONDITION_CODE_REGS moxie_fixed_condition_code_regs
604 /* Define this to return an RTX representing the place where a
605 function returns or receives a value of data type RET_TYPE, a tree
606 node node representing a data type. */
607 #undef TARGET_FUNCTION_VALUE
608 #define TARGET_FUNCTION_VALUE moxie_function_value
609 #undef TARGET_LIBCALL_VALUE
610 #define TARGET_LIBCALL_VALUE moxie_libcall_value
611 #undef TARGET_FUNCTION_VALUE_REGNO_P
612 #define TARGET_FUNCTION_VALUE_REGNO_P moxie_function_value_regno_p
614 #undef TARGET_FRAME_POINTER_REQUIRED
615 #define TARGET_FRAME_POINTER_REQUIRED hook_bool_void_true
617 #undef TARGET_STATIC_CHAIN
618 #define TARGET_STATIC_CHAIN moxie_static_chain
619 #undef TARGET_ASM_TRAMPOLINE_TEMPLATE
620 #define TARGET_ASM_TRAMPOLINE_TEMPLATE moxie_asm_trampoline_template
621 #undef TARGET_TRAMPOLINE_INIT
622 #define TARGET_TRAMPOLINE_INIT moxie_trampoline_init
624 #undef TARGET_OPTION_OVERRIDE
625 #define TARGET_OPTION_OVERRIDE moxie_option_override
627 struct gcc_target targetm = TARGET_INITIALIZER;
629 #include "gt-moxie.h"