1 /* Target Definitions for moxie. 2 Copyright (C) 2008-2017 Free Software Foundation, Inc. 3 Contributed by Anthony Green. 4 5 This file is part of GCC. 6 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. 11 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. 16 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/>. */ 20 21 #ifndef GCC_MOXIE_H 22 #define GCC_MOXIE_H 23 24 #undef STARTFILE_SPEC 25 #define STARTFILE_SPEC "%{!mno-crt0:crt0%O%s} crti.o%s crtbegin.o%s" 26 27 /* Provide an ENDFILE_SPEC appropriate for svr4. Here we tack on our own 28 magical crtend.o file (see crtstuff.c) which provides part of the 29 support for getting C++ file-scope static object constructed before 30 entering `main', followed by the normal svr3/svr4 "finalizer" file, 31 which is either `gcrtn.o' or `crtn.o'. */ 32 33 #undef ENDFILE_SPEC 34 #define ENDFILE_SPEC "crtend.o%s crtn.o%s" 35 36 /* Provide a LIB_SPEC appropriate for svr4. Here we tack on the default 37 standard C library (unless we are building a shared library) and 38 the simulator BSP code. */ 39 40 #undef LIB_SPEC 41 #define LIB_SPEC "%{!shared:%{!symbolic:-lc}}" 42 43 #undef LINK_SPEC 44 #define LINK_SPEC "%{h*} %{v:-V} %{!mel:-EB} %{mel:-EL}\ 45 %{static:-Bstatic} %{shared:-shared} %{symbolic:-Bsymbolic}" 46 47 #ifndef MULTILIB_DEFAULTS 48 #define MULTILIB_DEFAULTS { "meb" } 49 #endif 50 51 /* Layout of Source Language Data Types */ 52 53 #define INT_TYPE_SIZE 32 54 #define SHORT_TYPE_SIZE 16 55 #define LONG_TYPE_SIZE 32 56 #define LONG_LONG_TYPE_SIZE 64 57 58 #define FLOAT_TYPE_SIZE 32 59 #define DOUBLE_TYPE_SIZE 64 60 #define LONG_DOUBLE_TYPE_SIZE 64 61 62 #define DEFAULT_SIGNED_CHAR 0 63 64 #undef SIZE_TYPE 65 #define SIZE_TYPE "unsigned int" 66 67 #undef PTRDIFF_TYPE 68 #define PTRDIFF_TYPE "int" 69 70 #undef WCHAR_TYPE 71 #define WCHAR_TYPE "unsigned int" 72 73 #undef WCHAR_TYPE_SIZE 74 #define WCHAR_TYPE_SIZE BITS_PER_WORD 75 76 /* Registers... 77 78 $fp - frame pointer 79 $sp - stack pointer 80 $r0 - general purpose 32-bit register. 81 $r1 - general purpose 32-bit register. 82 $r2 - general purpose 32-bit register. 83 $r3 - general purpose 32-bit register. 84 $r4 - general purpose 32-bit register. 85 $r5 - general purpose 32-bit register. 86 $r6 - general purpose 32-bit register. 87 $r7 - general purpose 32-bit register. 88 $r8 - general purpose 32-bit register. 89 $r9 - general purpose 32-bit register. 90 $r10 - general purpose 32-bit register. 91 $r11 - general purpose 32-bit register. 92 $r12 - general purpose 32-bit register. 93 $r13 - reserved for execution environment. 94 95 Special Registers... 96 97 $pc - 32-bit program counter. 98 99 */ 100 101 #define REGISTER_NAMES { \ 102 "$fp", "$sp", "$r0", "$r1", \ 103 "$r2", "$r3", "$r4", "$r5", \ 104 "$r6", "$r7", "$r8", "$r9", \ 105 "$r10", "$r11", "$r12", "$r13", \ 106 "?fp", "?ap", "$pc", "?cc" } 107 108 #define MOXIE_FP 0 109 #define MOXIE_SP 1 110 #define MOXIE_R0 2 111 #define MOXIE_R1 3 112 #define MOXIE_R2 4 113 #define MOXIE_R3 5 114 #define MOXIE_R4 6 115 #define MOXIE_R5 7 116 #define MOXIE_R6 8 117 #define MOXIE_R7 9 118 #define MOXIE_R8 10 119 #define MOXIE_R9 11 120 #define MOXIE_R10 12 121 #define MOXIE_R11 13 122 #define MOXIE_R12 14 123 #define MOXIE_R13 15 124 #define MOXIE_QFP 16 125 #define MOXIE_QAP 17 126 #define MOXIE_PC 18 127 #define MOXIE_CC 19 128 129 #define FIRST_PSEUDO_REGISTER 20 130 131 enum reg_class 132 { 133 NO_REGS, 134 GENERAL_REGS, 135 SPECIAL_REGS, 136 CC_REGS, 137 ALL_REGS, 138 LIM_REG_CLASSES 139 }; 140 141 142 #define REG_CLASS_CONTENTS \ 143 { { 0x00000000 }, /* Empty */ \ 144 { 0x0003FFFF }, /* $fp, $sp, $r0 to $r13, ?fp */ \ 145 { 0x00040000 }, /* $pc */ \ 146 { 0x00080000 }, /* ?cc */ \ 147 { 0x000FFFFF } /* All registers */ \ 148 } 149 150 #define N_REG_CLASSES LIM_REG_CLASSES 151 152 #define REG_CLASS_NAMES {\ 153 "NO_REGS", \ 154 "GENERAL_REGS", \ 155 "SPECIAL_REGS", \ 156 "CC_REGS", \ 157 "ALL_REGS" } 158 159 #define FIXED_REGISTERS { 1, 1, 0, 0, \ 160 0, 0, 0, 0, \ 161 0, 0, 0, 0, \ 162 0, 0, 0, 1, \ 163 1, 1, 1, 1 } 164 165 #define CALL_USED_REGISTERS { 1, 1, 1, 1, \ 166 1, 1, 1, 1, \ 167 0, 0, 0, 0, \ 168 0, 0, 1, 1, \ 169 1, 1, 1, 1 } 170 171 /* We can't copy to or from our CC register. */ 172 #define AVOID_CCMODE_COPIES 1 173 174 /* A C expression that is nonzero if it is permissible to store a 175 value of mode MODE in hard register number REGNO (or in several 176 registers starting with that one). All gstore registers are 177 equivalent, so we can set this to 1. */ 178 #define HARD_REGNO_MODE_OK(R,M) 1 179 180 /* A C expression whose value is a register class containing hard 181 register REGNO. */ 182 #define REGNO_REG_CLASS(R) ((R < MOXIE_PC) ? GENERAL_REGS : \ 183 (R == MOXIE_CC ? CC_REGS : SPECIAL_REGS)) 184 185 /* A C expression for the number of consecutive hard registers, 186 starting at register number REGNO, required to hold a value of mode 187 MODE. */ 188 #define HARD_REGNO_NREGS(REGNO, MODE) \ 189 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) \ 190 / UNITS_PER_WORD) 191 192 /* A C expression that is nonzero if a value of mode MODE1 is 193 accessible in mode MODE2 without copying. */ 194 #define MODES_TIEABLE_P(MODE1, MODE2) 1 195 196 /* The Overall Framework of an Assembler File */ 197 198 #undef ASM_SPEC 199 #define ASM_SPEC "%{!mel:-EB} %{mel:-EL}" 200 #define ASM_COMMENT_START "#" 201 #define ASM_APP_ON "" 202 #define ASM_APP_OFF "" 203 204 #define FILE_ASM_OP "\t.file\n" 205 206 /* Switch to the text or data segment. */ 207 #define TEXT_SECTION_ASM_OP "\t.text" 208 #define DATA_SECTION_ASM_OP "\t.data" 209 210 /* Assembler Commands for Alignment */ 211 212 #define ASM_OUTPUT_ALIGN(STREAM,POWER) \ 213 fprintf (STREAM, "\t.p2align\t%d\n", POWER); 214 215 /* Output and Generation of Labels */ 216 217 #define GLOBAL_ASM_OP "\t.global\t" 218 219 /* Passing Arguments in Registers */ 220 221 /* A C type for declaring a variable that is used as the first 222 argument of `FUNCTION_ARG' and other related values. */ 223 #define CUMULATIVE_ARGS unsigned int 224 225 /* If defined, the maximum amount of space required for outgoing arguments 226 will be computed and placed into the variable 227 `current_function_outgoing_args_size'. No space will be pushed 228 onto the stack for each call; instead, the function prologue should 229 increase the stack frame size by this amount. */ 230 #define ACCUMULATE_OUTGOING_ARGS 1 231 232 /* A C statement (sans semicolon) for initializing the variable CUM 233 for the state at the beginning of the argument list. 234 For moxie, the first arg is passed in register 2 (aka $r0). */ 235 #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,FNDECL,N_NAMED_ARGS) \ 236 (CUM = MOXIE_R0) 237 238 /* How Scalar Function Values Are Returned */ 239 240 /* STACK AND CALLING */ 241 242 /* Define this macro if pushing a word onto the stack moves the stack 243 pointer to a smaller address. */ 244 #define STACK_GROWS_DOWNWARD 1 245 246 /* Offset from the frame pointer to the first local variable slot to 247 be allocated. */ 248 #define STARTING_FRAME_OFFSET 0 249 250 /* Define this if the above stack space is to be considered part of the 251 space allocated by the caller. */ 252 #define OUTGOING_REG_PARM_STACK_SPACE(FNTYPE) 1 253 #define STACK_PARMS_IN_REG_PARM_AREA 254 255 /* Define this if it is the responsibility of the caller to allocate 256 the area reserved for arguments passed in registers. */ 257 #define REG_PARM_STACK_SPACE(FNDECL) (6 * UNITS_PER_WORD) 258 259 /* Offset from the argument pointer register to the first argument's 260 address. On some machines it may depend on the data type of the 261 function. */ 262 #define FIRST_PARM_OFFSET(F) 12 263 264 /* Define this macro to nonzero value if the addresses of local variable slots 265 are at negative offsets from the frame pointer. */ 266 #define FRAME_GROWS_DOWNWARD 1 267 268 /* Define this macro as a C expression that is nonzero for registers that are 269 used by the epilogue or the return pattern. The stack and frame 270 pointer registers are already assumed to be used as needed. */ 271 #define EPILOGUE_USES(R) (R == MOXIE_R5) 272 273 /* A C expression whose value is RTL representing the location of the 274 incoming return address at the beginning of any function, before 275 the prologue. */ 276 #define INCOMING_RETURN_ADDR_RTX \ 277 gen_frame_mem (Pmode, \ 278 plus_constant (Pmode, stack_pointer_rtx, UNITS_PER_WORD)) 279 280 /* Describe how we implement __builtin_eh_return. */ 281 #define EH_RETURN_DATA_REGNO(N) ((N) < 4 ? (N+2) : INVALID_REGNUM) 282 283 /* Store the return handler into the call frame. */ 284 #define EH_RETURN_HANDLER_RTX \ 285 gen_frame_mem (Pmode, \ 286 plus_constant (Pmode, frame_pointer_rtx, UNITS_PER_WORD)) 287 288 /* Storage Layout */ 289 290 #define BITS_BIG_ENDIAN 0 291 #define BYTES_BIG_ENDIAN ( ! TARGET_LITTLE_ENDIAN ) 292 #define WORDS_BIG_ENDIAN ( ! TARGET_LITTLE_ENDIAN ) 293 294 /* Alignment required for a function entry point, in bits. */ 295 #define FUNCTION_BOUNDARY 16 296 297 /* Define this macro as a C expression which is nonzero if accessing 298 less than a word of memory (i.e. a `char' or a `short') is no 299 faster than accessing a word of memory. */ 300 #define SLOW_BYTE_ACCESS 1 301 302 /* Number of storage units in a word; normally the size of a 303 general-purpose register, a power of two from 1 or 8. */ 304 #define UNITS_PER_WORD 4 305 306 /* Define this macro to the minimum alignment enforced by hardware 307 for the stack pointer on this machine. The definition is a C 308 expression for the desired alignment (measured in bits). */ 309 #define STACK_BOUNDARY 32 310 311 /* Normal alignment required for function parameters on the stack, in 312 bits. All stack parameters receive at least this much alignment 313 regardless of data type. */ 314 #define PARM_BOUNDARY 32 315 316 /* Alignment of field after `int : 0' in a structure. */ 317 #define EMPTY_FIELD_BOUNDARY 32 318 319 /* No data type wants to be aligned rounder than this. */ 320 #define BIGGEST_ALIGNMENT 32 321 322 /* The best alignment to use in cases where we have a choice. */ 323 #define FASTEST_ALIGNMENT 32 324 325 /* Every structures size must be a multiple of 8 bits. */ 326 #define STRUCTURE_SIZE_BOUNDARY 8 327 328 /* Look at the fundamental type that is used for a bit-field and use 329 that to impose alignment on the enclosing structure. 330 struct s {int a:8}; should have same alignment as "int", not "char". */ 331 #define PCC_BITFIELD_TYPE_MATTERS 1 332 333 /* Largest integer machine mode for structures. If undefined, the default 334 is GET_MODE_SIZE(DImode). */ 335 #define MAX_FIXED_MODE_SIZE 32 336 337 /* Make strings word-aligned so strcpy from constants will be faster. */ 338 #define CONSTANT_ALIGNMENT(EXP, ALIGN) \ 339 ((TREE_CODE (EXP) == STRING_CST \ 340 && (ALIGN) < FASTEST_ALIGNMENT) \ 341 ? FASTEST_ALIGNMENT : (ALIGN)) 342 343 /* Make arrays of chars word-aligned for the same reasons. */ 344 #define DATA_ALIGNMENT(TYPE, ALIGN) \ 345 (TREE_CODE (TYPE) == ARRAY_TYPE \ 346 && TYPE_MODE (TREE_TYPE (TYPE)) == QImode \ 347 && (ALIGN) < FASTEST_ALIGNMENT ? FASTEST_ALIGNMENT : (ALIGN)) 348 349 /* Set this nonzero if move instructions will actually fail to work 350 when given unaligned data. */ 351 #define STRICT_ALIGNMENT 1 352 353 /* Generating Code for Profiling */ 354 #define FUNCTION_PROFILER(FILE,LABELNO) (abort (), 0) 355 356 /* Trampolines for Nested Functions. */ 357 #define TRAMPOLINE_SIZE (2 + 6 + 4 + 2 + 6) 358 359 /* Alignment required for trampolines, in bits. */ 360 #define TRAMPOLINE_ALIGNMENT 32 361 362 /* An alias for the machine mode for pointers. */ 363 #define Pmode SImode 364 365 /* An alias for the machine mode used for memory references to 366 functions being called, in `call' RTL expressions. */ 367 #define FUNCTION_MODE QImode 368 369 /* The register number of the stack pointer register, which must also 370 be a fixed register according to `FIXED_REGISTERS'. */ 371 #define STACK_POINTER_REGNUM MOXIE_SP 372 373 /* The register number of the frame pointer register, which is used to 374 access automatic variables in the stack frame. */ 375 #define FRAME_POINTER_REGNUM MOXIE_QFP 376 377 /* The register number of the arg pointer register, which is used to 378 access the function's argument list. */ 379 #define ARG_POINTER_REGNUM MOXIE_QAP 380 381 #define HARD_FRAME_POINTER_REGNUM MOXIE_FP 382 383 #define ELIMINABLE_REGS \ 384 {{ FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM }, \ 385 { ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM }} 386 387 /* This macro returns the initial difference between the specified pair 388 of registers. */ 389 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \ 390 do { \ 391 (OFFSET) = moxie_initial_elimination_offset ((FROM), (TO)); \ 392 } while (0) 393 394 /* A C expression that is nonzero if REGNO is the number of a hard 395 register in which function arguments are sometimes passed. */ 396 #define FUNCTION_ARG_REGNO_P(r) (r >= MOXIE_R0 && r <= MOXIE_R5) 397 398 /* A macro whose definition is the name of the class to which a valid 399 base register must belong. A base register is one used in an 400 address which is the register value plus a displacement. */ 401 #define BASE_REG_CLASS GENERAL_REGS 402 403 #define INDEX_REG_CLASS NO_REGS 404 405 #define HARD_REGNO_OK_FOR_BASE_P(NUM) \ 406 ((unsigned) (NUM) < FIRST_PSEUDO_REGISTER \ 407 && (REGNO_REG_CLASS(NUM) == GENERAL_REGS \ 408 || (NUM) == HARD_FRAME_POINTER_REGNUM)) 409 410 /* A C expression which is nonzero if register number NUM is suitable 411 for use as a base register in operand addresses. */ 412 #ifdef REG_OK_STRICT 413 #define REGNO_OK_FOR_BASE_P(NUM) \ 414 (HARD_REGNO_OK_FOR_BASE_P(NUM) \ 415 || HARD_REGNO_OK_FOR_BASE_P(reg_renumber[(NUM)])) 416 #else 417 #define REGNO_OK_FOR_BASE_P(NUM) \ 418 ((NUM) >= FIRST_PSEUDO_REGISTER || HARD_REGNO_OK_FOR_BASE_P(NUM)) 419 #endif 420 421 /* A C expression which is nonzero if register number NUM is suitable 422 for use as an index register in operand addresses. */ 423 #define REGNO_OK_FOR_INDEX_P(NUM) MOXIE_FP 424 425 /* The maximum number of bytes that a single instruction can move 426 quickly between memory and registers or between two memory 427 locations. */ 428 #define MOVE_MAX 4 429 #define TRULY_NOOP_TRUNCATION(op,ip) 1 430 431 /* All load operations zero extend. */ 432 #define LOAD_EXTEND_OP(MEM) ZERO_EXTEND 433 434 /* A number, the maximum number of registers that can appear in a 435 valid memory address. */ 436 #define MAX_REGS_PER_ADDRESS 1 437 438 #define TRULY_NOOP_TRUNCATION(op,ip) 1 439 440 /* An alias for a machine mode name. This is the machine mode that 441 elements of a jump-table should have. */ 442 #define CASE_VECTOR_MODE SImode 443 444 /* Run-time Target Specification */ 445 446 #define TARGET_CPU_CPP_BUILTINS() \ 447 { \ 448 builtin_define_std ("moxie"); \ 449 builtin_define_std ("MOXIE"); \ 450 if (TARGET_LITTLE_ENDIAN) \ 451 builtin_define ("__MOXIE_LITTLE_ENDIAN__"); \ 452 else \ 453 builtin_define ("__MOXIE_BIG_ENDIAN__"); \ 454 } 455 456 #define HAS_LONG_UNCOND_BRANCH true 457 458 #endif /* GCC_MOXIE_H */ 459