* Runs dhrystone. 68.83d/s with terrible code.
[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 enum {
29     /* Is a literal */
30     AOP_LIT = 1,
31     /* Is in a register */
32     AOP_REG, 
33     /* Is in direct space */
34     AOP_DIR, 
35     /* Is on the stack */
36     AOP_STK ,
37     /* Is an immediate value */
38     AOP_IMMD, 
39     /* Is a string (?) */
40     AOP_STR,
41     /* Is in the carry register */
42     AOP_CRY, 
43     /* Is pointed to by IY */
44     AOP_IY,
45     /* Is pointed to by HL */
46     AOP_HL,
47     /* Is in A */
48     AOP_ACC };
49
50 /* type asmop : a homogenised type for 
51    all the different spaces an operand can be
52    in */
53 typedef struct asmop {
54     
55     short type ;  /* can have values
56                      AOP_LIT    -  operand is a literal value
57                      AOP_REG    -  is in registers
58                      AOP_DIR    -  direct just a name
59                      AOP_DPTR   -  dptr contains address of operand
60                      AOP_R0/R1  -  r0/r1 contains address of operand               
61                      AOP_STK    -  should be pushed on stack this
62                                    can happen only for the result
63                      AOP_IMMD   -  immediate value for eg. remateriazable 
64                      AOP_CRY    -  carry contains the value of this
65                      AOP_STR    -  array of strings
66                      AOP_ACC    -  result is in the acc:b pair
67                   */
68     short coff ;  /* current offset */
69     short size ;  /* total size */
70     unsigned code :1 ;         /* is in Code space */
71     unsigned paged:1 ;         /* in paged memory  */
72     unsigned freed:1 ;         /* already freed    */
73     union {
74         value *aop_lit ;       /* if literal */
75         regs  *aop_reg[4];     /* array of registers */
76         char  *aop_dir ;       /* if direct  */
77         char  *aop_immd;       /* if immediate others are implied */    
78         int    aop_stk ;       /* stack offset when AOP_STK */
79         char  *aop_str[4];     /* just a string array containing the location */
80     } aopu;
81 } asmop;
82
83 void genZ80Code (iCode *);
84
85
86 #endif