]> git.cworth.org Git - apitrace/blob - cli/trim_callset.cpp
69ed8180f8fe894a5e004175e98ed8c950301f9e
[apitrace] / cli / trim_callset.cpp
1 /*********************************************************************
2  *
3  * Copyright 2006 Keith Packard and Carl Worth
4  * Copyright 2012 Intel Corporation
5  * Copyright 2012 VMware, Inc.
6  * All Rights Reserved.
7  *
8  * Permission is hereby granted, free of charge, to any person
9  * obtaining a copy of this software and associated documentation
10  * files (the "Software"), to deal in the Software without
11  * restriction, including without limitation the rights to use, copy,
12  * modify, merge, publish, distribute, sublicense, and/or sell copies
13  * of the Software, and to permit persons to whom the Software is
14  * furnished to do so, subject to the following conditions:
15  *
16  * The above copyright notice and this permission notice shall be
17  * included in all copies or substantial portions of the Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
23  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
24  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26  * SOFTWARE.
27  *
28  *********************************************************************/
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <limits>
33
34 #include "trim_callset.hpp"
35
36 using namespace trim;
37
38 #define MAX_LEVEL 16
39
40 CallRange::CallRange(CallNo first, CallNo last, int level)
41 {
42     this->first = first;
43     this->last = last;
44     this->level = level;
45
46     next = new CallRange*[level];
47 }
48
49 bool
50 CallRange::contains(CallNo call_no)
51 {
52     return (first <= call_no && last >= call_no);
53 }
54
55 CallSet::CallSet(): head(0, 0, MAX_LEVEL)
56 {
57     head.first = std::numeric_limits<CallNo>::max();
58     head.last = std::numeric_limits<CallNo>::min();
59
60     for (int i = 0; i < MAX_LEVEL; i++)
61         head.next[i] = NULL;
62
63     max_level = 0;
64 }
65
66 /*
67  * Generate a random level number, distributed
68  * so that each level is 1/4 as likely as the one before
69  *
70  * Note that level numbers run 1 <= level < MAX_LEVEL
71  */
72 static int
73 random_level (void)
74 {
75     /* tricky bit -- each bit is '1' 75% of the time */
76     long int bits = random() | random();
77     int level = 1;
78
79     while (level < MAX_LEVEL)
80     {
81         if (bits & 1)
82             break;
83         level++;
84         bits >>= 1;
85     }
86
87     return level;
88 }
89
90 void
91 CallSet::add(CallNo first, CallNo last)
92 {
93     CallRange **update[MAX_LEVEL];
94     CallRange *node, *next;
95     int i, level;
96
97     /* Find node immediately before insertion point. */
98     node = &head;
99     for (i = max_level - 1; i >= 0; i--) {
100         while (node->next[i] && first > node->next[i]->last) {
101             node = node->next[i];
102         }
103         update[i] = &node->next[i];
104     }
105
106     /* Can we contain first by expanding tail of current range by 1? */
107     if (node != &head && node->last == first - 1) {
108
109         node->last = last;
110         goto MERGE_NODE_WITH_SUBSEQUENT_COVERED_NODES;
111
112     }
113
114     /* Current range could not contain first, look at next. */
115
116     node = node->next[0];
117
118     if (node) {
119         /* Do nothing if new range is already entirely contained. */
120         if (node->first <= first && node->last >= last) {
121             return;
122         }
123
124         /* If last is already included, we can simply expand
125          * node->first to fully include the range. */
126         if (node->first <= last && node->last >= last) {
127             node->first = first;
128             return;
129         }
130
131         /* This is our candidate node if first is contained */
132         if (node->first <= first && node->last >= first) {
133             node->last = last;
134             goto MERGE_NODE_WITH_SUBSEQUENT_COVERED_NODES;
135         }
136     }
137
138     /* Not possible to expand any existing node, so create a new one. */
139
140     level = random_level();
141
142     /* Handle first node of this level. */
143     if (level > max_level) {
144         level = max_level + 1;
145         update[max_level] = &head.next[max_level];
146         max_level = level;
147     }
148
149     node = new CallRange(first, last, level);
150
151     /* Perform insertion into all lists. */
152     for (i = 0; i < level; i++) {
153         node->next[i] = *update[i];
154         *update[i] = node;
155     }
156
157 MERGE_NODE_WITH_SUBSEQUENT_COVERED_NODES:
158     next = node->next[0];
159     while (next && next->first <= node->last + 1) {
160         if (next->last > node->last)
161             node->last = next->last;
162
163         /* Delete node 'next' */
164         for (i = 0; i < node->level && i < next->level; i++) {
165             node->next[i] = next->next[i];
166         }
167
168         for (; i < next->level; i++) {
169             *update[i] = next->next[i];
170         }
171
172         delete next;
173
174         next = node->next[0];
175     }
176 }
177
178 void
179 CallSet::add(CallNo call_no)
180 {
181     this->add(call_no, call_no);
182 }
183
184 bool
185 CallSet::contains(CallNo call_no)
186 {
187     CallRange *node;
188     int i;
189
190     node = &head;
191     for (i = max_level - 1; i >= 0; i--) {
192         while (node->next[i] && call_no > node->next[i]->last) {
193             node = node->next[i];
194         }
195     }
196
197     node = node->next[0];
198
199     if (node == NULL)
200         return false;
201
202     return node->contains(call_no);
203 }