Add PR number
[official-gcc.git] / gcc / config / moxie / moxie.c
blobfbe39fef5ad043468d3c1d415d39eadd6a6ed5c6
1 /* Target Code for moxie
2 Copyright (C) 2008-2018 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 #define IN_TARGET_CODE 1
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "backend.h"
27 #include "target.h"
28 #include "rtl.h"
29 #include "tree.h"
30 #include "stringpool.h"
31 #include "attribs.h"
32 #include "df.h"
33 #include "regs.h"
34 #include "memmodel.h"
35 #include "emit-rtl.h"
36 #include "diagnostic-core.h"
37 #include "output.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "calls.h"
41 #include "expr.h"
42 #include "builtins.h"
44 /* This file should be included last. */
45 #include "target-def.h"
47 #define LOSE_AND_RETURN(msgid, x) \
48 do \
49 { \
50 moxie_operand_lossage (msgid, x); \
51 return; \
52 } while (0)
54 /* Worker function for TARGET_RETURN_IN_MEMORY. */
56 static bool
57 moxie_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
59 const HOST_WIDE_INT size = int_size_in_bytes (type);
60 return (size == -1 || size > 2 * UNITS_PER_WORD);
63 /* Define how to find the value returned by a function.
64 VALTYPE is the data type of the value (as a tree).
65 If the precise function being called is known, FUNC is its
66 FUNCTION_DECL; otherwise, FUNC is 0.
68 We always return values in register $r0 for moxie. */
70 static rtx
71 moxie_function_value (const_tree valtype,
72 const_tree fntype_or_decl ATTRIBUTE_UNUSED,
73 bool outgoing ATTRIBUTE_UNUSED)
75 return gen_rtx_REG (TYPE_MODE (valtype), MOXIE_R0);
78 /* Define how to find the value returned by a library function.
80 We always return values in register $r0 for moxie. */
82 static rtx
83 moxie_libcall_value (machine_mode mode,
84 const_rtx fun ATTRIBUTE_UNUSED)
86 return gen_rtx_REG (mode, MOXIE_R0);
89 /* Handle TARGET_FUNCTION_VALUE_REGNO_P.
91 We always return values in register $r0 for moxie. */
93 static bool
94 moxie_function_value_regno_p (const unsigned int regno)
96 return (regno == MOXIE_R0);
99 /* Emit an error message when we're in an asm, and a fatal error for
100 "normal" insns. Formatted output isn't easily implemented, since we
101 use output_operand_lossage to output the actual message and handle the
102 categorization of the error. */
104 static void
105 moxie_operand_lossage (const char *msgid, rtx op)
107 debug_rtx (op);
108 output_operand_lossage ("%s", msgid);
111 /* The PRINT_OPERAND_ADDRESS worker. */
113 static void
114 moxie_print_operand_address (FILE *file, machine_mode, rtx x)
116 switch (GET_CODE (x))
118 case REG:
119 fprintf (file, "(%s)", reg_names[REGNO (x)]);
120 break;
122 case PLUS:
123 switch (GET_CODE (XEXP (x, 1)))
125 case CONST_INT:
126 fprintf (file, "%ld(%s)",
127 INTVAL(XEXP (x, 1)), reg_names[REGNO (XEXP (x, 0))]);
128 break;
129 case SYMBOL_REF:
130 output_addr_const (file, XEXP (x, 1));
131 fprintf (file, "(%s)", reg_names[REGNO (XEXP (x, 0))]);
132 break;
133 case CONST:
135 rtx plus = XEXP (XEXP (x, 1), 0);
136 if (GET_CODE (XEXP (plus, 0)) == SYMBOL_REF
137 && CONST_INT_P (XEXP (plus, 1)))
139 output_addr_const(file, XEXP (plus, 0));
140 fprintf (file,"+%ld(%s)", INTVAL (XEXP (plus, 1)),
141 reg_names[REGNO (XEXP (x, 0))]);
143 else
144 abort();
146 break;
147 default:
148 abort();
150 break;
152 default:
153 output_addr_const (file, x);
154 break;
158 /* The PRINT_OPERAND worker. */
160 static void
161 moxie_print_operand (FILE *file, rtx x, int code)
163 rtx operand = x;
165 /* New code entries should just be added to the switch below. If
166 handling is finished, just return. If handling was just a
167 modification of the operand, the modified operand should be put in
168 "operand", and then do a break to let default handling
169 (zero-modifier) output the operand. */
171 switch (code)
173 case 0:
174 /* No code, print as usual. */
175 break;
177 default:
178 LOSE_AND_RETURN ("invalid operand modifier letter", x);
181 /* Print an operand as without a modifier letter. */
182 switch (GET_CODE (operand))
184 case REG:
185 if (REGNO (operand) > MOXIE_R13)
186 internal_error ("internal error: bad register: %d", REGNO (operand));
187 fprintf (file, "%s", reg_names[REGNO (operand)]);
188 return;
190 case MEM:
191 output_address (GET_MODE (XEXP (operand, 0)), XEXP (operand, 0));
192 return;
194 default:
195 /* No need to handle all strange variants, let output_addr_const
196 do it for us. */
197 if (CONSTANT_P (operand))
199 output_addr_const (file, operand);
200 return;
203 LOSE_AND_RETURN ("unexpected operand", x);
207 /* Per-function machine data. */
208 struct GTY(()) machine_function
210 /* Number of bytes saved on the stack for callee saved registers. */
211 int callee_saved_reg_size;
213 /* Number of bytes saved on the stack for local variables. */
214 int local_vars_size;
216 /* The sum of 2 sizes: locals vars and padding byte for saving the
217 * registers. Used in expand_prologue () and expand_epilogue(). */
218 int size_for_adjusting_sp;
221 /* Zero initialization is OK for all current fields. */
223 static struct machine_function *
224 moxie_init_machine_status (void)
226 return ggc_cleared_alloc<machine_function> ();
230 /* The TARGET_OPTION_OVERRIDE worker. */
231 static void
232 moxie_option_override (void)
234 /* Set the per-function-data initializer. */
235 init_machine_status = moxie_init_machine_status;
237 #ifdef TARGET_MOXIEBOX
238 target_flags |= MASK_HAS_MULX;
239 #endif
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
274 ? (HOST_WIDE_INT) crtl->outgoing_args_size : 0);
277 void
278 moxie_expand_prologue (void)
280 int regno;
281 rtx insn;
283 moxie_compute_frame ();
285 if (flag_stack_usage_info)
286 current_function_static_stack_size = cfun->machine->size_for_adjusting_sp;
288 /* Save callee-saved registers. */
289 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
291 if (!fixed_regs[regno] && df_regs_ever_live_p (regno) && !call_used_regs[regno])
293 insn = emit_insn (gen_movsi_push (gen_rtx_REG (Pmode, regno)));
294 RTX_FRAME_RELATED_P (insn) = 1;
298 if (cfun->machine->size_for_adjusting_sp > 0)
300 int i = cfun->machine->size_for_adjusting_sp;
301 while ((i >= 255) && (i <= 510))
303 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
304 stack_pointer_rtx,
305 GEN_INT (255)));
306 RTX_FRAME_RELATED_P (insn) = 1;
307 i -= 255;
309 if (i <= 255)
311 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
312 stack_pointer_rtx,
313 GEN_INT (i)));
314 RTX_FRAME_RELATED_P (insn) = 1;
316 else
318 rtx reg = gen_rtx_REG (SImode, MOXIE_R12);
319 insn = emit_move_insn (reg, GEN_INT (i));
320 RTX_FRAME_RELATED_P (insn) = 1;
321 insn = emit_insn (gen_subsi3 (stack_pointer_rtx,
322 stack_pointer_rtx,
323 reg));
324 RTX_FRAME_RELATED_P (insn) = 1;
329 void
330 moxie_expand_epilogue (void)
332 int regno;
333 rtx reg;
335 if (cfun->machine->callee_saved_reg_size != 0)
337 reg = gen_rtx_REG (Pmode, MOXIE_R12);
338 if (cfun->machine->callee_saved_reg_size <= 255)
340 emit_move_insn (reg, hard_frame_pointer_rtx);
341 emit_insn (gen_subsi3
342 (reg, reg,
343 GEN_INT (cfun->machine->callee_saved_reg_size)));
345 else
347 emit_move_insn (reg,
348 GEN_INT (-cfun->machine->callee_saved_reg_size));
349 emit_insn (gen_addsi3 (reg, reg, hard_frame_pointer_rtx));
351 for (regno = FIRST_PSEUDO_REGISTER; regno-- > 0; )
352 if (!fixed_regs[regno] && !call_used_regs[regno]
353 && df_regs_ever_live_p (regno))
355 rtx preg = gen_rtx_REG (Pmode, regno);
356 emit_insn (gen_movsi_pop (reg, preg));
360 emit_jump_insn (gen_returner ());
363 /* Implements the macro INITIAL_ELIMINATION_OFFSET, return the OFFSET. */
366 moxie_initial_elimination_offset (int from, int to)
368 int ret;
370 if ((from) == FRAME_POINTER_REGNUM && (to) == HARD_FRAME_POINTER_REGNUM)
372 /* Compute this since we need to use cfun->machine->local_vars_size. */
373 moxie_compute_frame ();
374 ret = -cfun->machine->callee_saved_reg_size;
376 else if ((from) == ARG_POINTER_REGNUM && (to) == HARD_FRAME_POINTER_REGNUM)
377 ret = 0x00;
378 else
379 abort ();
381 return ret;
384 /* Worker function for TARGET_SETUP_INCOMING_VARARGS. */
386 static void
387 moxie_setup_incoming_varargs (cumulative_args_t cum_v,
388 machine_mode mode ATTRIBUTE_UNUSED,
389 tree type ATTRIBUTE_UNUSED,
390 int *pretend_size, int no_rtl)
392 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
393 int regno;
394 int regs = 8 - *cum;
396 *pretend_size = regs < 0 ? 0 : GET_MODE_SIZE (SImode) * regs;
398 if (no_rtl)
399 return;
401 for (regno = *cum; regno < 8; regno++)
403 rtx reg = gen_rtx_REG (SImode, regno);
404 rtx slot = gen_rtx_PLUS (Pmode,
405 gen_rtx_REG (SImode, ARG_POINTER_REGNUM),
406 GEN_INT (UNITS_PER_WORD * (3 + (regno-2))));
408 emit_move_insn (gen_rtx_MEM (SImode, slot), reg);
413 /* Return the fixed registers used for condition codes. */
415 static bool
416 moxie_fixed_condition_code_regs (unsigned int *p1, unsigned int *p2)
418 *p1 = CC_REG;
419 *p2 = INVALID_REGNUM;
420 return true;
423 /* Return the next register to be used to hold a function argument or
424 NULL_RTX if there's no more space. */
426 static rtx
427 moxie_function_arg (cumulative_args_t cum_v, machine_mode mode,
428 const_tree type ATTRIBUTE_UNUSED,
429 bool named ATTRIBUTE_UNUSED)
431 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
433 if (*cum < 8)
434 return gen_rtx_REG (mode, *cum);
435 else
436 return NULL_RTX;
439 #define MOXIE_FUNCTION_ARG_SIZE(MODE, TYPE) \
440 ((MODE) != BLKmode ? GET_MODE_SIZE (MODE) \
441 : (unsigned) int_size_in_bytes (TYPE))
443 static void
444 moxie_function_arg_advance (cumulative_args_t cum_v, machine_mode mode,
445 const_tree type, bool named ATTRIBUTE_UNUSED)
447 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
449 *cum = (*cum < MOXIE_R6
450 ? *cum + ((3 + MOXIE_FUNCTION_ARG_SIZE (mode, type)) / 4)
451 : *cum);
454 /* Return non-zero if the function argument described by TYPE is to be
455 passed by reference. */
457 static bool
458 moxie_pass_by_reference (cumulative_args_t cum ATTRIBUTE_UNUSED,
459 machine_mode mode, const_tree type,
460 bool named ATTRIBUTE_UNUSED)
462 unsigned HOST_WIDE_INT size;
464 if (type)
466 if (AGGREGATE_TYPE_P (type))
467 return true;
468 size = int_size_in_bytes (type);
470 else
471 size = GET_MODE_SIZE (mode);
473 return size > 4*6;
476 /* Some function arguments will only partially fit in the registers
477 that hold arguments. Given a new arg, return the number of bytes
478 that fit in argument passing registers. */
480 static int
481 moxie_arg_partial_bytes (cumulative_args_t cum_v,
482 machine_mode mode,
483 tree type, bool named)
485 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
486 int bytes_left, size;
488 if (*cum >= 8)
489 return 0;
491 if (moxie_pass_by_reference (cum_v, mode, type, named))
492 size = 4;
493 else if (type)
495 if (AGGREGATE_TYPE_P (type))
496 return 0;
497 size = int_size_in_bytes (type);
499 else
500 size = GET_MODE_SIZE (mode);
502 bytes_left = (4 * 6) - ((*cum - 2) * 4);
504 if (size > bytes_left)
505 return bytes_left;
506 else
507 return 0;
510 /* Worker function for TARGET_STATIC_CHAIN. */
512 static rtx
513 moxie_static_chain (const_tree ARG_UNUSED (fndecl_or_type), bool incoming_p)
515 rtx addr, mem;
517 if (incoming_p)
518 addr = plus_constant (Pmode, arg_pointer_rtx, 2 * UNITS_PER_WORD);
519 else
520 addr = plus_constant (Pmode, stack_pointer_rtx, -UNITS_PER_WORD);
522 mem = gen_rtx_MEM (Pmode, addr);
523 MEM_NOTRAP_P (mem) = 1;
525 return mem;
528 /* Worker function for TARGET_ASM_TRAMPOLINE_TEMPLATE. */
530 static void
531 moxie_asm_trampoline_template (FILE *f)
533 fprintf (f, "\tpush $sp, $r0\n");
534 fprintf (f, "\tldi.l $r0, 0x0\n");
535 fprintf (f, "\tsto.l 0x8($fp), $r0\n");
536 fprintf (f, "\tpop $sp, $r0\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, 16);
553 emit_move_insn (mem, fnaddr);
556 /* Return true for memory offset addresses between -32768 and 32767. */
557 bool
558 moxie_offset_address_p (rtx x)
560 x = XEXP (x, 0);
562 if (GET_CODE (x) == PLUS)
564 x = XEXP (x, 1);
565 if (GET_CODE (x) == CONST_INT)
567 unsigned int v = INTVAL (x) & 0xFFFF8000;
568 return (v == 0xFFFF8000 || v == 0x00000000);
571 return 0;
574 /* Helper function for `moxie_legitimate_address_p'. */
576 static bool
577 moxie_reg_ok_for_base_p (const_rtx reg, bool strict_p)
579 int regno = REGNO (reg);
581 if (strict_p)
582 return HARD_REGNO_OK_FOR_BASE_P (regno)
583 || HARD_REGNO_OK_FOR_BASE_P (reg_renumber[regno]);
584 else
585 return !HARD_REGISTER_NUM_P (regno)
586 || HARD_REGNO_OK_FOR_BASE_P (regno);
589 /* Worker function for TARGET_LEGITIMATE_ADDRESS_P. */
591 static bool
592 moxie_legitimate_address_p (machine_mode mode ATTRIBUTE_UNUSED,
593 rtx x, bool strict_p,
594 addr_space_t as)
596 gcc_assert (ADDR_SPACE_GENERIC_P (as));
598 if (GET_CODE(x) == PLUS
599 && REG_P (XEXP (x, 0))
600 && moxie_reg_ok_for_base_p (XEXP (x, 0), strict_p)
601 && CONST_INT_P (XEXP (x, 1))
602 && IN_RANGE (INTVAL (XEXP (x, 1)), -32768, 32767))
603 return true;
604 if (REG_P (x) && moxie_reg_ok_for_base_p (x, strict_p))
605 return true;
606 if (GET_CODE (x) == SYMBOL_REF
607 || GET_CODE (x) == LABEL_REF
608 || GET_CODE (x) == CONST)
609 return true;
610 return false;
613 /* The Global `targetm' Variable. */
615 /* Initialize the GCC target structure. */
617 #undef TARGET_PROMOTE_PROTOTYPES
618 #define TARGET_PROMOTE_PROTOTYPES hook_bool_const_tree_true
620 #undef TARGET_RETURN_IN_MEMORY
621 #define TARGET_RETURN_IN_MEMORY moxie_return_in_memory
622 #undef TARGET_MUST_PASS_IN_STACK
623 #define TARGET_MUST_PASS_IN_STACK must_pass_in_stack_var_size
624 #undef TARGET_PASS_BY_REFERENCE
625 #define TARGET_PASS_BY_REFERENCE moxie_pass_by_reference
626 #undef TARGET_ARG_PARTIAL_BYTES
627 #define TARGET_ARG_PARTIAL_BYTES moxie_arg_partial_bytes
628 #undef TARGET_FUNCTION_ARG
629 #define TARGET_FUNCTION_ARG moxie_function_arg
630 #undef TARGET_FUNCTION_ARG_ADVANCE
631 #define TARGET_FUNCTION_ARG_ADVANCE moxie_function_arg_advance
633 #undef TARGET_LRA_P
634 #define TARGET_LRA_P hook_bool_void_false
636 #undef TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P
637 #define TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P moxie_legitimate_address_p
639 #undef TARGET_SETUP_INCOMING_VARARGS
640 #define TARGET_SETUP_INCOMING_VARARGS moxie_setup_incoming_varargs
642 #undef TARGET_FIXED_CONDITION_CODE_REGS
643 #define TARGET_FIXED_CONDITION_CODE_REGS moxie_fixed_condition_code_regs
645 /* Define this to return an RTX representing the place where a
646 function returns or receives a value of data type RET_TYPE, a tree
647 node representing a data type. */
648 #undef TARGET_FUNCTION_VALUE
649 #define TARGET_FUNCTION_VALUE moxie_function_value
650 #undef TARGET_LIBCALL_VALUE
651 #define TARGET_LIBCALL_VALUE moxie_libcall_value
652 #undef TARGET_FUNCTION_VALUE_REGNO_P
653 #define TARGET_FUNCTION_VALUE_REGNO_P moxie_function_value_regno_p
655 #undef TARGET_FRAME_POINTER_REQUIRED
656 #define TARGET_FRAME_POINTER_REQUIRED hook_bool_void_true
658 #undef TARGET_STATIC_CHAIN
659 #define TARGET_STATIC_CHAIN moxie_static_chain
660 #undef TARGET_ASM_TRAMPOLINE_TEMPLATE
661 #define TARGET_ASM_TRAMPOLINE_TEMPLATE moxie_asm_trampoline_template
662 #undef TARGET_TRAMPOLINE_INIT
663 #define TARGET_TRAMPOLINE_INIT moxie_trampoline_init
665 #undef TARGET_OPTION_OVERRIDE
666 #define TARGET_OPTION_OVERRIDE moxie_option_override
668 #undef TARGET_PRINT_OPERAND
669 #define TARGET_PRINT_OPERAND moxie_print_operand
670 #undef TARGET_PRINT_OPERAND_ADDRESS
671 #define TARGET_PRINT_OPERAND_ADDRESS moxie_print_operand_address
673 #undef TARGET_CONSTANT_ALIGNMENT
674 #define TARGET_CONSTANT_ALIGNMENT constant_alignment_word_strings
676 struct gcc_target targetm = TARGET_INITIALIZER;
678 #include "gt-moxie.h"