-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphlet.h
238 lines (200 loc) · 5.61 KB
/
graphlet.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#ifndef _GRAPHLET_H_
#define _GRAPHLET_H_
#include "CodeSource.h"
#include "CodeObject.h"
#include "Function.h"
#include "dyntypes.h"
#include "colors.h"
#include <set>
#include <vector>
using namespace std;
using namespace Dyninst;
using namespace Dyninst::ParseAPI;
extern bool COLOR;
namespace graphlets {
/*
* Graphlets are described by the edges of each node
*
* There is a partial ordering over edges:
* inset > outset > selfset
*
* comparison of the edge sets is magnitude and then on
* edge types (edge types are ints)
*/
typedef enum {
INSNSCOLOR,
BRANCHCOLOR
} ColorType;
class edgeset {
friend class node;
public:
edgeset() { }
edgeset(std::multiset<int> types) :
types_(types.begin(),types.end())
{
}
edgeset(std::set<int> types) :
types_(types.begin(),types.end())
{
}
~edgeset() { }
void set(std::multiset<int> types) {
types_.clear();
types_.insert(types_.begin(),types.begin(),types.end());
}
bool operator<(edgeset const& o) const
{
if(this == &o)
return false;
unsigned mysz = types_.size();
unsigned osz = o.types_.size();
if(mysz != osz)
return mysz < osz;
else {
if(mysz == 0)
return false;
std::vector<int>::const_iterator ait = types_.begin();
std::vector<int>::const_iterator bit = o.types_.begin();
for( ; ait != types_.end(); ++ait, ++bit) {
if(*ait < *bit)
return true;
else if(*ait > *bit)
return false;
}
return false;
}
}
void print() const {
std::vector<int>::const_iterator it = types_.begin();
for( ; it != types_.end(); ++it) {
printf(" %d",*it);
}
}
std::string toString() const {
char buf[256];
std::string ret;
std::vector<int>::const_iterator it = types_.begin();
for( ; it != types_.end(); ++it) {
snprintf(buf, 256, "%d", *it);
ret += " ";
ret += buf;
}
return ret;
}
std::string compact() const {
char buf[256];
std::string ret;
std::map<int,int> unique;
std::vector<int>::const_iterator it = types_.begin();
for( ; it != types_.end(); ++it)
unique[*it] +=1;
std::map<int,int>::iterator uit = unique.begin();
for( ; uit != unique.end(); ) {
ret += (*uit).first;
if((*uit).second > 1) {
snprintf(buf, 256, "%d", (*uit).second);
ret += "x";
ret += buf;
}
if(++uit != unique.end())
ret += ".";
}
return ret;
}
private:
// XXX must be sorted
std::vector<int> types_;
};
class node {
public:
node() : color_(NULL),colors_(false) { }
node(std::multiset<int> & ins, std::multiset<int> & outs, std::multiset<int> &self) :
ins_(ins), outs_(outs), self_(self),color_(NULL)
{ }
node(std::multiset<int> & ins, std::multiset<int> & outs, std::multiset<int> &self, Color *color) :
ins_(ins), outs_(outs), self_(self),color_(color)
{ }
node(std::set<int> & ins, std::set<int> & outs, std::set<int> &self, Color *color) :
ins_(ins), outs_(outs), self_(self),color_(color)
{ }
~node() { }
void setIns(std::multiset<int> & ins) {
ins_.set(ins);
}
void setOuts(std::multiset<int> & outs) {
outs_.set(outs);
}
void setSelf(std::multiset<int> & self) {
self_.set(self);
}
bool operator<(node const& o) const;
void print() const;
std::string toString() const;
std::string compact(bool colors) const;
private:
edgeset ins_;
edgeset outs_;
edgeset self_;
Color *color_;
bool colors_;
};
class graphlet {
public:
graphlet() {}
~graphlet() {}
void addNode(node const& node) {
nodes_.insert(node);
}
bool operator<(graphlet const& o) const {
if(this == &o)
return false;
unsigned asz = nodes_.size();
unsigned bsz = o.nodes_.size();
if(asz != bsz)
return asz < bsz;
else if(asz == 0)
return false;
std::multiset<node>::const_iterator ait = nodes_.begin();
std::multiset<node>::const_iterator bit = o.nodes_.begin();
for( ; ait != nodes_.end(); ++ait,++bit) {
if(*ait < *bit)
return true;
else if(*bit < *ait)
return false;
}
return false;
}
void print() const {
std::multiset<node>::const_iterator it = nodes_.begin();
for( ; it != nodes_.end(); ++it) {
(*it).print();
printf(" ");
}
printf("\n");
}
std::string toString() const {
std::string ret;
std::multiset<node>::const_iterator it = nodes_.begin();
for( ; it != nodes_.end(); ++it) {
ret += (*it).toString() + " ";
}
return ret;
}
std::string compact(bool color) const {
std::string ret;
std::multiset<node>::const_iterator it = nodes_.begin();
for( ; it != nodes_.end(); ) {
ret += (*it).compact(color);
if(++it != nodes_.end())
ret += "_";
}
return ret;
}
unsigned size() const { return nodes_.size(); }
private:
std::multiset<node> nodes_;
};
}
unsigned short node_insns_color(Block *A);
unsigned short node_branch_color(Block *A);
#endif