]> git.cworth.org Git - apitrace/blob - common/trace_model.hpp
Merge branch 'master' into d3dretrace
[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     const EnumValue *
233     lookup() {
234         // TODO: use a std::map
235         for (const EnumValue *it = sig->values; it != sig->values + sig->num_values; ++it) {
236             if (it->value == value) {
237                 return it;
238             }
239         }
240         return NULL;
241     }
242 };
243
244
245 class Bitmask : public UInt
246 {
247 public:
248     Bitmask(const BitmaskSig *_sig, unsigned long long _value) : UInt(_value), sig(_sig) {}
249
250     void visit(Visitor &visitor);
251
252     const BitmaskSig *sig;
253 };
254
255
256 class Struct : public Value
257 {
258 public:
259     Struct(StructSig *_sig) : sig(_sig), members(_sig->num_members) { }
260     ~Struct();
261
262     bool toBool(void) const;
263     void visit(Visitor &visitor);
264
265     const StructSig *sig;
266     std::vector<Value *> members;
267 };
268
269
270 class Array : public Value
271 {
272 public:
273     Array(size_t len) : values(len) {}
274     ~Array();
275
276     bool toBool(void) const;
277     void visit(Visitor &visitor);
278
279     std::vector<Value *> values;
280 };
281
282
283 class Blob : public Value
284 {
285 public:
286     Blob(size_t _size) {
287         size = _size;
288         buf = new char[_size];
289         bound = false;
290     }
291
292     ~Blob();
293
294     bool toBool(void) const;
295     void *toPointer(void) const;
296     void *toPointer(bool bind);
297     void visit(Visitor &visitor);
298
299     size_t size;
300     char *buf;
301     bool bound;
302 };
303
304
305 class Pointer : public UInt
306 {
307 public:
308     Pointer(unsigned long long value) : UInt(value) {}
309
310     bool toBool(void) const;
311     void *toPointer(void) const;
312     void *toPointer(bool bind);
313     unsigned long long toUIntPtr(void) const;
314     void visit(Visitor &visitor);
315 };
316
317
318 class Visitor
319 {
320 public:
321     virtual void visit(Null *);
322     virtual void visit(Bool *);
323     virtual void visit(SInt *);
324     virtual void visit(UInt *);
325     virtual void visit(Float *);
326     virtual void visit(Double *);
327     virtual void visit(String *);
328     virtual void visit(Enum *);
329     virtual void visit(Bitmask *);
330     virtual void visit(Struct *);
331     virtual void visit(Array *);
332     virtual void visit(Blob *);
333     virtual void visit(Pointer *);
334
335 protected:
336     inline void _visit(Value *value) {
337         if (value) { 
338             value->visit(*this); 
339         }
340     }
341 };
342
343
344 typedef unsigned CallFlags;
345
346 /**
347  * Call flags.
348  *
349  * TODO: It might be better to to record some of these (but not all) into the
350  * trace file.
351  */
352 enum {
353
354     /**
355      * Whether a call was really done by the application or not.
356      *
357      * This flag is set for fake calls -- calls not truly done by the application
358      * but emitted and recorded for completeness, to provide contextual information
359      * necessary for retracing, that would not be available through other ways.
360      *
361      * XXX: This one definetely needs to go into the trace file.
362      */
363     CALL_FLAG_FAKE                      = (1 << 0),
364
365     /**
366      * Whether this call should be retraced or ignored.
367      *
368      * This flag is set for calls which can't be safely replayed (due to incomplete
369      * information) or that have no sideffects.
370      *
371      * Some incomplete calls are unreproduceable, but not all.
372      */
373     CALL_FLAG_NON_REPRODUCIBLE         = (1 << 1),
374     
375     /**
376      * Whether this call has no side-effects, therefore don't need to be
377      * retraced.
378      *
379      * This flag is set for calls that merely query information which is not
380      * needed for posterior calls.
381      */
382     CALL_FLAG_NO_SIDE_EFFECTS            = (1 << 2),
383
384     /**
385      * Whether this call renders into the bound rendertargets.
386      */
387     CALL_FLAG_RENDER                    = (1 << 3),
388
389     /**
390      * Whether this call causes render target to be swapped.
391      *
392      * This does not mark frame termination by itself -- that's solely the
393      * responsibility of `endOfFrame` bit. 
394      *
395      * This mean that snapshots should be take prior to the call, and not
396      * after.
397      */
398     CALL_FLAG_SWAP_RENDERTARGET         = (1 << 4),
399         
400     /**
401      * Whether this call terminates a frame.
402      *
403      * XXX: This can't always be determined by the function name, so it should also
404      * go into the trace file eventually.
405      */
406     CALL_FLAG_END_FRAME                 = (1 << 5),
407
408     /**
409      * Whether this call is incomplete, i.e., it never returned.
410      */
411     CALL_FLAG_INCOMPLETE                = (1 << 6),
412
413     /**
414      * Whether this call is verbose (i.e., not usually interesting).
415      */
416     CALL_FLAG_VERBOSE                  = (1 << 7),
417 };
418
419
420 struct Arg
421 {
422     Value *value;
423 };
424
425
426 class Call
427 {
428 public:
429     unsigned thread_id;
430     unsigned no;
431     const FunctionSig *sig;
432     std::vector<Arg> args;
433     Value *ret;
434
435     CallFlags flags;
436
437     Call(FunctionSig *_sig, const CallFlags &_flags, unsigned _thread_id) :
438         thread_id(_thread_id), 
439         sig(_sig), 
440         args(_sig->num_args), 
441         ret(0),
442         flags(_flags) {
443     }
444
445     ~Call();
446
447     inline const char * name(void) const {
448         return sig->name;
449     }
450
451     inline Value & arg(unsigned index) {
452         assert(index < args.size());
453         return *(args[index].value);
454     }
455 };
456
457
458 } /* namespace trace */
459
460 #endif /* _TRACE_MODEL_HPP_ */