]> git.cworth.org Git - apitrace/blob - retrace.hpp
Merge branch 'd3dretrace'
[apitrace] / retrace.hpp
1 /**************************************************************************
2  *
3  * Copyright 2011-2012 Jose Fonseca
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 #ifndef _RETRACE_HPP_
27 #define _RETRACE_HPP_
28
29 #include <assert.h>
30 #include <string.h>
31 #include <stdint.h>
32
33 #include <list>
34 #include <map>
35 #include <ostream>
36
37 #include "trace_model.hpp"
38 #include "trace_parser.hpp"
39
40
41 namespace retrace {
42
43
44 extern trace::Parser parser;
45
46
47 /**
48  * Handle map.
49  *
50  * It is just like a regular std::map<T, T> container, but lookups of missing
51  * keys return the key instead of default constructor.
52  *
53  * This is necessary for several GL named objects, where one can either request
54  * the implementation to generate an unique name, or pick a value never used
55  * before.
56  *
57  * XXX: In some cases, instead of returning the key, it would make more sense
58  * to return an unused data value (e.g., container count).
59  */
60 template <class T>
61 class map
62 {
63 private:
64     typedef std::map<T, T> base_type;
65     base_type base;
66
67 public:
68
69     T & operator[] (const T &key) {
70         typename base_type::iterator it;
71         it = base.find(key);
72         if (it == base.end()) {
73             return (base[key] = key);
74         }
75         return it->second;
76     }
77     
78     const T & operator[] (const T &key) const {
79         typename base_type::const_iterator it;
80         it = base.find(key);
81         if (it == base.end()) {
82             return (base[key] = key);
83         }
84         return it->second;
85     }
86 };
87
88
89 /**
90  * Similar to alloca(), but implemented with malloc.
91  */
92 class ScopedAllocator
93 {
94 private:
95     uintptr_t next;
96
97 public:
98     ScopedAllocator() :
99         next(0) {
100     }
101
102     inline void *
103     alloc(size_t size) {
104         if (!size) {
105             return NULL;
106         }
107
108         uintptr_t * buf = static_cast<uintptr_t *>(malloc(sizeof(uintptr_t) + size));
109         if (!buf) {
110             return NULL;
111         }
112
113         *buf = next;
114         next = reinterpret_cast<uintptr_t>(buf);
115         assert((next & 1) == 0);
116
117         return static_cast<void *>(&buf[1]);
118     }
119
120     template< class T >
121     inline T *
122     alloc(size_t n = 1) {
123         return static_cast<T *>(alloc(sizeof(T) * n));
124     }
125
126     /**
127      * Allocate an array with the same dimensions as the specified value.
128      */
129     template< class T >
130     inline T *
131     alloc(const trace::Value *value) {
132         const trace::Array *array = dynamic_cast<const trace::Array *>(value);
133         if (array) {
134             return alloc<T>(array->size());
135         }
136         const trace::Null *null = dynamic_cast<const trace::Null *>(value);
137         if (null) {
138             return NULL;
139         }
140         assert(0);
141         return NULL;
142     }
143
144     /**
145      * Prevent this pointer from being automatically freed.
146      */
147     template< class T >
148     inline void
149     bind(T *ptr) {
150         if (ptr) {
151             reinterpret_cast<uintptr_t *>(ptr)[-1] |= 1;
152         }
153     }
154
155     inline
156     ~ScopedAllocator() {
157         while (next) {
158             uintptr_t temp = *reinterpret_cast<uintptr_t *>(next);
159
160             bool bind = temp & 1;
161             temp &= ~1;
162
163             if (!bind) {
164                 free(reinterpret_cast<void *>(next));
165             }
166
167             next = temp;
168         }
169     }
170 };
171
172
173 void
174 addRegion(unsigned long long address, void *buffer, unsigned long long size);
175
176 void
177 delRegionByPointer(void *ptr);
178
179 void *
180 toPointer(trace::Value &value, bool bind = false);
181
182
183 /**
184  * Output verbosity when retracing files.
185  */
186 extern int verbosity;
187
188 /**
189  * Add profiling data to the dump when retracing.
190  */
191 extern bool profiling;
192
193
194 std::ostream &warning(trace::Call &call);
195
196
197 void ignore(trace::Call &call);
198 void unsupported(trace::Call &call);
199
200
201 typedef void (*Callback)(trace::Call &call);
202
203 struct Entry {
204     const char *name;
205     Callback callback;
206 };
207
208
209 struct stringComparer {
210   bool operator() (const char *a, const  char *b) const {
211     return strcmp(a, b) < 0;
212   }
213 };
214
215
216 extern const Entry stdc_callbacks[];
217
218
219 class Retracer
220 {
221     typedef std::map<const char *, Callback, stringComparer> Map;
222     Map map;
223
224     std::vector<Callback> callbacks;
225
226 public:
227     Retracer() {
228         addCallbacks(stdc_callbacks);
229     }
230
231     virtual ~Retracer() {}
232
233     void addCallback(const Entry *entry);
234     void addCallbacks(const Entry *entries);
235
236     void retrace(trace::Call &call);
237 };
238
239
240 } /* namespace retrace */
241
242 #endif /* _RETRACE_HPP_ */