902e11f0b356d5e260123d6f9d4a06e5913f6b1f
[fw/sdcc] / src / z80 / 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 typedef enum
29   {
30     AOP_INVALID,
31     /* Is a literal */
32     AOP_LIT = 1,
33     /* Is in a register */
34     AOP_REG,
35     /* Is in direct space */
36     AOP_DIR,
37     /* SFR space ($FF00 and above) */
38     AOP_SFR,
39     /* Is on the stack */
40     AOP_STK,
41     /* Is an immediate value */
42     AOP_IMMD,
43     /* Is a string (?) */
44     AOP_STR,
45     /* Is in the carry register */
46     AOP_CRY,
47     /* Is pointed to by IY */
48     AOP_IY,
49     /* Is pointed to by HL */
50     AOP_HL,
51     /* Is in A */
52     AOP_ACC,
53     /* Is in H and L */
54     AOP_HLREG
55   }
56 AOP_TYPE;
57
58 /* type asmop : a homogenised type for 
59    all the different spaces an operand can be
60    in */
61 typedef struct asmop
62   {
63     AOP_TYPE type;
64     short coff;                 /* current offset */
65     short size;                 /* total size */
66     unsigned code:1;            /* is in Code space */
67     unsigned paged:1;           /* in paged memory  */
68     unsigned freed:1;           /* already freed    */
69     union
70       {
71         value *aop_lit;         /* if literal */
72         regs *aop_reg[4];       /* array of registers */
73         char *aop_dir;          /* if direct  */
74         char *aop_immd;         /* if immediate others are implied */
75         int aop_stk;            /* stack offset when AOP_STK */
76         const char *aop_str[4]; /* just a string array containing the location */
77       }
78     aopu;
79   }
80 asmop;
81
82 void genZ80Code (iCode *);
83
84
85 #endif