(DBX_CONTIN_LENGTH): Set to 80.
[official-gcc.git] / gcc / regs.h
blob47463bf3a7b5909785d3c8028e24835b9cde831f
1 /* Define per-register tables for data flow info and register allocation.
2 Copyright (C) 1987, 1993 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #define REG_BYTES(R) mode_size[(int) GET_MODE (R)]
24 /* Get the number of consecutive hard regs required to hold the REG rtx R.
25 When something may be an explicit hard reg, REG_SIZE is the only
26 valid way to get this value. You cannot get it from the regno. */
28 #define REG_SIZE(R) \
29 ((mode_size[(int) GET_MODE (R)] + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
31 /* Maximum register number used in this function, plus one. */
33 extern int max_regno;
35 /* Maximum number of SCRATCH rtx's in each block of this function. */
37 extern int max_scratch;
39 /* Indexed by n, gives number of times (REG n) is used or set.
40 References within loops may be counted more times. */
42 extern int *reg_n_refs;
44 /* Indexed by n, gives number of times (REG n) is set. */
46 extern short *reg_n_sets;
48 /* Indexed by N, gives number of insns in which register N dies.
49 Note that if register N is live around loops, it can die
50 in transitions between basic blocks, and that is not counted here.
51 So this is only a reliable indicator of how many regions of life there are
52 for registers that are contained in one basic block. */
54 extern short *reg_n_deaths;
56 /* Get the number of consecutive words required to hold pseudo-reg N. */
58 #define PSEUDO_REGNO_SIZE(N) \
59 ((GET_MODE_SIZE (PSEUDO_REGNO_MODE (N)) + UNITS_PER_WORD - 1) \
60 / UNITS_PER_WORD)
62 /* Get the number of bytes required to hold pseudo-reg N. */
64 #define PSEUDO_REGNO_BYTES(N) \
65 GET_MODE_SIZE (PSEUDO_REGNO_MODE (N))
67 /* Get the machine mode of pseudo-reg N. */
69 #define PSEUDO_REGNO_MODE(N) GET_MODE (regno_reg_rtx[N])
71 /* Indexed by N, gives number of CALL_INSNS across which (REG n) is live. */
73 extern int *reg_n_calls_crossed;
75 /* Total number of instructions at which (REG n) is live.
76 The larger this is, the less priority (REG n) gets for
77 allocation in a hard register (in global-alloc).
78 This is set in flow.c and remains valid for the rest of the compilation
79 of the function; it is used to control register allocation.
81 local-alloc.c may alter this number to change the priority.
83 Negative values are special.
84 -1 is used to mark a pseudo reg which has a constant or memory equivalent
85 and is used infrequently enough that it should not get a hard register.
86 -2 is used to mark a pseudo reg for a parameter, when a frame pointer
87 is not required. global.c makes an allocno for this but does
88 not try to assign a hard register to it. */
90 extern int *reg_live_length;
92 /* Vector of substitutions of register numbers,
93 used to map pseudo regs into hardware regs. */
95 extern short *reg_renumber;
97 /* Vector indexed by hardware reg
98 saying whether that reg is ever used. */
100 extern char regs_ever_live[FIRST_PSEUDO_REGISTER];
102 /* Vector indexed by hardware reg giving its name. */
104 extern char *reg_names[FIRST_PSEUDO_REGISTER];
106 /* For each hard register, the widest mode object that it can contain.
107 This will be a MODE_INT mode if the register can hold integers. Otherwise
108 it will be a MODE_FLOAT or a MODE_CC mode, whichever is valid for the
109 register. */
111 extern enum machine_mode reg_raw_mode[FIRST_PSEUDO_REGISTER];
113 /* Vector indexed by regno; gives uid of first insn using that reg.
114 This is computed by reg_scan for use by cse and loop.
115 It is sometimes adjusted for subsequent changes during loop,
116 but not adjusted by cse even if cse invalidates it. */
118 extern int *regno_first_uid;
120 /* Vector indexed by regno; gives uid of last insn using that reg.
121 This is computed by reg_scan for use by cse and loop.
122 It is sometimes adjusted for subsequent changes during loop,
123 but not adjusted by cse even if cse invalidates it.
124 This is harmless since cse won't scan through a loop end. */
126 extern int *regno_last_uid;
128 /* Similar, but includes insns that mention the reg in their notes. */
130 extern int *regno_last_note_uid;
132 /* Vector indexed by regno; contains 1 for a register is considered a pointer.
133 Reloading, etc. will use a pointer register rather than a non-pointer
134 as the base register in an address, when there is a choice of two regs. */
136 extern char *regno_pointer_flag;
137 #define REGNO_POINTER_FLAG(REGNO) regno_pointer_flag[REGNO]
139 /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
140 that have to go in the same hard reg. */
141 extern rtx regs_may_share;
143 /* Vector mapping pseudo regno into the REG rtx for that register.
144 This is computed by reg_scan. */
146 extern rtx *regno_reg_rtx;
148 /* Flag set by local-alloc or global-alloc if they decide to allocate
149 something in a call-clobbered register. */
151 extern int caller_save_needed;
153 /* Predicate to decide whether to give a hard reg to a pseudo which
154 is referenced REFS times and would need to be saved and restored
155 around a call CALLS times. */
157 #ifndef CALLER_SAVE_PROFITABLE
158 #define CALLER_SAVE_PROFITABLE(REFS, CALLS) (4 * (CALLS) < (REFS))
159 #endif
161 /* Allocated in local_alloc. */
163 /* A list of SCRATCH rtl allocated by local-alloc. */
164 extern rtx *scratch_list;
165 /* The basic block in which each SCRATCH is used. */
166 extern int *scratch_block;
167 /* The length of the arrays pointed to by scratch_block and scratch_list. */
168 extern int scratch_list_length;