Imported Upstream version 2.9.0
[debian/cc1111] / src / avr / ralloc.h
1 /*-------------------------------------------------------------------------
2
3   SDCCralloc.h - header file register allocation
4
5                 Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
6
7    This program is free software; you can redistribute it and/or modify it
8    under the terms of the GNU General Public License as published by the
9    Free Software Foundation; either version 2, or (at your option) any
10    later version.
11    
12    This program 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 this program; if not, write to the Free Software
19    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20    
21    In other words, you are welcome to use, share and improve this program.
22    You are forbidden to forbid anyone else to use, share and improve
23    what you give them.   Help stamp out software-hoarding!  
24 -------------------------------------------------------------------------*/
25 #include "SDCCicode.h"
26 #include "SDCCBBlock.h"
27 #ifndef SDCCRALLOC_H
28 #define SDCCRALLOC_H 1
29
30 enum
31   {
32     R0_IDX = 0, R1_IDX, R2_IDX, R3_IDX, R4_IDX,
33     R5_IDX, R6_IDX, R7_IDX, R8_IDX, R9_IDX,
34     R10_IDX, R11_IDX, R12_IDX, R13_IDX, R14_IDX,
35     R15_IDX, R16_IDX, R17_IDX, R18_IDX, R19_IDX,
36     R20_IDX, R21_IDX, R22_IDX, R23_IDX, R24_IDX,
37     R25_IDX, R26_IDX, R27_IDX, R28_IDX, R29_IDX,
38     R30_IDX, R31_IDX, X_IDX, Z_IDX, CND_IDX
39   };
40
41
42 #define REG_PTR 0x01
43 #define REG_GPR 0x02
44 #define REG_SCR 0x04
45 #define REG_CND 0x08
46 #define REG_MASK 0x0f
47 #define REG_PAIR 0x10
48
49 /* definition for the registers */
50 typedef struct regs
51   {
52     short type;                 /* can have value 
53                                    REG_GPR, REG_PTR or REG_CND */
54     short rIdx;                 /* index into register table */
55     short otype;
56     char *name;                 /* name */
57     char *dname;                /* name when direct access needed */
58     char *base;                 /* base address */
59     short offset;               /* offset from the base */
60     unsigned isFree:1;          /* is currently unassigned  */
61     unsigned saveReq:1;         /* save required @ function entry ? */
62   }
63 regs;
64 extern regs regsAVR[];
65
66 regs *avr_regWithIdx (int);
67
68 #endif