Just to make sure I don't loose them again when syncing with cvs.
[fw/sdcc] / 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_STK, 
36     AOP_IMMD, 
37     AOP_CRY
38   };
39
40 /* type asmop : a homogenised type for 
41    all the different spaces an operand can be
42    in */
43 typedef struct asmop {
44   
45   short type;                   
46   /* can have values
47      AOP_LIT    -  operand is a literal value
48      AOP_REG    -  is in registers
49      AOP_DIR    -  direct, just a name
50      AOP_FAR    -  
51      AOP_CODE   - 
52      AOP_STK    -  on stack (with offset)
53      AOP_IMMD   -  immediate value for eg. remateriazable 
54      AOP_CRY    -  carry contains the value of this
55   */
56   short size; /* size of this aop */
57   char name[2][64]; /* can be "r0" "r6h" [rxbw+y] "#..." */
58 } asmop;
59
60 #define AOP(x) x->aop
61 #define AOP_TYPE(x) x->aop->type
62 #define AOP_SIZE(x) x->aop->size
63 #define AOP_NAME(x) x->aop->name
64
65 #endif