Imported Upstream version 2.9.0
[debian/cc1111] / src / avr / 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
6    This program is free software; you can redistribute it and/or modify it
7    under the terms of the GNU General Public License as published by the
8    Free Software Foundation; either version 2, or (at your option) any
9    later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19    
20    In other words, you are welcome to use, share and improve this program.
21    You are forbidden to forbid anyone else to use, share and improve
22    what you give them.   Help stamp out software-hoarding!  
23 -------------------------------------------------------------------------*/
24
25 #ifndef SDCCGEN51_H
26 #define SDCCGEN51_H
27
28 enum
29   {
30     AOP_LIT = 1,
31     AOP_REG, AOP_DIR,
32     AOP_DPTR, AOP_X, AOP_Z,
33     AOP_STK, AOP_IMMD, AOP_STR,
34     AOP_CRY, AOP_ACC, AOP_STK_D
35   };
36
37 /* type asmop : a homogenised type for 
38    all the different spaces an operand can be
39    in */
40 typedef struct asmop
41   {
42
43     short type;                 /* can have values
44                                    AOP_LIT    -  operand is a literal value
45                                    AOP_REG    -  is in registers
46                                    AOP_DIR    -  direct just a name
47                                    AOP_DPTR   -  dptr contains address of operand
48                                    AOP_R0/R1  -  r0/r1 contains address of operand               
49                                    AOP_STK    -  should be pushed on stack this
50                                    can happen only for the result
51                                    AOP_IMMD   -  immediate value for eg. remateriazable 
52                                    AOP_CRY    -  carry contains the value of this
53                                    AOP_STR    -  array of strings
54                                    AOP_ACC    -  result is in the acc:b pair
55                                  */
56     short coff;                 /* current offset */
57     short size;                 /* total size */
58     unsigned code:1;            /* is in Code space */
59     unsigned paged:1;           /* in paged memory  */
60     unsigned freed:1;           /* already freed    */
61     union
62       {
63         value *aop_lit;         /* if literal */
64         regs *aop_reg[4];       /* array of registers */
65         char *aop_dir;          /* if direct  */
66         regs *aop_ptr;          /* either -> R26 or R30 */
67         char *aop_immd;         /* if immediate others are implied */
68         int aop_stk;            /* stack offset when AOP_STK */
69         char *aop_str[4];       /* just a string array containing the location */
70       }
71     aopu;
72     regs *aop_ptr2;             /* either -> R27 or R31 */
73   }
74 asmop;
75
76 void genAVRCode (iCode *);
77 void avr_emitDebuggerSymbol (char *);
78
79 extern char *fReturn8051[];
80 extern char *fReturn390[];
81 extern unsigned fAVRReturnSize;
82 extern char **fAVRReturn;
83
84 #endif