Added support for multiplication. Fixed peep hole bugs (and more functionality to...
[fw/sdcc] / src / pic / gen.h
1 /*-------------------------------------------------------------------------
2   SDCCgen51.h - header file for code generation for 8051
3
4              Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
5              PIC port   - T. Scott Dattalo scott@dattalo.com (2000)
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
26 #ifndef SDCCGENPIC14_H
27 #define SDCCGENPIC14_H
28
29 struct pCodeOp;
30
31 enum
32   {
33     AOP_LIT = 1,
34     AOP_REG, AOP_DIR,
35     AOP_DPTR, AOP_DPTR2, AOP_R0, AOP_R1,
36     AOP_STK, AOP_IMMD, AOP_STR,
37     AOP_CRY, AOP_ACC,
38     AOP_PCODE
39
40   };
41
42 /* type asmop : a homogenised type for 
43    all the different spaces an operand can be
44    in */
45 typedef struct asmop
46   {
47
48     short type;                 /* can have values
49                                    AOP_LIT    -  operand is a literal value
50                                    AOP_REG    -  is in registers
51                                    AOP_DIR    -  direct just a name
52                                    AOP_DPTR   -  dptr contains address of operand
53                                    AOP_DPTR2  -  dptr2 contains address of operand (DS80C390 only).
54                                    AOP_R0/R1  -  r0/r1 contains address of operand               
55                                    AOP_STK    -  should be pushed on stack this
56                                    can happen only for the result
57                                    AOP_IMMD   -  immediate value for eg. remateriazable 
58                                    AOP_CRY    -  carry contains the value of this
59                                    AOP_STR    -  array of strings
60                                    AOP_ACC    -  result is in the acc:b pair
61                                  */
62     short coff;                 /* current offset */
63     short size;                 /* total size */
64     unsigned code:1;            /* is in Code space */
65     unsigned paged:1;           /* in paged memory  */
66     unsigned freed:1;           /* already freed    */
67     union
68       {
69         value *aop_lit;         /* if literal */
70         regs *aop_reg[4];       /* array of registers */
71         char *aop_dir;          /* if direct  */
72         regs *aop_ptr;          /* either -> to r0 or r1 */
73         char *aop_immd;         /* if immediate others are implied */
74         int aop_stk;            /* stack offset when AOP_STK */
75         char *aop_str[4];       /* just a string array containing the location */
76 /*      regs *aop_alloc_reg;     * points to a dynamically allocated register */
77         pCodeOp *pcop;
78       }
79     aopu;
80   }
81 asmop;
82
83 void genpic14Code (iCode *);
84
85 //extern char *fReturnpic14[];
86 //extern char *fReturn390[];
87 extern unsigned fReturnSizePic;
88 //extern char **fReturn;
89
90
91 #define AOP(op) op->aop
92 #define AOP_TYPE(op) AOP(op)->type
93 #define AOP_SIZE(op) AOP(op)->size
94 #define IS_AOP_PREG(x) (AOP(x) && (AOP_TYPE(x) == AOP_R1 || \
95                        AOP_TYPE(x) == AOP_R0))
96
97 #define AOP_NEEDSACC(x) (AOP(x) && (AOP_TYPE(x) == AOP_CRY ||  \
98                         AOP_TYPE(x) == AOP_DPTR || AOP_TYPE(x) == AOP_DPTR2 || \
99                          AOP(x)->paged)) 
100
101 #define AOP_INPREG(x) (x && (x->type == AOP_REG &&                        \
102                       (x->aopu.aop_reg[0] == pic14_regWithIdx(R0_IDX) || \
103                       x->aopu.aop_reg[0] == pic14_regWithIdx(R1_IDX) )))
104
105 #define RESULTONSTACK(x) \
106                          (IC_RESULT(x) && IC_RESULT(x)->aop && \
107                          IC_RESULT(x)->aop->type == AOP_STK )
108
109 #define MOVA(x) if (strcmp(x,"a") && strcmp(x,"acc")) pic14_emitcode(";XXX mov","a,%s  %s,%d",x,__FILE__,__LINE__);
110 #define CLRC    pic14_emitcode(";XXX clr","c %s,%d",__FILE__,__LINE__);
111
112 #define BIT_NUMBER(x) (x & 7)
113 #define BIT_REGISTER(x) (x>>3)
114
115
116 #define LSB     0
117 #define MSB16   1
118 #define MSB24   2
119 #define MSB32   3
120
121
122 #define FUNCTION_LABEL_INC  40
123
124 /*-----------------------------------------------------------------*/
125 /* Macros for emitting skip instructions                           */
126 /*-----------------------------------------------------------------*/
127
128 #define emitSKPC    emitpcode(POC_BTFSS,popCopyGPR2Bit(PCOP(&pc_status),PIC_C_BIT))
129 #define emitSKPNC   emitpcode(POC_BTFSC,popCopyGPR2Bit(PCOP(&pc_status),PIC_C_BIT))
130 #define emitSKPZ    emitpcode(POC_BTFSS,popCopyGPR2Bit(PCOP(&pc_status),PIC_Z_BIT))
131 #define emitSKPNZ   emitpcode(POC_BTFSC,popCopyGPR2Bit(PCOP(&pc_status),PIC_Z_BIT))
132 #define emitSKPDC   emitpcode(POC_BTFSS,popCopyGPR2Bit(PCOP(&pc_status),PIC_DC_BIT))
133 #define emitSKPNDC  emitpcode(POC_BTFSC,popCopyGPR2Bit(PCOP(&pc_status),PIC_DC_BIT))
134 #define emitCLRZ    emitpcode(POC_BCF,  popCopyGPR2Bit(PCOP(&pc_status),PIC_Z_BIT))
135 #define emitCLRC    emitpcode(POC_BCF,  popCopyGPR2Bit(PCOP(&pc_status),PIC_C_BIT))
136 #define emitCLRDC   emitpcode(POC_BCF,  popCopyGPR2Bit(PCOP(&pc_status),PIC_DC_BIT))
137 #define emitSETZ    emitpcode(POC_BSF,  popCopyGPR2Bit(PCOP(&pc_status),PIC_Z_BIT))
138 #define emitSETC    emitpcode(POC_BSF,  popCopyGPR2Bit(PCOP(&pc_status),PIC_C_BIT))
139 #define emitSETDC   emitpcode(POC_BSF,  popCopyGPR2Bit(PCOP(&pc_status),PIC_DC_BIT))
140
141 int pic14_getDataSize(operand *op);
142 void emitpcode(PIC_OPCODE poc, pCodeOp *pcop);
143 void emitpLabel(int key);
144 void pic14_emitcode (char *inst,char *fmt, ...);
145 void DEBUGpic14_emitcode (char *inst,char *fmt, ...);
146 asmop *newAsmop (short type);
147 bool pic14_sameRegs (asmop *aop1, asmop *aop2 );
148 char *aopGet (asmop *aop, int offset, bool bit16, bool dname);
149
150
151 bool genPlusIncr (iCode *ic);
152 void pic14_outBitAcc(operand *result);
153 void genPlusBits (iCode *ic);
154 void genPlus (iCode *ic);
155 bool genMinusDec (iCode *ic);
156 void addSign(operand *result, int offset, int sign);
157 void genMinusBits (iCode *ic);
158 void genMinus (iCode *ic);
159
160
161 pCodeOp *popGetLabel(unsigned int key);
162 pCodeOp *popCopyReg(pCodeOpReg *pc);
163 pCodeOp *popCopyGPR2Bit(pCodeOp *pc, int bitval);
164 pCodeOp *popGetLit(unsigned int lit);
165 pCodeOp *popGetWithString(char *str);
166 pCodeOp *popRegFromString(char *str);
167 pCodeOp *popGet (asmop *aop, int offset);//, bool bit16, bool dname);
168 pCodeOp *popGetTempReg(void);
169 void popReleaseTempReg(pCodeOp *pcop);
170
171
172 void aopPut (asmop *aop, char *s, int offset);
173 void pic14_outAcc(operand *result);
174 void aopOp (operand *op, iCode *ic, bool result);
175 void pic14_outBitC(operand *result);
176 void pic14_toBoolean(operand *oper);
177 void freeAsmop (operand *op, asmop *aaop, iCode *ic, bool pop);
178
179
180
181 #endif