home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / config / tm-alliant.h < prev    next >
C/C++ Source or Header  |  1991-06-03  |  55KB  |  1,436 lines

  1. /* Definitions of target machine for GNU compiler.  Alliant FX version.
  2.    Copyright (C) 1989 Free Software Foundation, Inc.
  3.    Adapted from tm-m68k.h by Paul Petersen (petersen@uicsrd.csrd.uiuc.edu)
  4.    and Joe Weening (weening@gang-of-four.stanford.edu).
  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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* This file is based on tm-m68k.h, simplified by removing support for
  24.    the Sun FPA and other things not applicable to the Alliant.  Some
  25.    remnants of these features remain.  */
  26.  
  27. /* Names to predefine in the preprocessor for this target machine.  */
  28.  
  29. #define CPP_PREDEFINES "-Dmc68000 -Dalliant -Dunix"
  30.  
  31. /* Print subsidiary information on the compiler version in use.  */
  32.  
  33. #define TARGET_VERSION fprintf (stderr, " (Alliant)");
  34.  
  35. /* Run-time compilation parameters selecting different hardware
  36.    subsets.  The Alliant IP is an mc68020.  (Older mc68010-based IPs
  37.    are no longer supported.)  The Alliant CE is 68020-compatible, and
  38.    also has floating point, vector and concurrency instructions.
  39.  
  40.    Although the IP doesn't have floating point, it emulates it in the
  41.    operating system.  Using this generally is faster than running code
  42.    compiled with -msoft-float, because the soft-float code still uses
  43.    (simulated) FP registers and ends up emulating several fmove{s,d}
  44.    instructions per call.  So I don't recommend using soft-float for
  45.    any Alliant code.  -- JSW
  46. */
  47.  
  48. extern int target_flags;
  49.  
  50. /* Macros used in the machine description to test the flags.  */
  51.  
  52. /* Compile for a 68020 (not a 68000 or 68010).  */
  53. #define TARGET_68020 (target_flags & 1)
  54. /* Compile CE insns for floating point (not library calls).  */
  55. #define TARGET_CE (target_flags & 2)
  56. /* Compile using 68020 bitfield insns.  */
  57. #define TARGET_BITFIELD (target_flags & 4)
  58. /* Compile with 16-bit `int'.  */
  59. #define TARGET_SHORT (target_flags & 040)
  60.  
  61. /* Default 3 means compile 68020 and CE instructions.  We don't use
  62.    bitfield instructions because there appears to be a bug in the
  63.    implementation of bfins on the CE.  */
  64.  
  65. #define TARGET_DEFAULT 3
  66.  
  67. /* Define __HAVE_CE__ in preprocessor according to the -m flags.
  68.    This will control the use of inline FP insns in certain macros.
  69.    Also inform the program which CPU this is for.  */
  70.  
  71. #if TARGET_DEFAULT & 02
  72.  
  73. /* -mce is the default */
  74. #define CPP_SPEC \
  75. "%{!msoft-float:-D__HAVE_CE__ }\
  76. %{m68000:-Dmc68010}%{mc68000:-Dmc68010}%{!mc68000:%{!m68000:-Dmc68020}}"
  77.  
  78. #else
  79.  
  80. /* -msoft-float is the default */
  81. #define CPP_SPEC \
  82. "%{mce:-D__HAVE_CE__ }\
  83. %{m68000:-Dmc68010}%{mc68000:-Dmc68010}%{!mc68000:%{!m68000:-Dmc68020}}"
  84.  
  85. #endif
  86.  
  87. /* Link with libg.a when debugging, for dbx's sake.  */
  88.  
  89. #define LIB_SPEC "%{g:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p} "
  90.  
  91. /* Make the linker remove temporary labels, since the Alliant assembler
  92.    doesn't.  */
  93.  
  94. #define LINK_SPEC "-X"
  95.  
  96. /* Every structure or union's size must be a multiple of 2 bytes.  */
  97.  
  98. #define STRUCTURE_SIZE_BOUNDARY 16
  99.  
  100. /* This is BSD, so it wants DBX format.  */
  101.  
  102. #define DBX_DEBUGGING_INFO
  103.  
  104. /* Macro to define tables used to set the flags.
  105.    This is a list in braces of pairs in braces,
  106.    each pair being { "NAME", VALUE }
  107.    where VALUE is the bits to set or minus the bits to clear.
  108.    An empty string NAME is used to identify the default VALUE.  */
  109.  
  110. #define TARGET_SWITCHES  \
  111.   { { "68020", 5},                \
  112.     { "c68020", 5},                \
  113.     { "bitfield", 4},                \
  114.     { "68000", -7},                \
  115.     { "c68000", -7},                \
  116.     { "soft-float", -2},            \
  117.     { "nobitfield", -4},            \
  118.     { "short", 040},                \
  119.     { "noshort", -040},                \
  120.     { "", TARGET_DEFAULT}}
  121.  
  122. /* target machine storage layout */
  123.  
  124. /* Define this if most significant bit is lowest numbered
  125.    in instructions that operate on numbered bit-fields.
  126.    This is true for 68020 insns such as bfins and bfexts.
  127.    We make it true always by avoiding using the single-bit insns
  128.    except in special cases with constant bit numbers.  */
  129. #define BITS_BIG_ENDIAN 1
  130.  
  131. /* Define this if most significant byte of a word is the lowest numbered.  */
  132. /* That is true on the 68000.  */
  133. #define BYTES_BIG_ENDIAN 1
  134.  
  135. /* Define this if most significant word of a multiword number is numbered.  */
  136. /* For 68000 we can decide arbitrarily
  137.    since there are no machine instructions for them.  */
  138. #define WORDS_BIG_ENDIAN 0
  139.  
  140. /* number of bits in an addressible storage unit */
  141. #define BITS_PER_UNIT 8
  142.  
  143. /* Width in bits of a "word", which is the contents of a machine register.
  144.    Note that this is not necessarily the width of data type `int';
  145.    if using 16-bit ints on a 68000, this would still be 32.
  146.    But on a machine with 16-bit registers, this would be 16.  */
  147. #define BITS_PER_WORD 32
  148.  
  149. /* Width of a word, in units (bytes).  */
  150. #define UNITS_PER_WORD 4
  151.  
  152. /* Width in bits of a pointer.
  153.    See also the macro `Pmode' defined below.  */
  154. #define POINTER_SIZE 32
  155.  
  156. /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
  157. #define PARM_BOUNDARY (TARGET_SHORT ? 16 : 32)
  158.  
  159. /* Boundary (in *bits*) on which stack pointer should be aligned.  */
  160. #define STACK_BOUNDARY 16
  161.  
  162. /* Allocation boundary (in *bits*) for the code of a function.  */
  163. #define FUNCTION_BOUNDARY 16
  164.  
  165. /* Alignment of field after `int : 0' in a structure.  */
  166. #define EMPTY_FIELD_BOUNDARY 16
  167.  
  168. /* No data type wants to be aligned rounder than this.  */
  169. #define BIGGEST_ALIGNMENT 16
  170.  
  171. /* Define this if move instructions will actually fail to work
  172.    when given unaligned data.  */
  173. #define STRICT_ALIGNMENT
  174.  
  175. /* Define number of bits in most basic integer type.
  176.    (If undefined, default is BITS_PER_WORD).  */
  177.  
  178. #define INT_TYPE_SIZE (TARGET_SHORT ? 16 : 32)
  179.  
  180. /* Standard register usage.  */
  181.  
  182. /* Number of actual hardware registers.
  183.    The hardware registers are assigned numbers for the compiler
  184.    from 0 to just below FIRST_PSEUDO_REGISTER.
  185.    All registers that the compiler knows about must be given numbers,
  186.    even those that are not normally considered general registers.
  187.    For the Alliant, we give the data registers numbers 0-7,
  188.    the address registers numbers 010-017,
  189.    and the floating point registers numbers 020-027.  */
  190. #define FIRST_PSEUDO_REGISTER 24
  191.  
  192. /* 1 for registers that have pervasive standard uses
  193.    and are not available for the register allocator.
  194.    On the Alliant, these are a0 (argument pointer),
  195.    a6 (frame pointer) and a7 (stack pointer).  */
  196. #define FIXED_REGISTERS  \
  197.  {0, 0, 0, 0, 0, 0, 0, 0, \
  198.   1, 0, 0, 0, 0, 0, 1, 1, \
  199.   0, 0, 0, 0, 0, 0, 0, 0  }
  200.  
  201. /* 1 for registers not available across function calls.
  202.    These must include the FIXED_REGISTERS and also any
  203.    registers that can be used without being saved.
  204.    The latter must include the registers where values are returned
  205.    and the register where structure-value addresses are passed.
  206.    Aside from that, you can include as many other registers as you like.
  207.    The Alliant calling sequence allows a function to use any register,
  208.    so we include them all here.  */
  209.  
  210. #define CALL_USED_REGISTERS \
  211.  {1, 1, 1, 1, 1, 1, 1, 1, \
  212.   1, 1, 1, 1, 1, 1, 1, 1, \
  213.   1, 1, 1, 1, 1, 1, 1, 1  }
  214.  
  215. /* Return number of consecutive hard regs needed starting at reg REGNO
  216.    to hold something of mode MODE.
  217.    This is ordinarily the length in words of a value of mode MODE
  218.    but can be less for certain modes in special long registers.
  219.  
  220.    On the Alliant, ordinary registers hold 32 bits worth;
  221.    for the FP registers, a single register is always enough for
  222.    any floating-point value.  */
  223. #define HARD_REGNO_NREGS(REGNO, MODE)   \
  224.   ((REGNO) >= 16 ? GET_MODE_NUNITS (MODE)    \
  225.    : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
  226.  
  227. /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
  228.    On the Alliant, the cpu registers can hold any mode but the FP registers
  229.    can hold only floating point.  */
  230. #define HARD_REGNO_MODE_OK(REGNO, MODE)        \
  231.   ((REGNO) < 16 || GET_MODE_CLASS (MODE) == MODE_FLOAT    \
  232.    || GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT)
  233.  
  234. /* Value is 1 if it is a good idea to tie two pseudo registers
  235.    when one has mode MODE1 and one has mode MODE2.
  236.    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
  237.    for any hard reg, then this must be 0 for correct output.  */
  238. #define MODES_TIEABLE_P(MODE1, MODE2)            \
  239.    (((MODE1) == SFmode || (MODE1) == DFmode        \
  240.      || (MODE1) == SCmode || (MODE1) == DCmode)        \
  241.        == ((MODE2) == SFmode || (MODE2) == DFmode    \
  242.        || (MODE2) == SCmode || (MODE2) == DCmode))
  243.  
  244. /* Specify the registers used for certain standard purposes.
  245.    The values of these macros are register numbers.  */
  246.  
  247. /* m68000 pc isn't overloaded on a register.  */
  248. /* #define PC_REGNUM  */
  249.  
  250. /* Register to use for pushing function arguments.  */
  251. #define STACK_POINTER_REGNUM 15
  252.  
  253. /* Base register for access to local variables of the function.  */
  254. #define FRAME_POINTER_REGNUM 14
  255.  
  256. /* Value should be nonzero if functions must have frame pointers.
  257.    Zero means the frame pointer need not be set up (and parms
  258.    may be accessed via the stack pointer) in functions that seem suitable.
  259.    This is computed in `reload', in reload1.c.  */
  260. /* Set for now on Alliant until we find a way to make this work with
  261.    their calling sequence.  */
  262. #define FRAME_POINTER_REQUIRED 1
  263.  
  264. /* Base register for access to arguments of the function.  */
  265. #define ARG_POINTER_REGNUM  8 
  266.  
  267. /* Register in which static-chain is passed to a function.  */
  268. #define STATIC_CHAIN_REGNUM 10
  269.  
  270. /* Register in which address to store a structure value
  271.    is passed to a function.  */
  272. #define STRUCT_VALUE_REGNUM 9
  273.  
  274. /* Define the classes of registers for register constraints in the
  275.    machine description.  Also define ranges of constants.
  276.  
  277.    One of the classes must always be named ALL_REGS and include all hard regs.
  278.    If there is more than one class, another class must be named NO_REGS
  279.    and contain no registers.
  280.  
  281.    The name GENERAL_REGS must be the name of a class (or an alias for
  282.    another name such as ALL_REGS).  This is the class of registers
  283.    that is allowed by "g" or "r" in a register constraint.
  284.    Also, registers outside this class are allocated only when
  285.    instructions express preferences for them.
  286.  
  287.    The classes must be numbered in nondecreasing order; that is,
  288.    a larger-numbered class must never be contained completely
  289.    in a smaller-numbered class.
  290.  
  291.    For any two classes, it is very desirable that there be another
  292.    class that represents their union.  */
  293.  
  294. /* The Alliant has three kinds of registers, so eight classes would be
  295.    a complete set.  One of them is not needed.  */
  296.  
  297. enum reg_class { NO_REGS, FP_REGS, DATA_REGS, DATA_OR_FP_REGS,
  298.   ADDR_REGS, GENERAL_REGS, ALL_REGS, LIM_REG_CLASSES };
  299.  
  300. #define N_REG_CLASSES (int) LIM_REG_CLASSES
  301.  
  302. /* Give names of register classes as strings for dump file.   */
  303.  
  304. #define REG_CLASS_NAMES \
  305.  { "NO_REGS", "FP_REGS", "DATA_REGS", "DATA_OR_FP_REGS",  \
  306.    "ADDR_REGS", "GENERAL_REGS", "ALL_REGS" }
  307.  
  308. /* Define which registers fit in which classes.
  309.    This is an initializer for a vector of HARD_REG_SET
  310.    of length N_REG_CLASSES.  */
  311.  
  312. #define REG_CLASS_CONTENTS \
  313. {                    \
  314.  0,        /* NO_REGS */        \
  315.  0x00ff0000,    /* FP_REGS */        \
  316.  0x000000ff,    /* DATA_REGS */        \
  317.  0x00ff00ff,    /* DATA_OR_FP_REGS */    \
  318.  0x0000ff00,    /* ADDR_REGS */        \
  319.  0x0000ffff,    /* GENERAL_REGS */    \
  320.  0x00ffffff    /* ALL_REGS */        \
  321. }
  322.  
  323. /* The same information, inverted:
  324.    Return the class number of the smallest class containing
  325.    reg number REGNO.  This could be a conditional expression
  326.    or could index an array.  */
  327.  
  328. extern enum reg_class regno_reg_class[];
  329. #define REGNO_REG_CLASS(REGNO) (regno_reg_class[(REGNO)>>3])
  330.  
  331. /* The class value for index registers, and the one for base regs.  */
  332.  
  333. #define INDEX_REG_CLASS GENERAL_REGS
  334. #define BASE_REG_CLASS ADDR_REGS
  335.  
  336. /* Get reg_class from a letter such as appears in the machine description.  */
  337.  
  338. #define REG_CLASS_FROM_LETTER(C) \
  339.   ((C) == 'a' ? ADDR_REGS :            \
  340.    ((C) == 'd' ? DATA_REGS :            \
  341.     ((C) == 'f' ? FP_REGS :            \
  342.      NO_REGS)))
  343.  
  344. /* The letters I, J, K, L and M in a register constraint string
  345.    can be used to stand for particular ranges of immediate operands.
  346.    This macro defines what the ranges are.
  347.    C is the letter, and VALUE is a constant value.
  348.    Return 1 if VALUE is in the range specified by C.
  349.  
  350.    For the 68000, `I' is used for the range 1 to 8
  351.    allowed as immediate shift counts and in addq.
  352.    `J' is used for the range of signed numbers that fit in 16 bits.
  353.    `K' is for numbers that moveq can't handle.
  354.    `L' is for range -8 to -1, range of values that can be added with subq.  */
  355.  
  356. #define CONST_OK_FOR_LETTER_P(VALUE, C)  \
  357.   ((C) == 'I' ? (VALUE) > 0 && (VALUE) <= 8 :    \
  358.    (C) == 'J' ? (VALUE) >= -0x8000 && (VALUE) <= 0x7FFF :    \
  359.    (C) == 'K' ? (VALUE) < -0x80 || (VALUE) >= 0x80 :    \
  360.    (C) == 'L' ? (VALUE) < 0 && (VALUE) >= -8 : 0)
  361.  
  362. #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)  0
  363.  
  364. /* Given an rtx X being reloaded into a reg required to be
  365.    in class CLASS, return the class of reg to actually use.
  366.    In general this is just CLASS; but on some machines
  367.    in some cases it is preferable to use a more restrictive class.
  368.    On the 68000 series, use a data reg if possible when the
  369.    value is a constant in the range where moveq could be used
  370.    and we ensure that QImodes are reloaded into data regs.  */
  371.  
  372. #define PREFERRED_RELOAD_CLASS(X,CLASS)  \
  373.   ((GET_CODE (X) == CONST_INT            \
  374.     && (unsigned) (INTVAL (X) + 0x80) < 0x100    \
  375.     && (CLASS) != ADDR_REGS)            \
  376.    ? DATA_REGS                    \
  377.    : GET_MODE (X) == QImode            \
  378.    ? DATA_REGS                    \
  379.    : (CLASS))
  380.  
  381. /* Return the maximum number of consecutive registers
  382.    needed to represent mode MODE in a register of class CLASS.  */
  383. /* On the 68000, this is the size of MODE in words,
  384.    except in the FP regs, where a single reg is always enough.  */
  385. #define CLASS_MAX_NREGS(CLASS, MODE)    \
  386.  ((CLASS) == FP_REGS ? 1 \
  387.   : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
  388.  
  389. /* Moves between fp regs and other regs are two insns.  */
  390. #define REGISTER_MOVE_COST(CLASS1, CLASS2)        \
  391.   ((((CLASS1) == FP_REGS && (CLASS2) != FP_REGS)    \
  392.     || ((CLASS2) == FP_REGS && (CLASS1) != FP_REGS))    \
  393.    ? 4 : 2)
  394.  
  395. /* Stack layout; function entry, exit and calling.  */
  396.  
  397. /* Define this if pushing a word on the stack
  398.    makes the stack pointer a smaller address.  */
  399. #define STACK_GROWS_DOWNWARD
  400.  
  401. /* Define this if the nominal address of the stack frame
  402.    is at the high-address end of the local variables;
  403.    that is, each additional local variable allocated
  404.    goes at a more negative offset in the frame.  */
  405. #define FRAME_GROWS_DOWNWARD
  406.  
  407. /* The Alliant uses -fcaller-saves by default.  */
  408. #define DEFAULT_CALLER_SAVES
  409.  
  410. /* Offset within stack frame to start allocating local variables at.
  411.    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
  412.    first local allocated.  Otherwise, it is the offset to the BEGINNING
  413.    of the first local allocated.  */
  414. #define STARTING_FRAME_OFFSET -4
  415.  
  416. /* If we generate an insn to push BYTES bytes,
  417.    this says how many the stack pointer really advances by.
  418.    On the 68000, sp@- in a byte insn really pushes a word.  */
  419. #define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & ~1)
  420.  
  421. /* Offset of first parameter from the argument pointer register value.  */
  422. #define FIRST_PARM_OFFSET(FNDECL) 0
  423.  
  424. /* Value is the number of bytes of arguments automatically
  425.    popped when returning from a subroutine call.
  426.    FUNTYPE is the data type of the function (as a tree),
  427.    or for a library call it is an identifier node for the subroutine name.
  428.    SIZE is the number of bytes of arguments passed on the stack. 
  429.  
  430.    On the Alliant we define this as SIZE and make the calling sequence
  431.    (in alliant.md) pop the args.  This wouldn't be necessary if we
  432.    could add to the pending stack adjustment the size of the argument
  433.    descriptors that are pushed after the arguments.  */
  434.  
  435. #define RETURN_POPS_ARGS(FUNTYPE,SIZE) (SIZE)
  436.  
  437. /* Define how to find the value returned by a function.
  438.    VALTYPE is the data type of the value (as a tree).
  439.    If the precise function being called is known, FUNC is its FUNCTION_DECL;
  440.    otherwise, FUNC is 0.  */
  441.  
  442. /* On the Alliant the return value is in FP0 if real, else D0.  */
  443.  
  444. #define FUNCTION_VALUE(VALTYPE, FUNC)  \
  445.   (TREE_CODE (VALTYPE) == REAL_TYPE \
  446.    ? gen_rtx (REG, TYPE_MODE (VALTYPE), 16) \
  447.    : gen_rtx (REG, TYPE_MODE (VALTYPE), 0))
  448.  
  449. /* Define how to find the value returned by a library function
  450.    assuming the value has mode MODE.  */
  451.  
  452. /* On the Alliant the return value is in FP0 if real, else D0.  The
  453.    Alliant library functions for floating-point emulation return their
  454.    values both in FP0 and in D0/D1.  But since not all gnulib functions
  455.    return the results of these directly, we cannot assume that D0/D1
  456.    contain the values we expect on return from a gnulib function.  */
  457.  
  458. #define LIBCALL_VALUE(MODE)  \
  459.   (((MODE) == DFmode || (MODE) == SFmode) \
  460.    ? gen_rtx (REG, MODE, 16) \
  461.    : gen_rtx (REG, MODE, 0))
  462.  
  463. /* 1 if N is a possible register number for a function value.
  464.    On the Alliant, D0 and FP0 are the only registers thus used.
  465.    (No need to mention D1 when used as a pair with D0.)  */
  466.  
  467. #define FUNCTION_VALUE_REGNO_P(N) (((N) & ~16) == 0)
  468.  
  469. /* Define this if PCC uses the nonreentrant convention for returning
  470.    structure and union values.  */
  471.  
  472. #define PCC_STATIC_STRUCT_RETURN
  473.  
  474. /* 1 if N is a possible register number for function argument passing.
  475.    On the Alliant, no registers are used in this way.  */
  476.  
  477. #define FUNCTION_ARG_REGNO_P(N) 0
  478.  
  479. /* Define a data type for recording info about an argument list
  480.    during the scan of that argument list.  This data type should
  481.    hold all necessary information about the function itself
  482.    and about the args processed so far, enough to enable macros
  483.    such as FUNCTION_ARG to determine where the next arg should go.
  484.  
  485.    On the Alliant, this is a single integer, which is a number of bytes
  486.    of arguments scanned so far.  */
  487.  
  488. #define CUMULATIVE_ARGS int
  489.  
  490. /* Initialize a variable CUM of type CUMULATIVE_ARGS
  491.    for a call to a function whose data type is FNTYPE.
  492.    For a library call, FNTYPE is 0.
  493.  
  494.    On the Alliant, the offset starts at 0.  */
  495.  
  496. #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME)    \
  497.  ((CUM) = 0)
  498.  
  499. /* Update the data in CUM to advance over an argument
  500.    of mode MODE and data type TYPE.
  501.    (TYPE is null for libcalls where that information may not be available.)  */
  502.  
  503. #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)    \
  504.  ((CUM) += ((MODE) != BLKmode            \
  505.         ? (GET_MODE_SIZE (MODE) + 3) & ~3    \
  506.         : (int_size_in_bytes (TYPE) + 3) & ~3))
  507.  
  508. /* Define where to put the arguments to a function.
  509.    Value is zero to push the argument on the stack,
  510.    or a hard register in which to store the argument.
  511.  
  512.    MODE is the argument's machine mode.
  513.    TYPE is the data type of the argument (as a tree).
  514.     This is null for libcalls where that information may
  515.     not be available.
  516.    CUM is a variable of type CUMULATIVE_ARGS which gives info about
  517.     the preceding args and about the function being called.
  518.    NAMED is nonzero if this argument is a named parameter
  519.     (otherwise it is an extra parameter matching an ellipsis).  */
  520.  
  521. /* On the Alliant all args are pushed.  */
  522.  
  523. #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) 0
  524.  
  525. /* For an arg passed partly in registers and partly in memory,
  526.    this is the number of registers used.
  527.    For args passed entirely in registers or entirely in memory, zero.  */
  528.  
  529. #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0
  530.  
  531. /* This macro generates the assembly code for function entry.
  532.    FILE is a stdio stream to output the code to.
  533.    SIZE is an int: how many units of temporary storage to allocate.
  534.    Refer to the array `regs_ever_live' to determine which registers
  535.    to save; `regs_ever_live[I]' is nonzero if register number I
  536.    is ever used in the function.  This macro is responsible for
  537.    knowing which registers should not be saved even if used.
  538.    The Alliant uses caller-saves, so this macro is very simple.  */
  539.  
  540. #define FUNCTION_PROLOGUE(FILE, SIZE)     \
  541. { int fsize = ((SIZE) - STARTING_FRAME_OFFSET + 3) & -4;    \
  542.   if (frame_pointer_needed)                    \
  543.     {                                \
  544.       if (fsize < 0x8000)                    \
  545.     fprintf(FILE,"\tlinkw a6,#%d\n", -fsize);        \
  546.       else if (TARGET_68020)                    \
  547.     fprintf(FILE,"\tlinkl a6,#%d\n", -fsize);        \
  548.       else                            \
  549.     fprintf(FILE,"\tlinkw a6,#0\n\tsubl #%d,sp\n", fsize);  \
  550.       fprintf(FILE, "\tmovl a0,a6@(-4)\n" ); }}
  551.  
  552. /* Output assembler code to FILE to increment profiler label # LABELNO
  553.    for profiling a function entry.  */
  554.  
  555. #define FUNCTION_PROFILER(FILE, LABELNO)  \
  556.   fprintf (FILE, "\tjbsr __mcount_\n")
  557.  
  558. /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
  559.    the stack pointer does not matter.  The value is tested only in
  560.    functions that have frame pointers.
  561.    No definition is equivalent to always zero.  */
  562.  
  563. #define EXIT_IGNORE_STACK 1
  564.  
  565. /* This macro generates the assembly code for function exit,
  566.    on machines that need it.  If FUNCTION_EPILOGUE is not defined
  567.    then individual return instructions are generated for each
  568.    return statement.  Args are same as for FUNCTION_PROLOGUE.
  569.  
  570.    The function epilogue should not depend on the current stack pointer!
  571.    It should use the frame pointer only.  This is mandatory because
  572.    of alloca; we also take advantage of it to omit stack adjustments
  573.    before returning.  */
  574.  
  575. #define FUNCTION_EPILOGUE(FILE, SIZE) \
  576. { if (frame_pointer_needed)                    \
  577.     fprintf (FILE, "\tunlk a6\n");                \
  578.   fprintf (FILE, "\trts\n"); }
  579.  
  580. /* Store in the variable DEPTH the initial difference between the
  581.    frame pointer reg contents and the stack pointer reg contents,
  582.    as of the start of the function body.  This depends on the layout
  583.    of the fixed parts of the stack frame and on how registers are saved.  */
  584.  
  585. #define INITIAL_FRAME_POINTER_OFFSET(DEPTH)            \
  586. {                                \
  587.   int regno;                            \
  588.   int offset = -4;                        \
  589.   for (regno = 16; regno < FIRST_PSEUDO_REGISTER; regno++)    \
  590.     if (regs_ever_live[regno] && ! call_used_regs[regno])    \
  591.       offset += 12;                        \
  592.   for (regno = 0; regno < 16; regno++)                \
  593.     if (regs_ever_live[regno] && ! call_used_regs[regno])    \
  594.       offset += 4;                        \
  595.   (DEPTH) = offset - ((get_frame_size () + 3) & -4);        \
  596. }
  597.  
  598. /* Addressing modes, and classification of registers for them.  */
  599.  
  600. #define HAVE_POST_INCREMENT
  601. /* #define HAVE_POST_DECREMENT */
  602.  
  603. #define HAVE_PRE_DECREMENT
  604. /* #define HAVE_PRE_INCREMENT */
  605.  
  606. /* Macros to check register numbers against specific register classes.  */
  607.  
  608. /* These assume that REGNO is a hard or pseudo reg number.
  609.    They give nonzero only if REGNO is a hard reg of the suitable class
  610.    or a pseudo reg currently allocated to a suitable hard reg.
  611.    Since they use reg_renumber, they are safe only once reg_renumber
  612.    has been allocated, which happens in local-alloc.c.  */
  613.  
  614. #define REGNO_OK_FOR_INDEX_P(REGNO) \
  615. ((REGNO) < 16 || (unsigned) reg_renumber[REGNO] < 16)
  616. #define REGNO_OK_FOR_BASE_P(REGNO) \
  617. (((REGNO) ^ 010) < 8 || (unsigned) (reg_renumber[REGNO] ^ 010) < 8)
  618. #define REGNO_OK_FOR_DATA_P(REGNO) \
  619. ((REGNO) < 8 || (unsigned) reg_renumber[REGNO] < 8)
  620. #define REGNO_OK_FOR_FP_P(REGNO) \
  621. (((REGNO) ^ 020) < 8 || (unsigned) (reg_renumber[REGNO] ^ 020) < 8)
  622.  
  623. /* Now macros that check whether X is a register and also,
  624.    strictly, whether it is in a specified class.
  625.  
  626.    These macros are specific to the 68000, and may be used only
  627.    in code for printing assembler insns and in conditions for
  628.    define_optimization.  */
  629.  
  630. /* 1 if X is a data register.  */
  631.  
  632. #define DATA_REG_P(X) (REG_P (X) && REGNO_OK_FOR_DATA_P (REGNO (X)))
  633.  
  634. /* 1 if X is an fp register.  */
  635.  
  636. #define FP_REG_P(X) (REG_P (X) && REGNO_OK_FOR_FP_P (REGNO (X)))
  637.  
  638. /* 1 if X is an address register  */
  639.  
  640. #define ADDRESS_REG_P(X) (REG_P (X) && REGNO_OK_FOR_BASE_P (REGNO (X)))
  641.  
  642. /* Maximum number of registers that can appear in a valid memory address.  */
  643.  
  644. #define MAX_REGS_PER_ADDRESS 2
  645.  
  646. /* Recognize any constant value that is a valid address.  */
  647.  
  648. #define CONSTANT_ADDRESS_P(X)  CONSTANT_P (X)
  649.  
  650. /* Nonzero if the constant value X is a legitimate general operand.
  651.    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
  652.  
  653. /* Alliant FP instructions don't take immediate operands, so this
  654.    forces them into memory.  */
  655. #define LEGITIMATE_CONSTANT_P(X) (GET_CODE (X) != CONST_DOUBLE)
  656.  
  657. /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
  658.    and check its validity for a certain class.
  659.    We have two alternate definitions for each of them.
  660.    The usual definition accepts all pseudo regs; the other rejects
  661.    them unless they have been allocated suitable hard regs.
  662.    The symbol REG_OK_STRICT causes the latter definition to be used.
  663.  
  664.    Most source files want to accept pseudo regs in the hope that
  665.    they will get allocated to the class that the insn wants them to be in.
  666.    Source files for reload pass need to be strict.
  667.    After reload, it makes no difference, since pseudo regs have
  668.    been eliminated by then.  */
  669.  
  670. #ifndef REG_OK_STRICT
  671.  
  672. /* Nonzero if X is a hard reg that can be used as an index
  673.    or if it is a pseudo reg.  */
  674. #define REG_OK_FOR_INDEX_P(X) ((REGNO (X) ^ 020) >= 8)
  675. /* Nonzero if X is a hard reg that can be used as a base reg
  676.    or if it is a pseudo reg.  */
  677. #define REG_OK_FOR_BASE_P(X) ((REGNO (X) & ~027) != 0)
  678.  
  679. #else
  680.  
  681. /* Nonzero if X is a hard reg that can be used as an index.  */
  682. #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
  683. /* Nonzero if X is a hard reg that can be used as a base reg.  */
  684. #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
  685.  
  686. #endif
  687.  
  688. /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
  689.    that is a valid memory address for an instruction.
  690.    The MODE argument is the machine mode for the MEM expression
  691.    that wants to use this address.
  692.  
  693.    The other macros defined here are used only in GO_IF_LEGITIMATE_ADDRESS.  */
  694.  
  695. #define INDIRECTABLE_1_ADDRESS_P(X)  \
  696.   (CONSTANT_ADDRESS_P (X)                        \
  697.    || (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X))            \
  698.    || ((GET_CODE (X) == PRE_DEC || GET_CODE (X) == POST_INC)        \
  699.        && REG_P (XEXP (X, 0))                        \
  700.        && REG_OK_FOR_BASE_P (XEXP (X, 0)))                \
  701.    || (GET_CODE (X) == PLUS                        \
  702.        && REG_P (XEXP (X, 0)) && REG_OK_FOR_BASE_P (XEXP (X, 0))    \
  703.        && GET_CODE (XEXP (X, 1)) == CONST_INT                \
  704.        && ((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000))
  705.  
  706. #define GO_IF_NONINDEXED_ADDRESS(X, ADDR)  \
  707. { if (INDIRECTABLE_1_ADDRESS_P (X)) goto ADDR; }
  708.  
  709. #define GO_IF_INDEXABLE_BASE(X, ADDR)    \
  710. { if (GET_CODE (X) == LABEL_REF) goto ADDR;                \
  711.   if (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X)) goto ADDR; }
  712.  
  713. #define GO_IF_INDEXING(X, ADDR)    \
  714. { if (GET_CODE (X) == PLUS && LEGITIMATE_INDEX_P (XEXP (X, 0)))        \
  715.     { GO_IF_INDEXABLE_BASE (XEXP (X, 1), ADDR); }            \
  716.   if (GET_CODE (X) == PLUS && LEGITIMATE_INDEX_P (XEXP (X, 1)))        \
  717.     { GO_IF_INDEXABLE_BASE (XEXP (X, 0), ADDR); } }
  718.  
  719. #define GO_IF_INDEXED_ADDRESS(X, ADDR)     \
  720. { GO_IF_INDEXING (X, ADDR);                        \
  721.   if (GET_CODE (X) == PLUS)                        \
  722.     { if (GET_CODE (XEXP (X, 1)) == CONST_INT                \
  723.       && (unsigned) INTVAL (XEXP (X, 1)) + 0x80 < 0x100)        \
  724.     { rtx go_temp = XEXP (X, 0); GO_IF_INDEXING (go_temp, ADDR); }    \
  725.       if (GET_CODE (XEXP (X, 0)) == CONST_INT                \
  726.       && (unsigned) INTVAL (XEXP (X, 0)) + 0x80 < 0x100)        \
  727.     { rtx go_temp = XEXP (X, 1); GO_IF_INDEXING (go_temp, ADDR); } } }
  728.  
  729. #define LEGITIMATE_INDEX_REG_P(X)   \
  730.   ((GET_CODE (X) == REG && REG_OK_FOR_INDEX_P (X))    \
  731.    || (GET_CODE (X) == SIGN_EXTEND            \
  732.        && GET_CODE (XEXP (X, 0)) == REG            \
  733.        && GET_MODE (XEXP (X, 0)) == HImode        \
  734.        && REG_OK_FOR_INDEX_P (XEXP (X, 0))))
  735.  
  736. #define LEGITIMATE_INDEX_P(X)   \
  737.    (LEGITIMATE_INDEX_REG_P (X)                \
  738.     || (TARGET_68020 && GET_CODE (X) == MULT        \
  739.     && LEGITIMATE_INDEX_REG_P (XEXP (X, 0))        \
  740.     && GET_CODE (XEXP (X, 1)) == CONST_INT        \
  741.     && (INTVAL (XEXP (X, 1)) == 2            \
  742.         || INTVAL (XEXP (X, 1)) == 4        \
  743.         || INTVAL (XEXP (X, 1)) == 8)))
  744.  
  745. #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)  \
  746. { GO_IF_NONINDEXED_ADDRESS (X, ADDR);            \
  747.   GO_IF_INDEXED_ADDRESS (X, ADDR); }
  748.  
  749. /* Try machine-dependent ways of modifying an illegitimate address
  750.    to be legitimate.  If we find one, return the new, valid address.
  751.    This macro is used in only one place: `memory_address' in explow.c.
  752.  
  753.    OLDX is the address as it was before break_out_memory_refs was called.
  754.    In some cases it is useful to look at this to decide what needs to be done.
  755.  
  756.    MODE and WIN are passed so that this macro can use
  757.    GO_IF_LEGITIMATE_ADDRESS.
  758.  
  759.    It is always safe for this macro to do nothing.  It exists to recognize
  760.    opportunities to optimize the output.
  761.  
  762.    For the 68000, we handle X+REG by loading X into a register R and
  763.    using R+REG.  R will go in an address reg and indexing will be used.
  764.    However, if REG is a broken-out memory address or multiplication,
  765.    nothing needs to be done because REG can certainly go in an address reg.  */
  766.  
  767. #define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)   \
  768. { register int ch = (X) != (OLDX);                    \
  769.   if (GET_CODE (X) == PLUS)                        \
  770.     { if (GET_CODE (XEXP (X, 0)) == MULT)                \
  771.     ch = 1, XEXP (X, 0) = force_operand (XEXP (X, 0), 0);        \
  772.       if (GET_CODE (XEXP (X, 1)) == MULT)                \
  773.     ch = 1, XEXP (X, 1) = force_operand (XEXP (X, 1), 0);        \
  774.       if (ch && GET_CODE (XEXP (X, 1)) == REG                \
  775.       && GET_CODE (XEXP (X, 0)) == REG)                \
  776.     goto WIN;                            \
  777.       if (ch) { GO_IF_LEGITIMATE_ADDRESS (MODE, X, WIN); }        \
  778.       if (GET_CODE (XEXP (X, 0)) == REG                    \
  779.            || (GET_CODE (XEXP (X, 0)) == SIGN_EXTEND        \
  780.            && GET_CODE (XEXP (XEXP (X, 0), 0)) == REG        \
  781.            && GET_MODE (XEXP (XEXP (X, 0), 0)) == HImode))    \
  782.     { register rtx temp = gen_reg_rtx (Pmode);            \
  783.       register rtx val = force_operand (XEXP (X, 1), 0);        \
  784.       emit_move_insn (temp, val);                    \
  785.       XEXP (X, 1) = temp;                        \
  786.       goto WIN; }                            \
  787.       else if (GET_CODE (XEXP (X, 1)) == REG                \
  788.            || (GET_CODE (XEXP (X, 1)) == SIGN_EXTEND        \
  789.            && GET_CODE (XEXP (XEXP (X, 1), 0)) == REG        \
  790.            && GET_MODE (XEXP (XEXP (X, 1), 0)) == HImode))    \
  791.     { register rtx temp = gen_reg_rtx (Pmode);            \
  792.       register rtx val = force_operand (XEXP (X, 0), 0);        \
  793.       emit_move_insn (temp, val);                    \
  794.       XEXP (X, 0) = temp;                        \
  795.       goto WIN; }}}
  796.  
  797. /* Go to LABEL if ADDR (a legitimate address expression)
  798.    has an effect that depends on the machine mode it is used for.
  799.    On the 68000, only predecrement and postincrement address depend thus
  800.    (the amount of decrement or increment being the length of the operand).  */
  801.  
  802. #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)    \
  803.  if (GET_CODE (ADDR) == POST_INC || GET_CODE (ADDR) == PRE_DEC) goto LABEL
  804.  
  805. /* Specify the machine mode that this machine uses
  806.    for the index in the tablejump instruction.  */
  807. #define CASE_VECTOR_MODE HImode
  808.  
  809. /* Define this if the tablejump instruction expects the table
  810.    to contain offsets from the address of the table.
  811.    Do not define this if the table should contain absolute addresses.  */
  812. #define CASE_VECTOR_PC_RELATIVE
  813.  
  814. /* Specify the tree operation to be used to convert reals to integers.  */
  815. #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR
  816.  
  817. /* This is the kind of divide that is easiest to do in the general case.  */
  818. #define EASY_DIV_EXPR TRUNC_DIV_EXPR
  819.  
  820. /* Define this as 1 if `char' should by default be signed; else as 0.  */
  821. #define DEFAULT_SIGNED_CHAR 1
  822.  
  823. /* Max number of bytes we can move from memory to memory
  824.    in one reasonably fast instruction.  */
  825. #define MOVE_MAX 4
  826.  
  827. /* Define this if zero-extension is slow (more than one real instruction).  */
  828. #define SLOW_ZERO_EXTEND
  829.  
  830. /* Nonzero if access to memory by bytes is slow and undesirable.  */
  831. #define SLOW_BYTE_ACCESS 0
  832.  
  833. /* Define if shifts truncate the shift count
  834.    which implies one can omit a sign-extension or zero-extension
  835.    of a shift count.  */
  836. #define SHIFT_COUNT_TRUNCATED
  837.  
  838. /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
  839.    is done just by pretending it is already truncated.  */
  840. #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
  841.  
  842. /* We assume that the store-condition-codes instructions store 0 for false
  843.    and some other value for true.  This is the value stored for true.  */
  844.  
  845. #define STORE_FLAG_VALUE -1
  846.  
  847. /* When a prototype says `char' or `short', really pass an `int'.  */
  848. #define PROMOTE_PROTOTYPES
  849.  
  850. /* Specify the machine mode that pointers have.
  851.    After generation of rtl, the compiler makes no further distinction
  852.    between pointers and any other objects of this machine mode.  */
  853. #define Pmode SImode
  854.  
  855. /* A function address in a call instruction
  856.    is a byte address (for indexing purposes)
  857.    so give the MEM rtx a byte's mode.  */
  858. #define FUNCTION_MODE QImode
  859.  
  860. /* Compute the cost of computing a constant rtl expression RTX
  861.    whose rtx-code is CODE.  The body of this macro is a portion
  862.    of a switch statement.  If the code is computed here,
  863.    return it with a return statement.  Otherwise, break from the switch.  */
  864.  
  865. #define CONST_COSTS(RTX,CODE) \
  866.   case CONST_INT:                        \
  867.     /* Constant zero is super cheap due to clr instruction.  */    \
  868.     if (RTX == const0_rtx) return 0;                \
  869.     if ((unsigned) INTVAL (RTX) < 077) return 1;        \
  870.   case CONST:                            \
  871.   case LABEL_REF:                        \
  872.   case SYMBOL_REF:                        \
  873.     return 3;                            \
  874.   case CONST_DOUBLE:                        \
  875.     return 5;
  876.  
  877. /* Check a `double' value for validity for a particular machine mode.
  878.    This is defined to avoid crashes outputting certain constants.  */
  879.  
  880. #define CHECK_FLOAT_VALUE(mode, d)                    \
  881.   if ((mode) == SFmode)                            \
  882.     {                                     \
  883.       if ((d) > 3.4028234663852890e+38)                    \
  884.     { warning ("magnitude of value too large for `float'");        \
  885.       (d) = 3.4028234663852890e+38; }                \
  886.       else if ((d) < -3.4028234663852890e+38)                \
  887.     { warning ("magnitude of value too large for `float'");        \
  888.       (d) = -3.4028234663852890e+38; }                \
  889.       else if (((d) > 0) && ((d) < 1.1754943508222873e-38))        \
  890.     (d) = 0.0;                            \
  891.       else if (((d) < 0) && ((d) > -1.1754943508222873e-38))        \
  892.     (d) = 0.0;                            \
  893.     }
  894.  
  895. /* Tell final.c how to eliminate redundant test instructions.  */
  896.  
  897. /* Here we define machine-dependent flags and fields in cc_status
  898.    (see `conditions.h').  */
  899.  
  900. /* On the Alliant, floating-point instructions do not modify the
  901.    ordinary CC register.  Only fcmp and ftest instructions modify the
  902.    floating-point CC register.  We should actually keep track of what
  903.    both kinds of CC registers contain, but for now we only consider
  904.    the most recent instruction that has set either register.  */
  905.  
  906. /* Set if the cc value came from a floating point test, so a floating
  907.    point conditional branch must be output.  */
  908. #define CC_IN_FP 04000
  909.  
  910. /* Store in cc_status the expressions
  911.    that the condition codes will describe
  912.    after execution of an instruction whose pattern is EXP.
  913.    Do not alter them if the instruction would not alter the cc's.  */
  914.  
  915. /* On the 68000, all the insns to store in an address register
  916.    fail to set the cc's.  However, in some cases these instructions
  917.    can make it possibly invalid to use the saved cc's.  In those
  918.    cases we clear out some or all of the saved cc's so they won't be used.  */
  919.  
  920. #define NOTICE_UPDATE_CC(EXP, INSN) \
  921. {                                \
  922.   if (GET_CODE (EXP) == SET)                    \
  923.     { if (ADDRESS_REG_P (SET_DEST (EXP)) || FP_REG_P (SET_DEST (EXP)))        \
  924.     { if (cc_status.value1                    \
  925.           && reg_overlap_mentioned_p (SET_DEST (EXP), cc_status.value1)) \
  926.         cc_status.value1 = 0;                \
  927.       if (cc_status.value2                    \
  928.           && reg_overlap_mentioned_p (SET_DEST (EXP), cc_status.value2)) \
  929.         cc_status.value2 = 0; }                \
  930.       else if (GET_CODE (SET_SRC (EXP)) == MOD            \
  931.            || GET_CODE (SET_SRC (EXP)) == UMOD        \
  932.            || (GET_CODE (SET_SRC (EXP)) == TRUNCATE        \
  933.            && (GET_CODE (XEXP (SET_SRC (EXP))) == MOD    \
  934.                || GET_CODE (XEXP (SET_SRC (EXP))) == UMOD)))    \
  935.     /* The swap insn produces cc's that don't correspond to the     \
  936.        result.  */                        \
  937.         CC_STATUS_INIT;                        \
  938.       else if (SET_DEST (EXP) != cc0_rtx                \
  939.            && (FP_REG_P (SET_SRC (EXP))            \
  940.            || GET_CODE (SET_SRC (EXP)) == FIX        \
  941.            || GET_CODE (SET_SRC (EXP)) == FLOAT_TRUNCATE \
  942.            || GET_CODE (SET_SRC (EXP)) == FLOAT_EXTEND)) \
  943.     { CC_STATUS_INIT; }                    \
  944.       /* A pair of move insns doesn't produce a useful overall cc.  */ \
  945.       else if (!FP_REG_P (SET_DEST (EXP))            \
  946.            && !FP_REG_P (SET_SRC (EXP))            \
  947.            && GET_MODE_SIZE (GET_MODE (SET_SRC (EXP))) > 4    \
  948.            && (GET_CODE (SET_SRC (EXP)) == REG        \
  949.            || GET_CODE (SET_SRC (EXP)) == MEM        \
  950.            || GET_CODE (SET_SRC (EXP)) == CONST_DOUBLE))\
  951.     { CC_STATUS_INIT; }                    \
  952.       else if (GET_CODE (SET_SRC (EXP)) == CALL)        \
  953.     { CC_STATUS_INIT; }                    \
  954.       else if (XEXP (EXP, 0) != pc_rtx)                \
  955.     { cc_status.flags = 0;                    \
  956.       cc_status.value1 = XEXP (EXP, 0);            \
  957.       cc_status.value2 = XEXP (EXP, 1); } }            \
  958.   else if (GET_CODE (EXP) == PARALLEL                \
  959.        && GET_CODE (XVECEXP (EXP, 0, 0)) == SET)        \
  960.     {                                \
  961.       if (ADDRESS_REG_P (XEXP (XVECEXP (EXP, 0, 0), 0)))    \
  962.     CC_STATUS_INIT;                        \
  963.       else if (XEXP (XVECEXP (EXP, 0, 0), 0) != pc_rtx)        \
  964.     { cc_status.flags = 0;                    \
  965.       cc_status.value1 = XEXP (XVECEXP (EXP, 0, 0), 0);    \
  966.       cc_status.value2 = XEXP (XVECEXP (EXP, 0, 0), 1); } }    \
  967.   else CC_STATUS_INIT;                        \
  968.   if (cc_status.value2 != 0                    \
  969.       && ADDRESS_REG_P (cc_status.value2)            \
  970.       && GET_MODE (cc_status.value2) == QImode)            \
  971.     CC_STATUS_INIT;                        \
  972.   if (cc_status.value2 != 0)                    \
  973.     switch (GET_CODE (cc_status.value2))            \
  974.       { case PLUS: case MINUS: case MULT:            \
  975.     case DIV: case UDIV: case MOD: case UMOD: case NEG:    \
  976.     case ASHIFT: case LSHIFT: case ASHIFTRT: case LSHIFTRT:    \
  977.     case ROTATE: case ROTATERT:                \
  978.       if (GET_MODE (cc_status.value2) != VOIDmode)        \
  979.         cc_status.flags |= CC_NO_OVERFLOW;            \
  980.       break;                        \
  981.     case ZERO_EXTEND:                    \
  982.       /* (SET r1 (ZERO_EXTEND r2)) on this machine
  983.          ends with a move insn moving r2 in r2's mode.
  984.          Thus, the cc's are set for r2.
  985.          This can set N bit spuriously. */            \
  986.       cc_status.flags |= CC_NOT_NEGATIVE; }            \
  987.   if (cc_status.value1 && GET_CODE (cc_status.value1) == REG    \
  988.       && cc_status.value2                    \
  989.       && reg_overlap_mentioned_p (cc_status.value1, cc_status.value2))    \
  990.     cc_status.value2 = 0;                    \
  991.   if ((cc_status.value1 && FP_REG_P (cc_status.value1))        \
  992.        || (cc_status.value2 && FP_REG_P (cc_status.value2)))    \
  993.     cc_status.flags = CC_IN_FP; }
  994.  
  995. #define OUTPUT_JUMP(NORMAL, FLOAT, NO_OV)  \
  996. { if (cc_prev_status.flags & CC_IN_FP)            \
  997.     return FLOAT;                        \
  998.   if (cc_prev_status.flags & CC_NO_OVERFLOW)            \
  999.     return NO_OV;                        \
  1000.   return NORMAL; }
  1001.  
  1002. /* Control the assembler format that we output.  */
  1003.  
  1004. /* Output at beginning of assembler file.  */
  1005.  
  1006. #define ASM_FILE_START(FILE)    \
  1007.   fprintf (FILE, "#NO_APP\n");
  1008.  
  1009. /* Output to assembler file text saying following lines
  1010.    may contain character constants, extra white space, comments, etc.  */
  1011.  
  1012. #define ASM_APP_ON "#APP\n"
  1013.  
  1014. /* Output to assembler file text saying following lines
  1015.    no longer contain unusual constructs.  */
  1016.  
  1017. #define ASM_APP_OFF "#NO_APP\n"
  1018.  
  1019. /* Output before read-only data.  */
  1020.  
  1021. #define TEXT_SECTION_ASM_OP "\t.text"
  1022.  
  1023. /* Output before writable data.  */
  1024.  
  1025. #define DATA_SECTION_ASM_OP "\t.data"
  1026.  
  1027. /* How to refer to registers in assembler output.
  1028.    This sequence is indexed by compiler's hard-register-number (see above).  */
  1029.  
  1030. #define REGISTER_NAMES \
  1031. {"d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",    \
  1032.  "a0", "a1", "a2", "a3", "a4", "a5", "a6", "sp",    \
  1033.  "fp0", "fp1", "fp2", "fp3", "fp4", "fp5", "fp6", "fp7" }
  1034.  
  1035. /* How to renumber registers for dbx and gdb.
  1036.    On the Sun-3, the floating point registers have numbers
  1037.    18 to 25, not 16 to 23 as they do in the compiler.  */
  1038. /* (On the Alliant, dbx isn't working yet at all.  */
  1039.  
  1040. #define DBX_REGISTER_NUMBER(REGNO) ((REGNO) < 16 ? (REGNO) : (REGNO) + 2)
  1041.  
  1042. /* This is how to output the definition of a user-level label named NAME,
  1043.    such as the label on a static function or variable NAME.  */
  1044.  
  1045. #define ASM_OUTPUT_LABEL(FILE,NAME)    \
  1046.   do { assemble_name (FILE, NAME); fputs (":\n", FILE); } while (0)
  1047.  
  1048. /* This is how to output a command to make the user-level label named NAME
  1049.    defined for reference from other files.  */
  1050.  
  1051. #define ASM_GLOBALIZE_LABEL(FILE,NAME)    \
  1052.   do { fputs ("\t.globl ", FILE); assemble_name (FILE, NAME); fputs ("\n", FILE);} while (0)
  1053.  
  1054. /* This is how to output a reference to a user-level label named NAME.
  1055.    `assemble_name' uses this.  */
  1056.  
  1057. #define ASM_OUTPUT_LABELREF(FILE,NAME)    \
  1058.   fprintf (FILE, "_%s", NAME)
  1059.  
  1060. /* This is how to output an internal numbered label where
  1061.    PREFIX is the class of label and NUM is the number within the class.  */
  1062.  
  1063. #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)    \
  1064.   fprintf (FILE, "%s%d:\n", PREFIX, NUM)
  1065.  
  1066. /* This is how to store into the string LABEL
  1067.    the symbol_ref name of an internal numbered label where
  1068.    PREFIX is the class of label and NUM is the number within the class.
  1069.    This is suitable for output with `assemble_name'.  */
  1070.  
  1071. #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)    \
  1072.   sprintf (LABEL, "*%s%d", PREFIX, NUM)
  1073.  
  1074. /* This is how to output an assembler line defining a `double' constant.  */
  1075.  
  1076. #define ASM_OUTPUT_DOUBLE(FILE,VALUE)  \
  1077. do { union { double d; long v[2];} tem;            \
  1078.      tem.d = (VALUE);                    \
  1079.      fprintf (FILE, "\t.long 0x%x,0x%x\n", tem.v[0], tem.v[1]);    \
  1080.    } while (0)
  1081.  
  1082. /* This is how to output an assembler line defining a `float' constant.  */
  1083.  
  1084. #define ASM_OUTPUT_FLOAT(FILE,VALUE)  \
  1085. do { union { float f; long l;} tem;            \
  1086.      tem.f = (VALUE);                    \
  1087.      fprintf (FILE, "\t.long 0x%x\n", tem.l);    \
  1088.    } while (0)
  1089.  
  1090. /* This is how to output an assembler line defining an `int' constant.  */
  1091.  
  1092. #define ASM_OUTPUT_INT(FILE,VALUE)  \
  1093. ( fprintf (FILE, "\t.long "),            \
  1094.   output_addr_const (FILE, (VALUE)),        \
  1095.   fprintf (FILE, "\n"))
  1096.  
  1097. /* Likewise for `char' and `short' constants.  */
  1098.  
  1099. #define ASM_OUTPUT_SHORT(FILE,VALUE)  \
  1100. ( fprintf (FILE, "\t.word "),            \
  1101.   output_addr_const (FILE, (VALUE)),        \
  1102.   fprintf (FILE, "\n"))
  1103.  
  1104. #define ASM_OUTPUT_CHAR(FILE,VALUE)  \
  1105. ( fprintf (FILE, "\t.byte "),            \
  1106.   output_addr_const (FILE, (VALUE)),        \
  1107.   fprintf (FILE, "\n"))
  1108.  
  1109. #define ASM_OUTPUT_ASCII(FILE,PTR,SIZE)               \
  1110. { int i; unsigned char *pp = (unsigned char *) PTR;        \
  1111.   fprintf(FILE, "\t.byte %d", (unsigned int)*pp++);        \
  1112.   for (i = 1; i < SIZE; ++i, ++pp) {                \
  1113.     if ((i % 8) == 0)                        \
  1114.       fprintf(FILE, "\n\t.byte %d", (unsigned int) *pp);    \
  1115.     else                            \
  1116.       fprintf(FILE, ",%d", (unsigned int) *pp); }        \
  1117.   fprintf (FILE, "\n");       }
  1118.  
  1119. /* This is how to output an assembler line for a numeric constant byte.  */
  1120.  
  1121. #define ASM_OUTPUT_BYTE(FILE,VALUE)  \
  1122.   fprintf (FILE, "\t.byte 0x%x\n", (VALUE))
  1123.  
  1124. /* This is how to output an insn to push a register on the stack.
  1125.    It need not be very fast code.  */
  1126.  
  1127. #define ASM_OUTPUT_REG_PUSH(FILE,REGNO)  \
  1128.   fprintf (FILE, "\tmovl %s,sp@-\n", reg_names[REGNO])
  1129.  
  1130. /* This is how to output an insn to pop a register from the stack.
  1131.    It need not be very fast code.  */
  1132.  
  1133. #define ASM_OUTPUT_REG_POP(FILE,REGNO)  \
  1134.   fprintf (FILE, "\tmovl sp@+,%s\n", reg_names[REGNO])
  1135.  
  1136. /* This is how to output an element of a case-vector that is absolute.
  1137.    (The 68000 does not use such vectors,
  1138.    but we must define this macro anyway.)  */
  1139.  
  1140. #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)  \
  1141.   fprintf (FILE, "\t.long L%d\n", VALUE)
  1142.  
  1143. /* This is how to output an element of a case-vector that is relative.  */
  1144.  
  1145. #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL)  \
  1146.   fprintf (FILE, "\t.word L%d-L%d\n", VALUE, REL)
  1147.  
  1148. /* This is how to output an assembler line
  1149.    that says to advance the location counter
  1150.    to a multiple of 2**LOG bytes.  */
  1151.  
  1152. #define ASM_OUTPUT_ALIGN(FILE,LOG)    \
  1153.   if ((LOG) == 1)            \
  1154.     fprintf (FILE, "\t.even\n");    \
  1155.   else if ((LOG) != 0)            \
  1156.     fprintf (FILE, "\t.align %dn", (LOG));    
  1157.  
  1158. #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
  1159.   fprintf (FILE, "\t. = . + %u\n", (SIZE))
  1160.  
  1161. /* This says how to output an assembler line
  1162.    to define a global common symbol.  */
  1163.  
  1164. #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)  \
  1165. ( fputs ("\t.comm ", (FILE)),            \
  1166.   assemble_name ((FILE), (NAME)),        \
  1167.   fprintf ((FILE), ",%u\n", (ROUNDED)))
  1168.  
  1169. /* This says how to output an assembler line
  1170.    to define a local common symbol.  */
  1171.  
  1172. #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)  \
  1173. ( fputs ("\t.lcomm ", (FILE)),            \
  1174.   assemble_name ((FILE), (NAME)),        \
  1175.   fprintf ((FILE), ",%u\n", (ROUNDED)))
  1176.  
  1177. /* Store in OUTPUT a string (made with alloca) containing
  1178.    an assembler-name for a local static variable named NAME.
  1179.    LABELNO is an integer which is different for each call.  */
  1180.  
  1181. #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO)    \
  1182. ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10),    \
  1183.   sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO)))
  1184.  
  1185. /* Define the parentheses used to group arithmetic operations
  1186.    in assembler code.  */
  1187.  
  1188. #define ASM_OPEN_PAREN "("
  1189. #define ASM_CLOSE_PAREN ")"
  1190.  
  1191. /* Define results of standard character escape sequences.  */
  1192. #define TARGET_BELL 007
  1193. #define TARGET_BS 010
  1194. #define TARGET_TAB 011
  1195. #define TARGET_NEWLINE 012
  1196. #define TARGET_VT 013
  1197. #define TARGET_FF 014
  1198. #define TARGET_CR 015
  1199.  
  1200. /* Print operand X (an rtx) in assembler syntax to file FILE.
  1201.    CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
  1202.    For `%' followed by punctuation, CODE is the punctuation and X is null.
  1203.  
  1204.    On the Alliant, we use several CODE characters:
  1205.    '.' for dot needed in Motorola-style opcode names.
  1206.    '-' for an operand pushing on the stack:
  1207.        sp@-, -(sp) or -(%sp) depending on the style of syntax.
  1208.    '+' for an operand pushing on the stack:
  1209.        sp@+, (sp)+ or (%sp)+ depending on the style of syntax.
  1210.    '@' for a reference to the top word on the stack:
  1211.        sp@, (sp) or (%sp) depending on the style of syntax.
  1212.    '#' for an immediate operand prefix (# in MIT and Motorola syntax
  1213.        but & in SGS syntax).
  1214.    '!' for the cc register (used in an `and to cc' insn).
  1215.  
  1216.    'b' for byte insn (no effect, on the Sun; this is for the ISI).
  1217.    'd' to force memory addressing to be absolute, not relative.
  1218.    'f' for float insn (print a CONST_DOUBLE as a float rather than in hex)
  1219.    'x' for float insn (print a CONST_DOUBLE as a float rather than in hex),
  1220.        or print pair of registers as rx:ry.  */
  1221.  
  1222. #define PRINT_OPERAND_PUNCT_VALID_P(CODE)                \
  1223.   ((CODE) == '.' || (CODE) == '#' || (CODE) == '-'            \
  1224.    || (CODE) == '+' || (CODE) == '@' || (CODE) == '!')
  1225.  
  1226. #define PRINT_OPERAND(FILE, X, CODE)  \
  1227. { int i;                                \
  1228.   if (CODE == '.') ;                            \
  1229.   else if (CODE == '#') fprintf (FILE, "#");                \
  1230.   else if (CODE == '-') fprintf (FILE, "sp@-");                \
  1231.   else if (CODE == '+') fprintf (FILE, "sp@+");                \
  1232.   else if (CODE == '@') fprintf (FILE, "sp@");                \
  1233.   else if (CODE == '!') fprintf (FILE, "cc");                \
  1234.   else if ((X)  == 0  ) ;                        \
  1235.   else if (GET_CODE (X) == REG)                        \
  1236.     { if (REGNO (X) < 16 && (CODE == 'y' || CODE == 'x') && GET_MODE (X) == DFmode)    \
  1237.         fprintf (FILE, "%s,%s", reg_names[REGNO (X)], reg_names[REGNO (X)+1]); \
  1238.       else                                \
  1239.         fprintf (FILE, "%s", reg_names[REGNO (X)]);            \
  1240.     }                                    \
  1241.   else if (GET_CODE (X) == MEM)                        \
  1242.     {                                    \
  1243.       output_address (XEXP (X, 0));                    \
  1244.       if (CODE == 'd' && ! TARGET_68020                    \
  1245.       && CONSTANT_ADDRESS_P (XEXP (X, 0))                \
  1246.       && !(GET_CODE (XEXP (X, 0)) == CONST_INT            \
  1247.            && INTVAL (XEXP (X, 0)) < 0x8000                \
  1248.            && INTVAL (XEXP (X, 0)) >= -0x8000))            \
  1249.     fprintf (FILE, ":l");                        \
  1250.     }                                    \
  1251.   else if (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) == SFmode)    \
  1252.     { union { double d; int i[2]; } u;                    \
  1253.       union { float f; int i; } u1;                    \
  1254.       u.i[0] = CONST_DOUBLE_LOW (X); u.i[1] = CONST_DOUBLE_HIGH (X);    \
  1255.       u1.f = u.d;                            \
  1256.       if (CODE == 'f')                            \
  1257.         fprintf (FILE, "#0r%.9g", u1.f);                \
  1258.       else                                \
  1259.         fprintf (FILE, "#0x%x", u1.i); }                \
  1260.   else if (GET_CODE (X) == CONST_DOUBLE && GET_MODE (X) != DImode)    \
  1261.     { union { double d; int i[2]; } u;                    \
  1262.       u.i[0] = CONST_DOUBLE_LOW (X); u.i[1] = CONST_DOUBLE_HIGH (X);    \
  1263.       fprintf (FILE, "#0r%.20g", u.d); }                \
  1264.   else { putc ('#', FILE); output_addr_const (FILE, X); }}
  1265.  
  1266. /* Note that this contains a kludge that knows that the only reason
  1267.    we have an address (plus (label_ref...) (reg...))
  1268.    is in the insn before a tablejump, and we know that m68k.md
  1269.    generates a label LInnn: on such an insn.  */
  1270. #define PRINT_OPERAND_ADDRESS(FILE, ADDR)  \
  1271. { register rtx reg1, reg2, breg, ireg;                    \
  1272.   register rtx addr = ADDR;                        \
  1273.   static char *sz = ".BW.L...D";                    \
  1274.   rtx offset;                                \
  1275.   switch (GET_CODE (addr))                        \
  1276.     {                                    \
  1277.     case REG:                                \
  1278.       fprintf (FILE, "%s@", reg_names[REGNO (addr)]);            \
  1279.       break;                                \
  1280.     case PRE_DEC:                            \
  1281.       fprintf (FILE, "%s@-", reg_names[REGNO (XEXP (addr, 0))]);    \
  1282.       break;                                \
  1283.     case POST_INC:                            \
  1284.       fprintf (FILE, "%s@+", reg_names[REGNO (XEXP (addr, 0))]);    \
  1285.       break;                                \
  1286.     case PLUS:                                \
  1287.       reg1 = 0;    reg2 = 0;                        \
  1288.       ireg = 0;    breg = 0;                        \
  1289.       offset = 0;                            \
  1290.       if (CONSTANT_ADDRESS_P (XEXP (addr, 0)))                \
  1291.     {                                \
  1292.       offset = XEXP (addr, 0);                    \
  1293.       addr = XEXP (addr, 1);                    \
  1294.     }                                \
  1295.       else if (CONSTANT_ADDRESS_P (XEXP (addr, 1)))            \
  1296.     {                                \
  1297.       offset = XEXP (addr, 1);                    \
  1298.       addr = XEXP (addr, 0);                    \
  1299.     }                                \
  1300.       if (GET_CODE (addr) != PLUS) ;                    \
  1301.       else if (GET_CODE (XEXP (addr, 0)) == SIGN_EXTEND)        \
  1302.     {                                \
  1303.       reg1 = XEXP (addr, 0);                    \
  1304.       addr = XEXP (addr, 1);                    \
  1305.     }                                \
  1306.       else if (GET_CODE (XEXP (addr, 1)) == SIGN_EXTEND)        \
  1307.     {                                \
  1308.       reg1 = XEXP (addr, 1);                    \
  1309.       addr = XEXP (addr, 0);                    \
  1310.     }                                \
  1311.       else if (GET_CODE (XEXP (addr, 0)) == MULT)            \
  1312.     {                                \
  1313.       reg1 = XEXP (addr, 0);                    \
  1314.       addr = XEXP (addr, 1);                    \
  1315.     }                                \
  1316.       else if (GET_CODE (XEXP (addr, 1)) == MULT)            \
  1317.     {                                \
  1318.       reg1 = XEXP (addr, 1);                    \
  1319.       addr = XEXP (addr, 0);                    \
  1320.     }                                \
  1321.       else if (GET_CODE (XEXP (addr, 0)) == REG)            \
  1322.     {                                \
  1323.       reg1 = XEXP (addr, 0);                    \
  1324.       addr = XEXP (addr, 1);                    \
  1325.     }                                \
  1326.       else if (GET_CODE (XEXP (addr, 1)) == REG)            \
  1327.     {                                \
  1328.       reg1 = XEXP (addr, 1);                    \
  1329.       addr = XEXP (addr, 0);                    \
  1330.     }                                \
  1331.       if (GET_CODE (addr) == REG || GET_CODE (addr) == MULT        \
  1332.       || GET_CODE (addr) == SIGN_EXTEND)                \
  1333.     { if (reg1 == 0) reg1 = addr; else reg2 = addr; addr = 0; }    \
  1334. /*  for OLD_INDEXING                            \
  1335.       else if (GET_CODE (addr) == PLUS)                    \
  1336.     {                                \
  1337.       if (GET_CODE (XEXP (addr, 0)) == REG)                \
  1338.         {                                \
  1339.           reg2 = XEXP (addr, 0);                    \
  1340.           addr = XEXP (addr, 1);                    \
  1341.         }                                \
  1342.       else if (GET_CODE (XEXP (addr, 1)) == REG)            \
  1343.         {                                \
  1344.           reg2 = XEXP (addr, 1);                    \
  1345.           addr = XEXP (addr, 0);                    \
  1346.         }                                \
  1347.     }                                \
  1348.   */                                    \
  1349.       if (offset != 0) { if (addr != 0) abort (); addr = offset; }    \
  1350.       if ((reg1 && (GET_CODE (reg1) == SIGN_EXTEND            \
  1351.             || GET_CODE (reg1) == MULT))            \
  1352.       || (reg2 != 0 && REGNO_OK_FOR_BASE_P (REGNO (reg2))))        \
  1353.     { breg = reg2; ireg = reg1; }                    \
  1354.       else if (reg1 != 0 && REGNO_OK_FOR_BASE_P (REGNO (reg1)))        \
  1355.     { breg = reg1; ireg = reg2; }                    \
  1356.       if (ireg != 0 && breg == 0 && GET_CODE (addr) == LABEL_REF)    \
  1357.         { int scale = 1;                        \
  1358.       if (GET_CODE (ireg) == MULT)                    \
  1359.         { scale = INTVAL (XEXP (ireg, 1));                \
  1360.           ireg = XEXP (ireg, 0); }                    \
  1361.       if (GET_CODE (ireg) == SIGN_EXTEND)                \
  1362.         fprintf (FILE, "pc@(L%d-LI%d-2:B)[%s:W",            \
  1363.              CODE_LABEL_NUMBER (XEXP (addr, 0)),        \
  1364.              CODE_LABEL_NUMBER (XEXP (addr, 0)),        \
  1365.              reg_names[REGNO (XEXP (ireg, 0))]);         \
  1366.       else                                \
  1367.         fprintf (FILE, "pc@(L%d-LI%d-2:B)[%s:L",            \
  1368.              CODE_LABEL_NUMBER (XEXP (addr, 0)),        \
  1369.              CODE_LABEL_NUMBER (XEXP (addr, 0)),        \
  1370.              reg_names[REGNO (ireg)]);                \
  1371.       fprintf (FILE, ":%c", sz[scale]);                \
  1372.       putc (']', FILE);                        \
  1373.       break; }                            \
  1374.       if (breg != 0 && ireg == 0 && GET_CODE (addr) == LABEL_REF)    \
  1375.         { fprintf (FILE, "pc@(L%d-LI%d-2:B)[%s:L:B]",            \
  1376.            CODE_LABEL_NUMBER (XEXP (addr, 0)),            \
  1377.            CODE_LABEL_NUMBER (XEXP (addr, 0)),            \
  1378.            reg_names[REGNO (breg)]);                \
  1379.       break; }                            \
  1380.       if (ireg != 0 || breg != 0)                    \
  1381.     { int scale = 1;                        \
  1382.       if (breg == 0)                        \
  1383.         abort ();                            \
  1384.       if (addr && GET_CODE (addr) == LABEL_REF) abort ();        \
  1385.       fprintf (FILE, "%s@", reg_names[REGNO (breg)]);        \
  1386.       if (addr != 0) {                        \
  1387.             putc( '(', FILE );                        \
  1388.         output_addr_const (FILE, addr);                \
  1389.             if (ireg != 0) {                        \
  1390.               if (GET_CODE(addr) == CONST_INT) {            \
  1391.                 int size_of = 1, val = INTVAL(addr);            \
  1392.                 if (val < -0x8000 || val >= 0x8000)            \
  1393.                    size_of = 4;                       \
  1394.                 else if (val < -0x80 || val >= 0x80)            \
  1395.                    size_of = 2;                        \
  1396.                 fprintf(FILE, ":%c", sz[size_of]);            \
  1397.               }                                    \
  1398.               else                            \
  1399.                 fprintf(FILE, ":L"); }                     \
  1400.             putc( ')', FILE ); }                    \
  1401.       if (ireg != 0) {                        \
  1402.         putc ('[', FILE);                        \
  1403.         if (ireg != 0 && GET_CODE (ireg) == MULT)            \
  1404.           { scale = INTVAL (XEXP (ireg, 1));            \
  1405.             ireg = XEXP (ireg, 0); }                \
  1406.         if (ireg != 0 && GET_CODE (ireg) == SIGN_EXTEND)        \
  1407.           fprintf (FILE, "%s:W", reg_names[REGNO (XEXP (ireg, 0))]);    \
  1408.         else if (ireg != 0)                        \
  1409.           fprintf (FILE, "%s:L", reg_names[REGNO (ireg)]);        \
  1410.         fprintf (FILE, ":%c", sz[scale]);                \
  1411.         putc (']', FILE);                        \
  1412.           }                                \
  1413.       break;                            \
  1414.     }                                \
  1415.       else if (reg1 != 0 && GET_CODE (addr) == LABEL_REF)        \
  1416.     { fprintf (FILE, "pc@(L%d-LI%d-2:B)[%s:L:B]",            \
  1417.            CODE_LABEL_NUMBER (XEXP (addr, 0)),            \
  1418.            CODE_LABEL_NUMBER (XEXP (addr, 0)),            \
  1419.            reg_names[REGNO (reg1)]);                \
  1420.       break; }                            \
  1421.     default:                                \
  1422.       if (GET_CODE (addr) == CONST_INT                    \
  1423.       && INTVAL (addr) < 0x8000                    \
  1424.       && INTVAL (addr) >= -0x8000)                    \
  1425.     fprintf (FILE, "%d:W", INTVAL (addr));                \
  1426.       else                                \
  1427.         output_addr_const (FILE, addr);                    \
  1428.     }}
  1429.  
  1430. /*
  1431. Local variables:
  1432. version-control: t
  1433. End:
  1434. */
  1435.  
  1436.