fixed bug #477835 for the mcs port
[fw/sdcc] / src / mcs51 / 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     R2_IDX = 0, R3_IDX, R4_IDX,
33     R5_IDX, R6_IDX, R7_IDX,
34     R0_IDX, R1_IDX, X8_IDX,
35     X9_IDX, X10_IDX, X11_IDX,
36     X12_IDX, CND_IDX
37   };
38
39
40 #define REG_PTR 0x01
41 #define REG_GPR 0x02
42 #define REG_CND 0x04
43 /* definition for the registers */
44 typedef struct regs
45   {
46     short type;                 /* can have value 
47                                    REG_GPR, REG_PTR or REG_CND */
48     short rIdx;                 /* index into register table */
49     short otype;
50     char *name;                 /* name */
51     char *dname;                /* name when direct access needed */
52     char *base;                 /* base address */
53     short offset;               /* offset from the base */
54     unsigned isFree:1;          /* is currently unassigned  */
55   }
56 regs;
57 extern regs regs8051[];
58
59 regs *mcs51_regWithIdx (int);
60
61 bitVect *mcs51_rUmaskForOp (operand * op);
62
63 #endif