-
Notifications
You must be signed in to change notification settings - Fork 81
/
XOpPrint.cpp
417 lines (341 loc) · 7.29 KB
/
XOpPrint.cpp
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
// XOpPrint.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <string>
#include <vector>
#include <map>
typedef unsigned int uint32;
class BitMask
{
public:
uint32 m_bits;
uint32 m_mask;
public:
BitMask()
: m_mask(0)
, m_bits(0)
{}
BitMask(const uint32 opcode)
: m_mask(0xFFFFFFFF)
, m_bits(opcode)
{}
void Set(const uint32 value)
{
m_bits = value;
m_mask = 0xFFFFFFFF;
}
void Add(const uint32 value)
{
const uint32 diff = m_bits ^ value;
m_mask &= ~diff; // mask off different bits
}
const bool IsBitValid(const int index) const
{
const uint32 mask = 1 << index;
return 0 != (m_mask & mask);
}
void Dump(FILE* f) const
{
// general bit pattern
fprintf(f," Mask: '");
int j=0;
for (int i=31; i>=0; --i, ++j)
//for (int i=0; i<=31; ++i)
{
if (j && ((j&7) == 0))
fprintf(f, " " );
const uint32 mask = 1 << i;
const char* ch = (m_mask & mask) ? ((m_bits & mask) ? "1" : "0") : "*";
fprintf(f,ch);
}
fprintf(f,"'\n");
// find fields
int numFields = 0;
for (int i=0; i<31; ++i)
{
if (!IsBitValid(i))
continue;
int end=i;
while (end <= 31)
{
if (!IsBitValid(end))
break;
++end;
}
const uint32 maskedVal = (m_bits & m_mask);
const int len = (end - i);
const int val = (maskedVal >> i) & ((1<<len)-1);
fprintf(f, " Field[%d]: %d:%d (%d)\n",
numFields++, 32-end, end-i, val );
i += len;
}
}
void DumpMasked(FILE* f, const BitMask& parentMask) const
{
// general bit pattern
fprintf(f," ");
int j=0;
for (int i=31; i>=0; --i, ++j)
//for (int i=0; i<=31; ++i)
{
if (j && ((j&7) == 0))
fprintf(f, " " );
const uint32 mask = 1 << i;
const char* ch =
(parentMask.m_mask & mask)
? "-"
: (m_mask & mask)
? ((m_bits & mask) ? "1" : "0")
: "*";
fprintf(f,ch);
}
fprintf(f,"\n");
}
};
struct Variant
{
std::string m_name;
BitMask m_mask;
Variant(const std::string& name, const uint32 opcode)
: m_name(name)
, m_mask(opcode)
{
}
void Update(const uint32 opcode)
{
m_mask.Add(opcode);
}
void Dump(FILE* f, const BitMask& op) const
{
fprintf(f, " Variant %6s: ", m_name.c_str());
m_mask.DumpMasked(f, op);
}
};
struct VariantMap
{
typedef std::map<std::string, Variant*> TVariantMap;
TVariantMap m_map;
void Add(const std::string& name, uint32 opcode)
{
TVariantMap::const_iterator it = m_map.find(name);
if (it != m_map.end())
{
it->second->Update(opcode);
return;
}
Variant* v = new Variant(name, opcode);
m_map[ name ] = v;
}
void Dump(FILE* f, const BitMask& parentMask) const
{
// print the valid mask
{
uint32 validMask = 0xFFFFFFFF;
for (TVariantMap::const_iterator it = m_map.begin();
it != m_map.end(); ++it)
{
validMask &= it->second->m_mask.m_mask; // only valid values
}
fprintf(f," Mask: ");
int j=0;
for (int i=31; i>=0; --i, ++j)
//for (int i=0; i<=31; ++i)
{
if (j && ((j&7) == 0))
fprintf(f, " " );
const uint32 mask = 1 << i;
const char* ch =
((validMask & ~parentMask.m_mask) & mask)
? "*" : "-";
fprintf(f,ch);
}
fprintf(f,"\n");
}
for (TVariantMap::const_iterator it = m_map.begin();
it != m_map.end(); ++it)
{
it->second->Dump(f, parentMask);
}
}
};
struct InstructionData
{
std::string m_name;
std::vector<std::string> m_params;
uint32 m_op;
};
struct Instruction
{
std::string m_name;
BitMask m_op;
typedef std::vector<VariantMap*> VariantList;
VariantList m_variants;
Instruction(const InstructionData& data)
: m_name(data.m_name)
, m_op(data.m_op)
{
m_variants.resize(data.m_params.size());
for ( uint32 i=0; i<m_variants.size(); ++i)
{
m_variants[i] = new VariantMap();
m_variants[i]->Add( data.m_params[i], data.m_op );
}
}
bool Update(const InstructionData& data)
{
if (data.m_params.size() != m_variants.size())
{
fprintf( stderr, "Instruction '%s' parameter count mismatch (%d!=%d) !!\n",
data.m_name.c_str(), m_variants.size(), data.m_params.size() );
return false;
}
m_op.Add(data.m_op);
for ( uint32 i=0; i<m_variants.size(); ++i)
{
m_variants[i]->Add( data.m_params[i], data.m_op );
}
}
void Dump(FILE* f)
{
fprintf(f, "Instruction '%s' (%d params)\n", m_name.c_str(), m_variants.size());
m_op.Dump(f);
for (uint32 i=0; i<m_variants.size(); ++i)
{
fprintf(f, " Variants for param %d (%d):\n", i, m_variants[i]->m_map.size());
m_variants[i]->Dump(f, m_op);
}
}
};
struct InstructionMap
{
typedef std::map<std::string, Instruction*> TOpMap;
TOpMap m_ops;
bool Add(const InstructionData& data)
{
TOpMap::const_iterator it = m_ops.find(data.m_name);
if (it != m_ops.end())
return it->second->Update(data);
Instruction* instr = new Instruction(data);
m_ops[data.m_name] = instr;
return true;
}
void Dump(FILE *f)
{
fprintf( stdout, "Found %d unique instructions\n", m_ops.size() );
for (TOpMap::const_iterator it = m_ops.begin();
it != m_ops.end(); ++it)
{
it->second->Dump(f);
}
}
};
InstructionMap GInstructionMap;
void SkipWord(char*& txt)
{
while (*txt && *txt <= ' ')
++txt;
while (*txt && *txt > ' ')
++txt;
}
bool ParseHex(char*& txt, uint32& out)
{
while (*txt && *txt <= ' ')
++txt;
uint32 ret = 0;
const char* start = txt;
while (*txt && *txt > ' ')
{
int num = 0;
if ( *txt >= '0' && *txt <= '9' ) num = *txt - '0';
else if ( *txt == 'a' ) num = 10;
else if ( *txt == 'b' ) num = 11;
else if ( *txt == 'c' ) num = 12;
else if ( *txt == 'd' ) num = 13;
else if ( *txt == 'e' ) num = 14;
else if ( *txt == 'f' ) num = 15;
else return false;
ret = ret * 16;
ret += num;
++txt;
}
if (start == txt)
return false;
out = ret;
return true;
}
bool IsSeparatorChar( const char ch )
{
if (ch <= ' ') return true;
if (ch == ',') return true;
return false;
}
bool ParsePart(char*& txt, std::string& out)
{
while (*txt && *txt <= ' ')
++txt;
if ( *txt == ';' )
return false;
out = "";
std::string ret;
while (*txt && !IsSeparatorChar(*txt))
{
char str[2] = {*txt, 0};
ret += str;
++txt;
}
if (*txt && IsSeparatorChar(*txt))
++txt;
if (ret.empty())
return false;
out = ret;
return true;
}
int _tmain(int argc, _TCHAR* argv[])
{
FILE* f = fopen("..\\xgen\\Release_LTCG\\main.cod", "r");
if (!f)
return -1;
while (!feof(f))
{
char buf[2048];
fgets(buf, 2048, f);
char* line = buf;
while (*line && *line <= ' ')
++line;
if (*line == ';')
continue;
// scan address and opcode
uint32 address=0, opcode=0;
if (!ParseHex(line, address))
continue;
if (!ParseHex(line, opcode))
continue;
// invert endianess
//opcode = _byteswap_ulong(opcode);
// stream
char* stream = line;
InstructionData opData;
opData.m_op = opcode;
// parse instruction name
if (!ParsePart(stream, opData.m_name))
continue;
// parse additional data
std::string param;
while (ParsePart(stream, param))
{
opData.m_params.push_back(param);
}
// find instruction in map
if (!GInstructionMap.Add(opData))
break;
}
// done parsing
fclose(f);
// dump the master opcode map
FILE* fout = fopen("dump.txt", "w");
if (!fout) fout = stdout;
GInstructionMap.Dump( fout );
if (fout != stdout) fclose(fout);
// done
return 0;
}