osf.h: Standarize copyright statement.
[platform/upstream/gcc.git] / gcc / config / pdp11 / pdp11.h
1 /* Definitions of target machine for GNU compiler, for the pdp-11
2    Copyright (C) 1994, 1995, 1996, 1998, 1999, 2000
3    Free Software Foundation, Inc.
4    Contributed by Michael K. Gschwind (mike@vlsivie.tuwien.ac.at).
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23
24 /* check whether load_fpu_reg or not */
25 #define LOAD_FPU_REG_P(x) ((x)>=8 && (x)<=11)
26 #define NO_LOAD_FPU_REG_P(x) ((x)==12 || (x)==13)
27 #define FPU_REG_P(x)    (LOAD_FPU_REG_P(x) || NO_LOAD_FPU_REG_P(x))
28 #define CPU_REG_P(x)    ((x)<8)
29
30 /* Names to predefine in the preprocessor for this target machine.  */
31
32 #define CPP_PREDEFINES "-Dpdp11"
33
34 /* Print subsidiary information on the compiler version in use.  */
35 #define TARGET_VERSION fprintf (stderr, " (pdp11)");
36
37
38 /* Generate DBX debugging information.  */
39
40 /* #define DBX_DEBUGGING_INFO */
41
42 /* Run-time compilation parameters selecting different hardware subsets.
43 */
44
45 extern int target_flags;
46
47 /* Macro to define tables used to set the flags.
48    This is a list in braces of triplets in braces,
49    each triplet being { "NAME", VALUE, DOC }
50    where VALUE is the bits to set or minus the bits to clear and DOC
51    is the documentation for --help (NULL if intentionally undocumented).
52    An empty string NAME is used to identify the default VALUE.  */
53
54 #define TARGET_SWITCHES  \
55 {   { "fpu", 1, N_("Use hardware floating point") },                    \
56     { "soft-float", -1, N_("Do not use hardware floating point") },     \
57 /* return float result in ac0 */                                        \
58     { "ac0", 2, N_("Return floating point results in ac0") },           \
59     { "no-ac0", -2, N_("Return floating point results in memory") },    \
60 /* is 11/40 */                                                          \
61     { "40", 4, N_("Generate code for an 11/40") },                      \
62     { "no-40", -4, "" },                                                \
63 /* is 11/45 */                                                          \
64     { "45", 8, N_("Generate code for an 11/45") },                      \
65     { "no-45", -8, "" },                                                \
66 /* is 11/10 */                                                          \
67     { "10", -12, N_("Generate code for an 11/10") },                    \
68 /* use movstrhi for bcopy */                                            \
69     { "bcopy", 16, NULL },                                              \
70     { "bcopy-builtin", -16, NULL },                                     \
71 /* use 32 bit for int */                                                \
72     { "int32", 32, N_("Use 32 bit int") },                              \
73     { "no-int16", 32, N_("Use 32 bit int") },                           \
74     { "int16", -32, N_("Use 16 bit int") },                             \
75     { "no-int32", -32, N_("Use 16 bit int") },                          \
76 /* use 32 bit for float */                                              \
77     { "float32", 64, N_("Use 32 bit float") },                          \
78     { "no-float64", 64, N_("Use 32 bit float") },                       \
79     { "float64", -64, N_("Use 64 bit float") },                         \
80     { "no-float32", -64, N_("Use 64 bit float") },                      \
81 /* allow abshi pattern? - can trigger "optimizations" which make code SLOW! */\
82     { "abshi", 128, NULL },                                             \
83     { "no-abshi", -128, NULL },                                         \
84 /* is branching expensive - on a PDP, it's actually really cheap */ \
85 /* this is just to play around and check what code gcc generates */ \
86     { "branch-expensive", 256, NULL },                                  \
87     { "branch-cheap", -256, NULL },                                     \
88 /* split instruction and data memory? */                                \
89     { "split", 1024, N_("Target has split I&D") },                      \
90     { "no-split", -1024, N_("Target does not have split I&D") },        \
91 /* UNIX assembler syntax?  */                                           \
92     { "unix-asm", 2048, N_("Use UNIX assembler syntax") },              \
93     { "dec-asm", -2048, N_("Use DEC assembler syntax") },               \
94 /* default */                   \
95     { "", TARGET_DEFAULT, NULL} \
96 }
97
98 #define TARGET_DEFAULT (1 | 8 | 128 | TARGET_UNIX_ASM_DEFAULT)
99
100 #define TARGET_FPU              (target_flags & 1)
101 #define TARGET_SOFT_FLOAT       (!TARGET_FPU)
102
103 #define TARGET_AC0              ((target_flags & 2) && TARGET_FPU)
104 #define TARGET_NO_AC0           (! TARGET_AC0)
105
106 #define TARGET_45               (target_flags & 8)
107 #define TARGET_40_PLUS          ((target_flags & 4) || (target_flags & 8))
108 #define TARGET_10               (! TARGET_40_PLUS)
109
110 #define TARGET_BCOPY_BUILTIN    (! (target_flags & 16))
111
112 #define TARGET_INT16            (! TARGET_INT32)
113 #define TARGET_INT32            (target_flags & 32)
114
115 #define TARGET_FLOAT32          (target_flags & 64)
116 #define TARGET_FLOAT64          (! TARGET_FLOAT32)
117
118 #define TARGET_ABSHI_BUILTIN    (target_flags & 128)
119
120 #define TARGET_BRANCH_EXPENSIVE (target_flags & 256)
121 #define TARGET_BRANCH_CHEAP     (!TARGET_BRANCH_EXPENSIVE)
122
123 #define TARGET_SPLIT            (target_flags & 1024)
124 #define TARGET_NOSPLIT          (! TARGET_SPLIT)
125
126 #define TARGET_UNIX_ASM         (target_flags & 2048)
127 #define TARGET_UNIX_ASM_DEFAULT 0
128
129 #define ASSEMBLER_DIALECT       (TARGET_UNIX_ASM ? 1 : 0)
130
131 \f
132
133 /* TYPE SIZES */
134 #define CHAR_TYPE_SIZE          8
135 #define SHORT_TYPE_SIZE         16
136 #define INT_TYPE_SIZE           (TARGET_INT16 ? 16 : 32)
137 #define LONG_TYPE_SIZE          32
138 #define LONG_LONG_TYPE_SIZE     64     
139
140 /* if we set FLOAT_TYPE_SIZE to 32, we could have the benefit 
141    of saving core for huge arrays - the definitions are 
142    already in md - but floats can never reside in 
143    an FPU register - we keep the FPU in double float mode 
144    all the time !! */
145 #define FLOAT_TYPE_SIZE         (TARGET_FLOAT32 ? 32 : 64)
146 #define DOUBLE_TYPE_SIZE        64
147 #define LONG_DOUBLE_TYPE_SIZE   64
148
149 /* machine types from ansi */
150 #define SIZE_TYPE "unsigned int"        /* definition of size_t */
151 #define WCHAR_TYPE "int"                /* or long int???? */
152 #define WCHAR_TYPE_SIZE 16
153
154 #define PTRDIFF_TYPE "int"
155
156 /* target machine storage layout */
157
158 /* Define this if most significant bit is lowest numbered
159    in instructions that operate on numbered bit-fields.  */
160 #define BITS_BIG_ENDIAN 0
161
162 /* Define this if most significant byte of a word is the lowest numbered.  */
163 #define BYTES_BIG_ENDIAN 0
164
165 /* Define this if most significant word of a multiword number is numbered.  */
166 #define WORDS_BIG_ENDIAN 1
167
168 /* number of bits in an addressable storage unit */
169 #define BITS_PER_UNIT 8
170
171 /* Width in bits of a "word", which is the contents of a machine register.
172    Note that this is not necessarily the width of data type `int';
173    if using 16-bit ints on a 68000, this would still be 32.
174    But on a machine with 16-bit registers, this would be 16.  */
175 /*  This is a machine with 16-bit registers */
176 #define BITS_PER_WORD 16
177
178 /* Width of a word, in units (bytes). 
179
180    UNITS OR BYTES - seems like units */
181 #define UNITS_PER_WORD 2
182
183 /* Maximum sized of reasonable data type 
184    DImode or Dfmode ...*/
185 #define MAX_FIXED_MODE_SIZE 64  
186
187 /* Width in bits of a pointer.
188    See also the macro `Pmode' defined below.  */
189 #define POINTER_SIZE 16
190
191 /* Allocation boundary (in *bits*) for storing pointers in memory.  */
192 #define POINTER_BOUNDARY 16
193
194 /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
195 #define PARM_BOUNDARY 16
196
197 /* Boundary (in *bits*) on which stack pointer should be aligned.  */
198 #define STACK_BOUNDARY 16
199
200 /* Allocation boundary (in *bits*) for the code of a function.  */
201 #define FUNCTION_BOUNDARY 16
202
203 /* Alignment of field after `int : 0' in a structure.  */
204 #define EMPTY_FIELD_BOUNDARY 16
205
206 /* No data type wants to be aligned rounder than this.  */
207 #define BIGGEST_ALIGNMENT 16
208
209 /* Define this if move instructions will actually fail to work
210    when given unaligned data.  */
211 #define STRICT_ALIGNMENT 1
212 \f
213 /* Standard register usage.  */
214
215 /* Number of actual hardware registers.
216    The hardware registers are assigned numbers for the compiler
217    from 0 to just below FIRST_PSEUDO_REGISTER.
218    All registers that the compiler knows about must be given numbers,
219    even those that are not normally considered general registers.
220
221    we have 8 integer registers, plus 6 float 
222    (don't use scratch float !) */
223
224 #define FIRST_PSEUDO_REGISTER 14
225
226 /* 1 for registers that have pervasive standard uses
227    and are not available for the register allocator.
228
229    On the pdp, these are:
230    Reg 7        = pc;
231    reg 6        = sp;
232    reg 5        = fp;  not necessarily! 
233 */
234
235 /* don't let them touch fp regs for the time being !*/
236
237 #define FIXED_REGISTERS  \
238 {0, 0, 0, 0, 0, 0, 1, 1, \
239  0, 0, 0, 0, 0, 0     }
240
241
242
243 /* 1 for registers not available across function calls.
244    These must include the FIXED_REGISTERS and also any
245    registers that can be used without being saved.
246    The latter must include the registers where values are returned
247    and the register where structure-value addresses are passed.
248    Aside from that, you can include as many other registers as you like.  */
249
250 /* don't know about fp */
251 #define CALL_USED_REGISTERS  \
252 {1, 1, 0, 0, 0, 0, 1, 1, \
253  0, 0, 0, 0, 0, 0 }
254
255
256 /* Make sure everything's fine if we *don't* have an FPU.
257    This assumes that putting a register in fixed_regs will keep the
258    compiler's mitts completely off it.  We don't bother to zero it out
259    of register classes.  Also fix incompatible register naming with
260    the UNIX assembler.
261 */
262 #define CONDITIONAL_REGISTER_USAGE \
263 {                                               \
264   int i;                                        \
265   HARD_REG_SET x;                               \
266   if (!TARGET_FPU)                              \
267     {                                           \
268       COPY_HARD_REG_SET (x, reg_class_contents[(int)FPU_REGS]); \
269       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++ ) \
270        if (TEST_HARD_REG_BIT (x, i))            \
271         fixed_regs[i] = call_used_regs[i] = 1;  \
272     }                                           \
273                                                 \
274   if (TARGET_AC0)                               \
275       call_used_regs[8] = 1;                    \
276   if (TARGET_UNIX_ASM)                          \
277     {                                           \
278       /* Change names of FPU registers for the UNIX assembler.  */ \
279       reg_names[8] = "fr0";                     \
280       reg_names[9] = "fr1";                     \
281       reg_names[10] = "fr2";                    \
282       reg_names[11] = "fr3";                    \
283       reg_names[12] = "fr4";                    \
284       reg_names[13] = "fr5";                    \
285     }                                           \
286 }
287
288 /* Return number of consecutive hard regs needed starting at reg REGNO
289    to hold something of mode MODE.
290    This is ordinarily the length in words of a value of mode MODE
291    but can be less for certain modes in special long registers.
292 */
293
294 #define HARD_REGNO_NREGS(REGNO, MODE)   \
295 ((REGNO < 8)?                                                           \
296     ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)      \
297     :1)
298     
299
300 /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
301    On the pdp, the cpu registers can hold any mode - check alignment
302
303    FPU can only hold DF - simplifies life!
304 */
305 #define HARD_REGNO_MODE_OK(REGNO, MODE) \
306 (((REGNO) < 8)?                                         \
307   ((GET_MODE_BITSIZE(MODE) <= 16)                       \
308    || (GET_MODE_BITSIZE(MODE) == 32 && !((REGNO) & 1))) \
309   :(MODE) == DFmode)
310     
311
312 /* Value is 1 if it is a good idea to tie two pseudo registers
313    when one has mode MODE1 and one has mode MODE2.
314    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
315    for any hard reg, then this must be 0 for correct output.  */
316 #define MODES_TIEABLE_P(MODE1, MODE2) 0
317
318 /* Specify the registers used for certain standard purposes.
319    The values of these macros are register numbers.  */
320
321 /* the pdp11 pc overloaded on a register that the compiler knows about.  */
322 #define PC_REGNUM  7
323
324 /* Register to use for pushing function arguments.  */
325 #define STACK_POINTER_REGNUM 6
326
327 /* Base register for access to local variables of the function.  */
328 #define FRAME_POINTER_REGNUM 5
329
330 /* Value should be nonzero if functions must have frame pointers.
331    Zero means the frame pointer need not be set up (and parms
332    may be accessed via the stack pointer) in functions that seem suitable.
333    This is computed in `reload', in reload1.c.
334   */
335
336 #define FRAME_POINTER_REQUIRED 0
337
338 /* Base register for access to arguments of the function.  */
339 #define ARG_POINTER_REGNUM 5
340
341 /* Register in which static-chain is passed to a function.  */
342 /* ??? - i don't want to give up a reg for this! */
343 #define STATIC_CHAIN_REGNUM 4
344
345 /* Register in which address to store a structure value
346    is passed to a function.  
347    let's make it an invisible first argument!!! */
348
349 #define STRUCT_VALUE 0
350
351 \f
352 /* Define the classes of registers for register constraints in the
353    machine description.  Also define ranges of constants.
354
355    One of the classes must always be named ALL_REGS and include all hard regs.
356    If there is more than one class, another class must be named NO_REGS
357    and contain no registers.
358
359    The name GENERAL_REGS must be the name of a class (or an alias for
360    another name such as ALL_REGS).  This is the class of registers
361    that is allowed by "g" or "r" in a register constraint.
362    Also, registers outside this class are allocated only when
363    instructions express preferences for them.
364
365    The classes must be numbered in nondecreasing order; that is,
366    a larger-numbered class must never be contained completely
367    in a smaller-numbered class.
368
369    For any two classes, it is very desirable that there be another
370    class that represents their union.  */
371    
372 /* The pdp has a couple of classes:
373
374 MUL_REGS are used for odd numbered regs, to use in 16 bit multiplication
375          (even numbered do 32 bit multiply)
376 LMUL_REGS long multiply registers (even numbered regs )
377           (don't need them, all 32 bit regs are even numbered!)
378 GENERAL_REGS is all cpu
379 LOAD_FPU_REGS is the first four cpu regs, they are easier to load
380 NO_LOAD_FPU_REGS is ac4 and ac5, currently - difficult to load them
381 FPU_REGS is all fpu regs 
382 */
383
384 enum reg_class { NO_REGS, MUL_REGS, GENERAL_REGS, LOAD_FPU_REGS, NO_LOAD_FPU_REGS, FPU_REGS, ALL_REGS, LIM_REG_CLASSES };
385
386 #define N_REG_CLASSES (int) LIM_REG_CLASSES
387
388 /* have to allow this till cmpsi/tstsi are fixed in a better way !! */
389 #define SMALL_REGISTER_CLASSES 1
390
391 /* Since GENERAL_REGS is the same class as ALL_REGS,
392    don't give it a different class number; just make it an alias.  */
393
394 /* #define GENERAL_REGS ALL_REGS */
395
396 /* Give names of register classes as strings for dump file.   */
397
398 #define REG_CLASS_NAMES {"NO_REGS", "MUL_REGS", "GENERAL_REGS", "LOAD_FPU_REGS", "NO_LOAD_FPU_REGS", "FPU_REGS", "ALL_REGS" }
399
400 /* Define which registers fit in which classes.
401    This is an initializer for a vector of HARD_REG_SET
402    of length N_REG_CLASSES.  */
403
404 #define REG_CLASS_CONTENTS {{0}, {0x00aa}, {0x00ff}, {0x0f00}, {0x3000}, {0x3f00}, {0x3fff}}
405
406 /* The same information, inverted:
407    Return the class number of the smallest class containing
408    reg number REGNO.  This could be a conditional expression
409    or could index an array.  */
410
411 #define REGNO_REG_CLASS(REGNO)          \
412 ((REGNO)>=8?((REGNO)<=11?LOAD_FPU_REGS:NO_LOAD_FPU_REGS):(((REGNO)&1)?MUL_REGS:GENERAL_REGS))
413
414
415 /* The class value for index registers, and the one for base regs.  */
416 #define INDEX_REG_CLASS GENERAL_REGS
417 #define BASE_REG_CLASS GENERAL_REGS
418
419 /* Get reg_class from a letter such as appears in the machine description.  */
420
421 #define REG_CLASS_FROM_LETTER(C)        \
422 ((C) == 'f' ? FPU_REGS :                        \
423   ((C) == 'd' ? MUL_REGS :                      \
424    ((C) == 'a' ? LOAD_FPU_REGS : NO_REGS)))
425     
426
427 /* The letters I, J, K, L and M in a register constraint string
428    can be used to stand for particular ranges of immediate operands.
429    This macro defines what the ranges are.
430    C is the letter, and VALUE is a constant value.
431    Return 1 if VALUE is in the range specified by C.
432
433    I            bits 31-16 0000
434    J            bits 15-00 0000
435    K            completely random 32 bit
436    L,M,N        -1,1,0 respectively
437    O            where doing shifts in sequence is faster than 
438                 one big shift 
439 */
440
441 #define CONST_OK_FOR_LETTER_P(VALUE, C)  \
442   ((C) == 'I' ? ((VALUE) & 0xffff0000) == 0             \
443    : (C) == 'J' ? ((VALUE) & 0x0000ffff) == 0           \
444    : (C) == 'K' ? (((VALUE) & 0xffff0000) != 0          \
445                    && ((VALUE) & 0x0000ffff) != 0)      \
446    : (C) == 'L' ? ((VALUE) == 1)                        \
447    : (C) == 'M' ? ((VALUE) == -1)                       \
448    : (C) == 'N' ? ((VALUE) == 0)                        \
449    : (C) == 'O' ? (abs(VALUE) >1 && abs(VALUE) <= 4)            \
450    : 0)
451
452 /* Similar, but for floating constants, and defining letters G and H.
453    Here VALUE is the CONST_DOUBLE rtx itself.  */
454
455 #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)  \
456   ((C) == 'G' && XINT (VALUE, 0) == 0 && XINT (VALUE, 1) == 0)
457
458
459 /* Letters in the range `Q' through `U' may be defined in a
460    machine-dependent fashion to stand for arbitrary operand types. 
461    The machine description macro `EXTRA_CONSTRAINT' is passed the
462    operand as its first argument and the constraint letter as its
463    second operand.
464
465    `Q'  is for memory references using take more than 1 instruction.
466    `R'  is for memory references which take 1 word for the instruction.  */
467
468 #define EXTRA_CONSTRAINT(OP,CODE)                                       \
469   ((GET_CODE (OP) != MEM) ? 0                                           \
470    : !legitimate_address_p (GET_MODE (OP), XEXP (OP, 0)) ? 0            \
471    : ((CODE) == 'Q')      ? !simple_memory_operand (OP, GET_MODE (OP))  \
472    : ((CODE) == 'R')      ? simple_memory_operand (OP, GET_MODE (OP))   \
473    : 0)
474
475 /* Given an rtx X being reloaded into a reg required to be
476    in class CLASS, return the class of reg to actually use.
477    In general this is just CLASS; but on some machines
478    in some cases it is preferable to use a more restrictive class.  
479
480 loading is easier into LOAD_FPU_REGS than FPU_REGS! */
481
482 #define PREFERRED_RELOAD_CLASS(X,CLASS)         \
483 (((CLASS) != FPU_REGS)?(CLASS):LOAD_FPU_REGS)
484
485 #define SECONDARY_RELOAD_CLASS(CLASS,MODE,x)    \
486 (((CLASS) == NO_LOAD_FPU_REGS && !(REG_P(x) && LOAD_FPU_REG_P(REGNO(x))))?LOAD_FPU_REGS:NO_REGS)
487
488 /* Return the maximum number of consecutive registers
489    needed to represent mode MODE in a register of class CLASS.  */
490 #define CLASS_MAX_NREGS(CLASS, MODE)    \
491 ((CLASS == GENERAL_REGS || CLASS == MUL_REGS)?                          \
492   ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD):       \
493   1                                                                     \
494 )
495
496 \f
497 /* Stack layout; function entry, exit and calling.  */
498
499 /* Define this if pushing a word on the stack
500    makes the stack pointer a smaller address.  */
501 #define STACK_GROWS_DOWNWARD
502
503 /* Define this if the nominal address of the stack frame
504    is at the high-address end of the local variables;
505    that is, each additional local variable allocated
506    goes at a more negative offset in the frame.
507 */
508 #define FRAME_GROWS_DOWNWARD
509
510 /* Offset within stack frame to start allocating local variables at.
511    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
512    first local allocated.  Otherwise, it is the offset to the BEGINNING
513    of the first local allocated.  */
514 #define STARTING_FRAME_OFFSET 0
515
516 /* If we generate an insn to push BYTES bytes,
517    this says how many the stack pointer really advances by.
518    On the pdp11, the stack is on an even boundary */
519 #define PUSH_ROUNDING(BYTES) ((BYTES + 1) & ~1)
520
521 /* current_first_parm_offset stores the # of registers pushed on the 
522    stack */
523 extern int current_first_parm_offset;
524
525 /* Offset of first parameter from the argument pointer register value.  
526    For the pdp11, this is non-zero to account for the return address.
527         1 - return address
528         2 - frame pointer (always saved, even when not used!!!!)
529                 -- chnage some day !!!:q!
530
531 */
532 #define FIRST_PARM_OFFSET(FNDECL) 4
533
534 /* Value is 1 if returning from a function call automatically
535    pops the arguments described by the number-of-args field in the call.
536    FUNDECL is the declaration node of the function (as a tree),
537    FUNTYPE is the data type of the function (as a tree),
538    or for a library call it is an identifier node for the subroutine name.  */
539
540 #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) 0
541
542 /* Define how to find the value returned by a function.
543    VALTYPE is the data type of the value (as a tree).
544    If the precise function being called is known, FUNC is its FUNCTION_DECL;
545    otherwise, FUNC is 0.  */
546 #define BASE_RETURN_VALUE_REG(MODE) \
547  ((MODE) == DFmode ? 8 : 0) 
548
549 /* On the pdp11 the value is found in R0 (or ac0??? 
550 not without FPU!!!! ) */
551
552 #define FUNCTION_VALUE(VALTYPE, FUNC)  \
553   gen_rtx_REG (TYPE_MODE (VALTYPE), BASE_RETURN_VALUE_REG(TYPE_MODE(VALTYPE)))
554
555 /* and the called function leaves it in the first register.
556    Difference only on machines with register windows.  */
557
558 #define FUNCTION_OUTGOING_VALUE(VALTYPE, FUNC)  \
559   gen_rtx_REG (TYPE_MODE (VALTYPE), BASE_RETURN_VALUE_REG(TYPE_MODE(VALTYPE)))
560
561 /* Define how to find the value returned by a library function
562    assuming the value has mode MODE.  */
563
564 #define LIBCALL_VALUE(MODE)  gen_rtx_REG (MODE, BASE_RETURN_VALUE_REG(MODE))
565
566 /* 1 if N is a possible register number for a function value
567    as seen by the caller.
568    On the pdp, the first "output" reg is the only register thus used. 
569
570 maybe ac0 ? - as option someday! */
571
572 #define FUNCTION_VALUE_REGNO_P(N) (((N) == 0) || (TARGET_AC0 && (N) == 8))
573
574 /* should probably return DImode and DFmode in memory,lest
575    we fill up all regs!
576
577  have to, else we crash - exception: maybe return result in 
578  ac0 if DFmode and FPU present - compatibility problem with
579  libraries for non-floating point ...
580 */
581
582 #define RETURN_IN_MEMORY(TYPE)  \
583   (TYPE_MODE(TYPE) == DImode || (TYPE_MODE(TYPE) == DFmode && ! TARGET_AC0))
584
585
586 /* 1 if N is a possible register number for function argument passing.
587    - not used on pdp */
588
589 #define FUNCTION_ARG_REGNO_P(N) 0
590 \f
591 /* Define a data type for recording info about an argument list
592    during the scan of that argument list.  This data type should
593    hold all necessary information about the function itself
594    and about the args processed so far, enough to enable macros
595    such as FUNCTION_ARG to determine where the next arg should go.
596
597 */
598
599 #define CUMULATIVE_ARGS int
600
601 /* Initialize a variable CUM of type CUMULATIVE_ARGS
602    for a call to a function whose data type is FNTYPE.
603    For a library call, FNTYPE is 0.
604
605    ...., the offset normally starts at 0, but starts at 1 word
606    when the function gets a structure-value-address as an
607    invisible first argument.  */
608
609 #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT)       \
610  ((CUM) = 0)
611
612 /* Update the data in CUM to advance over an argument
613    of mode MODE and data type TYPE.
614    (TYPE is null for libcalls where that information may not be available.)  
615
616 */
617
618
619 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)    \
620  ((CUM) += ((MODE) != BLKmode                   \
621             ? (GET_MODE_SIZE (MODE))            \
622             : (int_size_in_bytes (TYPE))))      
623
624 /* Determine where to put an argument to a function.
625    Value is zero to push the argument on the stack,
626    or a hard register in which to store the argument.
627
628    MODE is the argument's machine mode.
629    TYPE is the data type of the argument (as a tree).
630     This is null for libcalls where that information may
631     not be available.
632    CUM is a variable of type CUMULATIVE_ARGS which gives info about
633     the preceding args and about the function being called.
634    NAMED is nonzero if this argument is a named parameter
635     (otherwise it is an extra parameter matching an ellipsis).  */
636
637 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED)  0
638
639 /* Define where a function finds its arguments.
640    This would be different from FUNCTION_ARG if we had register windows.  */
641 /*
642 #define FUNCTION_INCOMING_ARG(CUM, MODE, TYPE, NAMED)   \
643   FUNCTION_ARG (CUM, MODE, TYPE, NAMED)
644 */
645
646 /* For an arg passed partly in registers and partly in memory,
647    this is the number of registers used.
648    For args passed entirely in registers or entirely in memory, zero.  */
649
650 #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0
651
652 /* This macro generates the assembly code for function entry. */
653 #define FUNCTION_PROLOGUE(FILE, SIZE) \
654     output_function_prologue(FILE, SIZE);
655
656 /* Output assembler code to FILE to increment profiler label # LABELNO
657    for profiling a function entry.  */
658
659 #define FUNCTION_PROFILER(FILE, LABELNO)  \
660    abort ();
661
662 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
663    the stack pointer does not matter.  The value is tested only in
664    functions that have frame pointers.
665    No definition is equivalent to always zero.  */
666
667 extern int may_call_alloca;
668
669 #define EXIT_IGNORE_STACK       1
670
671 /* This macro generates the assembly code for function exit,
672    on machines that need it.  If FUNCTION_EPILOGUE is not defined
673    then individual return instructions are generated for each
674    return statement.  Args are same as for FUNCTION_PROLOGUE.
675 */
676
677 #define FUNCTION_EPILOGUE(FILE, SIZE) \
678     output_function_epilogue(FILE, SIZE);
679   
680 #define INITIAL_FRAME_POINTER_OFFSET(DEPTH_VAR) \
681 {                                                               \
682   int offset, regno;                                            \
683   offset = get_frame_size();                                    \
684   for (regno = 0; regno < 8; regno++)                           \
685     if (regs_ever_live[regno] && ! call_used_regs[regno])       \
686       offset += 2;                                              \
687   for (regno = 8; regno < 14; regno++)                          \
688     if (regs_ever_live[regno] && ! call_used_regs[regno])       \
689       offset += 8;                                              \
690   /* offset -= 2;   no fp on stack frame */                     \
691   (DEPTH_VAR) = offset;                                         \
692 }   
693     
694 \f
695 /* Addressing modes, and classification of registers for them.  */
696
697 #define HAVE_POST_INCREMENT 1
698 /* #define HAVE_POST_DECREMENT 0 */
699
700 #define HAVE_PRE_DECREMENT 1
701 /* #define HAVE_PRE_INCREMENT 0 */
702
703 /* Macros to check register numbers against specific register classes.  */
704
705 /* These assume that REGNO is a hard or pseudo reg number.
706    They give nonzero only if REGNO is a hard reg of the suitable class
707    or a pseudo reg currently allocated to a suitable hard reg.
708    Since they use reg_renumber, they are safe only once reg_renumber
709    has been allocated, which happens in local-alloc.c.  */
710
711 #define REGNO_OK_FOR_INDEX_P(REGNO) \
712   ((REGNO) < 8 || (unsigned) reg_renumber[REGNO] < 8)
713 #define REGNO_OK_FOR_BASE_P(REGNO)  \
714   ((REGNO) < 8 || (unsigned) reg_renumber[REGNO] < 8)
715
716 /* Now macros that check whether X is a register and also,
717    strictly, whether it is in a specified class.
718 */
719
720
721 \f
722 /* Maximum number of registers that can appear in a valid memory address.  */
723
724 #define MAX_REGS_PER_ADDRESS 2
725
726 /* Recognize any constant value that is a valid address.  */
727
728 #define CONSTANT_ADDRESS_P(X)  CONSTANT_P (X)
729
730 /* Nonzero if the constant value X is a legitimate general operand.
731    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
732
733 #define LEGITIMATE_CONSTANT_P(X) (1)
734
735 /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
736    and check its validity for a certain class.
737    We have two alternate definitions for each of them.
738    The usual definition accepts all pseudo regs; the other rejects
739    them unless they have been allocated suitable hard regs.
740    The symbol REG_OK_STRICT causes the latter definition to be used.
741
742    Most source files want to accept pseudo regs in the hope that
743    they will get allocated to the class that the insn wants them to be in.
744    Source files for reload pass need to be strict.
745    After reload, it makes no difference, since pseudo regs have
746    been eliminated by then.  */
747
748 #ifndef REG_OK_STRICT
749
750 /* Nonzero if X is a hard reg that can be used as an index
751    or if it is a pseudo reg.  */
752 #define REG_OK_FOR_INDEX_P(X) (1)
753 /* Nonzero if X is a hard reg that can be used as a base reg
754    or if it is a pseudo reg.  */
755 #define REG_OK_FOR_BASE_P(X) (1)
756
757 #else
758
759 /* Nonzero if X is a hard reg that can be used as an index.  */
760 #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
761 /* Nonzero if X is a hard reg that can be used as a base reg.  */
762 #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
763
764 #endif
765 \f
766 /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
767    that is a valid memory address for an instruction.
768    The MODE argument is the machine mode for the MEM expression
769    that wants to use this address.
770
771 */
772
773 #define GO_IF_LEGITIMATE_ADDRESS(mode, operand, ADDR) \
774 {                                                     \
775     rtx xfoob;                                                          \
776                                                                         \
777     /* accept (R0) */                                                   \
778     if (GET_CODE (operand) == REG                                       \
779         && REG_OK_FOR_BASE_P(operand))                                  \
780       goto ADDR;                                                        \
781                                                                         \
782     /* accept @#address */                                              \
783     if (CONSTANT_ADDRESS_P (operand))                                   \
784       goto ADDR;                                                        \
785                                                                         \
786     /* accept X(R0) */                                                  \
787     if (GET_CODE (operand) == PLUS                                      \
788         && GET_CODE (XEXP (operand, 0)) == REG                          \
789         && REG_OK_FOR_BASE_P (XEXP (operand, 0))                        \
790         && CONSTANT_ADDRESS_P (XEXP (operand, 1)))                      \
791       goto ADDR;                                                        \
792                                                                         \
793     /* accept -(R0) */                                                  \
794     if (GET_CODE (operand) == PRE_DEC                                   \
795         && GET_CODE (XEXP (operand, 0)) == REG                          \
796         && REG_OK_FOR_BASE_P (XEXP (operand, 0)))                       \
797       goto ADDR;                                                        \
798                                                                         \
799     /* accept (R0)+ */                                                  \
800     if (GET_CODE (operand) == POST_INC                                  \
801         && GET_CODE (XEXP (operand, 0)) == REG                          \
802         && REG_OK_FOR_BASE_P (XEXP (operand, 0)))                       \
803       goto ADDR;                                                        \
804                                                                         \
805     /* handle another level of indirection ! */                         \
806     if (GET_CODE(operand) != MEM)                                       \
807       goto fail;                                                        \
808                                                                         \
809     xfoob = XEXP (operand, 0);                                          \
810                                                                         \
811     /* (MEM:xx (MEM:xx ())) is not valid for SI, DI and currently */    \
812     /* also forbidden for float, because we have to handle this */      \
813     /* in output_move_double and/or output_move_quad() - we could */    \
814     /* do it, but currently it's not worth it!!! */                     \
815     /* now that DFmode cannot go into CPU register file, */             \
816     /* maybe I should allow float ... */                                \
817     /*  but then I have to handle memory-to-memory moves in movdf ?? */ \
818                                                                         \
819     if (GET_MODE_BITSIZE(mode) > 16)                                    \
820       goto fail;                                                        \
821                                                                         \
822     /* accept @(R0) - which is @0(R0) */                                \
823     if (GET_CODE (xfoob) == REG                                         \
824         && REG_OK_FOR_BASE_P(xfoob))                                    \
825       goto ADDR;                                                        \
826                                                                         \
827     /* accept @address */                                               \
828     if (CONSTANT_ADDRESS_P (xfoob))                                     \
829       goto ADDR;                                                        \
830                                                                         \
831     /* accept @X(R0) */                                                 \
832     if (GET_CODE (xfoob) == PLUS                                        \
833         && GET_CODE (XEXP (xfoob, 0)) == REG                            \
834         && REG_OK_FOR_BASE_P (XEXP (xfoob, 0))                          \
835         && CONSTANT_ADDRESS_P (XEXP (xfoob, 1)))                        \
836       goto ADDR;                                                        \
837                                                                         \
838     /* accept @-(R0) */                                                 \
839     if (GET_CODE (xfoob) == PRE_DEC                                     \
840         && GET_CODE (XEXP (xfoob, 0)) == REG                            \
841         && REG_OK_FOR_BASE_P (XEXP (xfoob, 0)))                         \
842       goto ADDR;                                                        \
843                                                                         \
844     /* accept @(R0)+ */                                                 \
845     if (GET_CODE (xfoob) == POST_INC                                    \
846         && GET_CODE (XEXP (xfoob, 0)) == REG                            \
847         && REG_OK_FOR_BASE_P (XEXP (xfoob, 0)))                         \
848       goto ADDR;                                                        \
849                                                                         \
850   /* anything else is invalid */                                        \
851   fail: ;                                                               \
852 }
853
854 \f
855 /* Try machine-dependent ways of modifying an illegitimate address
856    to be legitimate.  If we find one, return the new, valid address.
857    This macro is used in only one place: `memory_address' in explow.c.
858
859    OLDX is the address as it was before break_out_memory_refs was called.
860    In some cases it is useful to look at this to decide what needs to be done.
861
862    MODE and WIN are passed so that this macro can use
863    GO_IF_LEGITIMATE_ADDRESS.
864
865    It is always safe for this macro to do nothing.  It exists to recognize
866    opportunities to optimize the output.  */
867
868 #define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)     {}
869
870
871 /* Go to LABEL if ADDR (a legitimate address expression)
872    has an effect that depends on the machine mode it is used for.
873    On the pdp this is for predec/postinc */
874
875 #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)        \
876  { if (GET_CODE (ADDR) == POST_INC || GET_CODE (ADDR) == PRE_DEC)       \
877      goto LABEL;                                                        \
878  }
879
880 \f
881 /* Specify the machine mode that this machine uses
882    for the index in the tablejump instruction.  */
883 #define CASE_VECTOR_MODE HImode
884
885 /* Define this if a raw index is all that is needed for a
886    `tablejump' insn.  */
887 #define CASE_TAKES_INDEX_RAW
888
889 /* Define as C expression which evaluates to nonzero if the tablejump
890    instruction expects the table to contain offsets from the address of the
891    table.
892    Do not define this if the table should contain absolute addresses. */
893 /* #define CASE_VECTOR_PC_RELATIVE 1 */
894
895 /* Specify the tree operation to be used to convert reals to integers.  */
896 #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR
897
898 /* This is the kind of divide that is easiest to do in the general case.  */
899 #define EASY_DIV_EXPR TRUNC_DIV_EXPR
900
901 /* Define this as 1 if `char' should by default be signed; else as 0.  */
902 #define DEFAULT_SIGNED_CHAR 1
903
904 /* Max number of bytes we can move from memory to memory
905    in one reasonably fast instruction.  
906 */
907
908 #define MOVE_MAX 2
909
910 /* Zero extension is faster if the target is known to be zero */
911 /* #define SLOW_ZERO_EXTEND */
912
913 /* Nonzero if access to memory by byte is slow and undesirable. -
914 */
915 #define SLOW_BYTE_ACCESS 0
916
917 /* Do not break .stabs pseudos into continuations.  */
918 #define DBX_CONTIN_LENGTH 0
919
920 /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
921    is done just by pretending it is already truncated.  */
922 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
923
924
925 /* Add any extra modes needed to represent the condition code.
926
927    CCFPmode is used for FPU, but should we use a separate reg? */
928 #define EXTRA_CC_MODES CC(CCFPmode, "CCFP")
929
930 /* Give a comparison code (EQ, NE etc) and the first operand of a COMPARE,
931    return the mode to be used for the comparison.  For floating-point, CCFPmode
932    should be used. */
933
934 #define SELECT_CC_MODE(OP,X,Y)  \
935 (GET_MODE_CLASS(GET_MODE(X)) == MODE_FLOAT? CCFPmode : CCmode)
936
937 /* We assume that the store-condition-codes instructions store 0 for false
938    and some other value for true.  This is the value stored for true.  */
939
940 /* #define STORE_FLAG_VALUE 1 */
941
942 /* Specify the machine mode that pointers have.
943    After generation of rtl, the compiler makes no further distinction
944    between pointers and any other objects of this machine mode.  */
945 #define Pmode HImode
946
947 /* A function address in a call instruction
948    is a word address (for indexing purposes)
949    so give the MEM rtx a word's mode.  */
950 #define FUNCTION_MODE HImode
951
952 /* Define this if addresses of constant functions
953    shouldn't be put through pseudo regs where they can be cse'd.
954    Desirable on machines where ordinary constants are expensive
955    but a CALL with constant address is cheap.  */
956 /* #define NO_FUNCTION_CSE */
957
958 /* Compute the cost of computing a constant rtl expression RTX
959    whose rtx-code is CODE.  The body of this macro is a portion
960    of a switch statement.  If the code is computed here,
961    return it with a return statement.  Otherwise, break from the switch. 
962
963    -1, 0, 1 are cheaper for add, sub ... 
964 */
965
966 #define CONST_COSTS(RTX,CODE,OUTER_CODE) \
967   case CONST_INT:                                               \
968     if (INTVAL(RTX) == 0                                        \
969         || INTVAL(RTX) == -1                                    \
970         || INTVAL(RTX) == 1)                                    \
971       return 0;                                                 \
972   case CONST:                                                   \
973   case LABEL_REF:                                               \
974   case SYMBOL_REF:                                              \
975     /* twice as expensive as REG */                             \
976     return 2;                                                   \
977   case CONST_DOUBLE:                                            \
978     /* twice (or 4 times) as expensive as 16 bit */             \
979     return 4;
980 \f
981 /* cost of moving one register class to another */
982 #define REGISTER_MOVE_COST(CLASS1, CLASS2) register_move_cost(CLASS1, CLASS2)
983
984 /* Tell emit-rtl.c how to initialize special values on a per-function base.  */
985 extern int optimize;
986 extern struct rtx_def *cc0_reg_rtx;
987
988 #define CC_STATUS_MDEP rtx
989
990 #define CC_STATUS_MDEP_INIT (cc_status.mdep = 0)
991 \f
992 /* Tell final.c how to eliminate redundant test instructions.  */
993
994 /* Here we define machine-dependent flags and fields in cc_status
995    (see `conditions.h').  */
996
997 #define CC_IN_FPU 04000 
998
999 /* Do UPDATE_CC if EXP is a set, used in
1000    NOTICE_UPDATE_CC 
1001
1002    floats only do compare correctly, else nullify ...
1003
1004    get cc0 out soon ...
1005 */
1006
1007 /* Store in cc_status the expressions
1008    that the condition codes will describe
1009    after execution of an instruction whose pattern is EXP.
1010    Do not alter them if the instruction would not alter the cc's.  */
1011
1012 #define NOTICE_UPDATE_CC(EXP, INSN) \
1013 { if (GET_CODE (EXP) == SET)                                    \
1014     {                                                           \
1015       notice_update_cc_on_set(EXP, INSN);                       \
1016     }                                                           \
1017   else if (GET_CODE (EXP) == PARALLEL                           \
1018            && GET_CODE (XVECEXP (EXP, 0, 0)) == SET)            \
1019     {                                                           \
1020       notice_update_cc_on_set(XVECEXP (EXP, 0, 0), INSN);       \
1021     }                                                           \
1022   else if (GET_CODE (EXP) == CALL)                              \
1023     { /* all bets are off */ CC_STATUS_INIT; }                  \
1024   if (cc_status.value1 && GET_CODE (cc_status.value1) == REG    \
1025       && cc_status.value2                                       \
1026       && reg_overlap_mentioned_p (cc_status.value1, cc_status.value2)) \
1027     {                                                           \
1028       printf ("here!\n");                                       \
1029       cc_status.value2 = 0;                                     \
1030     }                                                           \
1031 }
1032 \f
1033 /* Control the assembler format that we output.  */
1034
1035 /* Output at beginning of assembler file.  */
1036
1037 #if 0
1038 #define ASM_FILE_START(FILE) \
1039 (                                                               \
1040 fprintf (FILE, "\t.data\n"),                                    \
1041 fprintf (FILE, "$help$: . = .+8 ; space for tmp moves!\n")      \
1042 /* do we need reg def's R0 = %0 etc ??? */                      \
1043 )
1044 #else
1045 #define ASM_FILE_START(FILE)
1046 #endif
1047
1048
1049 /* Output to assembler file text saying following lines
1050    may contain character constants, extra white space, comments, etc.  */
1051
1052 #define ASM_APP_ON ""
1053
1054 /* Output to assembler file text saying following lines
1055    no longer contain unusual constructs.  */
1056
1057 #define ASM_APP_OFF ""
1058
1059 /* Output before read-only data.  */
1060
1061 #define TEXT_SECTION_ASM_OP "\t.text\n"
1062
1063 /* Output before writable data.  */
1064
1065 #define DATA_SECTION_ASM_OP "\t.data\n"
1066
1067 /* How to refer to registers in assembler output.
1068    This sequence is indexed by compiler's hard-register-number (see above).  */
1069
1070 #define REGISTER_NAMES \
1071 {"r0", "r1", "r2", "r3", "r4", "r5", "sp", "pc",     \
1072  "ac0", "ac1", "ac2", "ac3", "ac4", "ac5" }
1073
1074 /* How to renumber registers for dbx and gdb.  */
1075
1076 #define DBX_REGISTER_NUMBER(REGNO) (REGNO)
1077
1078 /* This is how to output the definition of a user-level label named NAME,
1079    such as the label on a static function or variable NAME.  */
1080
1081 #define ASM_OUTPUT_LABEL(FILE,NAME)     \
1082   do { assemble_name (FILE, NAME); fputs (":\n", FILE); } while (0)
1083
1084 /* This is how to output a command to make the user-level label named NAME
1085    defined for reference from other files.  */
1086
1087 #define ASM_GLOBALIZE_LABEL(FILE,NAME)  \
1088   do { fputs ("\t.globl ", FILE); assemble_name (FILE, NAME); fputs("\n", FILE); } while (0)
1089
1090 /* The prefix to add to user-visible assembler symbols. */
1091
1092 #define USER_LABEL_PREFIX "_"
1093
1094 /* This is how to output an internal numbered label where
1095    PREFIX is the class of label and NUM is the number within the class.  */
1096
1097 #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)      \
1098   fprintf (FILE, "%s_%d:\n", PREFIX, NUM)
1099
1100 /* This is how to store into the string LABEL
1101    the symbol_ref name of an internal numbered label where
1102    PREFIX is the class of label and NUM is the number within the class.
1103    This is suitable for output with `assemble_name'.  */
1104
1105 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)   \
1106   sprintf (LABEL, "*%s_%d", PREFIX, NUM)
1107
1108 /* This is how to output an assembler line defining a `double' constant.  */
1109
1110 #define ASM_OUTPUT_DOUBLE(FILE,VALUE)  \
1111   fprintf (FILE, "\tdouble %.20e\n", (VALUE))
1112
1113 /* This is how to output an assembler line defining a `float' constant.  */
1114
1115 #define ASM_OUTPUT_FLOAT(FILE,VALUE)  \
1116   fprintf (FILE, "\tfloat %.12e\n", (VALUE))
1117
1118 /* Likewise for `short' and `char' constants.  */
1119
1120 #define ASM_OUTPUT_SHORT(FILE,VALUE)  \
1121 ( fprintf (FILE, TARGET_UNIX_ASM ? "\t" : "\t.word "),  \
1122   output_addr_const_pdp11 (FILE, (VALUE)),              \
1123   fprintf (FILE, " /*short*/\n"))
1124
1125 #define ASM_OUTPUT_CHAR(FILE,VALUE)  \
1126 ( fprintf (FILE, "\t.byte "),                   \
1127   output_addr_const_pdp11 (FILE, (VALUE)),              \
1128   fprintf (FILE, " /* char */\n"))
1129
1130 /* This is how to output an assembler line for a numeric constant byte.
1131    This won't actually be used since we define ASM_OUTPUT_CHAR.
1132 */
1133
1134 #define ASM_OUTPUT_BYTE(FILE,VALUE)  \
1135   fprintf (FILE, "\t.byte %o\n", (VALUE))
1136
1137 #define ASM_OUTPUT_ASCII(FILE, P, SIZE)  \
1138   output_ascii (FILE, P, SIZE)
1139
1140 /* This is how to output an element of a case-vector that is absolute.  */
1141
1142 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)  \
1143   fprintf (FILE, "\t%sL_%d\n", TARGET_UNIX_ASM ? "" : ".word ", VALUE)
1144
1145 /* This is how to output an element of a case-vector that is relative.
1146    Don't define this if it is not supported. */
1147
1148 /* #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL) */
1149
1150 /* This is how to output an assembler line
1151    that says to advance the location counter
1152    to a multiple of 2**LOG bytes. 
1153
1154    who needs this????
1155 */
1156
1157 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
1158   switch (LOG)                          \
1159     {                                   \
1160       case 0:                           \
1161         break;                          \
1162       case 1:                           \
1163         fprintf (FILE, "\t.even\n");    \
1164         break;                          \
1165       default:                          \
1166         abort ();                       \
1167     }
1168
1169 #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
1170   fprintf (FILE, "\t.=.+ %o\n", (SIZE))
1171
1172 /* This says how to output an assembler line
1173    to define a global common symbol.  */
1174
1175 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)  \
1176 ( fprintf ((FILE), ".globl "),                  \
1177   assemble_name ((FILE), (NAME)),               \
1178   fprintf ((FILE), "\n"),                       \
1179   assemble_name ((FILE), (NAME)),               \
1180   fprintf ((FILE), ": .=.+ %o\n", (ROUNDED))            \
1181 )
1182
1183 /* This says how to output an assembler line
1184    to define a local common symbol.  */
1185
1186 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)  \
1187 ( assemble_name ((FILE), (NAME)),                               \
1188   fprintf ((FILE), ":\t.=.+ %o\n", (ROUNDED)))
1189
1190 /* Store in OUTPUT a string (made with alloca) containing
1191    an assembler-name for a local static variable named NAME.
1192    LABELNO is an integer which is different for each call.  */
1193
1194 #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO)  \
1195 ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10),    \
1196   sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO)))
1197
1198 /* Define the parentheses used to group arithmetic operations
1199    in assembler code.  */
1200
1201 #define ASM_OPEN_PAREN "["
1202 #define ASM_CLOSE_PAREN "]"
1203
1204 /* Define results of standard character escape sequences.  */
1205 #define TARGET_BELL 007
1206 #define TARGET_BS 010
1207 #define TARGET_TAB 011
1208 #define TARGET_NEWLINE 012
1209 #define TARGET_VT 013
1210 #define TARGET_FF 014
1211 #define TARGET_CR 015
1212
1213 /* Print operand X (an rtx) in assembler syntax to file FILE.
1214    CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
1215    For `%' followed by punctuation, CODE is the punctuation and X is null.
1216
1217 */
1218
1219
1220 #define PRINT_OPERAND(FILE, X, CODE)  \
1221 { if (CODE == '#') fprintf (FILE, "#");                                 \
1222   else if (GET_CODE (X) == REG)                                         \
1223     fprintf (FILE, "%s", reg_names[REGNO (X)]);                         \
1224   else if (GET_CODE (X) == MEM)                                         \
1225     output_address (XEXP (X, 0));                                       \
1226   else if (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) != SImode)      \
1227     { union { double d; int i[2]; } u;                                  \
1228       u.i[0] = CONST_DOUBLE_LOW (X); u.i[1] = CONST_DOUBLE_HIGH (X);    \
1229       fprintf (FILE, "#%.20e", u.d); }                                  \
1230   else { putc ('$', FILE); output_addr_const_pdp11 (FILE, X); }}
1231 \f
1232 /* Print a memory address as an operand to reference that memory location.  */
1233
1234 #define PRINT_OPERAND_ADDRESS(FILE, ADDR)  \
1235  print_operand_address (FILE, ADDR)
1236
1237 #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)                 \
1238 (                                                       \
1239   fprintf (FILE, "\tmov %s, -(sp)\n", reg_names[REGNO]) \
1240 )
1241
1242 #define ASM_OUTPUT_REG_POP(FILE,REGNO)                          \
1243 (                                                               \
1244   fprintf (FILE, "\tmov (sp)+, %s\n", reg_names[REGNO])         \
1245 )
1246
1247
1248 #define ASM_IDENTIFY_GCC(FILE)                  \
1249     fprintf(FILE, "gcc_compiled:\n")
1250
1251 /* trampoline - how should i do it in separate i+d ? 
1252    have some allocate_trampoline magic??? 
1253
1254    the following should work for shared I/D: */
1255
1256 /* lets see whether this works as trampoline:
1257 MV      #STATIC, $4     0x940Y  0x0000 <- STATIC; Y = STATIC_CHAIN_REGNUM
1258 JMP     FUNCTION        0x0058  0x0000 <- FUNCTION
1259 */
1260
1261 #define TRAMPOLINE_TEMPLATE(FILE)       \
1262 {                                       \
1263   if (TARGET_SPLIT)                     \
1264     abort();                            \
1265                                         \
1266   ASM_OUTPUT_SHORT (FILE, GEN_INT (0x9400+STATIC_CHAIN_REGNUM)); \
1267   ASM_OUTPUT_SHORT (FILE, const0_rtx);                          \
1268   ASM_OUTPUT_SHORT (FILE, GEN_INT(0x0058));                     \
1269   ASM_OUTPUT_SHORT (FILE, const0_rtx);                          \
1270 }
1271
1272 #define TRAMPOLINE_SIZE 8
1273 #define TRAMPOLINE_ALIGN 16
1274
1275 /* Emit RTL insns to initialize the variable parts of a trampoline.
1276    FNADDR is an RTX for the address of the function's pure code.
1277    CXT is an RTX for the static chain value for the function.  */
1278
1279 #define INITIALIZE_TRAMPOLINE(TRAMP,FNADDR,CXT) \
1280 {                                       \
1281   if (TARGET_SPLIT)                     \
1282     abort();                            \
1283                                         \
1284   emit_move_insn (gen_rtx_MEM (HImode, plus_constant (TRAMP, 2)), CXT); \
1285   emit_move_insn (gen_rtx_MEM (HImode, plus_constant (TRAMP, 6)), FNADDR); \
1286 }
1287
1288
1289 /* Some machines may desire to change what optimizations are
1290    performed for various optimization levels.   This macro, if
1291    defined, is executed once just after the optimization level is
1292    determined and before the remainder of the command options have
1293    been parsed.  Values set in this macro are used as the default
1294    values for the other command line options.
1295
1296    LEVEL is the optimization level specified; 2 if -O2 is
1297    specified, 1 if -O is specified, and 0 if neither is specified.  */
1298
1299 #define OPTIMIZATION_OPTIONS(LEVEL,SIZE)                                \
1300 {                                                                       \
1301   if (LEVEL >= 3)                                                       \
1302     {                                                                   \
1303       if (! SIZE)                                                       \
1304         flag_inline_functions           = 1;                            \
1305       flag_omit_frame_pointer           = 1;                            \
1306       /* flag_unroll_loops                      = 1; */                 \
1307     }                                                                   \
1308 }
1309
1310
1311 /* Provide the costs of a rtl expression.  This is in the body of a
1312    switch on CODE. 
1313
1314    we don't say how expensive SImode is - pretty expensive!!!
1315
1316    there is something wrong in MULT because MULT is not 
1317    as cheap as total = 2 even if we can shift!
1318
1319    if optimizing for size make mult etc cheap, but not 1, so when 
1320    in doubt the faster insn is chosen.
1321 */
1322
1323 #define RTX_COSTS(X,CODE,OUTER_CODE) \
1324   case MULT:                                                            \
1325     if (optimize_size)                                                  \
1326       total = COSTS_N_INSNS(2);                                         \
1327     else                                                                \
1328       total = COSTS_N_INSNS (11);                                       \
1329     break;                                                              \
1330   case DIV:                                                             \
1331     if (optimize_size)                                                  \
1332       total = COSTS_N_INSNS(2);                                         \
1333     else                                                                \
1334       total = COSTS_N_INSNS (25);                                       \
1335     break;                                                              \
1336   case MOD:                                                             \
1337     if (optimize_size)                                                  \
1338       total = COSTS_N_INSNS(2);                                         \
1339     else                                                                \
1340       total = COSTS_N_INSNS (26);                                       \
1341     break;                                                              \
1342   case ABS:                                                             \
1343     /* equivalent to length, so same for optimize_size */               \
1344     total = COSTS_N_INSNS (3);                                          \
1345     break;                                                              \
1346   case ZERO_EXTEND:                                                     \
1347     /* only used for: qi->hi */                                         \
1348     total = COSTS_N_INSNS(1);                                           \
1349     break;                                                              \
1350   case SIGN_EXTEND:                                                     \
1351     if (GET_MODE(X) == HImode)                                          \
1352         total = COSTS_N_INSNS(1);                                       \
1353     else if (GET_MODE(X) == SImode)                                     \
1354         total = COSTS_N_INSNS(6);                                       \
1355     else                                                                \
1356         total = COSTS_N_INSNS(2);                                       \
1357     break;                                                              \
1358   /* case LSHIFT: */                                                    \
1359   case ASHIFT:                                                          \
1360   case LSHIFTRT:                                                        \
1361   case ASHIFTRT:                                                        \
1362     if (optimize_size)                                                  \
1363       total = COSTS_N_INSNS(1);                                         \
1364     else if (GET_MODE(X) ==  QImode)                                    \
1365     {                                                                   \
1366       if (GET_CODE(XEXP (X,1)) != CONST_INT)                            \
1367         total = COSTS_N_INSNS(8); /* worst case */                      \
1368       else                                                              \
1369         total = COSTS_N_INSNS(INTVAL(XEXP (X,1)));                      \
1370     }                                                                   \
1371     else if (GET_MODE(X) == HImode)                                     \
1372     {                                                                   \
1373       if (GET_CODE(XEXP (X,1)) == CONST_INT)                            \
1374       {                                                                 \
1375         if (abs (INTVAL (XEXP (X, 1))) == 1)                            \
1376           total = COSTS_N_INSNS(1);                                     \
1377         else                                                            \
1378           total = COSTS_N_INSNS(2.5 + 0.5 *INTVAL(XEXP(X,1)));          \
1379       }                                                                 \
1380       else /* worst case */                                             \
1381         total = COSTS_N_INSNS (10);                                     \
1382     }                                                                   \
1383     else if (GET_MODE(X) == SImode)                                     \
1384     {                                                                   \
1385       if (GET_CODE(XEXP (X,1)) == CONST_INT)                            \
1386           total = COSTS_N_INSNS(2.5 + 0.5 *INTVAL(XEXP(X,1)));          \
1387       else /* worst case */                                             \
1388         total = COSTS_N_INSNS(18);                                      \
1389     }                                                                   \
1390     break;
1391
1392
1393 /* there is no point in avoiding branches on a pdp, 
1394    since branches are really cheap - I just want to find out
1395    how much difference the BRANCH_COST macro makes in code */
1396 #define BRANCH_COST (TARGET_BRANCH_CHEAP ? 0 : 1)
1397
1398
1399 #define COMPARE_FLAG_MODE HImode
1400