Imported Upstream version 2.9.0
[debian/cc1111] / src / ds390 / gen.h
1 /*-------------------------------------------------------------------------
2   gen.h - header file for code generation for DS80C390
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 SDCCGEN390_H
26 #define SDCCGEN390_H
27
28 enum
29   {
30     AOP_LIT = 1,
31     AOP_REG, AOP_DIR,
32     AOP_DPTR, AOP_DPTR2, AOP_R0, AOP_R1,
33     AOP_STK, AOP_IMMD, AOP_STR,
34     AOP_CRY, AOP_ACC, AOP_DPTRn, AOP_DUMMY
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_DPTR2  -  dptr2 contains address of operand (DS80C390 only).
49                                    AOP_R0/R1  -  r0/r1 contains address of operand
50                                    AOP_STK    -  should be pushed on stack this
51                                    can happen only for the result
52                                    AOP_IMMD   -  immediate value for eg. remateriazable
53                                    AOP_CRY    -  carry contains the value of this
54                                    AOP_STR    -  array of strings
55                                    AOP_ACC    -  result is in the acc:b pair
56                                    AOP_DPTRn  -  is in dptr(n)
57                                    AOP_DUMMY  -  read as 0, discard writes
58                                  */
59     short coff;                 /* current offset */
60     short size;                 /* total size */
61     unsigned code:1;            /* is in Code space */
62     unsigned paged:1;           /* in paged memory  */
63     unsigned short allocated;   /* number of times allocated */
64     union
65       {
66         short dptr;             /* if AOP_DPTRn */
67         value *aop_lit;         /* if literal */
68         regs *aop_reg[4];       /* array of registers */
69         char *aop_dir;          /* if direct  */
70         regs *aop_ptr;          /* either -> to r0 or r1 */
71         struct {
72                 int  from_cast_remat;   /* cast remat created this : immd2 field used for highest order*/
73                 char *aop_immd1;        /* if immediate others are implied */
74                 char *aop_immd2;        /* cast remat will generate this   */
75         } aop_immd;
76         int aop_stk;            /* stack offset when AOP_STK */
77         char *aop_str[5];       /* just a string array containing the location */
78       }
79     aopu;
80   }
81 asmop;
82
83 void gen390Code (iCode *);
84 void ds390_emitDebuggerSymbol (char *);
85
86 #endif