blob: 357dca94e8ff664c44430d273218d98bbb033fb0 [file] [log] [blame]
Owen Andersond8c87882011-02-18 21:51:29 +00001//===------------ FixedLenDecoderEmitter.cpp - Decoder Generator ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// It contains the tablegen backend that emits the decoder functions for
11// targets with fixed length instruction set.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "decoder-emitter"
16
17#include "FixedLenDecoderEmitter.h"
18#include "CodeGenTarget.h"
Peter Collingbourne7c788882011-10-01 16:41:13 +000019#include "llvm/TableGen/Record.h"
James Molloy3015dfb2012-02-09 10:56:31 +000020#include "llvm/ADT/APInt.h"
Owen Andersond8c87882011-02-18 21:51:29 +000021#include "llvm/ADT/StringExtras.h"
22#include "llvm/Support/Debug.h"
23#include "llvm/Support/raw_ostream.h"
24
25#include <vector>
26#include <map>
27#include <string>
28
29using namespace llvm;
30
31// The set (BIT_TRUE, BIT_FALSE, BIT_UNSET) represents a ternary logic system
32// for a bit value.
33//
34// BIT_UNFILTERED is used as the init value for a filter position. It is used
35// only for filter processings.
36typedef enum {
37 BIT_TRUE, // '1'
38 BIT_FALSE, // '0'
39 BIT_UNSET, // '?'
40 BIT_UNFILTERED // unfiltered
41} bit_value_t;
42
43static bool ValueSet(bit_value_t V) {
44 return (V == BIT_TRUE || V == BIT_FALSE);
45}
46static bool ValueNotSet(bit_value_t V) {
47 return (V == BIT_UNSET);
48}
49static int Value(bit_value_t V) {
50 return ValueNotSet(V) ? -1 : (V == BIT_FALSE ? 0 : 1);
51}
Craig Toppereb5cd612012-03-16 05:58:09 +000052static bit_value_t bitFromBits(const BitsInit &bits, unsigned index) {
David Greene05bce0b2011-07-29 22:43:06 +000053 if (BitInit *bit = dynamic_cast<BitInit*>(bits.getBit(index)))
Owen Andersond8c87882011-02-18 21:51:29 +000054 return bit->getValue() ? BIT_TRUE : BIT_FALSE;
55
56 // The bit is uninitialized.
57 return BIT_UNSET;
58}
59// Prints the bit value for each position.
Craig Toppereb5cd612012-03-16 05:58:09 +000060static void dumpBits(raw_ostream &o, const BitsInit &bits) {
Owen Andersond8c87882011-02-18 21:51:29 +000061 unsigned index;
62
63 for (index = bits.getNumBits(); index > 0; index--) {
64 switch (bitFromBits(bits, index - 1)) {
65 case BIT_TRUE:
66 o << "1";
67 break;
68 case BIT_FALSE:
69 o << "0";
70 break;
71 case BIT_UNSET:
72 o << "_";
73 break;
74 default:
Craig Topper655b8de2012-02-05 07:21:30 +000075 llvm_unreachable("unexpected return value from bitFromBits");
Owen Andersond8c87882011-02-18 21:51:29 +000076 }
77 }
78}
79
David Greene05bce0b2011-07-29 22:43:06 +000080static BitsInit &getBitsField(const Record &def, const char *str) {
81 BitsInit *bits = def.getValueAsBitsInit(str);
Owen Andersond8c87882011-02-18 21:51:29 +000082 return *bits;
83}
84
85// Forward declaration.
86class FilterChooser;
87
Owen Andersond8c87882011-02-18 21:51:29 +000088// Representation of the instruction to work on.
Owen Andersonf1a00902011-07-19 21:06:00 +000089typedef std::vector<bit_value_t> insn_t;
Owen Andersond8c87882011-02-18 21:51:29 +000090
91/// Filter - Filter works with FilterChooser to produce the decoding tree for
92/// the ISA.
93///
94/// It is useful to think of a Filter as governing the switch stmts of the
95/// decoding tree in a certain level. Each case stmt delegates to an inferior
96/// FilterChooser to decide what further decoding logic to employ, or in another
97/// words, what other remaining bits to look at. The FilterChooser eventually
98/// chooses a best Filter to do its job.
99///
100/// This recursive scheme ends when the number of Opcodes assigned to the
101/// FilterChooser becomes 1 or if there is a conflict. A conflict happens when
102/// the Filter/FilterChooser combo does not know how to distinguish among the
103/// Opcodes assigned.
104///
105/// An example of a conflict is
106///
107/// Conflict:
108/// 111101000.00........00010000....
109/// 111101000.00........0001........
110/// 1111010...00........0001........
111/// 1111010...00....................
112/// 1111010.........................
113/// 1111............................
114/// ................................
115/// VST4q8a 111101000_00________00010000____
116/// VST4q8b 111101000_00________00010000____
117///
118/// The Debug output shows the path that the decoding tree follows to reach the
119/// the conclusion that there is a conflict. VST4q8a is a vst4 to double-spaced
120/// even registers, while VST4q8b is a vst4 to double-spaced odd regsisters.
121///
122/// The encoding info in the .td files does not specify this meta information,
123/// which could have been used by the decoder to resolve the conflict. The
124/// decoder could try to decode the even/odd register numbering and assign to
125/// VST4q8a or VST4q8b, but for the time being, the decoder chooses the "a"
126/// version and return the Opcode since the two have the same Asm format string.
127class Filter {
128protected:
129 FilterChooser *Owner; // points to the FilterChooser who owns this filter
130 unsigned StartBit; // the starting bit position
131 unsigned NumBits; // number of bits to filter
132 bool Mixed; // a mixed region contains both set and unset bits
133
134 // Map of well-known segment value to the set of uid's with that value.
135 std::map<uint64_t, std::vector<unsigned> > FilteredInstructions;
136
137 // Set of uid's with non-constant segment values.
138 std::vector<unsigned> VariableInstructions;
139
140 // Map of well-known segment value to its delegate.
Craig Toppereb5cd612012-03-16 05:58:09 +0000141 std::map<unsigned, const FilterChooser*> FilterChooserMap;
Owen Andersond8c87882011-02-18 21:51:29 +0000142
143 // Number of instructions which fall under FilteredInstructions category.
144 unsigned NumFiltered;
145
146 // Keeps track of the last opcode in the filtered bucket.
147 unsigned LastOpcFiltered;
148
Owen Andersond8c87882011-02-18 21:51:29 +0000149public:
Craig Toppereb5cd612012-03-16 05:58:09 +0000150 unsigned getNumFiltered() const { return NumFiltered; }
151 unsigned getSingletonOpc() const {
Owen Andersond8c87882011-02-18 21:51:29 +0000152 assert(NumFiltered == 1);
153 return LastOpcFiltered;
154 }
155 // Return the filter chooser for the group of instructions without constant
156 // segment values.
Craig Toppereb5cd612012-03-16 05:58:09 +0000157 const FilterChooser &getVariableFC() const {
Owen Andersond8c87882011-02-18 21:51:29 +0000158 assert(NumFiltered == 1);
159 assert(FilterChooserMap.size() == 1);
160 return *(FilterChooserMap.find((unsigned)-1)->second);
161 }
162
163 Filter(const Filter &f);
164 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
165
166 ~Filter();
167
168 // Divides the decoding task into sub tasks and delegates them to the
169 // inferior FilterChooser's.
170 //
171 // A special case arises when there's only one entry in the filtered
172 // instructions. In order to unambiguously decode the singleton, we need to
173 // match the remaining undecoded encoding bits against the singleton.
174 void recurse();
175
176 // Emit code to decode instructions given a segment or segments of bits.
Craig Toppereb5cd612012-03-16 05:58:09 +0000177 void emit(raw_ostream &o, unsigned &Indentation) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000178
179 // Returns the number of fanout produced by the filter. More fanout implies
180 // the filter distinguishes more categories of instructions.
181 unsigned usefulness() const;
182}; // End of class Filter
183
184// These are states of our finite state machines used in FilterChooser's
185// filterProcessor() which produces the filter candidates to use.
186typedef enum {
187 ATTR_NONE,
188 ATTR_FILTERED,
189 ATTR_ALL_SET,
190 ATTR_ALL_UNSET,
191 ATTR_MIXED
192} bitAttr_t;
193
194/// FilterChooser - FilterChooser chooses the best filter among a set of Filters
195/// in order to perform the decoding of instructions at the current level.
196///
197/// Decoding proceeds from the top down. Based on the well-known encoding bits
198/// of instructions available, FilterChooser builds up the possible Filters that
199/// can further the task of decoding by distinguishing among the remaining
200/// candidate instructions.
201///
202/// Once a filter has been chosen, it is called upon to divide the decoding task
203/// into sub-tasks and delegates them to its inferior FilterChoosers for further
204/// processings.
205///
206/// It is useful to think of a Filter as governing the switch stmts of the
207/// decoding tree. And each case is delegated to an inferior FilterChooser to
208/// decide what further remaining bits to look at.
209class FilterChooser {
210protected:
211 friend class Filter;
212
213 // Vector of codegen instructions to choose our filter.
214 const std::vector<const CodeGenInstruction*> &AllInstructions;
215
216 // Vector of uid's for this filter chooser to work on.
217 const std::vector<unsigned> Opcodes;
218
219 // Lookup table for the operand decoding of instructions.
220 std::map<unsigned, std::vector<OperandInfo> > &Operands;
221
222 // Vector of candidate filters.
223 std::vector<Filter> Filters;
224
225 // Array of bit values passed down from our parent.
226 // Set to all BIT_UNFILTERED's for Parent == NULL.
Owen Andersonf1a00902011-07-19 21:06:00 +0000227 std::vector<bit_value_t> FilterBitValues;
Owen Andersond8c87882011-02-18 21:51:29 +0000228
229 // Links to the FilterChooser above us in the decoding tree.
230 FilterChooser *Parent;
231
232 // Index of the best filter from Filters.
233 int BestIndex;
234
Owen Andersonf1a00902011-07-19 21:06:00 +0000235 // Width of instructions
236 unsigned BitWidth;
237
Owen Anderson83e3f672011-08-17 17:44:15 +0000238 // Parent emitter
239 const FixedLenDecoderEmitter *Emitter;
240
Owen Andersond8c87882011-02-18 21:51:29 +0000241public:
Craig Topperd9360452012-03-16 01:19:24 +0000242 FilterChooser(const FilterChooser &FC)
243 : AllInstructions(FC.AllInstructions), Opcodes(FC.Opcodes),
Owen Andersonf1a00902011-07-19 21:06:00 +0000244 Operands(FC.Operands), Filters(FC.Filters),
245 FilterBitValues(FC.FilterBitValues), Parent(FC.Parent),
Craig Topperd9360452012-03-16 01:19:24 +0000246 BestIndex(FC.BestIndex), BitWidth(FC.BitWidth),
247 Emitter(FC.Emitter) { }
Owen Andersond8c87882011-02-18 21:51:29 +0000248
249 FilterChooser(const std::vector<const CodeGenInstruction*> &Insts,
250 const std::vector<unsigned> &IDs,
Craig Topperd9360452012-03-16 01:19:24 +0000251 std::map<unsigned, std::vector<OperandInfo> > &Ops,
Owen Anderson83e3f672011-08-17 17:44:15 +0000252 unsigned BW,
Craig Topperd9360452012-03-16 01:19:24 +0000253 const FixedLenDecoderEmitter *E)
254 : AllInstructions(Insts), Opcodes(IDs), Operands(Ops), Filters(),
Owen Anderson83e3f672011-08-17 17:44:15 +0000255 Parent(NULL), BestIndex(-1), BitWidth(BW), Emitter(E) {
Owen Andersonf1a00902011-07-19 21:06:00 +0000256 for (unsigned i = 0; i < BitWidth; ++i)
257 FilterBitValues.push_back(BIT_UNFILTERED);
Owen Andersond8c87882011-02-18 21:51:29 +0000258
259 doFilter();
260 }
261
262 FilterChooser(const std::vector<const CodeGenInstruction*> &Insts,
263 const std::vector<unsigned> &IDs,
Craig Topperd9360452012-03-16 01:19:24 +0000264 std::map<unsigned, std::vector<OperandInfo> > &Ops,
Owen Andersonf1a00902011-07-19 21:06:00 +0000265 std::vector<bit_value_t> &ParentFilterBitValues,
Craig Topperd9360452012-03-16 01:19:24 +0000266 FilterChooser &parent)
267 : AllInstructions(Insts), Opcodes(IDs), Operands(Ops),
Owen Andersonf1a00902011-07-19 21:06:00 +0000268 Filters(), FilterBitValues(ParentFilterBitValues),
Owen Anderson83e3f672011-08-17 17:44:15 +0000269 Parent(&parent), BestIndex(-1), BitWidth(parent.BitWidth),
270 Emitter(parent.Emitter) {
Owen Andersond8c87882011-02-18 21:51:29 +0000271 doFilter();
272 }
273
274 // The top level filter chooser has NULL as its parent.
Craig Toppereb5cd612012-03-16 05:58:09 +0000275 bool isTopLevel() const { return Parent == NULL; }
Owen Andersond8c87882011-02-18 21:51:29 +0000276
277 // Emit the top level typedef and decodeInstruction() function.
Craig Toppereb5cd612012-03-16 05:58:09 +0000278 void emitTop(raw_ostream &o, unsigned Indentation,
279 const std::string &Namespace) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000280
281protected:
282 // Populates the insn given the uid.
283 void insnWithID(insn_t &Insn, unsigned Opcode) const {
David Greene05bce0b2011-07-29 22:43:06 +0000284 BitsInit &Bits = getBitsField(*AllInstructions[Opcode]->TheDef, "Inst");
Owen Andersond8c87882011-02-18 21:51:29 +0000285
James Molloy3015dfb2012-02-09 10:56:31 +0000286 // We may have a SoftFail bitmask, which specifies a mask where an encoding
287 // may differ from the value in "Inst" and yet still be valid, but the
288 // disassembler should return SoftFail instead of Success.
289 //
290 // This is used for marking UNPREDICTABLE instructions in the ARM world.
Jim Grosbach9c826d22012-02-29 22:07:56 +0000291 BitsInit *SFBits =
292 AllInstructions[Opcode]->TheDef->getValueAsBitsInit("SoftFail");
James Molloy3015dfb2012-02-09 10:56:31 +0000293
294 for (unsigned i = 0; i < BitWidth; ++i) {
295 if (SFBits && bitFromBits(*SFBits, i) == BIT_TRUE)
296 Insn.push_back(BIT_UNSET);
297 else
298 Insn.push_back(bitFromBits(Bits, i));
299 }
Owen Andersond8c87882011-02-18 21:51:29 +0000300 }
301
302 // Returns the record name.
303 const std::string &nameWithID(unsigned Opcode) const {
304 return AllInstructions[Opcode]->TheDef->getName();
305 }
306
307 // Populates the field of the insn given the start position and the number of
308 // consecutive bits to scan for.
309 //
310 // Returns false if there exists any uninitialized bit value in the range.
311 // Returns true, otherwise.
312 bool fieldFromInsn(uint64_t &Field, insn_t &Insn, unsigned StartBit,
Craig Topperd9360452012-03-16 01:19:24 +0000313 unsigned NumBits) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000314
315 /// dumpFilterArray - dumpFilterArray prints out debugging info for the given
316 /// filter array as a series of chars.
Craig Toppereb5cd612012-03-16 05:58:09 +0000317 void dumpFilterArray(raw_ostream &o,
318 const std::vector<bit_value_t> & filter) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000319
320 /// dumpStack - dumpStack traverses the filter chooser chain and calls
321 /// dumpFilterArray on each filter chooser up to the top level one.
Craig Toppereb5cd612012-03-16 05:58:09 +0000322 void dumpStack(raw_ostream &o, const char *prefix) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000323
324 Filter &bestFilter() {
325 assert(BestIndex != -1 && "BestIndex not set");
326 return Filters[BestIndex];
327 }
328
329 // Called from Filter::recurse() when singleton exists. For debug purpose.
Craig Toppereb5cd612012-03-16 05:58:09 +0000330 void SingletonExists(unsigned Opc) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000331
Craig Toppereb5cd612012-03-16 05:58:09 +0000332 bool PositionFiltered(unsigned i) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000333 return ValueSet(FilterBitValues[i]);
334 }
335
336 // Calculates the island(s) needed to decode the instruction.
337 // This returns a lit of undecoded bits of an instructions, for example,
338 // Inst{20} = 1 && Inst{3-0} == 0b1111 represents two islands of yet-to-be
339 // decoded bits in order to verify that the instruction matches the Opcode.
340 unsigned getIslands(std::vector<unsigned> &StartBits,
Craig Topperd9360452012-03-16 01:19:24 +0000341 std::vector<unsigned> &EndBits,
Craig Toppereb5cd612012-03-16 05:58:09 +0000342 std::vector<uint64_t> &FieldVals,
343 const insn_t &Insn) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000344
James Molloya5d58562011-09-07 19:42:28 +0000345 // Emits code to check the Predicates member of an instruction are true.
346 // Returns true if predicate matches were emitted, false otherwise.
Craig Toppereb5cd612012-03-16 05:58:09 +0000347 bool emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
348 unsigned Opc) const;
James Molloya5d58562011-09-07 19:42:28 +0000349
Craig Toppereb5cd612012-03-16 05:58:09 +0000350 void emitSoftFailCheck(raw_ostream &o, unsigned Indentation,
351 unsigned Opc) const;
James Molloy3015dfb2012-02-09 10:56:31 +0000352
Owen Andersond8c87882011-02-18 21:51:29 +0000353 // Emits code to decode the singleton. Return true if we have matched all the
354 // well-known bits.
Craig Toppereb5cd612012-03-16 05:58:09 +0000355 bool emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,
356 unsigned Opc) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000357
358 // Emits code to decode the singleton, and then to decode the rest.
Craig Toppereb5cd612012-03-16 05:58:09 +0000359 void emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,
360 const Filter &Best) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000361
Owen Andersond1e38df2011-07-28 21:54:31 +0000362 void emitBinaryParser(raw_ostream &o , unsigned &Indentation,
Craig Toppereb5cd612012-03-16 05:58:09 +0000363 const OperandInfo &OpInfo) const;
Owen Andersond1e38df2011-07-28 21:54:31 +0000364
Owen Andersond8c87882011-02-18 21:51:29 +0000365 // Assign a single filter and run with it.
Craig Toppereb5cd612012-03-16 05:58:09 +0000366 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
Owen Andersond8c87882011-02-18 21:51:29 +0000367
368 // reportRegion is a helper function for filterProcessor to mark a region as
369 // eligible for use as a filter region.
370 void reportRegion(bitAttr_t RA, unsigned StartBit, unsigned BitIndex,
Craig Topperd9360452012-03-16 01:19:24 +0000371 bool AllowMixed);
Owen Andersond8c87882011-02-18 21:51:29 +0000372
373 // FilterProcessor scans the well-known encoding bits of the instructions and
374 // builds up a list of candidate filters. It chooses the best filter and
375 // recursively descends down the decoding tree.
376 bool filterProcessor(bool AllowMixed, bool Greedy = true);
377
378 // Decides on the best configuration of filter(s) to use in order to decode
379 // the instructions. A conflict of instructions may occur, in which case we
380 // dump the conflict set to the standard error.
381 void doFilter();
382
383 // Emits code to decode our share of instructions. Returns true if the
384 // emitted code causes a return, which occurs if we know how to decode
385 // the instruction at this level or the instruction is not decodeable.
Craig Toppereb5cd612012-03-16 05:58:09 +0000386 bool emit(raw_ostream &o, unsigned &Indentation) const;
Owen Andersond8c87882011-02-18 21:51:29 +0000387};
388
389///////////////////////////
390// //
Craig Topper797ba552012-03-16 00:56:01 +0000391// Filter Implementation //
Owen Andersond8c87882011-02-18 21:51:29 +0000392// //
393///////////////////////////
394
Craig Topperd9360452012-03-16 01:19:24 +0000395Filter::Filter(const Filter &f)
396 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
397 FilteredInstructions(f.FilteredInstructions),
398 VariableInstructions(f.VariableInstructions),
399 FilterChooserMap(f.FilterChooserMap), NumFiltered(f.NumFiltered),
400 LastOpcFiltered(f.LastOpcFiltered) {
Owen Andersond8c87882011-02-18 21:51:29 +0000401}
402
403Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits,
Craig Topperd9360452012-03-16 01:19:24 +0000404 bool mixed)
405 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
Owen Andersonf1a00902011-07-19 21:06:00 +0000406 assert(StartBit + NumBits - 1 < Owner->BitWidth);
Owen Andersond8c87882011-02-18 21:51:29 +0000407
408 NumFiltered = 0;
409 LastOpcFiltered = 0;
Owen Andersond8c87882011-02-18 21:51:29 +0000410
411 for (unsigned i = 0, e = Owner->Opcodes.size(); i != e; ++i) {
412 insn_t Insn;
413
414 // Populates the insn given the uid.
415 Owner->insnWithID(Insn, Owner->Opcodes[i]);
416
417 uint64_t Field;
418 // Scans the segment for possibly well-specified encoding bits.
419 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
420
421 if (ok) {
422 // The encoding bits are well-known. Lets add the uid of the
423 // instruction into the bucket keyed off the constant field value.
424 LastOpcFiltered = Owner->Opcodes[i];
425 FilteredInstructions[Field].push_back(LastOpcFiltered);
426 ++NumFiltered;
427 } else {
Craig Topper797ba552012-03-16 00:56:01 +0000428 // Some of the encoding bit(s) are unspecified. This contributes to
Owen Andersond8c87882011-02-18 21:51:29 +0000429 // one additional member of "Variable" instructions.
430 VariableInstructions.push_back(Owner->Opcodes[i]);
Owen Andersond8c87882011-02-18 21:51:29 +0000431 }
432 }
433
434 assert((FilteredInstructions.size() + VariableInstructions.size() > 0)
435 && "Filter returns no instruction categories");
436}
437
438Filter::~Filter() {
Craig Toppereb5cd612012-03-16 05:58:09 +0000439 std::map<unsigned, const FilterChooser*>::iterator filterIterator;
Owen Andersond8c87882011-02-18 21:51:29 +0000440 for (filterIterator = FilterChooserMap.begin();
441 filterIterator != FilterChooserMap.end();
442 filterIterator++) {
443 delete filterIterator->second;
444 }
445}
446
447// Divides the decoding task into sub tasks and delegates them to the
448// inferior FilterChooser's.
449//
450// A special case arises when there's only one entry in the filtered
451// instructions. In order to unambiguously decode the singleton, we need to
452// match the remaining undecoded encoding bits against the singleton.
453void Filter::recurse() {
454 std::map<uint64_t, std::vector<unsigned> >::const_iterator mapIterator;
455
Owen Andersond8c87882011-02-18 21:51:29 +0000456 // Starts by inheriting our parent filter chooser's filter bit values.
Owen Andersonf1a00902011-07-19 21:06:00 +0000457 std::vector<bit_value_t> BitValueArray(Owner->FilterBitValues);
Owen Andersond8c87882011-02-18 21:51:29 +0000458
459 unsigned bitIndex;
460
461 if (VariableInstructions.size()) {
462 // Conservatively marks each segment position as BIT_UNSET.
463 for (bitIndex = 0; bitIndex < NumBits; bitIndex++)
464 BitValueArray[StartBit + bitIndex] = BIT_UNSET;
465
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000466 // Delegates to an inferior filter chooser for further processing on this
Owen Andersond8c87882011-02-18 21:51:29 +0000467 // group of instructions whose segment values are variable.
Craig Toppereb5cd612012-03-16 05:58:09 +0000468 FilterChooserMap.insert(std::pair<unsigned, const FilterChooser*>(
Owen Andersond8c87882011-02-18 21:51:29 +0000469 (unsigned)-1,
470 new FilterChooser(Owner->AllInstructions,
471 VariableInstructions,
472 Owner->Operands,
473 BitValueArray,
474 *Owner)
475 ));
476 }
477
478 // No need to recurse for a singleton filtered instruction.
479 // See also Filter::emit().
480 if (getNumFiltered() == 1) {
481 //Owner->SingletonExists(LastOpcFiltered);
482 assert(FilterChooserMap.size() == 1);
483 return;
484 }
485
486 // Otherwise, create sub choosers.
487 for (mapIterator = FilteredInstructions.begin();
488 mapIterator != FilteredInstructions.end();
489 mapIterator++) {
490
491 // Marks all the segment positions with either BIT_TRUE or BIT_FALSE.
492 for (bitIndex = 0; bitIndex < NumBits; bitIndex++) {
493 if (mapIterator->first & (1ULL << bitIndex))
494 BitValueArray[StartBit + bitIndex] = BIT_TRUE;
495 else
496 BitValueArray[StartBit + bitIndex] = BIT_FALSE;
497 }
498
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000499 // Delegates to an inferior filter chooser for further processing on this
Owen Andersond8c87882011-02-18 21:51:29 +0000500 // category of instructions.
Craig Toppereb5cd612012-03-16 05:58:09 +0000501 FilterChooserMap.insert(std::pair<unsigned, const FilterChooser*>(
Owen Andersond8c87882011-02-18 21:51:29 +0000502 mapIterator->first,
503 new FilterChooser(Owner->AllInstructions,
504 mapIterator->second,
505 Owner->Operands,
506 BitValueArray,
507 *Owner)
508 ));
509 }
510}
511
512// Emit code to decode instructions given a segment or segments of bits.
Craig Toppereb5cd612012-03-16 05:58:09 +0000513void Filter::emit(raw_ostream &o, unsigned &Indentation) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000514 o.indent(Indentation) << "// Check Inst{";
515
516 if (NumBits > 1)
517 o << (StartBit + NumBits - 1) << '-';
518
519 o << StartBit << "} ...\n";
520
Owen Andersonf1a00902011-07-19 21:06:00 +0000521 o.indent(Indentation) << "switch (fieldFromInstruction" << Owner->BitWidth
522 << "(insn, " << StartBit << ", "
523 << NumBits << ")) {\n";
Owen Andersond8c87882011-02-18 21:51:29 +0000524
Craig Toppereb5cd612012-03-16 05:58:09 +0000525 std::map<unsigned, const FilterChooser*>::const_iterator filterIterator;
Owen Andersond8c87882011-02-18 21:51:29 +0000526
527 bool DefaultCase = false;
528 for (filterIterator = FilterChooserMap.begin();
529 filterIterator != FilterChooserMap.end();
530 filterIterator++) {
531
532 // Field value -1 implies a non-empty set of variable instructions.
533 // See also recurse().
534 if (filterIterator->first == (unsigned)-1) {
535 DefaultCase = true;
536
537 o.indent(Indentation) << "default:\n";
538 o.indent(Indentation) << " break; // fallthrough\n";
539
540 // Closing curly brace for the switch statement.
541 // This is unconventional because we want the default processing to be
542 // performed for the fallthrough cases as well, i.e., when the "cases"
543 // did not prove a decoded instruction.
544 o.indent(Indentation) << "}\n";
545
546 } else
547 o.indent(Indentation) << "case " << filterIterator->first << ":\n";
548
549 // We arrive at a category of instructions with the same segment value.
550 // Now delegate to the sub filter chooser for further decodings.
551 // The case may fallthrough, which happens if the remaining well-known
552 // encoding bits do not match exactly.
553 if (!DefaultCase) { ++Indentation; ++Indentation; }
554
555 bool finished = filterIterator->second->emit(o, Indentation);
556 // For top level default case, there's no need for a break statement.
557 if (Owner->isTopLevel() && DefaultCase)
558 break;
559 if (!finished)
560 o.indent(Indentation) << "break;\n";
561
562 if (!DefaultCase) { --Indentation; --Indentation; }
563 }
564
565 // If there is no default case, we still need to supply a closing brace.
566 if (!DefaultCase) {
567 // Closing curly brace for the switch statement.
568 o.indent(Indentation) << "}\n";
569 }
570}
571
572// Returns the number of fanout produced by the filter. More fanout implies
573// the filter distinguishes more categories of instructions.
574unsigned Filter::usefulness() const {
575 if (VariableInstructions.size())
576 return FilteredInstructions.size();
577 else
578 return FilteredInstructions.size() + 1;
579}
580
581//////////////////////////////////
582// //
583// Filterchooser Implementation //
584// //
585//////////////////////////////////
586
587// Emit the top level typedef and decodeInstruction() function.
Owen Andersonf1a00902011-07-19 21:06:00 +0000588void FilterChooser::emitTop(raw_ostream &o, unsigned Indentation,
Craig Toppereb5cd612012-03-16 05:58:09 +0000589 const std::string &Namespace) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000590 o.indent(Indentation) <<
Jim Grosbach9c826d22012-02-29 22:07:56 +0000591 "static MCDisassembler::DecodeStatus decode" << Namespace << "Instruction"
592 << BitWidth << "(MCInst &MI, uint" << BitWidth
593 << "_t insn, uint64_t Address, "
James Molloya5d58562011-09-07 19:42:28 +0000594 << "const void *Decoder, const MCSubtargetInfo &STI) {\n";
Owen Anderson684dfcf2011-10-17 16:56:47 +0000595 o.indent(Indentation) << " unsigned tmp = 0;\n";
596 o.indent(Indentation) << " (void)tmp;\n";
597 o.indent(Indentation) << Emitter->Locals << "\n";
Bob Wilson1cea66c2011-10-01 02:47:54 +0000598 o.indent(Indentation) << " uint64_t Bits = STI.getFeatureBits();\n";
Owen Anderson684dfcf2011-10-17 16:56:47 +0000599 o.indent(Indentation) << " (void)Bits;\n";
Owen Andersond8c87882011-02-18 21:51:29 +0000600
601 ++Indentation; ++Indentation;
602 // Emits code to decode the instructions.
603 emit(o, Indentation);
604
605 o << '\n';
Owen Anderson83e3f672011-08-17 17:44:15 +0000606 o.indent(Indentation) << "return " << Emitter->ReturnFail << ";\n";
Owen Andersond8c87882011-02-18 21:51:29 +0000607 --Indentation; --Indentation;
608
609 o.indent(Indentation) << "}\n";
610
611 o << '\n';
612}
613
614// Populates the field of the insn given the start position and the number of
615// consecutive bits to scan for.
616//
617// Returns false if and on the first uninitialized bit value encountered.
618// Returns true, otherwise.
619bool FilterChooser::fieldFromInsn(uint64_t &Field, insn_t &Insn,
Craig Toppereb5cd612012-03-16 05:58:09 +0000620 unsigned StartBit, unsigned NumBits) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000621 Field = 0;
622
623 for (unsigned i = 0; i < NumBits; ++i) {
624 if (Insn[StartBit + i] == BIT_UNSET)
625 return false;
626
627 if (Insn[StartBit + i] == BIT_TRUE)
628 Field = Field | (1ULL << i);
629 }
630
631 return true;
632}
633
634/// dumpFilterArray - dumpFilterArray prints out debugging info for the given
635/// filter array as a series of chars.
636void FilterChooser::dumpFilterArray(raw_ostream &o,
Craig Toppereb5cd612012-03-16 05:58:09 +0000637 const std::vector<bit_value_t> &filter) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000638 unsigned bitIndex;
639
Owen Andersonf1a00902011-07-19 21:06:00 +0000640 for (bitIndex = BitWidth; bitIndex > 0; bitIndex--) {
Owen Andersond8c87882011-02-18 21:51:29 +0000641 switch (filter[bitIndex - 1]) {
642 case BIT_UNFILTERED:
643 o << ".";
644 break;
645 case BIT_UNSET:
646 o << "_";
647 break;
648 case BIT_TRUE:
649 o << "1";
650 break;
651 case BIT_FALSE:
652 o << "0";
653 break;
654 }
655 }
656}
657
658/// dumpStack - dumpStack traverses the filter chooser chain and calls
659/// dumpFilterArray on each filter chooser up to the top level one.
Craig Toppereb5cd612012-03-16 05:58:09 +0000660void FilterChooser::dumpStack(raw_ostream &o, const char *prefix) const {
661 const FilterChooser *current = this;
Owen Andersond8c87882011-02-18 21:51:29 +0000662
663 while (current) {
664 o << prefix;
665 dumpFilterArray(o, current->FilterBitValues);
666 o << '\n';
667 current = current->Parent;
668 }
669}
670
671// Called from Filter::recurse() when singleton exists. For debug purpose.
Craig Toppereb5cd612012-03-16 05:58:09 +0000672void FilterChooser::SingletonExists(unsigned Opc) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000673 insn_t Insn0;
674 insnWithID(Insn0, Opc);
675
676 errs() << "Singleton exists: " << nameWithID(Opc)
677 << " with its decoding dominating ";
678 for (unsigned i = 0; i < Opcodes.size(); ++i) {
679 if (Opcodes[i] == Opc) continue;
680 errs() << nameWithID(Opcodes[i]) << ' ';
681 }
682 errs() << '\n';
683
684 dumpStack(errs(), "\t\t");
Craig Topperd9360452012-03-16 01:19:24 +0000685 for (unsigned i = 0; i < Opcodes.size(); ++i) {
Owen Andersond8c87882011-02-18 21:51:29 +0000686 const std::string &Name = nameWithID(Opcodes[i]);
687
688 errs() << '\t' << Name << " ";
689 dumpBits(errs(),
690 getBitsField(*AllInstructions[Opcodes[i]]->TheDef, "Inst"));
691 errs() << '\n';
692 }
693}
694
695// Calculates the island(s) needed to decode the instruction.
696// This returns a list of undecoded bits of an instructions, for example,
697// Inst{20} = 1 && Inst{3-0} == 0b1111 represents two islands of yet-to-be
698// decoded bits in order to verify that the instruction matches the Opcode.
699unsigned FilterChooser::getIslands(std::vector<unsigned> &StartBits,
Craig Topperd9360452012-03-16 01:19:24 +0000700 std::vector<unsigned> &EndBits,
701 std::vector<uint64_t> &FieldVals,
Craig Toppereb5cd612012-03-16 05:58:09 +0000702 const insn_t &Insn) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000703 unsigned Num, BitNo;
704 Num = BitNo = 0;
705
706 uint64_t FieldVal = 0;
707
708 // 0: Init
709 // 1: Water (the bit value does not affect decoding)
710 // 2: Island (well-known bit value needed for decoding)
711 int State = 0;
712 int Val = -1;
713
Owen Andersonf1a00902011-07-19 21:06:00 +0000714 for (unsigned i = 0; i < BitWidth; ++i) {
Owen Andersond8c87882011-02-18 21:51:29 +0000715 Val = Value(Insn[i]);
716 bool Filtered = PositionFiltered(i);
717 switch (State) {
Craig Topper655b8de2012-02-05 07:21:30 +0000718 default: llvm_unreachable("Unreachable code!");
Owen Andersond8c87882011-02-18 21:51:29 +0000719 case 0:
720 case 1:
721 if (Filtered || Val == -1)
722 State = 1; // Still in Water
723 else {
724 State = 2; // Into the Island
725 BitNo = 0;
726 StartBits.push_back(i);
727 FieldVal = Val;
728 }
729 break;
730 case 2:
731 if (Filtered || Val == -1) {
732 State = 1; // Into the Water
733 EndBits.push_back(i - 1);
734 FieldVals.push_back(FieldVal);
735 ++Num;
736 } else {
737 State = 2; // Still in Island
738 ++BitNo;
739 FieldVal = FieldVal | Val << BitNo;
740 }
741 break;
742 }
743 }
744 // If we are still in Island after the loop, do some housekeeping.
745 if (State == 2) {
Owen Andersonf1a00902011-07-19 21:06:00 +0000746 EndBits.push_back(BitWidth - 1);
Owen Andersond8c87882011-02-18 21:51:29 +0000747 FieldVals.push_back(FieldVal);
748 ++Num;
749 }
750
751 assert(StartBits.size() == Num && EndBits.size() == Num &&
752 FieldVals.size() == Num);
753 return Num;
754}
755
Owen Andersond1e38df2011-07-28 21:54:31 +0000756void FilterChooser::emitBinaryParser(raw_ostream &o, unsigned &Indentation,
Craig Toppereb5cd612012-03-16 05:58:09 +0000757 const OperandInfo &OpInfo) const {
758 const std::string &Decoder = OpInfo.Decoder;
Owen Andersond1e38df2011-07-28 21:54:31 +0000759
760 if (OpInfo.numFields() == 1) {
Craig Toppereb5cd612012-03-16 05:58:09 +0000761 OperandInfo::const_iterator OI = OpInfo.begin();
Owen Andersond1e38df2011-07-28 21:54:31 +0000762 o.indent(Indentation) << " tmp = fieldFromInstruction" << BitWidth
763 << "(insn, " << OI->Base << ", " << OI->Width
764 << ");\n";
765 } else {
766 o.indent(Indentation) << " tmp = 0;\n";
Craig Toppereb5cd612012-03-16 05:58:09 +0000767 for (OperandInfo::const_iterator OI = OpInfo.begin(), OE = OpInfo.end();
Owen Andersond1e38df2011-07-28 21:54:31 +0000768 OI != OE; ++OI) {
769 o.indent(Indentation) << " tmp |= (fieldFromInstruction" << BitWidth
Andrew Tricked968a92011-09-08 05:23:14 +0000770 << "(insn, " << OI->Base << ", " << OI->Width
Owen Andersond1e38df2011-07-28 21:54:31 +0000771 << ") << " << OI->Offset << ");\n";
772 }
773 }
774
775 if (Decoder != "")
Owen Anderson83e3f672011-08-17 17:44:15 +0000776 o.indent(Indentation) << " " << Emitter->GuardPrefix << Decoder
Jim Grosbach9c826d22012-02-29 22:07:56 +0000777 << "(MI, tmp, Address, Decoder)"
778 << Emitter->GuardPostfix << "\n";
Owen Andersond1e38df2011-07-28 21:54:31 +0000779 else
780 o.indent(Indentation) << " MI.addOperand(MCOperand::CreateImm(tmp));\n";
781
782}
783
James Molloya5d58562011-09-07 19:42:28 +0000784static void emitSinglePredicateMatch(raw_ostream &o, StringRef str,
Craig Toppereb5cd612012-03-16 05:58:09 +0000785 const std::string &PredicateNamespace) {
Andrew Trick22b4c812011-09-08 05:25:49 +0000786 if (str[0] == '!')
787 o << "!(Bits & " << PredicateNamespace << "::"
788 << str.slice(1,str.size()) << ")";
James Molloya5d58562011-09-07 19:42:28 +0000789 else
Andrew Trick22b4c812011-09-08 05:25:49 +0000790 o << "(Bits & " << PredicateNamespace << "::" << str << ")";
James Molloya5d58562011-09-07 19:42:28 +0000791}
792
793bool FilterChooser::emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
Craig Toppereb5cd612012-03-16 05:58:09 +0000794 unsigned Opc) const {
Jim Grosbach9c826d22012-02-29 22:07:56 +0000795 ListInit *Predicates =
796 AllInstructions[Opc]->TheDef->getValueAsListInit("Predicates");
James Molloya5d58562011-09-07 19:42:28 +0000797 for (unsigned i = 0; i < Predicates->getSize(); ++i) {
798 Record *Pred = Predicates->getElementAsRecord(i);
799 if (!Pred->getValue("AssemblerMatcherPredicate"))
800 continue;
801
802 std::string P = Pred->getValueAsString("AssemblerCondString");
803
804 if (!P.length())
805 continue;
806
807 if (i != 0)
808 o << " && ";
809
810 StringRef SR(P);
811 std::pair<StringRef, StringRef> pairs = SR.split(',');
812 while (pairs.second.size()) {
813 emitSinglePredicateMatch(o, pairs.first, Emitter->PredicateNamespace);
814 o << " && ";
815 pairs = pairs.second.split(',');
816 }
817 emitSinglePredicateMatch(o, pairs.first, Emitter->PredicateNamespace);
818 }
819 return Predicates->getSize() > 0;
Andrew Tricked968a92011-09-08 05:23:14 +0000820}
James Molloya5d58562011-09-07 19:42:28 +0000821
Jim Grosbach9c826d22012-02-29 22:07:56 +0000822void FilterChooser::emitSoftFailCheck(raw_ostream &o, unsigned Indentation,
Craig Toppereb5cd612012-03-16 05:58:09 +0000823 unsigned Opc) const {
Jim Grosbach9c826d22012-02-29 22:07:56 +0000824 BitsInit *SFBits =
825 AllInstructions[Opc]->TheDef->getValueAsBitsInit("SoftFail");
James Molloy3015dfb2012-02-09 10:56:31 +0000826 if (!SFBits) return;
827 BitsInit *InstBits = AllInstructions[Opc]->TheDef->getValueAsBitsInit("Inst");
828
829 APInt PositiveMask(BitWidth, 0ULL);
830 APInt NegativeMask(BitWidth, 0ULL);
831 for (unsigned i = 0; i < BitWidth; ++i) {
832 bit_value_t B = bitFromBits(*SFBits, i);
833 bit_value_t IB = bitFromBits(*InstBits, i);
834
835 if (B != BIT_TRUE) continue;
836
837 switch (IB) {
838 case BIT_FALSE:
839 // The bit is meant to be false, so emit a check to see if it is true.
840 PositiveMask.setBit(i);
841 break;
842 case BIT_TRUE:
843 // The bit is meant to be true, so emit a check to see if it is false.
844 NegativeMask.setBit(i);
845 break;
846 default:
847 // The bit is not set; this must be an error!
848 StringRef Name = AllInstructions[Opc]->TheDef->getName();
849 errs() << "SoftFail Conflict: bit SoftFail{" << i << "} in "
850 << Name
851 << " is set but Inst{" << i <<"} is unset!\n"
852 << " - You can only mark a bit as SoftFail if it is fully defined"
853 << " (1/0 - not '?') in Inst\n";
854 o << "#error SoftFail Conflict, " << Name << "::SoftFail{" << i
855 << "} set but Inst{" << i << "} undefined!\n";
856 }
857 }
858
859 bool NeedPositiveMask = PositiveMask.getBoolValue();
860 bool NeedNegativeMask = NegativeMask.getBoolValue();
861
862 if (!NeedPositiveMask && !NeedNegativeMask)
863 return;
864
865 std::string PositiveMaskStr = PositiveMask.toString(16, /*signed=*/false);
866 std::string NegativeMaskStr = NegativeMask.toString(16, /*signed=*/false);
867 StringRef BitExt = "";
868 if (BitWidth > 32)
869 BitExt = "ULL";
870
871 o.indent(Indentation) << "if (";
872 if (NeedPositiveMask)
873 o << "insn & 0x" << PositiveMaskStr << BitExt;
874 if (NeedPositiveMask && NeedNegativeMask)
875 o << " || ";
876 if (NeedNegativeMask)
877 o << "~insn & 0x" << NegativeMaskStr << BitExt;
878 o << ")\n";
879 o.indent(Indentation+2) << "S = MCDisassembler::SoftFail;\n";
880}
881
Owen Andersond8c87882011-02-18 21:51:29 +0000882// Emits code to decode the singleton. Return true if we have matched all the
883// well-known bits.
884bool FilterChooser::emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,
Craig Toppereb5cd612012-03-16 05:58:09 +0000885 unsigned Opc) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000886 std::vector<unsigned> StartBits;
887 std::vector<unsigned> EndBits;
888 std::vector<uint64_t> FieldVals;
889 insn_t Insn;
890 insnWithID(Insn, Opc);
891
892 // Look for islands of undecoded bits of the singleton.
893 getIslands(StartBits, EndBits, FieldVals, Insn);
894
895 unsigned Size = StartBits.size();
896 unsigned I, NumBits;
897
898 // If we have matched all the well-known bits, just issue a return.
899 if (Size == 0) {
James Molloya5d58562011-09-07 19:42:28 +0000900 o.indent(Indentation) << "if (";
Eli Friedman64a17b32011-09-08 21:00:31 +0000901 if (!emitPredicateMatch(o, Indentation, Opc))
902 o << "1";
James Molloya5d58562011-09-07 19:42:28 +0000903 o << ") {\n";
James Molloy3015dfb2012-02-09 10:56:31 +0000904 emitSoftFailCheck(o, Indentation+2, Opc);
Owen Andersond8c87882011-02-18 21:51:29 +0000905 o.indent(Indentation) << " MI.setOpcode(" << Opc << ");\n";
906 std::vector<OperandInfo>& InsnOperands = Operands[Opc];
907 for (std::vector<OperandInfo>::iterator
908 I = InsnOperands.begin(), E = InsnOperands.end(); I != E; ++I) {
909 // If a custom instruction decoder was specified, use that.
Owen Andersond1e38df2011-07-28 21:54:31 +0000910 if (I->numFields() == 0 && I->Decoder.size()) {
Owen Anderson83e3f672011-08-17 17:44:15 +0000911 o.indent(Indentation) << " " << Emitter->GuardPrefix << I->Decoder
Jim Grosbach9c826d22012-02-29 22:07:56 +0000912 << "(MI, insn, Address, Decoder)"
913 << Emitter->GuardPostfix << "\n";
Owen Andersond8c87882011-02-18 21:51:29 +0000914 break;
915 }
916
Owen Andersond1e38df2011-07-28 21:54:31 +0000917 emitBinaryParser(o, Indentation, *I);
Owen Andersond8c87882011-02-18 21:51:29 +0000918 }
919
Jim Grosbach9c826d22012-02-29 22:07:56 +0000920 o.indent(Indentation) << " return " << Emitter->ReturnOK << "; // "
921 << nameWithID(Opc) << '\n';
James Molloya5d58562011-09-07 19:42:28 +0000922 o.indent(Indentation) << "}\n"; // Closing predicate block.
Owen Andersond8c87882011-02-18 21:51:29 +0000923 return true;
924 }
925
926 // Otherwise, there are more decodings to be done!
927
928 // Emit code to match the island(s) for the singleton.
929 o.indent(Indentation) << "// Check ";
930
931 for (I = Size; I != 0; --I) {
932 o << "Inst{" << EndBits[I-1] << '-' << StartBits[I-1] << "} ";
933 if (I > 1)
James Molloya5d58562011-09-07 19:42:28 +0000934 o << " && ";
Owen Andersond8c87882011-02-18 21:51:29 +0000935 else
936 o << "for singleton decoding...\n";
937 }
938
939 o.indent(Indentation) << "if (";
James Molloy0d76b192011-09-08 08:12:01 +0000940 if (emitPredicateMatch(o, Indentation, Opc)) {
James Molloya5d58562011-09-07 19:42:28 +0000941 o << " &&\n";
942 o.indent(Indentation+4);
943 }
Owen Andersond8c87882011-02-18 21:51:29 +0000944
945 for (I = Size; I != 0; --I) {
946 NumBits = EndBits[I-1] - StartBits[I-1] + 1;
Owen Andersonf1a00902011-07-19 21:06:00 +0000947 o << "fieldFromInstruction" << BitWidth << "(insn, "
948 << StartBits[I-1] << ", " << NumBits
Owen Andersond8c87882011-02-18 21:51:29 +0000949 << ") == " << FieldVals[I-1];
950 if (I > 1)
951 o << " && ";
952 else
953 o << ") {\n";
954 }
James Molloy3015dfb2012-02-09 10:56:31 +0000955 emitSoftFailCheck(o, Indentation+2, Opc);
Owen Andersond8c87882011-02-18 21:51:29 +0000956 o.indent(Indentation) << " MI.setOpcode(" << Opc << ");\n";
957 std::vector<OperandInfo>& InsnOperands = Operands[Opc];
958 for (std::vector<OperandInfo>::iterator
959 I = InsnOperands.begin(), E = InsnOperands.end(); I != E; ++I) {
960 // If a custom instruction decoder was specified, use that.
Owen Andersond1e38df2011-07-28 21:54:31 +0000961 if (I->numFields() == 0 && I->Decoder.size()) {
Owen Anderson83e3f672011-08-17 17:44:15 +0000962 o.indent(Indentation) << " " << Emitter->GuardPrefix << I->Decoder
Jim Grosbach9c826d22012-02-29 22:07:56 +0000963 << "(MI, insn, Address, Decoder)"
964 << Emitter->GuardPostfix << "\n";
Owen Andersond8c87882011-02-18 21:51:29 +0000965 break;
966 }
967
Owen Andersond1e38df2011-07-28 21:54:31 +0000968 emitBinaryParser(o, Indentation, *I);
Owen Andersond8c87882011-02-18 21:51:29 +0000969 }
Jim Grosbach9c826d22012-02-29 22:07:56 +0000970 o.indent(Indentation) << " return " << Emitter->ReturnOK << "; // "
971 << nameWithID(Opc) << '\n';
Owen Andersond8c87882011-02-18 21:51:29 +0000972 o.indent(Indentation) << "}\n";
973
974 return false;
975}
976
977// Emits code to decode the singleton, and then to decode the rest.
978void FilterChooser::emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,
Craig Toppereb5cd612012-03-16 05:58:09 +0000979 const Filter &Best) const {
Owen Andersond8c87882011-02-18 21:51:29 +0000980
981 unsigned Opc = Best.getSingletonOpc();
982
983 emitSingletonDecoder(o, Indentation, Opc);
984
985 // Emit code for the rest.
986 o.indent(Indentation) << "else\n";
987
988 Indentation += 2;
989 Best.getVariableFC().emit(o, Indentation);
990 Indentation -= 2;
991}
992
993// Assign a single filter and run with it. Top level API client can initialize
994// with a single filter to start the filtering process.
Craig Toppereb5cd612012-03-16 05:58:09 +0000995void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit,
996 bool mixed) {
Owen Andersond8c87882011-02-18 21:51:29 +0000997 Filters.clear();
998 Filter F(*this, startBit, numBit, true);
999 Filters.push_back(F);
1000 BestIndex = 0; // Sole Filter instance to choose from.
1001 bestFilter().recurse();
1002}
1003
1004// reportRegion is a helper function for filterProcessor to mark a region as
1005// eligible for use as a filter region.
1006void FilterChooser::reportRegion(bitAttr_t RA, unsigned StartBit,
Craig Topperd9360452012-03-16 01:19:24 +00001007 unsigned BitIndex, bool AllowMixed) {
Owen Andersond8c87882011-02-18 21:51:29 +00001008 if (RA == ATTR_MIXED && AllowMixed)
1009 Filters.push_back(Filter(*this, StartBit, BitIndex - StartBit, true));
1010 else if (RA == ATTR_ALL_SET && !AllowMixed)
1011 Filters.push_back(Filter(*this, StartBit, BitIndex - StartBit, false));
1012}
1013
1014// FilterProcessor scans the well-known encoding bits of the instructions and
1015// builds up a list of candidate filters. It chooses the best filter and
1016// recursively descends down the decoding tree.
1017bool FilterChooser::filterProcessor(bool AllowMixed, bool Greedy) {
1018 Filters.clear();
1019 BestIndex = -1;
1020 unsigned numInstructions = Opcodes.size();
1021
1022 assert(numInstructions && "Filter created with no instructions");
1023
1024 // No further filtering is necessary.
1025 if (numInstructions == 1)
1026 return true;
1027
1028 // Heuristics. See also doFilter()'s "Heuristics" comment when num of
1029 // instructions is 3.
1030 if (AllowMixed && !Greedy) {
1031 assert(numInstructions == 3);
1032
1033 for (unsigned i = 0; i < Opcodes.size(); ++i) {
1034 std::vector<unsigned> StartBits;
1035 std::vector<unsigned> EndBits;
1036 std::vector<uint64_t> FieldVals;
1037 insn_t Insn;
1038
1039 insnWithID(Insn, Opcodes[i]);
1040
1041 // Look for islands of undecoded bits of any instruction.
1042 if (getIslands(StartBits, EndBits, FieldVals, Insn) > 0) {
1043 // Found an instruction with island(s). Now just assign a filter.
Craig Toppereb5cd612012-03-16 05:58:09 +00001044 runSingleFilter(StartBits[0], EndBits[0] - StartBits[0] + 1, true);
Owen Andersond8c87882011-02-18 21:51:29 +00001045 return true;
1046 }
1047 }
1048 }
1049
1050 unsigned BitIndex, InsnIndex;
1051
1052 // We maintain BIT_WIDTH copies of the bitAttrs automaton.
1053 // The automaton consumes the corresponding bit from each
1054 // instruction.
1055 //
1056 // Input symbols: 0, 1, and _ (unset).
1057 // States: NONE, FILTERED, ALL_SET, ALL_UNSET, and MIXED.
1058 // Initial state: NONE.
1059 //
1060 // (NONE) ------- [01] -> (ALL_SET)
1061 // (NONE) ------- _ ----> (ALL_UNSET)
1062 // (ALL_SET) ---- [01] -> (ALL_SET)
1063 // (ALL_SET) ---- _ ----> (MIXED)
1064 // (ALL_UNSET) -- [01] -> (MIXED)
1065 // (ALL_UNSET) -- _ ----> (ALL_UNSET)
1066 // (MIXED) ------ . ----> (MIXED)
1067 // (FILTERED)---- . ----> (FILTERED)
1068
Owen Andersonf1a00902011-07-19 21:06:00 +00001069 std::vector<bitAttr_t> bitAttrs;
Owen Andersond8c87882011-02-18 21:51:29 +00001070
1071 // FILTERED bit positions provide no entropy and are not worthy of pursuing.
1072 // Filter::recurse() set either BIT_TRUE or BIT_FALSE for each position.
Owen Andersonf1a00902011-07-19 21:06:00 +00001073 for (BitIndex = 0; BitIndex < BitWidth; ++BitIndex)
Owen Andersond8c87882011-02-18 21:51:29 +00001074 if (FilterBitValues[BitIndex] == BIT_TRUE ||
1075 FilterBitValues[BitIndex] == BIT_FALSE)
Owen Andersonf1a00902011-07-19 21:06:00 +00001076 bitAttrs.push_back(ATTR_FILTERED);
Owen Andersond8c87882011-02-18 21:51:29 +00001077 else
Owen Andersonf1a00902011-07-19 21:06:00 +00001078 bitAttrs.push_back(ATTR_NONE);
Owen Andersond8c87882011-02-18 21:51:29 +00001079
1080 for (InsnIndex = 0; InsnIndex < numInstructions; ++InsnIndex) {
1081 insn_t insn;
1082
1083 insnWithID(insn, Opcodes[InsnIndex]);
1084
Owen Andersonf1a00902011-07-19 21:06:00 +00001085 for (BitIndex = 0; BitIndex < BitWidth; ++BitIndex) {
Owen Andersond8c87882011-02-18 21:51:29 +00001086 switch (bitAttrs[BitIndex]) {
1087 case ATTR_NONE:
1088 if (insn[BitIndex] == BIT_UNSET)
1089 bitAttrs[BitIndex] = ATTR_ALL_UNSET;
1090 else
1091 bitAttrs[BitIndex] = ATTR_ALL_SET;
1092 break;
1093 case ATTR_ALL_SET:
1094 if (insn[BitIndex] == BIT_UNSET)
1095 bitAttrs[BitIndex] = ATTR_MIXED;
1096 break;
1097 case ATTR_ALL_UNSET:
1098 if (insn[BitIndex] != BIT_UNSET)
1099 bitAttrs[BitIndex] = ATTR_MIXED;
1100 break;
1101 case ATTR_MIXED:
1102 case ATTR_FILTERED:
1103 break;
1104 }
1105 }
1106 }
1107
1108 // The regionAttr automaton consumes the bitAttrs automatons' state,
1109 // lowest-to-highest.
1110 //
1111 // Input symbols: F(iltered), (all_)S(et), (all_)U(nset), M(ixed)
1112 // States: NONE, ALL_SET, MIXED
1113 // Initial state: NONE
1114 //
1115 // (NONE) ----- F --> (NONE)
1116 // (NONE) ----- S --> (ALL_SET) ; and set region start
1117 // (NONE) ----- U --> (NONE)
1118 // (NONE) ----- M --> (MIXED) ; and set region start
1119 // (ALL_SET) -- F --> (NONE) ; and report an ALL_SET region
1120 // (ALL_SET) -- S --> (ALL_SET)
1121 // (ALL_SET) -- U --> (NONE) ; and report an ALL_SET region
1122 // (ALL_SET) -- M --> (MIXED) ; and report an ALL_SET region
1123 // (MIXED) ---- F --> (NONE) ; and report a MIXED region
1124 // (MIXED) ---- S --> (ALL_SET) ; and report a MIXED region
1125 // (MIXED) ---- U --> (NONE) ; and report a MIXED region
1126 // (MIXED) ---- M --> (MIXED)
1127
1128 bitAttr_t RA = ATTR_NONE;
1129 unsigned StartBit = 0;
1130
Owen Andersonf1a00902011-07-19 21:06:00 +00001131 for (BitIndex = 0; BitIndex < BitWidth; BitIndex++) {
Owen Andersond8c87882011-02-18 21:51:29 +00001132 bitAttr_t bitAttr = bitAttrs[BitIndex];
1133
1134 assert(bitAttr != ATTR_NONE && "Bit without attributes");
1135
1136 switch (RA) {
1137 case ATTR_NONE:
1138 switch (bitAttr) {
1139 case ATTR_FILTERED:
1140 break;
1141 case ATTR_ALL_SET:
1142 StartBit = BitIndex;
1143 RA = ATTR_ALL_SET;
1144 break;
1145 case ATTR_ALL_UNSET:
1146 break;
1147 case ATTR_MIXED:
1148 StartBit = BitIndex;
1149 RA = ATTR_MIXED;
1150 break;
1151 default:
Craig Topper655b8de2012-02-05 07:21:30 +00001152 llvm_unreachable("Unexpected bitAttr!");
Owen Andersond8c87882011-02-18 21:51:29 +00001153 }
1154 break;
1155 case ATTR_ALL_SET:
1156 switch (bitAttr) {
1157 case ATTR_FILTERED:
1158 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1159 RA = ATTR_NONE;
1160 break;
1161 case ATTR_ALL_SET:
1162 break;
1163 case ATTR_ALL_UNSET:
1164 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1165 RA = ATTR_NONE;
1166 break;
1167 case ATTR_MIXED:
1168 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1169 StartBit = BitIndex;
1170 RA = ATTR_MIXED;
1171 break;
1172 default:
Craig Topper655b8de2012-02-05 07:21:30 +00001173 llvm_unreachable("Unexpected bitAttr!");
Owen Andersond8c87882011-02-18 21:51:29 +00001174 }
1175 break;
1176 case ATTR_MIXED:
1177 switch (bitAttr) {
1178 case ATTR_FILTERED:
1179 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1180 StartBit = BitIndex;
1181 RA = ATTR_NONE;
1182 break;
1183 case ATTR_ALL_SET:
1184 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1185 StartBit = BitIndex;
1186 RA = ATTR_ALL_SET;
1187 break;
1188 case ATTR_ALL_UNSET:
1189 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1190 RA = ATTR_NONE;
1191 break;
1192 case ATTR_MIXED:
1193 break;
1194 default:
Craig Topper655b8de2012-02-05 07:21:30 +00001195 llvm_unreachable("Unexpected bitAttr!");
Owen Andersond8c87882011-02-18 21:51:29 +00001196 }
1197 break;
1198 case ATTR_ALL_UNSET:
Craig Topper655b8de2012-02-05 07:21:30 +00001199 llvm_unreachable("regionAttr state machine has no ATTR_UNSET state");
Owen Andersond8c87882011-02-18 21:51:29 +00001200 case ATTR_FILTERED:
Craig Topper655b8de2012-02-05 07:21:30 +00001201 llvm_unreachable("regionAttr state machine has no ATTR_FILTERED state");
Owen Andersond8c87882011-02-18 21:51:29 +00001202 }
1203 }
1204
1205 // At the end, if we're still in ALL_SET or MIXED states, report a region
1206 switch (RA) {
1207 case ATTR_NONE:
1208 break;
1209 case ATTR_FILTERED:
1210 break;
1211 case ATTR_ALL_SET:
1212 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1213 break;
1214 case ATTR_ALL_UNSET:
1215 break;
1216 case ATTR_MIXED:
1217 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1218 break;
1219 }
1220
1221 // We have finished with the filter processings. Now it's time to choose
1222 // the best performing filter.
1223 BestIndex = 0;
1224 bool AllUseless = true;
1225 unsigned BestScore = 0;
1226
1227 for (unsigned i = 0, e = Filters.size(); i != e; ++i) {
1228 unsigned Usefulness = Filters[i].usefulness();
1229
1230 if (Usefulness)
1231 AllUseless = false;
1232
1233 if (Usefulness > BestScore) {
1234 BestIndex = i;
1235 BestScore = Usefulness;
1236 }
1237 }
1238
1239 if (!AllUseless)
1240 bestFilter().recurse();
1241
1242 return !AllUseless;
1243} // end of FilterChooser::filterProcessor(bool)
1244
1245// Decides on the best configuration of filter(s) to use in order to decode
1246// the instructions. A conflict of instructions may occur, in which case we
1247// dump the conflict set to the standard error.
1248void FilterChooser::doFilter() {
1249 unsigned Num = Opcodes.size();
1250 assert(Num && "FilterChooser created with no instructions");
1251
1252 // Try regions of consecutive known bit values first.
1253 if (filterProcessor(false))
1254 return;
1255
1256 // Then regions of mixed bits (both known and unitialized bit values allowed).
1257 if (filterProcessor(true))
1258 return;
1259
1260 // Heuristics to cope with conflict set {t2CMPrs, t2SUBSrr, t2SUBSrs} where
1261 // no single instruction for the maximum ATTR_MIXED region Inst{14-4} has a
1262 // well-known encoding pattern. In such case, we backtrack and scan for the
1263 // the very first consecutive ATTR_ALL_SET region and assign a filter to it.
1264 if (Num == 3 && filterProcessor(true, false))
1265 return;
1266
1267 // If we come to here, the instruction decoding has failed.
1268 // Set the BestIndex to -1 to indicate so.
1269 BestIndex = -1;
1270}
1271
1272// Emits code to decode our share of instructions. Returns true if the
1273// emitted code causes a return, which occurs if we know how to decode
1274// the instruction at this level or the instruction is not decodeable.
Craig Toppereb5cd612012-03-16 05:58:09 +00001275bool FilterChooser::emit(raw_ostream &o, unsigned &Indentation) const {
Owen Andersond8c87882011-02-18 21:51:29 +00001276 if (Opcodes.size() == 1)
1277 // There is only one instruction in the set, which is great!
1278 // Call emitSingletonDecoder() to see whether there are any remaining
1279 // encodings bits.
1280 return emitSingletonDecoder(o, Indentation, Opcodes[0]);
1281
1282 // Choose the best filter to do the decodings!
1283 if (BestIndex != -1) {
Craig Toppereb5cd612012-03-16 05:58:09 +00001284 const Filter &Best = Filters[BestIndex];
Owen Andersond8c87882011-02-18 21:51:29 +00001285 if (Best.getNumFiltered() == 1)
1286 emitSingletonDecoder(o, Indentation, Best);
1287 else
Craig Toppereb5cd612012-03-16 05:58:09 +00001288 Best.emit(o, Indentation);
Owen Andersond8c87882011-02-18 21:51:29 +00001289 return false;
1290 }
1291
1292 // We don't know how to decode these instructions! Return 0 and dump the
1293 // conflict set!
1294 o.indent(Indentation) << "return 0;" << " // Conflict set: ";
1295 for (int i = 0, N = Opcodes.size(); i < N; ++i) {
1296 o << nameWithID(Opcodes[i]);
1297 if (i < (N - 1))
1298 o << ", ";
1299 else
1300 o << '\n';
1301 }
1302
1303 // Print out useful conflict information for postmortem analysis.
1304 errs() << "Decoding Conflict:\n";
1305
1306 dumpStack(errs(), "\t\t");
1307
Craig Topperd9360452012-03-16 01:19:24 +00001308 for (unsigned i = 0; i < Opcodes.size(); ++i) {
Owen Andersond8c87882011-02-18 21:51:29 +00001309 const std::string &Name = nameWithID(Opcodes[i]);
1310
1311 errs() << '\t' << Name << " ";
1312 dumpBits(errs(),
1313 getBitsField(*AllInstructions[Opcodes[i]]->TheDef, "Inst"));
1314 errs() << '\n';
1315 }
1316
1317 return true;
1318}
1319
Craig Topperd9360452012-03-16 01:19:24 +00001320static bool populateInstruction(const CodeGenInstruction &CGI, unsigned Opc,
1321 std::map<unsigned, std::vector<OperandInfo> > &Operands){
Owen Andersond8c87882011-02-18 21:51:29 +00001322 const Record &Def = *CGI.TheDef;
1323 // If all the bit positions are not specified; do not decode this instruction.
1324 // We are bound to fail! For proper disassembly, the well-known encoding bits
1325 // of the instruction must be fully specified.
1326 //
1327 // This also removes pseudo instructions from considerations of disassembly,
1328 // which is a better design and less fragile than the name matchings.
Owen Andersond8c87882011-02-18 21:51:29 +00001329 // Ignore "asm parser only" instructions.
Owen Anderson4dd27eb2011-03-14 20:58:49 +00001330 if (Def.getValueAsBit("isAsmParserOnly") ||
1331 Def.getValueAsBit("isCodeGenOnly"))
Owen Andersond8c87882011-02-18 21:51:29 +00001332 return false;
1333
David Greene05bce0b2011-07-29 22:43:06 +00001334 BitsInit &Bits = getBitsField(Def, "Inst");
Jim Grosbach806fcc02011-07-06 21:33:38 +00001335 if (Bits.allInComplete()) return false;
1336
Owen Andersond8c87882011-02-18 21:51:29 +00001337 std::vector<OperandInfo> InsnOperands;
1338
1339 // If the instruction has specified a custom decoding hook, use that instead
1340 // of trying to auto-generate the decoder.
1341 std::string InstDecoder = Def.getValueAsString("DecoderMethod");
1342 if (InstDecoder != "") {
Owen Andersond1e38df2011-07-28 21:54:31 +00001343 InsnOperands.push_back(OperandInfo(InstDecoder));
Owen Andersond8c87882011-02-18 21:51:29 +00001344 Operands[Opc] = InsnOperands;
1345 return true;
1346 }
1347
1348 // Generate a description of the operand of the instruction that we know
1349 // how to decode automatically.
1350 // FIXME: We'll need to have a way to manually override this as needed.
1351
1352 // Gather the outputs/inputs of the instruction, so we can find their
1353 // positions in the encoding. This assumes for now that they appear in the
1354 // MCInst in the order that they're listed.
David Greene05bce0b2011-07-29 22:43:06 +00001355 std::vector<std::pair<Init*, std::string> > InOutOperands;
1356 DagInit *Out = Def.getValueAsDag("OutOperandList");
1357 DagInit *In = Def.getValueAsDag("InOperandList");
Owen Andersond8c87882011-02-18 21:51:29 +00001358 for (unsigned i = 0; i < Out->getNumArgs(); ++i)
1359 InOutOperands.push_back(std::make_pair(Out->getArg(i), Out->getArgName(i)));
1360 for (unsigned i = 0; i < In->getNumArgs(); ++i)
1361 InOutOperands.push_back(std::make_pair(In->getArg(i), In->getArgName(i)));
1362
Owen Anderson00ef6e32011-07-28 23:56:20 +00001363 // Search for tied operands, so that we can correctly instantiate
1364 // operands that are not explicitly represented in the encoding.
Owen Andersonea242982011-07-29 18:28:52 +00001365 std::map<std::string, std::string> TiedNames;
Owen Anderson00ef6e32011-07-28 23:56:20 +00001366 for (unsigned i = 0; i < CGI.Operands.size(); ++i) {
1367 int tiedTo = CGI.Operands[i].getTiedRegister();
Owen Andersonea242982011-07-29 18:28:52 +00001368 if (tiedTo != -1) {
1369 TiedNames[InOutOperands[i].second] = InOutOperands[tiedTo].second;
1370 TiedNames[InOutOperands[tiedTo].second] = InOutOperands[i].second;
1371 }
Owen Anderson00ef6e32011-07-28 23:56:20 +00001372 }
1373
Owen Andersond8c87882011-02-18 21:51:29 +00001374 // For each operand, see if we can figure out where it is encoded.
David Greene05bce0b2011-07-29 22:43:06 +00001375 for (std::vector<std::pair<Init*, std::string> >::iterator
Owen Andersond8c87882011-02-18 21:51:29 +00001376 NI = InOutOperands.begin(), NE = InOutOperands.end(); NI != NE; ++NI) {
Owen Andersond8c87882011-02-18 21:51:29 +00001377 std::string Decoder = "";
1378
Owen Andersond1e38df2011-07-28 21:54:31 +00001379 // At this point, we can locate the field, but we need to know how to
1380 // interpret it. As a first step, require the target to provide callbacks
1381 // for decoding register classes.
1382 // FIXME: This need to be extended to handle instructions with custom
1383 // decoder methods, and operands with (simple) MIOperandInfo's.
David Greene05bce0b2011-07-29 22:43:06 +00001384 TypedInit *TI = dynamic_cast<TypedInit*>(NI->first);
Owen Andersond1e38df2011-07-28 21:54:31 +00001385 RecordRecTy *Type = dynamic_cast<RecordRecTy*>(TI->getType());
1386 Record *TypeRecord = Type->getRecord();
1387 bool isReg = false;
1388 if (TypeRecord->isSubClassOf("RegisterOperand"))
1389 TypeRecord = TypeRecord->getValueAsDef("RegClass");
1390 if (TypeRecord->isSubClassOf("RegisterClass")) {
1391 Decoder = "Decode" + TypeRecord->getName() + "RegisterClass";
1392 isReg = true;
1393 }
1394
1395 RecordVal *DecoderString = TypeRecord->getValue("DecoderMethod");
David Greene05bce0b2011-07-29 22:43:06 +00001396 StringInit *String = DecoderString ?
1397 dynamic_cast<StringInit*>(DecoderString->getValue()) : 0;
Owen Andersond1e38df2011-07-28 21:54:31 +00001398 if (!isReg && String && String->getValue() != "")
1399 Decoder = String->getValue();
1400
1401 OperandInfo OpInfo(Decoder);
1402 unsigned Base = ~0U;
1403 unsigned Width = 0;
1404 unsigned Offset = 0;
1405
Owen Andersond8c87882011-02-18 21:51:29 +00001406 for (unsigned bi = 0; bi < Bits.getNumBits(); ++bi) {
Owen Andersoncf603952011-08-01 22:45:43 +00001407 VarInit *Var = 0;
David Greene05bce0b2011-07-29 22:43:06 +00001408 VarBitInit *BI = dynamic_cast<VarBitInit*>(Bits.getBit(bi));
Owen Andersoncf603952011-08-01 22:45:43 +00001409 if (BI)
1410 Var = dynamic_cast<VarInit*>(BI->getVariable());
1411 else
1412 Var = dynamic_cast<VarInit*>(Bits.getBit(bi));
1413
1414 if (!Var) {
Owen Andersond1e38df2011-07-28 21:54:31 +00001415 if (Base != ~0U) {
1416 OpInfo.addField(Base, Width, Offset);
1417 Base = ~0U;
1418 Width = 0;
1419 Offset = 0;
1420 }
1421 continue;
1422 }
Owen Andersond8c87882011-02-18 21:51:29 +00001423
Owen Anderson00ef6e32011-07-28 23:56:20 +00001424 if (Var->getName() != NI->second &&
Owen Andersonea242982011-07-29 18:28:52 +00001425 Var->getName() != TiedNames[NI->second]) {
Owen Andersond1e38df2011-07-28 21:54:31 +00001426 if (Base != ~0U) {
1427 OpInfo.addField(Base, Width, Offset);
1428 Base = ~0U;
1429 Width = 0;
1430 Offset = 0;
1431 }
1432 continue;
Owen Andersond8c87882011-02-18 21:51:29 +00001433 }
1434
Owen Andersond1e38df2011-07-28 21:54:31 +00001435 if (Base == ~0U) {
1436 Base = bi;
1437 Width = 1;
Owen Andersoncf603952011-08-01 22:45:43 +00001438 Offset = BI ? BI->getBitNum() : 0;
1439 } else if (BI && BI->getBitNum() != Offset + Width) {
Owen Andersoneb809f52011-07-29 23:01:18 +00001440 OpInfo.addField(Base, Width, Offset);
1441 Base = bi;
1442 Width = 1;
1443 Offset = BI->getBitNum();
Owen Andersond1e38df2011-07-28 21:54:31 +00001444 } else {
1445 ++Width;
Owen Andersond8c87882011-02-18 21:51:29 +00001446 }
Owen Andersond8c87882011-02-18 21:51:29 +00001447 }
1448
Owen Andersond1e38df2011-07-28 21:54:31 +00001449 if (Base != ~0U)
1450 OpInfo.addField(Base, Width, Offset);
1451
1452 if (OpInfo.numFields() > 0)
1453 InsnOperands.push_back(OpInfo);
Owen Andersond8c87882011-02-18 21:51:29 +00001454 }
1455
1456 Operands[Opc] = InsnOperands;
1457
1458
1459#if 0
1460 DEBUG({
1461 // Dumps the instruction encoding bits.
1462 dumpBits(errs(), Bits);
1463
1464 errs() << '\n';
1465
1466 // Dumps the list of operand info.
1467 for (unsigned i = 0, e = CGI.Operands.size(); i != e; ++i) {
1468 const CGIOperandList::OperandInfo &Info = CGI.Operands[i];
1469 const std::string &OperandName = Info.Name;
1470 const Record &OperandDef = *Info.Rec;
1471
1472 errs() << "\t" << OperandName << " (" << OperandDef.getName() << ")\n";
1473 }
1474 });
1475#endif
1476
1477 return true;
1478}
1479
Owen Andersonf1a00902011-07-19 21:06:00 +00001480static void emitHelper(llvm::raw_ostream &o, unsigned BitWidth) {
1481 unsigned Indentation = 0;
1482 std::string WidthStr = "uint" + utostr(BitWidth) + "_t";
Owen Andersond8c87882011-02-18 21:51:29 +00001483
Owen Andersonf1a00902011-07-19 21:06:00 +00001484 o << '\n';
1485
1486 o.indent(Indentation) << "static " << WidthStr <<
1487 " fieldFromInstruction" << BitWidth <<
1488 "(" << WidthStr <<" insn, unsigned startBit, unsigned numBits)\n";
1489
1490 o.indent(Indentation) << "{\n";
1491
1492 ++Indentation; ++Indentation;
1493 o.indent(Indentation) << "assert(startBit + numBits <= " << BitWidth
1494 << " && \"Instruction field out of bounds!\");\n";
1495 o << '\n';
1496 o.indent(Indentation) << WidthStr << " fieldMask;\n";
1497 o << '\n';
1498 o.indent(Indentation) << "if (numBits == " << BitWidth << ")\n";
1499
1500 ++Indentation; ++Indentation;
1501 o.indent(Indentation) << "fieldMask = (" << WidthStr << ")-1;\n";
1502 --Indentation; --Indentation;
1503
1504 o.indent(Indentation) << "else\n";
1505
1506 ++Indentation; ++Indentation;
1507 o.indent(Indentation) << "fieldMask = ((1 << numBits) - 1) << startBit;\n";
1508 --Indentation; --Indentation;
1509
1510 o << '\n';
1511 o.indent(Indentation) << "return (insn & fieldMask) >> startBit;\n";
1512 --Indentation; --Indentation;
1513
1514 o.indent(Indentation) << "}\n";
1515
1516 o << '\n';
Owen Andersond8c87882011-02-18 21:51:29 +00001517}
1518
1519// Emits disassembler code for instruction decoding.
Craig Topperd9360452012-03-16 01:19:24 +00001520void FixedLenDecoderEmitter::run(raw_ostream &o) {
Owen Andersond8c87882011-02-18 21:51:29 +00001521 o << "#include \"llvm/MC/MCInst.h\"\n";
1522 o << "#include \"llvm/Support/DataTypes.h\"\n";
1523 o << "#include <assert.h>\n";
1524 o << '\n';
1525 o << "namespace llvm {\n\n";
1526
Owen Andersonf1a00902011-07-19 21:06:00 +00001527 // Parameterize the decoders based on namespace and instruction width.
Craig Toppereb5cd612012-03-16 05:58:09 +00001528 const std::vector<const CodeGenInstruction*> &NumberedInstructions =
Craig Topperc007ba82012-03-13 06:39:00 +00001529 Target.getInstructionsByEnumValue();
Owen Andersonf1a00902011-07-19 21:06:00 +00001530 std::map<std::pair<std::string, unsigned>,
1531 std::vector<unsigned> > OpcMap;
1532 std::map<unsigned, std::vector<OperandInfo> > Operands;
1533
1534 for (unsigned i = 0; i < NumberedInstructions.size(); ++i) {
1535 const CodeGenInstruction *Inst = NumberedInstructions[i];
Craig Toppereb5cd612012-03-16 05:58:09 +00001536 const Record *Def = Inst->TheDef;
Owen Andersonf1a00902011-07-19 21:06:00 +00001537 unsigned Size = Def->getValueAsInt("Size");
1538 if (Def->getValueAsString("Namespace") == "TargetOpcode" ||
1539 Def->getValueAsBit("isPseudo") ||
1540 Def->getValueAsBit("isAsmParserOnly") ||
1541 Def->getValueAsBit("isCodeGenOnly"))
1542 continue;
1543
1544 std::string DecoderNamespace = Def->getValueAsString("DecoderNamespace");
1545
1546 if (Size) {
1547 if (populateInstruction(*Inst, i, Operands)) {
1548 OpcMap[std::make_pair(DecoderNamespace, Size)].push_back(i);
1549 }
1550 }
1551 }
1552
1553 std::set<unsigned> Sizes;
1554 for (std::map<std::pair<std::string, unsigned>,
Craig Toppereb5cd612012-03-16 05:58:09 +00001555 std::vector<unsigned> >::const_iterator
Owen Andersonf1a00902011-07-19 21:06:00 +00001556 I = OpcMap.begin(), E = OpcMap.end(); I != E; ++I) {
1557 // If we haven't visited this instruction width before, emit the
1558 // helper method to extract fields.
1559 if (!Sizes.count(I->first.second)) {
1560 emitHelper(o, 8*I->first.second);
1561 Sizes.insert(I->first.second);
1562 }
1563
1564 // Emit the decoder for this namespace+width combination.
1565 FilterChooser FC(NumberedInstructions, I->second, Operands,
Owen Anderson83e3f672011-08-17 17:44:15 +00001566 8*I->first.second, this);
Owen Andersonf1a00902011-07-19 21:06:00 +00001567 FC.emitTop(o, 0, I->first.first);
1568 }
Owen Andersond8c87882011-02-18 21:51:29 +00001569
1570 o << "\n} // End llvm namespace \n";
1571}