]> git.cworth.org Git - apitrace/blob - retrace/retrace.hpp
Preserve non-NULL arrays, even when length is zero.
[apitrace] / retrace / 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         /* Always return valid address, even when size is zero */
105         size = std::max(size, sizeof(uintptr_t));
106
107         uintptr_t * buf = static_cast<uintptr_t *>(malloc(sizeof(uintptr_t) + size));
108         if (!buf) {
109             return NULL;
110         }
111
112         *buf = next;
113         next = reinterpret_cast<uintptr_t>(buf);
114         assert((next & 1) == 0);
115
116         return static_cast<void *>(&buf[1]);
117     }
118
119     template< class T >
120     inline T *
121     alloc(size_t n = 1) {
122         return static_cast<T *>(alloc(sizeof(T) * n));
123     }
124
125     /**
126      * Allocate an array with the same dimensions as the specified value.
127      */
128     template< class T >
129     inline T *
130     alloc(const trace::Value *value) {
131         const trace::Array *array = dynamic_cast<const trace::Array *>(value);
132         if (array) {
133             return alloc<T>(array->size());
134         }
135         const trace::Null *null = dynamic_cast<const trace::Null *>(value);
136         if (null) {
137             return NULL;
138         }
139         assert(0);
140         return NULL;
141     }
142
143     /**
144      * Prevent this pointer from being automatically freed.
145      */
146     template< class T >
147     inline void
148     bind(T *ptr) {
149         if (ptr) {
150             reinterpret_cast<uintptr_t *>(ptr)[-1] |= 1;
151         }
152     }
153
154     inline
155     ~ScopedAllocator() {
156         while (next) {
157             uintptr_t temp = *reinterpret_cast<uintptr_t *>(next);
158
159             bool bind = temp & 1;
160             temp &= ~1;
161
162             if (!bind) {
163                 free(reinterpret_cast<void *>(next));
164             }
165
166             next = temp;
167         }
168     }
169 };
170
171
172 void
173 addRegion(unsigned long long address, void *buffer, unsigned long long size);
174
175 void
176 delRegionByPointer(void *ptr);
177
178 void *
179 toPointer(trace::Value &value, bool bind = false);
180
181
182 /**
183  * Output verbosity when retracing files.
184  */
185 extern int verbosity;
186
187 /**
188  * Add profiling data to the dump when retracing.
189  */
190 extern bool profiling;
191
192
193 std::ostream &warning(trace::Call &call);
194
195
196 void ignore(trace::Call &call);
197 void unsupported(trace::Call &call);
198
199
200 typedef void (*Callback)(trace::Call &call);
201
202 struct Entry {
203     const char *name;
204     Callback callback;
205 };
206
207
208 struct stringComparer {
209   bool operator() (const char *a, const  char *b) const {
210     return strcmp(a, b) < 0;
211   }
212 };
213
214
215 extern const Entry stdc_callbacks[];
216
217
218 class Retracer
219 {
220     typedef std::map<const char *, Callback, stringComparer> Map;
221     Map map;
222
223     std::vector<Callback> callbacks;
224
225 public:
226     Retracer() {
227         addCallbacks(stdc_callbacks);
228     }
229
230     virtual ~Retracer() {}
231
232     void addCallback(const Entry *entry);
233     void addCallbacks(const Entry *entries);
234
235     void retrace(trace::Call &call);
236 };
237
238
239 } /* namespace retrace */
240
241 #endif /* _RETRACE_HPP_ */