blob: a66ffe6765c6561bb877f23f82f57fa671c23e4e [file] [log] [blame]
Chris Lattnere62c1182002-12-02 01:23:04 +00001#include "Record.h"
2#include "Support/CommandLine.h"
3#include <algorithm>
4
5static cl::opt<std::string> Class("class", cl::desc("Print Enum list for this class"));
6static cl::opt<bool> Parse("parse");
7
8void ParseFile();
9
10RecordKeeper Records;
11
12static Init *getBit(Record *R, unsigned BitNo) {
13 const std::vector<RecordVal> &V = R->getValues();
14 for (unsigned i = 0, e = V.size(); i != e; ++i)
15 if (V[i].getPrefix()) {
16 assert(dynamic_cast<BitsInit*>(V[i].getValue()) &&
17 "Can only handle fields of bits<> type!");
18 BitsInit *I = (BitsInit*)V[i].getValue();
19 if (BitNo < I->getNumBits())
20 return I->getBit(BitNo);
21 BitNo -= I->getNumBits();
22 }
23
24 std::cerr << "Cannot find requested bit!\n";
25 abort();
26 return 0;
27}
28
29static unsigned getNumBits(Record *R) {
30 const std::vector<RecordVal> &V = R->getValues();
31 unsigned Num = 0;
32 for (unsigned i = 0, e = V.size(); i != e; ++i)
33 if (V[i].getPrefix()) {
34 assert(dynamic_cast<BitsInit*>(V[i].getValue()) &&
35 "Can only handle fields of bits<> type!");
36 Num += ((BitsInit*)V[i].getValue())->getNumBits();
37 }
38 return Num;
39}
40
41static bool BitsAreFixed(Record *I1, Record *I2, unsigned BitNo) {
42 return dynamic_cast<BitInit*>(getBit(I1, BitNo)) &&
43 dynamic_cast<BitInit*>(getBit(I2, BitNo));
44}
45
46static bool BitsAreEqual(Record *I1, Record *I2, unsigned BitNo) {
47 BitInit *Bit1 = dynamic_cast<BitInit*>(getBit(I1, BitNo));
48 BitInit *Bit2 = dynamic_cast<BitInit*>(getBit(I2, BitNo));
49
50 return Bit1 && Bit2 && Bit1->getValue() == Bit2->getValue();
51}
52
53static bool BitRangesEqual(Record *I1, Record *I2,
54 unsigned Start, unsigned End) {
55 for (unsigned i = Start; i != End; ++i)
56 if (!BitsAreEqual(I1, I2, i))
57 return false;
58 return true;
59}
60
61static unsigned getFirstFixedBit(Record *R, unsigned FirstFixedBit) {
62 // Look for the first bit of the pair that are required to be 0 or 1.
63 while (!dynamic_cast<BitInit*>(getBit(R, FirstFixedBit)))
64 ++FirstFixedBit;
65 return FirstFixedBit;
66}
67
68static void FindInstDifferences(Record *I1, Record *I2,
69 unsigned FirstFixedBit, unsigned MaxBits,
70 unsigned &FirstVaryingBitOverall,
71 unsigned &LastFixedBitOverall) {
72 // Compare the first instruction to the rest of the instructions, looking for
73 // fields that differ.
74 //
75 unsigned FirstVaryingBit = FirstFixedBit;
76 while (FirstVaryingBit < MaxBits && BitsAreEqual(I1, I2, FirstVaryingBit))
77 ++FirstVaryingBit;
78
79 unsigned LastFixedBit = FirstVaryingBit;
80 while (LastFixedBit < MaxBits && BitsAreFixed(I1, I2, LastFixedBit))
81 ++LastFixedBit;
82
83 if (FirstVaryingBit < FirstVaryingBitOverall)
84 FirstVaryingBitOverall = FirstVaryingBit;
85 if (LastFixedBit < LastFixedBitOverall)
86 LastFixedBitOverall = LastFixedBit;
87}
88
89static bool getBitValue(Record *R, unsigned BitNo) {
90 Init *I = getBit(R, BitNo);
91 assert(dynamic_cast<BitInit*>(I) && "Bit should be fixed!");
92 return ((BitInit*)I)->getValue();
93}
94
95struct BitComparator {
96 unsigned BitBegin, BitEnd;
97 BitComparator(unsigned B, unsigned E) : BitBegin(B), BitEnd(E) {}
98
99 bool operator()(Record *R1, Record *R2) { // Return true if R1 is less than R2
100 for (unsigned i = BitBegin; i != BitEnd; ++i) {
101 bool V1 = getBitValue(R1, i), V2 = getBitValue(R2, i);
102 if (V1 < V2)
103 return true;
104 else if (V2 < V1)
105 return false;
106 }
107 return false;
108 }
109};
110
111static void PrintRange(std::vector<Record*>::iterator I,
112 std::vector<Record*>::iterator E) {
113 while (I != E) std::cerr << **I++;
114}
115
116static bool getMemoryBit(unsigned char *M, unsigned i) {
117 return (M[i/8] & (1 << (i&7))) != 0;
118}
119
120static unsigned getFirstFixedBitInSequence(std::vector<Record*>::iterator IB,
121 std::vector<Record*>::iterator IE,
122 unsigned StartBit) {
123 unsigned FirstFixedBit = 0;
124 for (std::vector<Record*>::iterator I = IB; I != IE; ++I)
125 FirstFixedBit = std::max(FirstFixedBit, getFirstFixedBit(*I, StartBit));
126 return FirstFixedBit;
127}
128
129// ParseMachineCode - Try to split the vector of instructions (which is
130// intentially taken by-copy) in half, narrowing down the possible instructions
131// that we may have found. Eventually, this list will get pared down to zero or
132// one instruction, in which case we have a match or failure.
133//
134static Record *ParseMachineCode(std::vector<Record*>::iterator InstsB,
135 std::vector<Record*>::iterator InstsE,
136 unsigned char *M) {
137 assert(InstsB != InstsE && "Empty range?");
138 if (InstsB+1 == InstsE) {
139 // Only a single instruction, see if we match it...
140 Record *Inst = *InstsB;
141 for (unsigned i = 0, e = getNumBits(Inst); i != e; ++i)
142 if (BitInit *BI = dynamic_cast<BitInit*>(getBit(Inst, i)))
143 if (getMemoryBit(M, i) != BI->getValue())
144 return 0;
145 return Inst;
146 }
147
148 unsigned MaxBits = ~0;
149 for (std::vector<Record*>::iterator I = InstsB; I != InstsE; ++I)
150 MaxBits = std::min(MaxBits, getNumBits(*I));
151
152 unsigned FirstFixedBit = getFirstFixedBitInSequence(InstsB, InstsE, 0);
153 unsigned FirstVaryingBit, LastFixedBit;
154 do {
155 FirstVaryingBit = ~0;
156 LastFixedBit = ~0;
157 for (std::vector<Record*>::iterator I = InstsB+1; I != InstsE; ++I)
158 FindInstDifferences(*InstsB, *I, FirstFixedBit, MaxBits,
159 FirstVaryingBit, LastFixedBit);
160 if (FirstVaryingBit == MaxBits) {
161 std::cerr << "ERROR: Could not find bit to distinguish between "
162 << "the following entries!\n";
163 PrintRange(InstsB, InstsE);
164 }
165
166#if 0
167 std::cerr << "FVB: " << FirstVaryingBit << " - " << LastFixedBit
168 << ": " << InstsE-InstsB << "\n";
169#endif
170
171 FirstFixedBit = getFirstFixedBitInSequence(InstsB, InstsE, FirstVaryingBit);
172 } while (FirstVaryingBit != FirstFixedBit);
173
174 //std::cerr << "\n\nXXXXXXXXXXXXXXXXX\n\n";
175 //PrintRange(InstsB, InstsE);
176
177 // Sort the Insts list so that the entries have all of the bits in the range
178 // [FirstVaryingBit,LastFixedBit) sorted. These bits are all guaranteed to be
179 // set to either 0 or 1 (BitInit values), which simplifies things.
180 //
181 std::sort(InstsB, InstsE, BitComparator(FirstVaryingBit, LastFixedBit));
182
183 // Once the list is sorted by these bits, split the bit list into smaller
184 // lists, and recurse on each one.
185 //
186 std::vector<Record*>::iterator RangeBegin = InstsB;
187 Record *Match = 0;
188 while (RangeBegin != InstsE) {
189 std::vector<Record*>::iterator RangeEnd = RangeBegin+1;
190 while (RangeEnd != InstsE &&
191 BitRangesEqual(*RangeBegin, *RangeEnd, FirstVaryingBit, LastFixedBit))
192 ++RangeEnd;
193
194 // We just identified a range of equal instructions. If this range is the
195 // input range, we were not able to distinguish between the instructions in
196 // the set. Print an error and exit!
197 //
198 if (RangeBegin == InstsB && RangeEnd == InstsE) {
199 std::cerr << "Error: Could not distinguish among the following insts!:\n";
200 PrintRange(InstsB, InstsE);
201 abort();
202 }
203
204 if (Record *R = ParseMachineCode(RangeBegin, RangeEnd, M)) {
205 if (Match) {
206 std::cerr << "Error: Multiple matches found:\n";
207 PrintRange(InstsB, InstsE);
208 }
209
210 assert(Match == 0 && "Multiple matches??");
211 Match = R;
212 }
213 RangeBegin = RangeEnd;
214 }
215
216 return Match;
217}
218
219static void PrintValue(Record *I, unsigned char *Ptr, const RecordVal &Val) {
220 assert(dynamic_cast<BitsInit*>(Val.getValue()) &&
221 "Can only handle undefined bits<> types!");
222 BitsInit *BI = (BitsInit*)Val.getValue();
223 assert(BI->getNumBits() <= 32 && "Can only handle fields up to 32 bits!");
224
225 unsigned Value = 0;
226 const std::vector<RecordVal> &Vals = I->getValues();
227
228 // Start by filling in fixed values...
229 for (unsigned i = 0, e = BI->getNumBits(); i != e; ++i)
230 if (BitInit *B = dynamic_cast<BitInit*>(BI->getBit(i)))
231 Value |= B->getValue() << i;
232
233 // Loop over all of the fields in the instruction adding in any
234 // contributions to this value (due to bit references).
235 //
236 unsigned Offset = 0;
237 for (unsigned f = 0, e = Vals.size(); f != e; ++f)
238 if (Vals[f].getPrefix()) {
239 BitsInit *FieldInit = (BitsInit*)Vals[f].getValue();
240 if (&Vals[f] == &Val) {
241 // Read the bits directly now...
242 for (unsigned i = 0, e = BI->getNumBits(); i != e; ++i)
243 Value |= getMemoryBit(Ptr, Offset+i) << i;
244 break;
245 }
246
247 // Scan through the field looking for bit initializers of the current
248 // variable...
249 for (unsigned i = 0, e = FieldInit->getNumBits(); i != e; ++i)
250 if (VarBitInit *VBI =
251 dynamic_cast<VarBitInit*>(FieldInit->getBit(i))) {
252 if (VBI->getVariable()->getName() == Val.getName())
253 Value |= getMemoryBit(Ptr, Offset+i) << VBI->getBitNum();
254 }
255 Offset += FieldInit->getNumBits();
256 }
257
258 std::cout << "0x" << std::hex << Value << std::dec;
259}
260
261static void PrintInstruction(Record *I, unsigned char *Ptr) {
262 std::cout << "Inst " << getNumBits(I)/8 << " bytes: "
263 << "\t" << I->getName() << "\t" << *I->getValue("Name")->getValue()
264 << "\t";
265
266 const std::vector<RecordVal> &Vals = I->getValues();
267 for (unsigned i = 0, e = Vals.size(); i != e; ++i)
268 if (!Vals[i].getValue()->isComplete()) {
269 std::cout << Vals[i].getName() << "=";
270 PrintValue(I, Ptr, Vals[i]);
271 std::cout << "\t";
272 }
273
274 std::cout << "\n";// << *I;
275}
276
277static void ParseMachineCode() {
278 unsigned char Buffer[] = { 0x55, // push EBP
279 0x89, 0xE5, // mov EBP, ESP
280 //0x83, 0xEC, 0x08, // sub ESP, 0x8
281 0xE8, 1, 2, 3, 4, // call +0x04030201
282 0x89, 0xEC, // mov ESP, EBP
283 0x5D, // pop EBP
284 0xC3, // ret
285 0x90, // nop
286 0xC9, // leave
287 0x89, 0xF6, // mov ESI, ESI
288 0xB8, 1, 2, 3, 4, // mov EAX, 0x04030201
289 0x68, 1, 2, 3, 4, // push 0x04030201
290 0x5e, // pop ESI
291 0xFF, 0xD0, // call EAX
292 0x85, 0xC0, // test EAX, EAX
293 0xF4, // hlt
294 };
295
296 std::vector<Record*> Insts;
297
298 const std::map<std::string, Record*> &Defs = Records.getDefs();
299 Record *Inst = Records.getClass("Instruction");
300 assert(Inst && "Couldn't find Instruction class!");
301
302 for (std::map<std::string, Record*>::const_iterator I = Defs.begin(),
303 E = Defs.end(); I != E; ++I)
304 if (I->second->isSubClassOf(Inst))
305 Insts.push_back(I->second);
306
307 unsigned char *BuffPtr = Buffer;
308 while (1) {
309 Record *R = ParseMachineCode(Insts.begin(), Insts.end(), BuffPtr);
310 if (R == 0) {
311 std::cout << "Parse failed!\n";
312 return;
313 }
314 PrintInstruction(R, BuffPtr);
315
316 unsigned Bits = getNumBits(R);
317 assert((Bits & 7) == 0 && "Instruction is not an even number of bytes!");
318 BuffPtr += Bits/8;
319 }
320}
321
322
323int main(int argc, char **argv) {
324 cl::ParseCommandLineOptions(argc, argv);
325 ParseFile();
326
327 if (Parse) {
328 ParseMachineCode();
329 return 0;
330 }
331
332 if (Class == "") {
333 std::cout << Records; // No argument, dump all contents
334 } else {
335 Record *R = Records.getClass(Class);
336 if (R == 0) {
337 std::cerr << "Cannot find class '" << Class << "'!\n";
338 abort();
339 }
340
341 const std::map<std::string, Record*> &Defs = Records.getDefs();
342 for (std::map<std::string, Record*>::const_iterator I = Defs.begin(),
343 E = Defs.end(); I != E; ++I) {
344 if (I->second->isSubClassOf(R)) {
345 std::cout << I->first << ", ";
346 }
347 }
348 std::cout << "\n";
349 }
350 return 0;
351}