]> git.cworth.org Git - apitrace/blob - common/trace_model.hpp
Correctly copy "out" arguments to the "leave" portion of the trace
[apitrace] / common / trace_model.hpp
1 /**************************************************************************
2  *
3  * Copyright 2010 VMware, Inc.
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 /*
27  * Object hierarchy for describing the traces in memory.
28  */
29
30 #ifndef _TRACE_MODEL_HPP_
31 #define _TRACE_MODEL_HPP_
32
33
34 #include <assert.h>
35 #include <stdlib.h>
36
37 #include <map>
38 #include <vector>
39
40
41 namespace trace {
42
43
44 typedef unsigned Id;
45
46
47 struct FunctionSig {
48     Id id;
49     const char *name;
50     unsigned num_args;
51     const char **arg_names;
52 };
53
54
55 struct StructSig {
56     Id id;
57     const char *name;
58     unsigned num_members;
59     const char **member_names;
60 };
61
62
63 struct EnumValue {
64     const char *name;
65     signed long long value;
66 };
67
68
69 struct EnumSig {
70     Id id;
71     unsigned num_values;
72     const EnumValue *values;
73 };
74
75
76 struct BitmaskFlag {
77     const char *name;
78     unsigned long long value;
79 };
80
81
82 struct BitmaskSig {
83     Id id;
84     unsigned num_flags;
85     const BitmaskFlag *flags;
86 };
87
88
89 class Visitor;
90
91
92 class Value
93 {
94 public:
95     virtual ~Value() {}
96     virtual void visit(Visitor &visitor) = 0;
97
98     virtual bool toBool(void) const = 0;
99     virtual signed long long toSInt(void) const;
100     virtual unsigned long long toUInt(void) const;
101     virtual float toFloat(void) const;
102     virtual double toDouble(void) const;
103
104     virtual void *toPointer(void) const;
105     virtual void *toPointer(bool bind);
106     virtual unsigned long long toUIntPtr(void) const;
107     virtual const char *toString(void) const;
108
109     const Value & operator[](size_t index) const;
110 };
111
112
113 class Null : public Value
114 {
115 public:
116     bool toBool(void) const;
117     signed long long toSInt(void) const;
118     unsigned long long toUInt(void) const;
119     virtual float toFloat(void) const;
120     virtual double toDouble(void) const;
121     void *toPointer(void) const;
122     void *toPointer(bool bind);
123     unsigned long long toUIntPtr(void) const;
124     const char *toString(void) const;
125     void visit(Visitor &visitor);
126 };
127
128
129 class Bool : public Value
130 {
131 public:
132     Bool(bool _value) : value(_value) {}
133
134     bool toBool(void) const;
135     signed long long toSInt(void) const;
136     unsigned long long toUInt(void) const;
137     virtual float toFloat(void) const;
138     virtual double toDouble(void) const;
139     void visit(Visitor &visitor);
140
141     bool value;
142 };
143
144
145 class SInt : public Value
146 {
147 public:
148     SInt(signed long long _value) : value(_value) {}
149
150     bool toBool(void) const;
151     signed long long toSInt(void) const;
152     unsigned long long toUInt(void) const;
153     virtual float toFloat(void) const;
154     virtual double toDouble(void) const;
155     void visit(Visitor &visitor);
156
157     signed long long value;
158 };
159
160
161 class UInt : public Value
162 {
163 public:
164     UInt(unsigned long long _value) : value(_value) {}
165
166     bool toBool(void) const;
167     signed long long toSInt(void) const;
168     unsigned long long toUInt(void) const;
169     virtual float toFloat(void) const;
170     virtual double toDouble(void) const;
171     void visit(Visitor &visitor);
172
173     unsigned long long value;
174 };
175
176
177 class Float : public Value
178 {
179 public:
180     Float(float _value) : value(_value) {}
181
182     bool toBool(void) const;
183     signed long long toSInt(void) const;
184     unsigned long long toUInt(void) const;
185     virtual float toFloat(void) const;
186     virtual double toDouble(void) const;
187     void visit(Visitor &visitor);
188
189     float value;
190 };
191
192
193 class Double : public Value
194 {
195 public:
196     Double(double _value) : value(_value) {}
197
198     bool toBool(void) const;
199     signed long long toSInt(void) const;
200     unsigned long long toUInt(void) const;
201     virtual float toFloat(void) const;
202     virtual double toDouble(void) const;
203     void visit(Visitor &visitor);
204
205     double value;
206 };
207
208
209 class String : public Value
210 {
211 public:
212     String(const char * _value) : value(_value) {}
213     ~String();
214
215     bool toBool(void) const;
216     const char *toString(void) const;
217     void visit(Visitor &visitor);
218
219     const char * value;
220 };
221
222
223 class Enum : public SInt
224 {
225 public:
226     Enum(const EnumSig *_sig, signed long long _value) : SInt(_value), sig(_sig) {}
227
228     void visit(Visitor &visitor);
229
230     const EnumSig *sig;
231 };
232
233
234 class Bitmask : public UInt
235 {
236 public:
237     Bitmask(const BitmaskSig *_sig, unsigned long long _value) : UInt(_value), sig(_sig) {}
238
239     void visit(Visitor &visitor);
240
241     const BitmaskSig *sig;
242 };
243
244
245 class Struct : public Value
246 {
247 public:
248     Struct(StructSig *_sig) : sig(_sig), members(_sig->num_members) { }
249     ~Struct();
250
251     bool toBool(void) const;
252     void visit(Visitor &visitor);
253
254     const StructSig *sig;
255     std::vector<Value *> members;
256 };
257
258
259 class Array : public Value
260 {
261 public:
262     Array(size_t len) : values(len) {}
263     ~Array();
264
265     bool toBool(void) const;
266     void visit(Visitor &visitor);
267
268     std::vector<Value *> values;
269 };
270
271
272 class Blob : public Value
273 {
274 public:
275     Blob(size_t _size) {
276         size = _size;
277         buf = new char[_size];
278         bound = false;
279     }
280
281     ~Blob();
282
283     bool toBool(void) const;
284     void *toPointer(void) const;
285     void *toPointer(bool bind);
286     void visit(Visitor &visitor);
287
288     size_t size;
289     char *buf;
290     bool bound;
291 };
292
293
294 class Pointer : public UInt
295 {
296 public:
297     Pointer(unsigned long long value) : UInt(value) {}
298
299     bool toBool(void) const;
300     void *toPointer(void) const;
301     void *toPointer(bool bind);
302     unsigned long long toUIntPtr(void) const;
303     void visit(Visitor &visitor);
304 };
305
306
307 class Visitor
308 {
309 public:
310     virtual void visit(Null *);
311     virtual void visit(Bool *);
312     virtual void visit(SInt *);
313     virtual void visit(UInt *);
314     virtual void visit(Float *);
315     virtual void visit(Double *);
316     virtual void visit(String *);
317     virtual void visit(Enum *);
318     virtual void visit(Bitmask *);
319     virtual void visit(Struct *);
320     virtual void visit(Array *);
321     virtual void visit(Blob *);
322     virtual void visit(Pointer *);
323
324 protected:
325     inline void _visit(Value *value) {
326         if (value) { 
327             value->visit(*this); 
328         }
329     }
330 };
331
332
333 typedef unsigned CallFlags;
334
335 /**
336  * Call flags.
337  *
338  * TODO: It might be better to to record some of these (but not all) into the
339  * trace file.
340  */
341 enum {
342
343     /**
344      * Whether a call was really done by the application or not.
345      *
346      * This flag is set for fake calls -- calls not truly done by the application
347      * but emitted and recorded for completeness, to provide contextual information
348      * necessary for retracing, that would not be available through other ways.
349      *
350      * XXX: This one definetely needs to go into the trace file.
351      */
352     CALL_FLAG_FAKE                      = (1 << 0),
353
354     /**
355      * Whether this call should be retraced or ignored.
356      *
357      * This flag is set for calls which can't be safely replayed (due to incomplete
358      * information) or that have no sideffects.
359      *
360      * Some incomplete calls are unreproduceable, but not all.
361      */
362     CALL_FLAG_NON_REPRODUCIBLE         = (1 << 1),
363     
364     /**
365      * Whether this call has no side-effects, therefore don't need to be
366      * retraced.
367      *
368      * This flag is set for calls that merely query information which is not
369      * needed for posterior calls.
370      */
371     CALL_FLAG_NO_SIDE_EFFECTS            = (1 << 2),
372
373     /**
374      * Whether this call renders into the bound rendertargets.
375      */
376     CALL_FLAG_RENDER                    = (1 << 3),
377
378     /**
379      * Whether this call causes render target to be swapped.
380      *
381      * This does not mark frame termination by itself -- that's solely the
382      * responsibility of `endOfFrame` bit. 
383      *
384      * This mean that snapshots should be take prior to the call, and not
385      * after.
386      */
387     CALL_FLAG_SWAP_RENDERTARGET         = (1 << 4),
388         
389     /**
390      * Whether this call terminates a frame.
391      *
392      * XXX: This can't always be determined by the function name, so it should also
393      * go into the trace file eventually.
394      */
395     CALL_FLAG_END_FRAME                 = (1 << 5),
396
397     /**
398      * Whether this call is incomplete, i.e., it never returned.
399      */
400     CALL_FLAG_INCOMPLETE                = (1 << 6),
401
402     /**
403      * Whether this call is verbose (i.e., not usually interesting).
404      */
405     CALL_FLAG_VERBOSE                  = (1 << 7),
406 };
407
408
409 struct Arg
410 {
411     Value *value;
412 };
413
414
415 class Call
416 {
417 public:
418     unsigned thread_id;
419     unsigned no;
420     const FunctionSig *sig;
421     std::vector<Arg> args;
422     Value *ret;
423
424     CallFlags flags;
425
426     Call(FunctionSig *_sig, const CallFlags &_flags, unsigned _thread_id) :
427         thread_id(_thread_id), 
428         sig(_sig), 
429         args(_sig->num_args), 
430         ret(0),
431         flags(_flags) {
432     }
433
434     ~Call();
435
436     inline const char * name(void) const {
437         return sig->name;
438     }
439
440     inline Value & arg(unsigned index) {
441         assert(index < args.size());
442         return *(args[index].value);
443     }
444 };
445
446
447 } /* namespace trace */
448
449 #endif /* _TRACE_MODEL_HPP_ */