]> git.sur5r.net Git - cc65/blob - src/ca65/studyexpr.h
Much extended StudyExpr
[cc65] / src / ca65 / studyexpr.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                studyexpr.h                                */
4 /*                                                                           */
5 /*                         Study an expression tree                          */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2003      Ullrich von Bassewitz                                       */
10 /*               Römerstraße 52                                              */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef STUDYEXPR_H
37 #define STUDYEXPR_H
38
39
40
41 /* common */
42 #include "exprdefs.h"
43
44
45
46 /*****************************************************************************/
47 /*                                   Data                                    */
48 /*****************************************************************************/
49
50
51
52 /* Flags */
53 #define ED_OK           0x00            /* Nothing special */
54 #define ED_TOO_COMPLEX  0x01            /* Expression is too complex */
55
56 /* Symbol reference */
57 typedef struct ED_SymRef ED_SymRef;
58 struct ED_SymRef {
59     long                Count;          /* Number of references */
60     struct SymEntry*    Ref;            /* Actual reference */
61 };
62
63 /* Section reference */
64 typedef struct ED_SecRef ED_SecRef;
65 struct ED_SecRef {
66     long                Count;          /* Number of references */
67     unsigned            Ref;            /* Actual reference */
68 };
69
70 /* Structure for parsing expression trees */
71 typedef struct ExprDesc ExprDesc;
72 struct ExprDesc {
73     unsigned short      Flags;          /* See ED_xxx */
74     unsigned char       AddrSize;       /* Address size of the expression */
75     long                Val;            /* The offset value */
76     long                Right;          /* Right value for StudyBinaryExpr */
77
78     /* Symbol reference management */
79     unsigned            SymCount;       /* Number of symbols referenced */
80     unsigned            SymLimit;       /* Memory allocated */
81     ED_SymRef*          SymRef;         /* Symbol references */
82
83     /* Section reference management */
84     unsigned            SecCount;       /* Number of sections referenced */
85     unsigned            SecLimit;       /* Memory allocated */
86     ED_SecRef*          SecRef;         /* Section references */
87 };
88
89
90
91 /*****************************************************************************/
92 /*                              struct ExprDesc                              */
93 /*****************************************************************************/
94
95
96
97 ExprDesc* ED_Init (ExprDesc* ED);
98 /* Initialize an ExprDesc structure for use with StudyExpr */
99
100 void ED_Done (ExprDesc* ED);
101 /* Delete allocated memory for an ExprDesc. */
102
103 int ED_IsConst (const ExprDesc* ED);
104 /* Return true if the expression is constant */
105
106
107
108 /*****************************************************************************/
109 /*                                   Code                                    */
110 /*****************************************************************************/
111
112
113
114 void StudyExpr (ExprNode* Expr, ExprDesc* D);
115 /* Study an expression tree and place the contents into D */
116
117
118
119 /* End of studyexpr.h */
120 #endif
121
122
123