Imported Upstream version 2.9.0
[debian/cc1111] / src / xa51 / 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, 
32     AOP_DIR, 
33     AOP_FAR,
34     AOP_CODE,
35     AOP_GPTR,
36     AOP_STK,
37     AOP_IMMD, 
38     AOP_BIT
39   };
40
41 /* type asmop : a homogenised type for 
42    all the different spaces an operand can be
43    in */
44 typedef struct asmop {
45   
46   short type;                   
47   /* can have values
48      AOP_LIT    -  operand is a literal value
49      AOP_REG    -  is in registers
50      AOP_DIR    -  direct, just a name
51      AOP_FAR    -  
52      AOP_CODE   - 
53      AOP_GPTR   -
54      AOP_STK    -  on stack (with offset)
55      AOP_IMMD   -  immediate value for eg. remateriazable 
56      AOP_CRY    -  carry contains the value of this
57   */
58   short size; /* size of this aop */
59   char name[2][64]; /* can be "r0" "r6h" [rxbw+y] "#..." */
60 } asmop;
61
62 #define AOP(x) x->aop
63 #define AOP_TYPE(x) x->aop->type
64 #define AOP_SIZE(x) x->aop->size
65 #define AOP_NAME(x) x->aop->name
66
67 void xa51_emitDebuggerSymbol (char *);
68
69 #endif