Fixing some problems and bringing the NT version up to date - naim
[dyninst.git] / dyninstAPI / h / BPatch_snippet.h
1 /*
2  * Copyright (c) 1996 Barton P. Miller
3  * 
4  * We provide the Paradyn Parallel Performance Tools (below
5  * described as Paradyn") on an AS IS basis, and do not warrant its
6  * validity or performance.  We reserve the right to update, modify,
7  * or discontinue this software at any time.  We shall have no
8  * obligation to supply such updates or modifications or any other
9  * form of support to you.
10  * 
11  * This license is for research uses.  For such uses, there is no
12  * charge. We define "research use" to mean you may freely use it
13  * inside your organization for whatever purposes you see fit. But you
14  * may not re-distribute Paradyn or parts of Paradyn, in any form
15  * source or binary (including derivatives), electronic or otherwise,
16  * to any other organization or entity without our permission.
17  * 
18  * (for other uses, please contact us at paradyn@cs.wisc.edu)
19  * 
20  * All warranties, including without limitation, any warranty of
21  * merchantability or fitness for a particular purpose, are hereby
22  * excluded.
23  * 
24  * By your use of Paradyn, you understand and agree that we (or any
25  * other person or entity with proprietary rights in Paradyn) are
26  * under no obligation to provide either maintenance services,
27  * update services, notices of latent defects, or correction of
28  * defects for Paradyn.
29  * 
30  * Even if advised of the possibility of such damages, under no
31  * circumstances shall we (or any other person or entity with
32  * proprietary rights in the software licensed hereunder) be liable
33  * to you or any third party for direct, indirect, or consequential
34  * damages of any character regardless of type of action, including,
35  * without limitation, loss of profits, loss of use, loss of good
36  * will, or computer failure or malfunction.  You agree to indemnify
37  * us (and any other person or entity with proprietary rights in the
38  * software licensed hereunder) for any and all liability it may
39  * incur to third parties resulting from your use of Paradyn.
40  */
41
42 #ifndef _BPatch_snippet_h_
43 #define _BPatch_snippet_h_
44
45 #include "BPatch_Vector.h"
46
47 class AstNode;
48 class function_base;
49 class process;
50
51 class BPatch_function;
52 class BPatch_type;
53
54 typedef enum {
55     BPatch_lt,
56     BPatch_eq,
57     BPatch_gt,
58     BPatch_le,
59     BPatch_ne,
60     BPatch_ge,
61     BPatch_and,
62     BPatch_or
63 } BPatch_relOp;
64
65 typedef enum {
66     BPatch_assign,
67     BPatch_plus,
68     BPatch_minus,
69     BPatch_divide,
70     BPatch_times,
71     BPatch_mod,
72     BPatch_ref,
73     BPatch_seq
74 } BPatch_binOp;
75
76 typedef enum {
77     BPatch_negate,
78     BPatch_address
79 } BPatch_unOp;
80
81
82 class BPatch_function {
83 public:
84 // The following are for  internal use by the library only:
85     function_base *func;
86     BPatch_function(function_base *_func) : func(_func) {};
87
88 // For users of the library:
89     char        *getName(char *s, int len);
90 };
91
92
93 class BPatch_snippet {
94 public:
95 // The following members are for  internal use by the library only:
96     AstNode     *ast; /* XXX It would be better if this was protected */
97 // End members for internal use only.
98
99     BPatch_snippet() : ast(NULL) {};
100     BPatch_snippet(const BPatch_snippet &);
101     BPatch_snippet &operator=(const BPatch_snippet &);
102
103     virtual     ~BPatch_snippet();
104
105     float       getCost();
106 };
107
108 class BPatch_arithExpr: public BPatch_snippet {
109 public:
110     BPatch_arithExpr(BPatch_binOp op,
111                      const BPatch_snippet &lOperand,
112                      const BPatch_snippet &rOperand);
113 };
114
115 class BPatch_boolExpr : public BPatch_snippet {
116 public:
117     BPatch_boolExpr(BPatch_relOp op, const BPatch_snippet &lOperand,
118                     const BPatch_snippet &rOperand);
119 };
120
121 class BPatch_constExpr : public BPatch_snippet {
122 public:
123     BPatch_constExpr(int value);
124 #ifdef BPATCH_NOT_YET
125     BPatch_constExpr(float value);
126 #endif
127     BPatch_constExpr(const char *value);
128 };
129
130 class BPatch_funcCallExpr : public BPatch_snippet {
131 public:
132     BPatch_funcCallExpr(const BPatch_function& func,
133                         const BPatch_Vector<BPatch_snippet *> &args);
134 };
135
136 class BPatch_ifExpr : public BPatch_snippet {
137 public:
138     BPatch_ifExpr(const BPatch_boolExpr &conditional,
139                   const BPatch_snippet &tClase);
140     BPatch_ifExpr(const BPatch_boolExpr &conditional,
141                   const BPatch_snippet &tClase,
142                   const BPatch_snippet &fClause);
143 };
144
145 class BPatch_nullExpr : public BPatch_snippet {
146 public:
147     BPatch_nullExpr();
148 };
149
150 class BPatch_paramExpr : public BPatch_snippet {
151 public:
152     BPatch_paramExpr(int n);
153 };
154
155 class BPatch_retExpr : public BPatch_snippet {
156 public:
157     BPatch_retExpr();
158 };
159
160 class BPatch_sequence : public BPatch_snippet {
161 public:
162     BPatch_sequence(const BPatch_Vector<BPatch_snippet *> &items);
163 };
164
165 class BPatch_variableExpr : public BPatch_snippet {
166     process     *proc;
167     void        *address;
168 public:
169 // The following functions are for internal use by the library only:
170     BPatch_variableExpr(process *in_process, void *in_address,
171                         const BPatch_type *type);
172
173     void *getAddress() const { return address; }
174
175 // Public functions for use by users of the library:
176     void readValue(void *dst);
177     void writeValue(const void *src);
178 };
179
180 #endif /* _BPatch_snippet_h_ */