pCode - register allocation, flow analysis, and peephole.
[fw/sdcc] / src / pic / ralloc.h
1 /*-------------------------------------------------------------------------
2
3   SDCCralloc.h - header file register allocation
4
5                 Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
6                 PIC port   - T. Scott Dattalo scott@dattalo.com (2000)
7
8    This program is free software; you can redistribute it and/or modify it
9    under the terms of the GNU General Public License as published by the
10    Free Software Foundation; either version 2, or (at your option) any
11    later version.
12    
13    This program 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 this program; if not, write to the Free Software
20    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21    
22    In other words, you are welcome to use, share and improve this program.
23    You are forbidden to forbid anyone else to use, share and improve
24    what you give them.   Help stamp out software-hoarding!  
25 -------------------------------------------------------------------------*/
26 #include "SDCCicode.h"
27 #include "SDCCBBlock.h"
28 #ifndef SDCCRALLOC_H
29 #define SDCCRALLOC_H 1
30
31 enum
32   {
33     R2_IDX = 0, R3_IDX, R4_IDX,
34     R5_IDX, R6_IDX, R7_IDX,
35     R0_IDX, R1_IDX, X8_IDX,
36     X9_IDX, X10_IDX, X11_IDX,
37     X12_IDX, CND_IDX
38   };
39
40
41 #define REG_PTR 0x01
42 #define REG_GPR 0x02
43 #define REG_CND 0x04
44 /* definition for the registers */
45 typedef struct regs
46   {
47     short type;                 /* can have value 
48                                    REG_GPR, REG_PTR or REG_CND */
49     short rIdx;                 /* index into register table */
50     //    short otype;        
51     char *name;                 /* name */
52     char *dname;                /* name when direct access needed */
53     //  char *base ;         /* base address */
54     short offset;               /* offset from the base */
55     unsigned isFree:1;          /* is currently unassigned  */
56     unsigned wasUsed:1;         /* becomes true if register has been used */
57   }
58 regs;
59 extern regs regspic14[];
60 extern int pic14_nRegs;
61
62 regs *pic14_regWithIdx (int);
63 void  pic14_freeAllRegs ();
64 void  pic14_deallocateAllRegs ();
65 regs *pic14_findFreeReg(void);
66
67 enum PIC_register_types
68   {
69     PIC_INDF,
70     PIC_TMR0,
71     PIC_FSR,
72     PIC_STATUS,
73     PIC_IOPORT,
74     PIC_IOTRIS,
75     PIC_GPR,                    /*  A general purpose file register */
76     PIC_SFR                     /*  A special function register */
77   };
78
79
80 #endif