OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [config/] [pa/] [pa64-regs.h] - Blame information for rev 713

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 709 jeremybenn
/* Configuration for GCC-compiler for PA-RISC.
2
   Copyright (C) 1999, 2000, 2003, 2004, 2007, 2008, 2010
3
   Free Software Foundation, Inc.
4
 
5
This file is part of GCC.
6
 
7
GCC is free software; you can redistribute it and/or modify
8
it under the terms of the GNU General Public License as published by
9
the Free Software Foundation; either version 3, or (at your option)
10
any later version.
11
 
12
GCC is distributed in the hope that it will be useful,
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
GNU General Public License for more details.
16
 
17
You should have received a copy of the GNU General Public License
18
along with GCC; see the file COPYING3.  If not see
19
<http://www.gnu.org/licenses/>.  */
20
 
21
/* Standard register usage.
22
 
23
   It is safe to refer to actual register numbers in this file.  */
24
 
25
/* Number of actual hardware registers.
26
   The hardware registers are assigned numbers for the compiler
27
   from 0 to just below FIRST_PSEUDO_REGISTER.
28
   All registers that the compiler knows about must be given numbers,
29
   even those that are not normally considered general registers.
30
 
31
   HP-PA 2.0w has 32 fullword registers and 32 floating point
32
   registers. However, the floating point registers behave
33
   differently: the left and right halves of registers are addressable
34
   as 32-bit registers.
35
 
36
   Due to limitations within GCC itself, we do not expose the left/right
37
   half addressability when in wide mode.  This is not a major performance
38
   issue as using the halves independently triggers false dependency stalls
39
   anyway.  */
40
 
41
#define FIRST_PSEUDO_REGISTER 62  /* 32 general regs + 28 fp regs +
42
                                     + 1 shift reg + frame pointer */
43
 
44
/* 1 for registers that have pervasive standard uses
45
   and are not available for the register allocator.
46
 
47
   On the HP-PA, these are:
48
   Reg 0        = 0 (hardware). However, 0 is used for condition code,
49
                  so is not fixed.
50
   Reg 1        = ADDIL target/Temporary (hardware).
51
   Reg 2        = Return Pointer
52
   Reg 3        = Frame Pointer
53
   Reg 4        = Frame Pointer (>8k varying frame with HP compilers only)
54
   Reg 4-18     = Preserved Registers
55
   Reg 19       = Linkage Table Register in HPUX 8.0 shared library scheme.
56
   Reg 20-22    = Temporary Registers
57
   Reg 23-26    = Temporary/Parameter Registers
58
   Reg 27       = Global Data Pointer (hp)
59
   Reg 28       = Temporary/Return Value register
60
   Reg 29       = Temporary/Static Chain/Return Value register #2
61
   Reg 30       = stack pointer
62
   Reg 31       = Temporary/Millicode Return Pointer (hp)
63
 
64
   Freg 0-3     = Status Registers      -- Not known to the compiler.
65
   Freg 4-7     = Arguments/Return Value
66
   Freg 8-11    = Temporary Registers
67
   Freg 12-21   = Preserved Registers
68
   Freg 22-31 = Temporary Registers
69
 
70
*/
71
 
72
#define FIXED_REGISTERS  \
73
 {0, 0, 0, 0, 0, 0, 0, 0, \
74
  0, 0, 0, 0, 0, 0, 0, 0, \
75
  0, 0, 0, 0, 0, 0, 0, 0, \
76
  0, 0, 0, 1, 0, 0, 1, 0, \
77
  /* fp registers */      \
78
  0, 0, 0, 0, 0, 0, 0, 0, \
79
  0, 0, 0, 0, 0, 0, 0, 0, \
80
  0, 0, 0, 0, 0, 0, 0, 0, \
81
  0, 0, 0, 0,                 \
82
  /* shift register and soft frame pointer */     \
83
  0, 1}
84
 
85
/* 1 for registers not available across function calls.
86
   These must include the FIXED_REGISTERS and also any
87
   registers that can be used without being saved.
88
   The latter must include the registers where values are returned
89
   and the register where structure-value addresses are passed.
90
   Aside from that, you can include as many other registers as you like.  */
91
#define CALL_USED_REGISTERS  \
92
 {1, 1, 1, 0, 0, 0, 0, 0, \
93
  0, 0, 0, 0, 0, 0, 0, 0, \
94
  0, 0, 0, 1, 1, 1, 1, 1, \
95
  1, 1, 1, 1, 1, 1, 1, 1, \
96
  /* fp registers */      \
97
  1, 1, 1, 1, 1, 1, 1, 1, \
98
  0, 0, 0, 0, 0, 0, 0, 0, \
99
  0, 0, 1, 1, 1, 1, 1, 1, \
100
  1, 1, 1, 1,             \
101
  /* shift register and soft frame pointer */    \
102
  1, 1}
103
 
104
/* Allocate the call used registers first.  This should minimize
105
   the number of registers that need to be saved (as call used
106
   registers will generally not be allocated across a call).
107
 
108
   Experimentation has shown slightly better results by allocating
109
   FP registers first.  We allocate the caller-saved registers more
110
   or less in reverse order to their allocation as arguments.  */
111
 
112
#define REG_ALLOC_ORDER \
113
 {                                      \
114
  /* caller-saved fp regs.  */          \
115
  50, 51, 52, 53, 54, 55, 56, 57,       \
116
  58, 59, 39, 38, 37, 36, 35, 34,       \
117
  33, 32,                               \
118
  /* caller-saved general regs.  */     \
119
  28, 31, 19, 20, 21, 22, 23, 24,       \
120
  25, 26, 29,  2,                       \
121
  /* callee-saved fp regs.  */          \
122
  40, 41, 42, 43, 44, 45, 46, 47,       \
123
  48, 49,                               \
124
  /* callee-saved general regs.  */     \
125
   3,  4,  5,  6,  7,  8,  9, 10,       \
126
  11, 12, 13, 14, 15, 16, 17, 18,       \
127
  /* special registers.  */             \
128
   1, 27, 30,  0, 60, 61}
129
 
130
 
131
/* Return number of consecutive hard regs needed starting at reg REGNO
132
   to hold something of mode MODE.
133
   This is ordinarily the length in words of a value of mode MODE
134
   but can be less for certain modes in special long registers.
135
 
136
   For PA64, GPRs and FPRs hold 64 bits worth.  We ignore the 32-bit
137
   addressability of the FPRs and pretend each register holds precisely
138
   WORD_SIZE bits.  Note that SCmode values are placed in a single FPR.
139
   Thus, any patterns defined to operate on these values would have to
140
   use the 32-bit addressability of the FPR registers.  */
141
#define HARD_REGNO_NREGS(REGNO, MODE)                                   \
142
  ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
143
 
144
/* These are the valid FP modes.  */
145
#define VALID_FP_MODE_P(MODE)                                           \
146
  ((MODE) == SFmode || (MODE) == DFmode                                 \
147
   || (MODE) == SCmode || (MODE) == DCmode                              \
148
   || (MODE) == SImode || (MODE) == DImode)
149
 
150
/* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
151
   On the HP-PA, the cpu registers can hold any mode.  We
152
   force this to be an even register if it cannot hold the full mode.  */
153
#define HARD_REGNO_MODE_OK(REGNO, MODE) \
154
  ((REGNO) == 0                                                          \
155
   ? (MODE) == CCmode || (MODE) == CCFPmode                             \
156
   : (REGNO) == 60 ? SCALAR_INT_MODE_P (MODE)                           \
157
   /* Make wide modes be in aligned registers.  */                      \
158
   : FP_REGNO_P (REGNO)                                                 \
159
     ? (VALID_FP_MODE_P (MODE)                                          \
160
        && (GET_MODE_SIZE (MODE) <= 8                                   \
161
            || (GET_MODE_SIZE (MODE) == 16 && ((REGNO) & 1) == 0)        \
162
            || (GET_MODE_SIZE (MODE) == 32 && ((REGNO) & 3) == 0)))      \
163
   : (GET_MODE_SIZE (MODE) <= UNITS_PER_WORD                            \
164
      || (GET_MODE_SIZE (MODE) == 2 * UNITS_PER_WORD                    \
165
          && ((((REGNO) & 1) == 1 && (REGNO) <= 25) || (REGNO) == 28))  \
166
      || (GET_MODE_SIZE (MODE) == 4 * UNITS_PER_WORD                    \
167
          && ((REGNO) & 3) == 3 && (REGNO) <= 23)))
168
 
169
/* How to renumber registers for dbx and gdb.
170
 
171
   Registers 0  - 31 remain unchanged.
172
 
173
   Registers 32 - 59 are mapped to 72, 74, 76 ...
174
 
175
   Register 60 is mapped to 32.  */
176
#define DBX_REGISTER_NUMBER(REGNO) \
177
  ((REGNO) <= 31 ? (REGNO) : ((REGNO) < 60 ? (REGNO - 32) * 2 + 72 : 32))
178
 
179
/* We must not use the DBX register numbers for the DWARF 2 CFA column
180
   numbers because that maps to numbers beyond FIRST_PSEUDO_REGISTER.
181
   Instead use the identity mapping.  */
182
#define DWARF_FRAME_REGNUM(REG) REG
183
 
184
/* Define the classes of registers for register constraints in the
185
   machine description.  Also define ranges of constants.
186
 
187
   One of the classes must always be named ALL_REGS and include all hard regs.
188
   If there is more than one class, another class must be named NO_REGS
189
   and contain no registers.
190
 
191
   The name GENERAL_REGS must be the name of a class (or an alias for
192
   another name such as ALL_REGS).  This is the class of registers
193
   that is allowed by "g" or "r" in a register constraint.
194
   Also, registers outside this class are allocated only when
195
   instructions express preferences for them.
196
 
197
   The classes must be numbered in nondecreasing order; that is,
198
   a larger-numbered class must never be contained completely
199
   in a smaller-numbered class.
200
 
201
   For any two classes, it is very desirable that there be another
202
   class that represents their union.  */
203
 
204
  /* The HP-PA has four kinds of registers: general regs, 1.0 fp regs,
205
     1.1 fp regs, and the high 1.1 fp regs, to which the operands of
206
     fmpyadd and fmpysub are restricted.  */
207
 
208
enum reg_class { NO_REGS, R1_REGS, GENERAL_REGS, FPUPPER_REGS, FP_REGS,
209
                 GENERAL_OR_FP_REGS, SHIFT_REGS, ALL_REGS, LIM_REG_CLASSES};
210
 
211
#define N_REG_CLASSES (int) LIM_REG_CLASSES
212
 
213
/* Give names of register classes as strings for dump file.  */
214
 
215
#define REG_CLASS_NAMES \
216
  {"NO_REGS", "R1_REGS", "GENERAL_REGS", "FPUPPER_REGS", "FP_REGS", \
217
   "GENERAL_OR_FP_REGS", "SHIFT_REGS", "ALL_REGS"}
218
 
219
/* Define which registers fit in which classes.
220
   This is an initializer for a vector of HARD_REG_SET
221
   of length N_REG_CLASSES. Register 0, the "condition code" register,
222
   is in no class.  */
223
 
224
#define REG_CLASS_CONTENTS      \
225
 {{0x00000000, 0x00000000},     /* NO_REGS */                   \
226
  {0x00000002, 0x00000000},     /* R1_REGS */                   \
227
  {0xfffffffe, 0x20000000},     /* GENERAL_REGS */              \
228
  {0x00000000, 0x00000000},     /* FPUPPER_REGS */              \
229
  {0x00000000, 0x0fffffff},     /* FP_REGS */                   \
230
  {0xfffffffe, 0x2fffffff},     /* GENERAL_OR_FP_REGS */        \
231
  {0x00000000, 0x10000000},     /* SHIFT_REGS */                \
232
  {0xfffffffe, 0x3fffffff}}     /* ALL_REGS */
233
 
234
/* Defines invalid mode changes.  */
235
 
236
#define CANNOT_CHANGE_MODE_CLASS(FROM, TO, CLASS) \
237
  pa_cannot_change_mode_class (FROM, TO, CLASS)
238
 
239
/* Return the class number of the smallest class containing
240
   reg number REGNO.  This could be a conditional expression
241
   or could index an array.  */
242
 
243
#define REGNO_REG_CLASS(REGNO)                                          \
244
  ((REGNO) == 0 ? NO_REGS                                                \
245
   : (REGNO) == 1 ? R1_REGS                                             \
246
   : (REGNO) < 32 || (REGNO) == 61 ? GENERAL_REGS                       \
247
   : (REGNO) < 60 ? FP_REGS                                             \
248
   : SHIFT_REGS)
249
 
250
/* Return the maximum number of consecutive registers
251
   needed to represent mode MODE in a register of class CLASS.  */
252
#define CLASS_MAX_NREGS(CLASS, MODE)                                    \
253
  ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
254
 
255
/* 1 if N is a possible register number for function argument passing.  */
256
 
257
#define FUNCTION_ARG_REGNO_P(N) \
258
  ((((N) >= 19) && (N) <= 26) \
259
   || (! TARGET_SOFT_FLOAT && (N) >= 32 && (N) <= 39))
260
 
261
/* How to refer to registers in assembler output.
262
   This sequence is indexed by compiler's hard-register-number (see above).  */
263
 
264
#define REGISTER_NAMES \
265
{"%r0",   "%r1",    "%r2",   "%r3",    "%r4",   "%r5",    "%r6",   "%r7",    \
266
 "%r8",   "%r9",    "%r10",  "%r11",   "%r12",  "%r13",   "%r14",  "%r15",   \
267
 "%r16",  "%r17",   "%r18",  "%r19",   "%r20",  "%r21",   "%r22",  "%r23",   \
268
 "%r24",  "%r25",   "%r26",  "%r27",   "%r28",  "%r29",   "%r30",  "%r31",   \
269
 "%fr4",  "%fr5",   "%fr6",  "%fr7",   "%fr8",  "%fr9",   "%fr10", "%fr11",  \
270
 "%fr12", "%fr13",  "%fr14", "%fr15",  "%fr16", "%fr17",  "%fr18", "%fr19",  \
271
 "%fr20", "%fr21",  "%fr22", "%fr23",  "%fr24", "%fr25",  "%fr26", "%fr27",  \
272
 "%fr28", "%fr29",  "%fr30", "%fr31",  "SAR",   "sfp"}
273
 
274
#define ADDITIONAL_REGISTER_NAMES \
275
 {{"%cr11",60}}
276
 
277
#define FP_SAVED_REG_LAST 49
278
#define FP_SAVED_REG_FIRST 40
279
#define FP_REG_STEP 1
280
#define FP_REG_FIRST 32
281
#define FP_REG_LAST 59

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.