2012-11-19 Mans Rullgard <mans@mansr.com>
[official-gcc.git] / gcc / config / moxie / moxie.c
blob97f8af0eb04c5a083df376bdb5469d8bb2d3488f
1 /* Target Code for moxie
2 Copyright (C) 2008, 2009, 2010, 2011, 2012 Free Software Foundation
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 "expr.h"
40 #include "optabs.h"
41 #include "except.h"
42 #include "function.h"
43 #include "ggc.h"
44 #include "target.h"
45 #include "target-def.h"
46 #include "tm_p.h"
47 #include "langhooks.h"
48 #include "df.h"
50 #define LOSE_AND_RETURN(msgid, x) \
51 do \
52 { \
53 moxie_operand_lossage (msgid, x); \
54 return; \
55 } while (0)
57 /* Worker function for TARGET_RETURN_IN_MEMORY. */
59 static bool
60 moxie_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
62 const HOST_WIDE_INT size = int_size_in_bytes (type);
63 return (size == -1 || size > 2 * UNITS_PER_WORD);
66 /* Define how to find the value returned by a function.
67 VALTYPE is the data type of the value (as a tree).
68 If the precise function being called is known, FUNC is its
69 FUNCTION_DECL; otherwise, FUNC is 0.
71 We always return values in register $r0 for moxie. */
73 static rtx
74 moxie_function_value (const_tree valtype,
75 const_tree fntype_or_decl ATTRIBUTE_UNUSED,
76 bool outgoing ATTRIBUTE_UNUSED)
78 return gen_rtx_REG (TYPE_MODE (valtype), MOXIE_R0);
81 /* Define how to find the value returned by a library function.
83 We always return values in register $r0 for moxie. */
85 static rtx
86 moxie_libcall_value (enum machine_mode mode,
87 const_rtx fun ATTRIBUTE_UNUSED)
89 return gen_rtx_REG (mode, MOXIE_R0);
92 /* Handle TARGET_FUNCTION_VALUE_REGNO_P.
94 We always return values in register $r0 for moxie. */
96 static bool
97 moxie_function_value_regno_p (const unsigned int regno)
99 return (regno == MOXIE_R0);
102 /* Emit an error message when we're in an asm, and a fatal error for
103 "normal" insns. Formatted output isn't easily implemented, since we
104 use output_operand_lossage to output the actual message and handle the
105 categorization of the error. */
107 static void
108 moxie_operand_lossage (const char *msgid, rtx op)
110 debug_rtx (op);
111 output_operand_lossage ("%s", msgid);
114 /* The PRINT_OPERAND_ADDRESS worker. */
116 void
117 moxie_print_operand_address (FILE *file, rtx x)
119 switch (GET_CODE (x))
121 case REG:
122 fprintf (file, "(%s)", reg_names[REGNO (x)]);
123 break;
125 case PLUS:
126 switch (GET_CODE (XEXP (x, 1)))
128 case CONST_INT:
129 fprintf (file, "%ld(%s)",
130 INTVAL(XEXP (x, 1)), reg_names[REGNO (XEXP (x, 0))]);
131 break;
132 case SYMBOL_REF:
133 output_addr_const (file, XEXP (x, 1));
134 fprintf (file, "(%s)", reg_names[REGNO (XEXP (x, 0))]);
135 break;
136 case CONST:
138 rtx plus = XEXP (XEXP (x, 1), 0);
139 if (GET_CODE (XEXP (plus, 0)) == SYMBOL_REF
140 && CONST_INT_P (XEXP (plus, 1)))
142 output_addr_const(file, XEXP (plus, 0));
143 fprintf (file,"+%ld(%s)", INTVAL (XEXP (plus, 1)),
144 reg_names[REGNO (XEXP (x, 0))]);
146 else
147 abort();
149 break;
150 default:
151 abort();
153 break;
155 default:
156 output_addr_const (file, x);
157 break;
161 /* The PRINT_OPERAND worker. */
163 void
164 moxie_print_operand (FILE *file, rtx x, int code)
166 rtx operand = x;
168 /* New code entries should just be added to the switch below. If
169 handling is finished, just return. If handling was just a
170 modification of the operand, the modified operand should be put in
171 "operand", and then do a break to let default handling
172 (zero-modifier) output the operand. */
174 switch (code)
176 case 0:
177 /* No code, print as usual. */
178 break;
180 default:
181 LOSE_AND_RETURN ("invalid operand modifier letter", x);
184 /* Print an operand as without a modifier letter. */
185 switch (GET_CODE (operand))
187 case REG:
188 if (REGNO (operand) > MOXIE_R13)
189 internal_error ("internal error: bad register: %d", REGNO (operand));
190 fprintf (file, "%s", reg_names[REGNO (operand)]);
191 return;
193 case MEM:
194 output_address (XEXP (operand, 0));
195 return;
197 default:
198 /* No need to handle all strange variants, let output_addr_const
199 do it for us. */
200 if (CONSTANT_P (operand))
202 output_addr_const (file, operand);
203 return;
206 LOSE_AND_RETURN ("unexpected operand", x);
210 /* Per-function machine data. */
211 struct GTY(()) machine_function
213 /* Number of bytes saved on the stack for callee saved registers. */
214 int callee_saved_reg_size;
216 /* Number of bytes saved on the stack for local variables. */
217 int local_vars_size;
219 /* The sum of 2 sizes: locals vars and padding byte for saving the
220 * registers. Used in expand_prologue () and expand_epilogue(). */
221 int size_for_adjusting_sp;
224 /* Zero initialization is OK for all current fields. */
226 static struct machine_function *
227 moxie_init_machine_status (void)
229 return ggc_alloc_cleared_machine_function ();
233 /* The TARGET_OPTION_OVERRIDE worker.
234 All this curently does is set init_machine_status. */
235 static void
236 moxie_option_override (void)
238 /* Set the per-function-data initializer. */
239 init_machine_status = moxie_init_machine_status;
242 /* Compute the size of the local area and the size to be adjusted by the
243 * prologue and epilogue. */
245 static void
246 moxie_compute_frame (void)
248 /* For aligning the local variables. */
249 int stack_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
250 int padding_locals;
251 int regno;
253 /* Padding needed for each element of the frame. */
254 cfun->machine->local_vars_size = get_frame_size ();
256 /* Align to the stack alignment. */
257 padding_locals = cfun->machine->local_vars_size % stack_alignment;
258 if (padding_locals)
259 padding_locals = stack_alignment - padding_locals;
261 cfun->machine->local_vars_size += padding_locals;
263 cfun->machine->callee_saved_reg_size = 0;
265 /* Save callee-saved registers. */
266 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
267 if (df_regs_ever_live_p (regno) && (! call_used_regs[regno]))
268 cfun->machine->callee_saved_reg_size += 4;
270 cfun->machine->size_for_adjusting_sp =
271 crtl->args.pretend_args_size
272 + cfun->machine->local_vars_size
273 + (ACCUMULATE_OUTGOING_ARGS ? crtl->outgoing_args_size : 0);
276 void
277 moxie_expand_prologue (void)
279 int regno;
280 rtx insn;
282 moxie_compute_frame ();
284 /* Save callee-saved registers. */
285 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
287 if (!fixed_regs[regno] && df_regs_ever_live_p (regno) && !call_used_regs[regno])
289 insn = emit_insn (gen_movsi_push (gen_rtx_REG (Pmode, regno)));
290 RTX_FRAME_RELATED_P (insn) = 1;
294 if (cfun->machine->size_for_adjusting_sp > 0)
296 int i = cfun->machine->size_for_adjusting_sp;
297 while ((i >= 255) && (i <= 510))
299 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
300 stack_pointer_rtx,
301 GEN_INT (255)));
302 RTX_FRAME_RELATED_P (insn) = 1;
303 i -= 255;
305 if (i <= 255)
307 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
308 stack_pointer_rtx,
309 GEN_INT (i)));
310 RTX_FRAME_RELATED_P (insn) = 1;
312 else
314 rtx reg = gen_rtx_REG (SImode, MOXIE_R12);
315 insn = emit_move_insn (reg, GEN_INT (i));
316 RTX_FRAME_RELATED_P (insn) = 1;
317 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
318 stack_pointer_rtx,
319 reg));
320 RTX_FRAME_RELATED_P (insn) = 1;
325 void
326 moxie_expand_epilogue (void)
328 int regno;
329 rtx reg;
331 if (cfun->machine->callee_saved_reg_size != 0)
333 reg = gen_rtx_REG (Pmode, MOXIE_R12);
334 if (cfun->machine->callee_saved_reg_size <= 255)
336 emit_move_insn (reg, hard_frame_pointer_rtx);
337 emit_insn (gen_subsi3
338 (reg, reg,
339 GEN_INT (cfun->machine->callee_saved_reg_size)));
341 else
343 emit_move_insn (reg,
344 GEN_INT (-cfun->machine->callee_saved_reg_size));
345 emit_insn (gen_addsi3 (reg, reg, hard_frame_pointer_rtx));
347 for (regno = FIRST_PSEUDO_REGISTER; regno-- > 0; )
348 if (!fixed_regs[regno] && !call_used_regs[regno]
349 && df_regs_ever_live_p (regno))
351 rtx preg = gen_rtx_REG (Pmode, regno);
352 emit_insn (gen_movsi_pop (reg, preg));
356 emit_jump_insn (gen_returner ());
359 /* Implements the macro INITIAL_ELIMINATION_OFFSET, return the OFFSET. */
362 moxie_initial_elimination_offset (int from, int to)
364 int ret;
366 if ((from) == FRAME_POINTER_REGNUM && (to) == HARD_FRAME_POINTER_REGNUM)
368 /* Compute this since we need to use cfun->machine->local_vars_size. */
369 moxie_compute_frame ();
370 ret = -cfun->machine->callee_saved_reg_size;
372 else if ((from) == ARG_POINTER_REGNUM && (to) == HARD_FRAME_POINTER_REGNUM)
373 ret = 0x00;
374 else
375 abort ();
377 return ret;
380 /* Worker function for TARGET_SETUP_INCOMING_VARARGS. */
382 static void
383 moxie_setup_incoming_varargs (cumulative_args_t cum_v,
384 enum machine_mode mode ATTRIBUTE_UNUSED,
385 tree type ATTRIBUTE_UNUSED,
386 int *pretend_size, int no_rtl)
388 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
389 int regno;
390 int regs = 8 - *cum;
392 *pretend_size = regs < 0 ? 0 : GET_MODE_SIZE (SImode) * regs;
394 if (no_rtl)
395 return;
397 for (regno = *cum; regno < 8; regno++)
399 rtx reg = gen_rtx_REG (SImode, regno);
400 rtx slot = gen_rtx_PLUS (Pmode,
401 gen_rtx_REG (SImode, ARG_POINTER_REGNUM),
402 GEN_INT (UNITS_PER_WORD * (3 + (regno-2))));
404 emit_move_insn (gen_rtx_MEM (SImode, slot), reg);
409 /* Return the fixed registers used for condition codes. */
411 static bool
412 moxie_fixed_condition_code_regs (unsigned int *p1, unsigned int *p2)
414 *p1 = CC_REG;
415 *p2 = INVALID_REGNUM;
416 return true;
419 /* Return the next register to be used to hold a function argument or
420 NULL_RTX if there's no more space. */
422 static rtx
423 moxie_function_arg (cumulative_args_t cum_v, enum machine_mode mode,
424 const_tree type ATTRIBUTE_UNUSED,
425 bool named ATTRIBUTE_UNUSED)
427 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
429 if (*cum < 8)
430 return gen_rtx_REG (mode, *cum);
431 else
432 return NULL_RTX;
435 #define MOXIE_FUNCTION_ARG_SIZE(MODE, TYPE) \
436 ((MODE) != BLKmode ? GET_MODE_SIZE (MODE) \
437 : (unsigned) int_size_in_bytes (TYPE))
439 static void
440 moxie_function_arg_advance (cumulative_args_t cum_v, enum machine_mode mode,
441 const_tree type, bool named ATTRIBUTE_UNUSED)
443 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
445 *cum = (*cum < MOXIE_R6
446 ? *cum + ((3 + MOXIE_FUNCTION_ARG_SIZE (mode, type)) / 4)
447 : *cum);
450 /* Return non-zero if the function argument described by TYPE is to be
451 passed by reference. */
453 static bool
454 moxie_pass_by_reference (cumulative_args_t cum ATTRIBUTE_UNUSED,
455 enum machine_mode mode, const_tree type,
456 bool named ATTRIBUTE_UNUSED)
458 unsigned HOST_WIDE_INT size;
460 if (type)
462 if (AGGREGATE_TYPE_P (type))
463 return true;
464 size = int_size_in_bytes (type);
466 else
467 size = GET_MODE_SIZE (mode);
469 return size > 4*6;
472 /* Some function arguments will only partially fit in the registers
473 that hold arguments. Given a new arg, return the number of bytes
474 that fit in argument passing registers. */
476 static int
477 moxie_arg_partial_bytes (cumulative_args_t cum_v,
478 enum machine_mode mode,
479 tree type, bool named)
481 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
482 int bytes_left, size;
484 if (*cum >= 8)
485 return 0;
487 if (moxie_pass_by_reference (cum_v, mode, type, named))
488 size = 4;
489 else if (type)
491 if (AGGREGATE_TYPE_P (type))
492 return 0;
493 size = int_size_in_bytes (type);
495 else
496 size = GET_MODE_SIZE (mode);
498 bytes_left = (4 * 6) - ((*cum - 2) * 4);
500 if (size > bytes_left)
501 return bytes_left;
502 else
503 return 0;
506 /* Worker function for TARGET_STATIC_CHAIN. */
508 static rtx
509 moxie_static_chain (const_tree fndecl, bool incoming_p)
511 rtx addr, mem;
513 if (!DECL_STATIC_CHAIN (fndecl))
514 return NULL;
516 if (incoming_p)
517 addr = plus_constant (Pmode, arg_pointer_rtx, 2 * UNITS_PER_WORD);
518 else
519 addr = plus_constant (Pmode, stack_pointer_rtx, -UNITS_PER_WORD);
521 mem = gen_rtx_MEM (Pmode, addr);
522 MEM_NOTRAP_P (mem) = 1;
524 return mem;
527 /* Worker function for TARGET_ASM_TRAMPOLINE_TEMPLATE. */
529 static void
530 moxie_asm_trampoline_template (FILE *f)
532 fprintf (f, "\tpush $sp, $r0\n");
533 fprintf (f, "\tldi.l $r0, 0x0\n");
534 fprintf (f, "\tsto.l 0x8($fp), $r0\n");
535 fprintf (f, "\tpop $sp, $r0\n");
536 fprintf (f, "\tnop\n");
537 fprintf (f, "\tjmpa 0x0\n");
540 /* Worker function for TARGET_TRAMPOLINE_INIT. */
542 static void
543 moxie_trampoline_init (rtx m_tramp, tree fndecl, rtx chain_value)
545 rtx mem, fnaddr = XEXP (DECL_RTL (fndecl), 0);
547 emit_block_move (m_tramp, assemble_trampoline_template (),
548 GEN_INT (TRAMPOLINE_SIZE), BLOCK_OP_NORMAL);
550 mem = adjust_address (m_tramp, SImode, 4);
551 emit_move_insn (mem, chain_value);
552 mem = adjust_address (m_tramp, SImode, 20);
553 emit_move_insn (mem, fnaddr);
556 /* The Global `targetm' Variable. */
558 /* Initialize the GCC target structure. */
560 #undef TARGET_PROMOTE_PROTOTYPES
561 #define TARGET_PROMOTE_PROTOTYPES hook_bool_const_tree_true
563 #undef TARGET_RETURN_IN_MEMORY
564 #define TARGET_RETURN_IN_MEMORY moxie_return_in_memory
565 #undef TARGET_MUST_PASS_IN_STACK
566 #define TARGET_MUST_PASS_IN_STACK must_pass_in_stack_var_size
567 #undef TARGET_PASS_BY_REFERENCE
568 #define TARGET_PASS_BY_REFERENCE moxie_pass_by_reference
569 #undef TARGET_ARG_PARTIAL_BYTES
570 #define TARGET_ARG_PARTIAL_BYTES moxie_arg_partial_bytes
571 #undef TARGET_FUNCTION_ARG
572 #define TARGET_FUNCTION_ARG moxie_function_arg
573 #undef TARGET_FUNCTION_ARG_ADVANCE
574 #define TARGET_FUNCTION_ARG_ADVANCE moxie_function_arg_advance
577 #undef TARGET_SETUP_INCOMING_VARARGS
578 #define TARGET_SETUP_INCOMING_VARARGS moxie_setup_incoming_varargs
580 #undef TARGET_FIXED_CONDITION_CODE_REGS
581 #define TARGET_FIXED_CONDITION_CODE_REGS moxie_fixed_condition_code_regs
583 /* Define this to return an RTX representing the place where a
584 function returns or receives a value of data type RET_TYPE, a tree
585 node node representing a data type. */
586 #undef TARGET_FUNCTION_VALUE
587 #define TARGET_FUNCTION_VALUE moxie_function_value
588 #undef TARGET_LIBCALL_VALUE
589 #define TARGET_LIBCALL_VALUE moxie_libcall_value
590 #undef TARGET_FUNCTION_VALUE_REGNO_P
591 #define TARGET_FUNCTION_VALUE_REGNO_P moxie_function_value_regno_p
593 #undef TARGET_FRAME_POINTER_REQUIRED
594 #define TARGET_FRAME_POINTER_REQUIRED hook_bool_void_true
596 #undef TARGET_STATIC_CHAIN
597 #define TARGET_STATIC_CHAIN moxie_static_chain
598 #undef TARGET_ASM_TRAMPOLINE_TEMPLATE
599 #define TARGET_ASM_TRAMPOLINE_TEMPLATE moxie_asm_trampoline_template
600 #undef TARGET_TRAMPOLINE_INIT
601 #define TARGET_TRAMPOLINE_INIT moxie_trampoline_init
603 #undef TARGET_OPTION_OVERRIDE
604 #define TARGET_OPTION_OVERRIDE moxie_option_override
606 struct gcc_target targetm = TARGET_INITIALIZER;
608 #include "gt-moxie.h"