blob: b587029f587fa60064941e60f9576ca58c2bace6 [file] [log] [blame]
Owen Anderson4e818902011-02-18 21:51:29 +00001//===------------ FixedLenDecoderEmitter.cpp - Decoder Generator ----------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Owen Anderson4e818902011-02-18 21:51:29 +00006//
7//===----------------------------------------------------------------------===//
8//
9// It contains the tablegen backend that emits the decoder functions for
10// targets with fixed length instruction set.
11//
12//===----------------------------------------------------------------------===//
13
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000014#include "CodeGenInstruction.h"
Owen Anderson4e818902011-02-18 21:51:29 +000015#include "CodeGenTarget.h"
James Molloy88a5fbf2019-09-19 13:39:54 +000016#include "InfoByHwMode.h"
James Molloyd9ba4fd2012-02-09 10:56:31 +000017#include "llvm/ADT/APInt.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000018#include "llvm/ADT/ArrayRef.h"
Justin Lebar5e83dfe2016-10-21 21:45:01 +000019#include "llvm/ADT/CachedHashString.h"
Jordan Rupprecht4053d952019-06-18 22:21:31 +000020#include "llvm/ADT/STLExtras.h"
Daniel Sanders4c252222019-06-18 23:34:46 +000021#include "llvm/ADT/SetVector.h"
22#include "llvm/ADT/SmallString.h"
23#include "llvm/ADT/Statistic.h"
Owen Anderson4e818902011-02-18 21:51:29 +000024#include "llvm/ADT/StringExtras.h"
Jim Grosbachecaef492012-08-14 19:06:05 +000025#include "llvm/ADT/StringRef.h"
Jim Grosbachecaef492012-08-14 19:06:05 +000026#include "llvm/MC/MCFixedLenDisassembler.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000027#include "llvm/Support/Casting.h"
Owen Anderson4e818902011-02-18 21:51:29 +000028#include "llvm/Support/Debug.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000029#include "llvm/Support/ErrorHandling.h"
Jim Grosbachecaef492012-08-14 19:06:05 +000030#include "llvm/Support/FormattedStream.h"
31#include "llvm/Support/LEB128.h"
Owen Anderson4e818902011-02-18 21:51:29 +000032#include "llvm/Support/raw_ostream.h"
Chandler Carruth91d19d82012-12-04 10:37:14 +000033#include "llvm/TableGen/Error.h"
34#include "llvm/TableGen/Record.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000035#include <algorithm>
36#include <cassert>
37#include <cstddef>
38#include <cstdint>
Owen Anderson4e818902011-02-18 21:51:29 +000039#include <map>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000040#include <memory>
41#include <set>
Owen Anderson4e818902011-02-18 21:51:29 +000042#include <string>
Benjamin Kramer82de7d32016-05-27 14:27:24 +000043#include <utility>
Chandler Carruth91d19d82012-12-04 10:37:14 +000044#include <vector>
Owen Anderson4e818902011-02-18 21:51:29 +000045
46using namespace llvm;
47
Chandler Carruth97acce22014-04-22 03:06:00 +000048#define DEBUG_TYPE "decoder-emitter"
49
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +000050namespace {
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000051
Daniel Sanders4c252222019-06-18 23:34:46 +000052STATISTIC(NumEncodings, "Number of encodings considered");
53STATISTIC(NumEncodingsLackingDisasm, "Number of encodings without disassembler info");
54STATISTIC(NumInstructions, "Number of instructions considered");
55STATISTIC(NumEncodingsSupported, "Number of encodings supported");
56STATISTIC(NumEncodingsOmitted, "Number of encodings omitted");
57
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +000058struct EncodingField {
59 unsigned Base, Width, Offset;
60 EncodingField(unsigned B, unsigned W, unsigned O)
61 : Base(B), Width(W), Offset(O) { }
62};
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +000063
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +000064struct OperandInfo {
65 std::vector<EncodingField> Fields;
66 std::string Decoder;
Petr Pavlu182b0572015-07-15 08:04:27 +000067 bool HasCompleteDecoder;
Daniel Sanders1c5542a2019-08-09 17:30:33 +000068 uint64_t InitValue;
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +000069
Petr Pavlu182b0572015-07-15 08:04:27 +000070 OperandInfo(std::string D, bool HCD)
Daniel Sanders1c5542a2019-08-09 17:30:33 +000071 : Decoder(std::move(D)), HasCompleteDecoder(HCD), InitValue(0) {}
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +000072
73 void addField(unsigned Base, unsigned Width, unsigned Offset) {
74 Fields.push_back(EncodingField(Base, Width, Offset));
75 }
76
77 unsigned numFields() const { return Fields.size(); }
78
79 typedef std::vector<EncodingField>::const_iterator const_iterator;
80
81 const_iterator begin() const { return Fields.begin(); }
82 const_iterator end() const { return Fields.end(); }
83};
Jim Grosbachecaef492012-08-14 19:06:05 +000084
85typedef std::vector<uint8_t> DecoderTable;
86typedef uint32_t DecoderFixup;
87typedef std::vector<DecoderFixup> FixupList;
88typedef std::vector<FixupList> FixupScopeList;
Justin Lebar5e83dfe2016-10-21 21:45:01 +000089typedef SmallSetVector<CachedHashString, 16> PredicateSet;
90typedef SmallSetVector<CachedHashString, 16> DecoderSet;
Jim Grosbachecaef492012-08-14 19:06:05 +000091struct DecoderTableInfo {
92 DecoderTable Table;
93 FixupScopeList FixupStack;
94 PredicateSet Predicates;
95 DecoderSet Decoders;
96};
97
Daniel Sandersa39df2e2018-12-13 16:17:54 +000098struct EncodingAndInst {
99 const Record *EncodingDef;
100 const CodeGenInstruction *Inst;
James Molloy88a5fbf2019-09-19 13:39:54 +0000101 StringRef HwModeName;
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000102
James Molloy88a5fbf2019-09-19 13:39:54 +0000103 EncodingAndInst(const Record *EncodingDef, const CodeGenInstruction *Inst,
104 StringRef HwModeName = "")
105 : EncodingDef(EncodingDef), Inst(Inst), HwModeName(HwModeName) {}
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000106};
107
Daniel Sanders4c252222019-06-18 23:34:46 +0000108struct EncodingIDAndOpcode {
109 unsigned EncodingID;
110 unsigned Opcode;
111
112 EncodingIDAndOpcode() : EncodingID(0), Opcode(0) {}
113 EncodingIDAndOpcode(unsigned EncodingID, unsigned Opcode)
114 : EncodingID(EncodingID), Opcode(Opcode) {}
115};
116
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000117raw_ostream &operator<<(raw_ostream &OS, const EncodingAndInst &Value) {
118 if (Value.EncodingDef != Value.Inst->TheDef)
119 OS << Value.EncodingDef->getName() << ":";
120 OS << Value.Inst->TheDef->getName();
121 return OS;
122}
123
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +0000124class FixedLenDecoderEmitter {
Daniel Sanders4c252222019-06-18 23:34:46 +0000125 RecordKeeper &RK;
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000126 std::vector<EncodingAndInst> NumberedEncodings;
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +0000127
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000128public:
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +0000129 // Defaults preserved here for documentation, even though they aren't
130 // strictly necessary given the way that this is currently being called.
Benjamin Kramer82de7d32016-05-27 14:27:24 +0000131 FixedLenDecoderEmitter(RecordKeeper &R, std::string PredicateNamespace,
132 std::string GPrefix = "if (",
Petr Pavlu182b0572015-07-15 08:04:27 +0000133 std::string GPostfix = " == MCDisassembler::Fail)",
Benjamin Kramer82de7d32016-05-27 14:27:24 +0000134 std::string ROK = "MCDisassembler::Success",
135 std::string RFail = "MCDisassembler::Fail",
136 std::string L = "")
Daniel Sanders4c252222019-06-18 23:34:46 +0000137 : RK(R), Target(R), PredicateNamespace(std::move(PredicateNamespace)),
Benjamin Kramer82de7d32016-05-27 14:27:24 +0000138 GuardPrefix(std::move(GPrefix)), GuardPostfix(std::move(GPostfix)),
139 ReturnOK(std::move(ROK)), ReturnFail(std::move(RFail)),
140 Locals(std::move(L)) {}
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +0000141
Jim Grosbachecaef492012-08-14 19:06:05 +0000142 // Emit the decoder state machine table.
143 void emitTable(formatted_raw_ostream &o, DecoderTable &Table,
144 unsigned Indentation, unsigned BitWidth,
145 StringRef Namespace) const;
146 void emitPredicateFunction(formatted_raw_ostream &OS,
147 PredicateSet &Predicates,
148 unsigned Indentation) const;
149 void emitDecoderFunction(formatted_raw_ostream &OS,
150 DecoderSet &Decoders,
151 unsigned Indentation) const;
152
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +0000153 // run - Output the code emitter
154 void run(raw_ostream &o);
155
156private:
157 CodeGenTarget Target;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000158
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +0000159public:
160 std::string PredicateNamespace;
161 std::string GuardPrefix, GuardPostfix;
162 std::string ReturnOK, ReturnFail;
163 std::string Locals;
164};
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000165
166} // end anonymous namespace
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +0000167
Owen Anderson4e818902011-02-18 21:51:29 +0000168// The set (BIT_TRUE, BIT_FALSE, BIT_UNSET) represents a ternary logic system
169// for a bit value.
170//
171// BIT_UNFILTERED is used as the init value for a filter position. It is used
172// only for filter processings.
173typedef enum {
174 BIT_TRUE, // '1'
175 BIT_FALSE, // '0'
176 BIT_UNSET, // '?'
177 BIT_UNFILTERED // unfiltered
178} bit_value_t;
179
180static bool ValueSet(bit_value_t V) {
181 return (V == BIT_TRUE || V == BIT_FALSE);
182}
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000183
Owen Anderson4e818902011-02-18 21:51:29 +0000184static bool ValueNotSet(bit_value_t V) {
185 return (V == BIT_UNSET);
186}
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000187
Owen Anderson4e818902011-02-18 21:51:29 +0000188static int Value(bit_value_t V) {
189 return ValueNotSet(V) ? -1 : (V == BIT_FALSE ? 0 : 1);
190}
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000191
Craig Topper48c112b2012-03-16 05:58:09 +0000192static bit_value_t bitFromBits(const BitsInit &bits, unsigned index) {
Sean Silvafb509ed2012-10-10 20:24:43 +0000193 if (BitInit *bit = dyn_cast<BitInit>(bits.getBit(index)))
Owen Anderson4e818902011-02-18 21:51:29 +0000194 return bit->getValue() ? BIT_TRUE : BIT_FALSE;
195
196 // The bit is uninitialized.
197 return BIT_UNSET;
198}
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000199
Owen Anderson4e818902011-02-18 21:51:29 +0000200// Prints the bit value for each position.
Craig Topper48c112b2012-03-16 05:58:09 +0000201static void dumpBits(raw_ostream &o, const BitsInit &bits) {
Craig Topper29688ab2012-08-17 05:42:16 +0000202 for (unsigned index = bits.getNumBits(); index > 0; --index) {
Owen Anderson4e818902011-02-18 21:51:29 +0000203 switch (bitFromBits(bits, index - 1)) {
204 case BIT_TRUE:
205 o << "1";
206 break;
207 case BIT_FALSE:
208 o << "0";
209 break;
210 case BIT_UNSET:
211 o << "_";
212 break;
213 default:
Craig Topperc4965bc2012-02-05 07:21:30 +0000214 llvm_unreachable("unexpected return value from bitFromBits");
Owen Anderson4e818902011-02-18 21:51:29 +0000215 }
216 }
217}
218
Mehdi Amini32986ed2016-10-04 23:47:33 +0000219static BitsInit &getBitsField(const Record &def, StringRef str) {
David Greeneaf8ee2c2011-07-29 22:43:06 +0000220 BitsInit *bits = def.getValueAsBitsInit(str);
Owen Anderson4e818902011-02-18 21:51:29 +0000221 return *bits;
222}
223
Owen Anderson4e818902011-02-18 21:51:29 +0000224// Representation of the instruction to work on.
Owen Andersonc78e03c2011-07-19 21:06:00 +0000225typedef std::vector<bit_value_t> insn_t;
Owen Anderson4e818902011-02-18 21:51:29 +0000226
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000227namespace {
228
229class FilterChooser;
230
Owen Anderson4e818902011-02-18 21:51:29 +0000231/// Filter - Filter works with FilterChooser to produce the decoding tree for
232/// the ISA.
233///
234/// It is useful to think of a Filter as governing the switch stmts of the
235/// decoding tree in a certain level. Each case stmt delegates to an inferior
236/// FilterChooser to decide what further decoding logic to employ, or in another
237/// words, what other remaining bits to look at. The FilterChooser eventually
238/// chooses a best Filter to do its job.
239///
240/// This recursive scheme ends when the number of Opcodes assigned to the
241/// FilterChooser becomes 1 or if there is a conflict. A conflict happens when
242/// the Filter/FilterChooser combo does not know how to distinguish among the
243/// Opcodes assigned.
244///
245/// An example of a conflict is
246///
247/// Conflict:
248/// 111101000.00........00010000....
249/// 111101000.00........0001........
250/// 1111010...00........0001........
251/// 1111010...00....................
252/// 1111010.........................
253/// 1111............................
254/// ................................
255/// VST4q8a 111101000_00________00010000____
256/// VST4q8b 111101000_00________00010000____
257///
258/// The Debug output shows the path that the decoding tree follows to reach the
259/// the conclusion that there is a conflict. VST4q8a is a vst4 to double-spaced
Petr Pavlu21894652015-07-14 08:00:34 +0000260/// even registers, while VST4q8b is a vst4 to double-spaced odd registers.
Owen Anderson4e818902011-02-18 21:51:29 +0000261///
262/// The encoding info in the .td files does not specify this meta information,
263/// which could have been used by the decoder to resolve the conflict. The
264/// decoder could try to decode the even/odd register numbering and assign to
265/// VST4q8a or VST4q8b, but for the time being, the decoder chooses the "a"
266/// version and return the Opcode since the two have the same Asm format string.
267class Filter {
268protected:
Craig Topper501d95c2012-03-16 06:52:56 +0000269 const FilterChooser *Owner;// points to the FilterChooser who owns this filter
Owen Anderson4e818902011-02-18 21:51:29 +0000270 unsigned StartBit; // the starting bit position
271 unsigned NumBits; // number of bits to filter
272 bool Mixed; // a mixed region contains both set and unset bits
273
274 // Map of well-known segment value to the set of uid's with that value.
Daniel Sanders4c252222019-06-18 23:34:46 +0000275 std::map<uint64_t, std::vector<EncodingIDAndOpcode>>
276 FilteredInstructions;
Owen Anderson4e818902011-02-18 21:51:29 +0000277
278 // Set of uid's with non-constant segment values.
Daniel Sanders4c252222019-06-18 23:34:46 +0000279 std::vector<EncodingIDAndOpcode> VariableInstructions;
Owen Anderson4e818902011-02-18 21:51:29 +0000280
281 // Map of well-known segment value to its delegate.
Craig Toppercf05f912014-09-03 06:07:54 +0000282 std::map<unsigned, std::unique_ptr<const FilterChooser>> FilterChooserMap;
Owen Anderson4e818902011-02-18 21:51:29 +0000283
284 // Number of instructions which fall under FilteredInstructions category.
285 unsigned NumFiltered;
286
287 // Keeps track of the last opcode in the filtered bucket.
Daniel Sanders4c252222019-06-18 23:34:46 +0000288 EncodingIDAndOpcode LastOpcFiltered;
Owen Anderson4e818902011-02-18 21:51:29 +0000289
Owen Anderson4e818902011-02-18 21:51:29 +0000290public:
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000291 Filter(Filter &&f);
292 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
293
294 ~Filter() = default;
295
Craig Topper48c112b2012-03-16 05:58:09 +0000296 unsigned getNumFiltered() const { return NumFiltered; }
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000297
Daniel Sanders4c252222019-06-18 23:34:46 +0000298 EncodingIDAndOpcode getSingletonOpc() const {
Owen Anderson4e818902011-02-18 21:51:29 +0000299 assert(NumFiltered == 1);
300 return LastOpcFiltered;
301 }
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000302
Owen Anderson4e818902011-02-18 21:51:29 +0000303 // Return the filter chooser for the group of instructions without constant
304 // segment values.
Craig Topper48c112b2012-03-16 05:58:09 +0000305 const FilterChooser &getVariableFC() const {
Owen Anderson4e818902011-02-18 21:51:29 +0000306 assert(NumFiltered == 1);
307 assert(FilterChooserMap.size() == 1);
308 return *(FilterChooserMap.find((unsigned)-1)->second);
309 }
310
Owen Anderson4e818902011-02-18 21:51:29 +0000311 // Divides the decoding task into sub tasks and delegates them to the
312 // inferior FilterChooser's.
313 //
314 // A special case arises when there's only one entry in the filtered
315 // instructions. In order to unambiguously decode the singleton, we need to
316 // match the remaining undecoded encoding bits against the singleton.
317 void recurse();
318
Jim Grosbachecaef492012-08-14 19:06:05 +0000319 // Emit table entries to decode instructions given a segment or segments of
320 // bits.
321 void emitTableEntry(DecoderTableInfo &TableInfo) const;
Owen Anderson4e818902011-02-18 21:51:29 +0000322
323 // Returns the number of fanout produced by the filter. More fanout implies
324 // the filter distinguishes more categories of instructions.
325 unsigned usefulness() const;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000326}; // end class Filter
327
328} // end anonymous namespace
Owen Anderson4e818902011-02-18 21:51:29 +0000329
330// These are states of our finite state machines used in FilterChooser's
331// filterProcessor() which produces the filter candidates to use.
332typedef enum {
333 ATTR_NONE,
334 ATTR_FILTERED,
335 ATTR_ALL_SET,
336 ATTR_ALL_UNSET,
337 ATTR_MIXED
338} bitAttr_t;
339
340/// FilterChooser - FilterChooser chooses the best filter among a set of Filters
341/// in order to perform the decoding of instructions at the current level.
342///
343/// Decoding proceeds from the top down. Based on the well-known encoding bits
344/// of instructions available, FilterChooser builds up the possible Filters that
345/// can further the task of decoding by distinguishing among the remaining
346/// candidate instructions.
347///
348/// Once a filter has been chosen, it is called upon to divide the decoding task
349/// into sub-tasks and delegates them to its inferior FilterChoosers for further
350/// processings.
351///
352/// It is useful to think of a Filter as governing the switch stmts of the
353/// decoding tree. And each case is delegated to an inferior FilterChooser to
354/// decide what further remaining bits to look at.
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +0000355namespace {
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000356
Owen Anderson4e818902011-02-18 21:51:29 +0000357class FilterChooser {
358protected:
359 friend class Filter;
360
361 // Vector of codegen instructions to choose our filter.
Jordan Rupprecht4053d952019-06-18 22:21:31 +0000362 ArrayRef<EncodingAndInst> AllInstructions;
Owen Anderson4e818902011-02-18 21:51:29 +0000363
364 // Vector of uid's for this filter chooser to work on.
Daniel Sanders4c252222019-06-18 23:34:46 +0000365 // The first member of the pair is the opcode id being decoded, the second is
366 // the opcode id that should be emitted.
367 const std::vector<EncodingIDAndOpcode> &Opcodes;
Owen Anderson4e818902011-02-18 21:51:29 +0000368
369 // Lookup table for the operand decoding of instructions.
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000370 const std::map<unsigned, std::vector<OperandInfo>> &Operands;
Owen Anderson4e818902011-02-18 21:51:29 +0000371
372 // Vector of candidate filters.
373 std::vector<Filter> Filters;
374
375 // Array of bit values passed down from our parent.
376 // Set to all BIT_UNFILTERED's for Parent == NULL.
Owen Andersonc78e03c2011-07-19 21:06:00 +0000377 std::vector<bit_value_t> FilterBitValues;
Owen Anderson4e818902011-02-18 21:51:29 +0000378
379 // Links to the FilterChooser above us in the decoding tree.
Craig Topper501d95c2012-03-16 06:52:56 +0000380 const FilterChooser *Parent;
Owen Anderson4e818902011-02-18 21:51:29 +0000381
382 // Index of the best filter from Filters.
383 int BestIndex;
384
Owen Andersonc78e03c2011-07-19 21:06:00 +0000385 // Width of instructions
386 unsigned BitWidth;
387
Owen Andersona4043c42011-08-17 17:44:15 +0000388 // Parent emitter
389 const FixedLenDecoderEmitter *Emitter;
390
Owen Anderson4e818902011-02-18 21:51:29 +0000391public:
Jordan Rupprecht4053d952019-06-18 22:21:31 +0000392 FilterChooser(ArrayRef<EncodingAndInst> Insts,
Daniel Sanders4c252222019-06-18 23:34:46 +0000393 const std::vector<EncodingIDAndOpcode> &IDs,
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000394 const std::map<unsigned, std::vector<OperandInfo>> &Ops,
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000395 unsigned BW, const FixedLenDecoderEmitter *E)
396 : AllInstructions(Insts), Opcodes(IDs), Operands(Ops),
397 FilterBitValues(BW, BIT_UNFILTERED), Parent(nullptr), BestIndex(-1),
398 BitWidth(BW), Emitter(E) {
Owen Anderson4e818902011-02-18 21:51:29 +0000399 doFilter();
400 }
401
Jordan Rupprecht4053d952019-06-18 22:21:31 +0000402 FilterChooser(ArrayRef<EncodingAndInst> Insts,
Daniel Sanders4c252222019-06-18 23:34:46 +0000403 const std::vector<EncodingIDAndOpcode> &IDs,
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000404 const std::map<unsigned, std::vector<OperandInfo>> &Ops,
Craig Topper501d95c2012-03-16 06:52:56 +0000405 const std::vector<bit_value_t> &ParentFilterBitValues,
406 const FilterChooser &parent)
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000407 : AllInstructions(Insts), Opcodes(IDs), Operands(Ops),
408 FilterBitValues(ParentFilterBitValues), Parent(&parent), BestIndex(-1),
409 BitWidth(parent.BitWidth), Emitter(parent.Emitter) {
Owen Anderson4e818902011-02-18 21:51:29 +0000410 doFilter();
411 }
412
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000413 FilterChooser(const FilterChooser &) = delete;
414 void operator=(const FilterChooser &) = delete;
415
Jim Grosbachecaef492012-08-14 19:06:05 +0000416 unsigned getBitWidth() const { return BitWidth; }
Owen Anderson4e818902011-02-18 21:51:29 +0000417
418protected:
419 // Populates the insn given the uid.
420 void insnWithID(insn_t &Insn, unsigned Opcode) const {
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000421 BitsInit &Bits = getBitsField(*AllInstructions[Opcode].EncodingDef, "Inst");
Owen Anderson4e818902011-02-18 21:51:29 +0000422
James Molloyd9ba4fd2012-02-09 10:56:31 +0000423 // We may have a SoftFail bitmask, which specifies a mask where an encoding
424 // may differ from the value in "Inst" and yet still be valid, but the
425 // disassembler should return SoftFail instead of Success.
426 //
427 // This is used for marking UNPREDICTABLE instructions in the ARM world.
Jim Grosbach3f4b2392012-02-29 22:07:56 +0000428 BitsInit *SFBits =
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000429 AllInstructions[Opcode].EncodingDef->getValueAsBitsInit("SoftFail");
James Molloyd9ba4fd2012-02-09 10:56:31 +0000430
431 for (unsigned i = 0; i < BitWidth; ++i) {
432 if (SFBits && bitFromBits(*SFBits, i) == BIT_TRUE)
433 Insn.push_back(BIT_UNSET);
434 else
435 Insn.push_back(bitFromBits(Bits, i));
436 }
Owen Anderson4e818902011-02-18 21:51:29 +0000437 }
438
Daniel Sanders4c252222019-06-18 23:34:46 +0000439 // Emit the name of the encoding/instruction pair.
440 void emitNameWithID(raw_ostream &OS, unsigned Opcode) const {
441 const Record *EncodingDef = AllInstructions[Opcode].EncodingDef;
442 const Record *InstDef = AllInstructions[Opcode].Inst->TheDef;
443 if (EncodingDef != InstDef)
444 OS << EncodingDef->getName() << ":";
445 OS << InstDef->getName();
446 }
447
Owen Anderson4e818902011-02-18 21:51:29 +0000448 // Populates the field of the insn given the start position and the number of
449 // consecutive bits to scan for.
450 //
451 // Returns false if there exists any uninitialized bit value in the range.
452 // Returns true, otherwise.
453 bool fieldFromInsn(uint64_t &Field, insn_t &Insn, unsigned StartBit,
Craig Topper82d0d5f2012-03-16 01:19:24 +0000454 unsigned NumBits) const;
Owen Anderson4e818902011-02-18 21:51:29 +0000455
456 /// dumpFilterArray - dumpFilterArray prints out debugging info for the given
457 /// filter array as a series of chars.
Craig Topper48c112b2012-03-16 05:58:09 +0000458 void dumpFilterArray(raw_ostream &o,
459 const std::vector<bit_value_t> & filter) const;
Owen Anderson4e818902011-02-18 21:51:29 +0000460
461 /// dumpStack - dumpStack traverses the filter chooser chain and calls
462 /// dumpFilterArray on each filter chooser up to the top level one.
Craig Topper48c112b2012-03-16 05:58:09 +0000463 void dumpStack(raw_ostream &o, const char *prefix) const;
Owen Anderson4e818902011-02-18 21:51:29 +0000464
465 Filter &bestFilter() {
466 assert(BestIndex != -1 && "BestIndex not set");
467 return Filters[BestIndex];
468 }
469
Craig Topper48c112b2012-03-16 05:58:09 +0000470 bool PositionFiltered(unsigned i) const {
Owen Anderson4e818902011-02-18 21:51:29 +0000471 return ValueSet(FilterBitValues[i]);
472 }
473
474 // Calculates the island(s) needed to decode the instruction.
475 // This returns a lit of undecoded bits of an instructions, for example,
476 // Inst{20} = 1 && Inst{3-0} == 0b1111 represents two islands of yet-to-be
477 // decoded bits in order to verify that the instruction matches the Opcode.
478 unsigned getIslands(std::vector<unsigned> &StartBits,
Craig Topper82d0d5f2012-03-16 01:19:24 +0000479 std::vector<unsigned> &EndBits,
Craig Topper48c112b2012-03-16 05:58:09 +0000480 std::vector<uint64_t> &FieldVals,
481 const insn_t &Insn) const;
Owen Anderson4e818902011-02-18 21:51:29 +0000482
James Molloy8067df92011-09-07 19:42:28 +0000483 // Emits code to check the Predicates member of an instruction are true.
484 // Returns true if predicate matches were emitted, false otherwise.
Craig Topper48c112b2012-03-16 05:58:09 +0000485 bool emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
486 unsigned Opc) const;
James Molloy8067df92011-09-07 19:42:28 +0000487
Jim Grosbachecaef492012-08-14 19:06:05 +0000488 bool doesOpcodeNeedPredicate(unsigned Opc) const;
489 unsigned getPredicateIndex(DecoderTableInfo &TableInfo, StringRef P) const;
490 void emitPredicateTableEntry(DecoderTableInfo &TableInfo,
491 unsigned Opc) const;
James Molloyd9ba4fd2012-02-09 10:56:31 +0000492
Jim Grosbachecaef492012-08-14 19:06:05 +0000493 void emitSoftFailTableEntry(DecoderTableInfo &TableInfo,
494 unsigned Opc) const;
495
496 // Emits table entries to decode the singleton.
497 void emitSingletonTableEntry(DecoderTableInfo &TableInfo,
Daniel Sanders4c252222019-06-18 23:34:46 +0000498 EncodingIDAndOpcode Opc) const;
Owen Anderson4e818902011-02-18 21:51:29 +0000499
500 // Emits code to decode the singleton, and then to decode the rest.
Jim Grosbachecaef492012-08-14 19:06:05 +0000501 void emitSingletonTableEntry(DecoderTableInfo &TableInfo,
502 const Filter &Best) const;
Owen Anderson4e818902011-02-18 21:51:29 +0000503
Jim Grosbachecaef492012-08-14 19:06:05 +0000504 void emitBinaryParser(raw_ostream &o, unsigned &Indentation,
Petr Pavlu182b0572015-07-15 08:04:27 +0000505 const OperandInfo &OpInfo,
506 bool &OpHasCompleteDecoder) const;
Owen Andersone3591652011-07-28 21:54:31 +0000507
Petr Pavlu182b0572015-07-15 08:04:27 +0000508 void emitDecoder(raw_ostream &OS, unsigned Indentation, unsigned Opc,
509 bool &HasCompleteDecoder) const;
510 unsigned getDecoderIndex(DecoderSet &Decoders, unsigned Opc,
511 bool &HasCompleteDecoder) const;
Jim Grosbachecaef492012-08-14 19:06:05 +0000512
Owen Anderson4e818902011-02-18 21:51:29 +0000513 // Assign a single filter and run with it.
Craig Topper48c112b2012-03-16 05:58:09 +0000514 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
Owen Anderson4e818902011-02-18 21:51:29 +0000515
516 // reportRegion is a helper function for filterProcessor to mark a region as
517 // eligible for use as a filter region.
518 void reportRegion(bitAttr_t RA, unsigned StartBit, unsigned BitIndex,
Craig Topper82d0d5f2012-03-16 01:19:24 +0000519 bool AllowMixed);
Owen Anderson4e818902011-02-18 21:51:29 +0000520
521 // FilterProcessor scans the well-known encoding bits of the instructions and
522 // builds up a list of candidate filters. It chooses the best filter and
523 // recursively descends down the decoding tree.
524 bool filterProcessor(bool AllowMixed, bool Greedy = true);
525
526 // Decides on the best configuration of filter(s) to use in order to decode
527 // the instructions. A conflict of instructions may occur, in which case we
528 // dump the conflict set to the standard error.
529 void doFilter();
530
Jim Grosbachecaef492012-08-14 19:06:05 +0000531public:
532 // emitTableEntries - Emit state machine entries to decode our share of
533 // instructions.
534 void emitTableEntries(DecoderTableInfo &TableInfo) const;
Owen Anderson4e818902011-02-18 21:51:29 +0000535};
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000536
537} // end anonymous namespace
Owen Anderson4e818902011-02-18 21:51:29 +0000538
539///////////////////////////
540// //
Craig Topper93e64342012-03-16 00:56:01 +0000541// Filter Implementation //
Owen Anderson4e818902011-02-18 21:51:29 +0000542// //
543///////////////////////////
544
Craig Topper5c2b4ac2014-09-03 05:49:07 +0000545Filter::Filter(Filter &&f)
Craig Topper82d0d5f2012-03-16 01:19:24 +0000546 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
Craig Topper5c2b4ac2014-09-03 05:49:07 +0000547 FilteredInstructions(std::move(f.FilteredInstructions)),
548 VariableInstructions(std::move(f.VariableInstructions)),
549 FilterChooserMap(std::move(f.FilterChooserMap)), NumFiltered(f.NumFiltered),
Craig Topper82d0d5f2012-03-16 01:19:24 +0000550 LastOpcFiltered(f.LastOpcFiltered) {
Owen Anderson4e818902011-02-18 21:51:29 +0000551}
552
553Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits,
Craig Topper82d0d5f2012-03-16 01:19:24 +0000554 bool mixed)
555 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
Owen Andersonc78e03c2011-07-19 21:06:00 +0000556 assert(StartBit + NumBits - 1 < Owner->BitWidth);
Owen Anderson4e818902011-02-18 21:51:29 +0000557
558 NumFiltered = 0;
Daniel Sanders4c252222019-06-18 23:34:46 +0000559 LastOpcFiltered = {0, 0};
Owen Anderson4e818902011-02-18 21:51:29 +0000560
561 for (unsigned i = 0, e = Owner->Opcodes.size(); i != e; ++i) {
562 insn_t Insn;
563
564 // Populates the insn given the uid.
Daniel Sanders4c252222019-06-18 23:34:46 +0000565 Owner->insnWithID(Insn, Owner->Opcodes[i].EncodingID);
Owen Anderson4e818902011-02-18 21:51:29 +0000566
567 uint64_t Field;
568 // Scans the segment for possibly well-specified encoding bits.
569 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
570
571 if (ok) {
572 // The encoding bits are well-known. Lets add the uid of the
573 // instruction into the bucket keyed off the constant field value.
574 LastOpcFiltered = Owner->Opcodes[i];
575 FilteredInstructions[Field].push_back(LastOpcFiltered);
576 ++NumFiltered;
577 } else {
Craig Topper93e64342012-03-16 00:56:01 +0000578 // Some of the encoding bit(s) are unspecified. This contributes to
Owen Anderson4e818902011-02-18 21:51:29 +0000579 // one additional member of "Variable" instructions.
580 VariableInstructions.push_back(Owner->Opcodes[i]);
Owen Anderson4e818902011-02-18 21:51:29 +0000581 }
582 }
583
584 assert((FilteredInstructions.size() + VariableInstructions.size() > 0)
585 && "Filter returns no instruction categories");
586}
587
Owen Anderson4e818902011-02-18 21:51:29 +0000588// Divides the decoding task into sub tasks and delegates them to the
589// inferior FilterChooser's.
590//
591// A special case arises when there's only one entry in the filtered
592// instructions. In order to unambiguously decode the singleton, we need to
593// match the remaining undecoded encoding bits against the singleton.
594void Filter::recurse() {
Owen Anderson4e818902011-02-18 21:51:29 +0000595 // Starts by inheriting our parent filter chooser's filter bit values.
Owen Andersonc78e03c2011-07-19 21:06:00 +0000596 std::vector<bit_value_t> BitValueArray(Owner->FilterBitValues);
Owen Anderson4e818902011-02-18 21:51:29 +0000597
Alexander Kornienko8c0809c2015-01-15 11:41:30 +0000598 if (!VariableInstructions.empty()) {
Owen Anderson4e818902011-02-18 21:51:29 +0000599 // Conservatively marks each segment position as BIT_UNSET.
Craig Topper29688ab2012-08-17 05:42:16 +0000600 for (unsigned bitIndex = 0; bitIndex < NumBits; ++bitIndex)
Owen Anderson4e818902011-02-18 21:51:29 +0000601 BitValueArray[StartBit + bitIndex] = BIT_UNSET;
602
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000603 // Delegates to an inferior filter chooser for further processing on this
Owen Anderson4e818902011-02-18 21:51:29 +0000604 // group of instructions whose segment values are variable.
Yaron Kerene499db02014-09-03 08:22:30 +0000605 FilterChooserMap.insert(
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000606 std::make_pair(-1U, std::make_unique<FilterChooser>(
Yaron Kerene499db02014-09-03 08:22:30 +0000607 Owner->AllInstructions, VariableInstructions,
608 Owner->Operands, BitValueArray, *Owner)));
Owen Anderson4e818902011-02-18 21:51:29 +0000609 }
610
611 // No need to recurse for a singleton filtered instruction.
Jim Grosbachecaef492012-08-14 19:06:05 +0000612 // See also Filter::emit*().
Owen Anderson4e818902011-02-18 21:51:29 +0000613 if (getNumFiltered() == 1) {
Owen Anderson4e818902011-02-18 21:51:29 +0000614 assert(FilterChooserMap.size() == 1);
615 return;
616 }
617
618 // Otherwise, create sub choosers.
Craig Topper1f7604d2014-12-13 05:12:19 +0000619 for (const auto &Inst : FilteredInstructions) {
Owen Anderson4e818902011-02-18 21:51:29 +0000620
621 // Marks all the segment positions with either BIT_TRUE or BIT_FALSE.
Craig Topper29688ab2012-08-17 05:42:16 +0000622 for (unsigned bitIndex = 0; bitIndex < NumBits; ++bitIndex) {
Craig Topper1f7604d2014-12-13 05:12:19 +0000623 if (Inst.first & (1ULL << bitIndex))
Owen Anderson4e818902011-02-18 21:51:29 +0000624 BitValueArray[StartBit + bitIndex] = BIT_TRUE;
625 else
626 BitValueArray[StartBit + bitIndex] = BIT_FALSE;
627 }
628
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000629 // Delegates to an inferior filter chooser for further processing on this
Owen Anderson4e818902011-02-18 21:51:29 +0000630 // category of instructions.
Craig Toppercf05f912014-09-03 06:07:54 +0000631 FilterChooserMap.insert(std::make_pair(
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000632 Inst.first, std::make_unique<FilterChooser>(
Craig Topper1f7604d2014-12-13 05:12:19 +0000633 Owner->AllInstructions, Inst.second,
Yaron Kerene499db02014-09-03 08:22:30 +0000634 Owner->Operands, BitValueArray, *Owner)));
Owen Anderson4e818902011-02-18 21:51:29 +0000635 }
636}
637
Jim Grosbachecaef492012-08-14 19:06:05 +0000638static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups,
639 uint32_t DestIdx) {
640 // Any NumToSkip fixups in the current scope can resolve to the
641 // current location.
642 for (FixupList::const_reverse_iterator I = Fixups.rbegin(),
643 E = Fixups.rend();
644 I != E; ++I) {
645 // Calculate the distance from the byte following the fixup entry byte
646 // to the destination. The Target is calculated from after the 16-bit
647 // NumToSkip entry itself, so subtract two from the displacement here
648 // to account for that.
649 uint32_t FixupIdx = *I;
Sander de Smalen13f94252018-07-05 10:39:15 +0000650 uint32_t Delta = DestIdx - FixupIdx - 3;
651 // Our NumToSkip entries are 24-bits. Make sure our table isn't too
Jim Grosbachecaef492012-08-14 19:06:05 +0000652 // big.
Sander de Smalen13f94252018-07-05 10:39:15 +0000653 assert(Delta < (1u << 24));
Jim Grosbachecaef492012-08-14 19:06:05 +0000654 Table[FixupIdx] = (uint8_t)Delta;
655 Table[FixupIdx + 1] = (uint8_t)(Delta >> 8);
Sander de Smalen13f94252018-07-05 10:39:15 +0000656 Table[FixupIdx + 2] = (uint8_t)(Delta >> 16);
Jim Grosbachecaef492012-08-14 19:06:05 +0000657 }
658}
Owen Anderson4e818902011-02-18 21:51:29 +0000659
Jim Grosbachecaef492012-08-14 19:06:05 +0000660// Emit table entries to decode instructions given a segment or segments
661// of bits.
662void Filter::emitTableEntry(DecoderTableInfo &TableInfo) const {
663 TableInfo.Table.push_back(MCD::OPC_ExtractField);
664 TableInfo.Table.push_back(StartBit);
665 TableInfo.Table.push_back(NumBits);
Owen Anderson4e818902011-02-18 21:51:29 +0000666
Jim Grosbachecaef492012-08-14 19:06:05 +0000667 // A new filter entry begins a new scope for fixup resolution.
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000668 TableInfo.FixupStack.emplace_back();
Owen Anderson4e818902011-02-18 21:51:29 +0000669
Jim Grosbachecaef492012-08-14 19:06:05 +0000670 DecoderTable &Table = TableInfo.Table;
671
672 size_t PrevFilter = 0;
673 bool HasFallthrough = false;
Craig Topper1f7604d2014-12-13 05:12:19 +0000674 for (auto &Filter : FilterChooserMap) {
Owen Anderson4e818902011-02-18 21:51:29 +0000675 // Field value -1 implies a non-empty set of variable instructions.
676 // See also recurse().
Craig Topper1f7604d2014-12-13 05:12:19 +0000677 if (Filter.first == (unsigned)-1) {
Jim Grosbachecaef492012-08-14 19:06:05 +0000678 HasFallthrough = true;
Owen Anderson4e818902011-02-18 21:51:29 +0000679
Jim Grosbachecaef492012-08-14 19:06:05 +0000680 // Each scope should always have at least one filter value to check
681 // for.
682 assert(PrevFilter != 0 && "empty filter set!");
683 FixupList &CurScope = TableInfo.FixupStack.back();
684 // Resolve any NumToSkip fixups in the current scope.
685 resolveTableFixups(Table, CurScope, Table.size());
686 CurScope.clear();
687 PrevFilter = 0; // Don't re-process the filter's fallthrough.
688 } else {
689 Table.push_back(MCD::OPC_FilterValue);
690 // Encode and emit the value to filter against.
Sander de Smalen13f94252018-07-05 10:39:15 +0000691 uint8_t Buffer[16];
Craig Topper1f7604d2014-12-13 05:12:19 +0000692 unsigned Len = encodeULEB128(Filter.first, Buffer);
Jim Grosbachecaef492012-08-14 19:06:05 +0000693 Table.insert(Table.end(), Buffer, Buffer + Len);
694 // Reserve space for the NumToSkip entry. We'll backpatch the value
695 // later.
696 PrevFilter = Table.size();
697 Table.push_back(0);
698 Table.push_back(0);
Sander de Smalen13f94252018-07-05 10:39:15 +0000699 Table.push_back(0);
Jim Grosbachecaef492012-08-14 19:06:05 +0000700 }
Owen Anderson4e818902011-02-18 21:51:29 +0000701
702 // We arrive at a category of instructions with the same segment value.
703 // Now delegate to the sub filter chooser for further decodings.
704 // The case may fallthrough, which happens if the remaining well-known
705 // encoding bits do not match exactly.
Craig Topper1f7604d2014-12-13 05:12:19 +0000706 Filter.second->emitTableEntries(TableInfo);
Owen Anderson4e818902011-02-18 21:51:29 +0000707
Jim Grosbachecaef492012-08-14 19:06:05 +0000708 // Now that we've emitted the body of the handler, update the NumToSkip
709 // of the filter itself to be able to skip forward when false. Subtract
710 // two as to account for the width of the NumToSkip field itself.
711 if (PrevFilter) {
Sander de Smalen13f94252018-07-05 10:39:15 +0000712 uint32_t NumToSkip = Table.size() - PrevFilter - 3;
713 assert(NumToSkip < (1u << 24) && "disassembler decoding table too large!");
Jim Grosbachecaef492012-08-14 19:06:05 +0000714 Table[PrevFilter] = (uint8_t)NumToSkip;
715 Table[PrevFilter + 1] = (uint8_t)(NumToSkip >> 8);
Sander de Smalen13f94252018-07-05 10:39:15 +0000716 Table[PrevFilter + 2] = (uint8_t)(NumToSkip >> 16);
Jim Grosbachecaef492012-08-14 19:06:05 +0000717 }
Owen Anderson4e818902011-02-18 21:51:29 +0000718 }
719
Jim Grosbachecaef492012-08-14 19:06:05 +0000720 // Any remaining unresolved fixups bubble up to the parent fixup scope.
721 assert(TableInfo.FixupStack.size() > 1 && "fixup stack underflow!");
722 FixupScopeList::iterator Source = TableInfo.FixupStack.end() - 1;
723 FixupScopeList::iterator Dest = Source - 1;
724 Dest->insert(Dest->end(), Source->begin(), Source->end());
725 TableInfo.FixupStack.pop_back();
726
727 // If there is no fallthrough, then the final filter should get fixed
728 // up according to the enclosing scope rather than the current position.
729 if (!HasFallthrough)
730 TableInfo.FixupStack.back().push_back(PrevFilter);
Owen Anderson4e818902011-02-18 21:51:29 +0000731}
732
733// Returns the number of fanout produced by the filter. More fanout implies
734// the filter distinguishes more categories of instructions.
735unsigned Filter::usefulness() const {
Alexander Kornienko8c0809c2015-01-15 11:41:30 +0000736 if (!VariableInstructions.empty())
Owen Anderson4e818902011-02-18 21:51:29 +0000737 return FilteredInstructions.size();
738 else
739 return FilteredInstructions.size() + 1;
740}
741
742//////////////////////////////////
743// //
744// Filterchooser Implementation //
745// //
746//////////////////////////////////
747
Jim Grosbachecaef492012-08-14 19:06:05 +0000748// Emit the decoder state machine table.
749void FixedLenDecoderEmitter::emitTable(formatted_raw_ostream &OS,
750 DecoderTable &Table,
751 unsigned Indentation,
752 unsigned BitWidth,
753 StringRef Namespace) const {
754 OS.indent(Indentation) << "static const uint8_t DecoderTable" << Namespace
755 << BitWidth << "[] = {\n";
Owen Anderson4e818902011-02-18 21:51:29 +0000756
Jim Grosbachecaef492012-08-14 19:06:05 +0000757 Indentation += 2;
Owen Anderson4e818902011-02-18 21:51:29 +0000758
Jim Grosbachecaef492012-08-14 19:06:05 +0000759 // FIXME: We may be able to use the NumToSkip values to recover
760 // appropriate indentation levels.
761 DecoderTable::const_iterator I = Table.begin();
762 DecoderTable::const_iterator E = Table.end();
763 while (I != E) {
764 assert (I < E && "incomplete decode table entry!");
Owen Anderson4e818902011-02-18 21:51:29 +0000765
Jim Grosbachecaef492012-08-14 19:06:05 +0000766 uint64_t Pos = I - Table.begin();
767 OS << "/* " << Pos << " */";
768 OS.PadToColumn(12);
Owen Anderson4e818902011-02-18 21:51:29 +0000769
Jim Grosbachecaef492012-08-14 19:06:05 +0000770 switch (*I) {
771 default:
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000772 PrintFatalError("invalid decode table opcode");
Jim Grosbachecaef492012-08-14 19:06:05 +0000773 case MCD::OPC_ExtractField: {
774 ++I;
775 unsigned Start = *I++;
776 unsigned Len = *I++;
777 OS.indent(Indentation) << "MCD::OPC_ExtractField, " << Start << ", "
778 << Len << ", // Inst{";
779 if (Len > 1)
780 OS << (Start + Len - 1) << "-";
781 OS << Start << "} ...\n";
782 break;
783 }
784 case MCD::OPC_FilterValue: {
785 ++I;
786 OS.indent(Indentation) << "MCD::OPC_FilterValue, ";
787 // The filter value is ULEB128 encoded.
788 while (*I >= 128)
Craig Topper429093a2016-01-31 01:55:15 +0000789 OS << (unsigned)*I++ << ", ";
790 OS << (unsigned)*I++ << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000791
Sander de Smalen13f94252018-07-05 10:39:15 +0000792 // 24-bit numtoskip value.
Jim Grosbachecaef492012-08-14 19:06:05 +0000793 uint8_t Byte = *I++;
794 uint32_t NumToSkip = Byte;
Craig Topper429093a2016-01-31 01:55:15 +0000795 OS << (unsigned)Byte << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000796 Byte = *I++;
Craig Topper429093a2016-01-31 01:55:15 +0000797 OS << (unsigned)Byte << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000798 NumToSkip |= Byte << 8;
Sander de Smalen13f94252018-07-05 10:39:15 +0000799 Byte = *I++;
800 OS << utostr(Byte) << ", ";
801 NumToSkip |= Byte << 16;
Jim Grosbachecaef492012-08-14 19:06:05 +0000802 OS << "// Skip to: " << ((I - Table.begin()) + NumToSkip) << "\n";
803 break;
804 }
805 case MCD::OPC_CheckField: {
806 ++I;
807 unsigned Start = *I++;
808 unsigned Len = *I++;
809 OS.indent(Indentation) << "MCD::OPC_CheckField, " << Start << ", "
810 << Len << ", ";// << Val << ", " << NumToSkip << ",\n";
811 // ULEB128 encoded field value.
812 for (; *I >= 128; ++I)
Craig Topper429093a2016-01-31 01:55:15 +0000813 OS << (unsigned)*I << ", ";
814 OS << (unsigned)*I++ << ", ";
Sander de Smalen13f94252018-07-05 10:39:15 +0000815 // 24-bit numtoskip value.
Jim Grosbachecaef492012-08-14 19:06:05 +0000816 uint8_t Byte = *I++;
817 uint32_t NumToSkip = Byte;
Craig Topper429093a2016-01-31 01:55:15 +0000818 OS << (unsigned)Byte << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000819 Byte = *I++;
Craig Topper429093a2016-01-31 01:55:15 +0000820 OS << (unsigned)Byte << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000821 NumToSkip |= Byte << 8;
Sander de Smalen13f94252018-07-05 10:39:15 +0000822 Byte = *I++;
823 OS << utostr(Byte) << ", ";
824 NumToSkip |= Byte << 16;
Jim Grosbachecaef492012-08-14 19:06:05 +0000825 OS << "// Skip to: " << ((I - Table.begin()) + NumToSkip) << "\n";
826 break;
827 }
828 case MCD::OPC_CheckPredicate: {
829 ++I;
830 OS.indent(Indentation) << "MCD::OPC_CheckPredicate, ";
831 for (; *I >= 128; ++I)
Craig Topper429093a2016-01-31 01:55:15 +0000832 OS << (unsigned)*I << ", ";
833 OS << (unsigned)*I++ << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000834
Sander de Smalen13f94252018-07-05 10:39:15 +0000835 // 24-bit numtoskip value.
Jim Grosbachecaef492012-08-14 19:06:05 +0000836 uint8_t Byte = *I++;
837 uint32_t NumToSkip = Byte;
Craig Topper429093a2016-01-31 01:55:15 +0000838 OS << (unsigned)Byte << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000839 Byte = *I++;
Craig Topper429093a2016-01-31 01:55:15 +0000840 OS << (unsigned)Byte << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000841 NumToSkip |= Byte << 8;
Sander de Smalen13f94252018-07-05 10:39:15 +0000842 Byte = *I++;
843 OS << utostr(Byte) << ", ";
844 NumToSkip |= Byte << 16;
Jim Grosbachecaef492012-08-14 19:06:05 +0000845 OS << "// Skip to: " << ((I - Table.begin()) + NumToSkip) << "\n";
846 break;
847 }
Petr Pavlu182b0572015-07-15 08:04:27 +0000848 case MCD::OPC_Decode:
849 case MCD::OPC_TryDecode: {
850 bool IsTry = *I == MCD::OPC_TryDecode;
Jim Grosbachecaef492012-08-14 19:06:05 +0000851 ++I;
852 // Extract the ULEB128 encoded Opcode to a buffer.
Sander de Smalen13f94252018-07-05 10:39:15 +0000853 uint8_t Buffer[16], *p = Buffer;
Jim Grosbachecaef492012-08-14 19:06:05 +0000854 while ((*p++ = *I++) >= 128)
855 assert((p - Buffer) <= (ptrdiff_t)sizeof(Buffer)
856 && "ULEB128 value too large!");
857 // Decode the Opcode value.
858 unsigned Opc = decodeULEB128(Buffer);
Petr Pavlu182b0572015-07-15 08:04:27 +0000859 OS.indent(Indentation) << "MCD::OPC_" << (IsTry ? "Try" : "")
860 << "Decode, ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000861 for (p = Buffer; *p >= 128; ++p)
Craig Topper429093a2016-01-31 01:55:15 +0000862 OS << (unsigned)*p << ", ";
863 OS << (unsigned)*p << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000864
865 // Decoder index.
866 for (; *I >= 128; ++I)
Craig Topper429093a2016-01-31 01:55:15 +0000867 OS << (unsigned)*I << ", ";
868 OS << (unsigned)*I++ << ", ";
Jim Grosbachecaef492012-08-14 19:06:05 +0000869
Petr Pavlu182b0572015-07-15 08:04:27 +0000870 if (!IsTry) {
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000871 OS << "// Opcode: " << NumberedEncodings[Opc] << "\n";
Petr Pavlu182b0572015-07-15 08:04:27 +0000872 break;
873 }
874
875 // Fallthrough for OPC_TryDecode.
876
Sander de Smalen13f94252018-07-05 10:39:15 +0000877 // 24-bit numtoskip value.
Petr Pavlu182b0572015-07-15 08:04:27 +0000878 uint8_t Byte = *I++;
879 uint32_t NumToSkip = Byte;
Craig Topper429093a2016-01-31 01:55:15 +0000880 OS << (unsigned)Byte << ", ";
Petr Pavlu182b0572015-07-15 08:04:27 +0000881 Byte = *I++;
Craig Topper429093a2016-01-31 01:55:15 +0000882 OS << (unsigned)Byte << ", ";
Petr Pavlu182b0572015-07-15 08:04:27 +0000883 NumToSkip |= Byte << 8;
Sander de Smalen13f94252018-07-05 10:39:15 +0000884 Byte = *I++;
885 OS << utostr(Byte) << ", ";
886 NumToSkip |= Byte << 16;
Petr Pavlu182b0572015-07-15 08:04:27 +0000887
Daniel Sandersa39df2e2018-12-13 16:17:54 +0000888 OS << "// Opcode: " << NumberedEncodings[Opc]
Petr Pavlu182b0572015-07-15 08:04:27 +0000889 << ", skip to: " << ((I - Table.begin()) + NumToSkip) << "\n";
Jim Grosbachecaef492012-08-14 19:06:05 +0000890 break;
891 }
892 case MCD::OPC_SoftFail: {
893 ++I;
894 OS.indent(Indentation) << "MCD::OPC_SoftFail";
895 // Positive mask
896 uint64_t Value = 0;
897 unsigned Shift = 0;
898 do {
Craig Topper429093a2016-01-31 01:55:15 +0000899 OS << ", " << (unsigned)*I;
Jim Grosbachecaef492012-08-14 19:06:05 +0000900 Value += (*I & 0x7f) << Shift;
901 Shift += 7;
902 } while (*I++ >= 128);
Craig Topper429093a2016-01-31 01:55:15 +0000903 if (Value > 127) {
904 OS << " /* 0x";
905 OS.write_hex(Value);
906 OS << " */";
907 }
Jim Grosbachecaef492012-08-14 19:06:05 +0000908 // Negative mask
909 Value = 0;
910 Shift = 0;
911 do {
Craig Topper429093a2016-01-31 01:55:15 +0000912 OS << ", " << (unsigned)*I;
Jim Grosbachecaef492012-08-14 19:06:05 +0000913 Value += (*I & 0x7f) << Shift;
914 Shift += 7;
915 } while (*I++ >= 128);
Craig Topper429093a2016-01-31 01:55:15 +0000916 if (Value > 127) {
917 OS << " /* 0x";
918 OS.write_hex(Value);
919 OS << " */";
920 }
Jim Grosbachecaef492012-08-14 19:06:05 +0000921 OS << ",\n";
922 break;
923 }
924 case MCD::OPC_Fail: {
925 ++I;
926 OS.indent(Indentation) << "MCD::OPC_Fail,\n";
927 break;
928 }
929 }
930 }
931 OS.indent(Indentation) << "0\n";
932
933 Indentation -= 2;
934
935 OS.indent(Indentation) << "};\n\n";
936}
937
938void FixedLenDecoderEmitter::
939emitPredicateFunction(formatted_raw_ostream &OS, PredicateSet &Predicates,
940 unsigned Indentation) const {
941 // The predicate function is just a big switch statement based on the
942 // input predicate index.
943 OS.indent(Indentation) << "static bool checkDecoderPredicate(unsigned Idx, "
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000944 << "const FeatureBitset& Bits) {\n";
Jim Grosbachecaef492012-08-14 19:06:05 +0000945 Indentation += 2;
Aaron Ballmane59e3582013-07-15 16:53:32 +0000946 if (!Predicates.empty()) {
947 OS.indent(Indentation) << "switch (Idx) {\n";
948 OS.indent(Indentation) << "default: llvm_unreachable(\"Invalid index!\");\n";
949 unsigned Index = 0;
Craig Topper1f7604d2014-12-13 05:12:19 +0000950 for (const auto &Predicate : Predicates) {
951 OS.indent(Indentation) << "case " << Index++ << ":\n";
952 OS.indent(Indentation+2) << "return (" << Predicate << ");\n";
Aaron Ballmane59e3582013-07-15 16:53:32 +0000953 }
954 OS.indent(Indentation) << "}\n";
955 } else {
956 // No case statement to emit
957 OS.indent(Indentation) << "llvm_unreachable(\"Invalid index!\");\n";
Jim Grosbachecaef492012-08-14 19:06:05 +0000958 }
Jim Grosbachecaef492012-08-14 19:06:05 +0000959 Indentation -= 2;
960 OS.indent(Indentation) << "}\n\n";
961}
962
963void FixedLenDecoderEmitter::
964emitDecoderFunction(formatted_raw_ostream &OS, DecoderSet &Decoders,
965 unsigned Indentation) const {
966 // The decoder function is just a big switch statement based on the
967 // input decoder index.
968 OS.indent(Indentation) << "template<typename InsnType>\n";
969 OS.indent(Indentation) << "static DecodeStatus decodeToMCInst(DecodeStatus S,"
970 << " unsigned Idx, InsnType insn, MCInst &MI,\n";
971 OS.indent(Indentation) << " uint64_t "
Petr Pavlu182b0572015-07-15 08:04:27 +0000972 << "Address, const void *Decoder, bool &DecodeComplete) {\n";
Jim Grosbachecaef492012-08-14 19:06:05 +0000973 Indentation += 2;
Petr Pavlu182b0572015-07-15 08:04:27 +0000974 OS.indent(Indentation) << "DecodeComplete = true;\n";
Jim Grosbachecaef492012-08-14 19:06:05 +0000975 OS.indent(Indentation) << "InsnType tmp;\n";
976 OS.indent(Indentation) << "switch (Idx) {\n";
977 OS.indent(Indentation) << "default: llvm_unreachable(\"Invalid index!\");\n";
978 unsigned Index = 0;
Craig Topper1f7604d2014-12-13 05:12:19 +0000979 for (const auto &Decoder : Decoders) {
980 OS.indent(Indentation) << "case " << Index++ << ":\n";
981 OS << Decoder;
Jim Grosbachecaef492012-08-14 19:06:05 +0000982 OS.indent(Indentation+2) << "return S;\n";
983 }
984 OS.indent(Indentation) << "}\n";
985 Indentation -= 2;
986 OS.indent(Indentation) << "}\n\n";
Owen Anderson4e818902011-02-18 21:51:29 +0000987}
988
989// Populates the field of the insn given the start position and the number of
990// consecutive bits to scan for.
991//
992// Returns false if and on the first uninitialized bit value encountered.
993// Returns true, otherwise.
994bool FilterChooser::fieldFromInsn(uint64_t &Field, insn_t &Insn,
Craig Topper48c112b2012-03-16 05:58:09 +0000995 unsigned StartBit, unsigned NumBits) const {
Owen Anderson4e818902011-02-18 21:51:29 +0000996 Field = 0;
997
998 for (unsigned i = 0; i < NumBits; ++i) {
999 if (Insn[StartBit + i] == BIT_UNSET)
1000 return false;
1001
1002 if (Insn[StartBit + i] == BIT_TRUE)
1003 Field = Field | (1ULL << i);
1004 }
1005
1006 return true;
1007}
1008
1009/// dumpFilterArray - dumpFilterArray prints out debugging info for the given
1010/// filter array as a series of chars.
1011void FilterChooser::dumpFilterArray(raw_ostream &o,
Craig Topper48c112b2012-03-16 05:58:09 +00001012 const std::vector<bit_value_t> &filter) const {
Craig Topper29688ab2012-08-17 05:42:16 +00001013 for (unsigned bitIndex = BitWidth; bitIndex > 0; bitIndex--) {
Owen Anderson4e818902011-02-18 21:51:29 +00001014 switch (filter[bitIndex - 1]) {
1015 case BIT_UNFILTERED:
1016 o << ".";
1017 break;
1018 case BIT_UNSET:
1019 o << "_";
1020 break;
1021 case BIT_TRUE:
1022 o << "1";
1023 break;
1024 case BIT_FALSE:
1025 o << "0";
1026 break;
1027 }
1028 }
1029}
1030
1031/// dumpStack - dumpStack traverses the filter chooser chain and calls
1032/// dumpFilterArray on each filter chooser up to the top level one.
Craig Topper48c112b2012-03-16 05:58:09 +00001033void FilterChooser::dumpStack(raw_ostream &o, const char *prefix) const {
1034 const FilterChooser *current = this;
Owen Anderson4e818902011-02-18 21:51:29 +00001035
1036 while (current) {
1037 o << prefix;
1038 dumpFilterArray(o, current->FilterBitValues);
1039 o << '\n';
1040 current = current->Parent;
1041 }
1042}
1043
Owen Anderson4e818902011-02-18 21:51:29 +00001044// Calculates the island(s) needed to decode the instruction.
1045// This returns a list of undecoded bits of an instructions, for example,
1046// Inst{20} = 1 && Inst{3-0} == 0b1111 represents two islands of yet-to-be
1047// decoded bits in order to verify that the instruction matches the Opcode.
1048unsigned FilterChooser::getIslands(std::vector<unsigned> &StartBits,
Craig Topper82d0d5f2012-03-16 01:19:24 +00001049 std::vector<unsigned> &EndBits,
1050 std::vector<uint64_t> &FieldVals,
Craig Topper48c112b2012-03-16 05:58:09 +00001051 const insn_t &Insn) const {
Owen Anderson4e818902011-02-18 21:51:29 +00001052 unsigned Num, BitNo;
1053 Num = BitNo = 0;
1054
1055 uint64_t FieldVal = 0;
1056
1057 // 0: Init
1058 // 1: Water (the bit value does not affect decoding)
1059 // 2: Island (well-known bit value needed for decoding)
1060 int State = 0;
Owen Anderson4e818902011-02-18 21:51:29 +00001061
Owen Andersonc78e03c2011-07-19 21:06:00 +00001062 for (unsigned i = 0; i < BitWidth; ++i) {
Simon Pilgrim58236e62019-11-09 22:10:09 +00001063 int64_t Val = Value(Insn[i]);
Owen Anderson4e818902011-02-18 21:51:29 +00001064 bool Filtered = PositionFiltered(i);
1065 switch (State) {
Craig Topperc4965bc2012-02-05 07:21:30 +00001066 default: llvm_unreachable("Unreachable code!");
Owen Anderson4e818902011-02-18 21:51:29 +00001067 case 0:
1068 case 1:
1069 if (Filtered || Val == -1)
1070 State = 1; // Still in Water
1071 else {
1072 State = 2; // Into the Island
1073 BitNo = 0;
1074 StartBits.push_back(i);
1075 FieldVal = Val;
1076 }
1077 break;
1078 case 2:
1079 if (Filtered || Val == -1) {
1080 State = 1; // Into the Water
1081 EndBits.push_back(i - 1);
1082 FieldVals.push_back(FieldVal);
1083 ++Num;
1084 } else {
1085 State = 2; // Still in Island
1086 ++BitNo;
1087 FieldVal = FieldVal | Val << BitNo;
1088 }
1089 break;
1090 }
1091 }
1092 // If we are still in Island after the loop, do some housekeeping.
1093 if (State == 2) {
Owen Andersonc78e03c2011-07-19 21:06:00 +00001094 EndBits.push_back(BitWidth - 1);
Owen Anderson4e818902011-02-18 21:51:29 +00001095 FieldVals.push_back(FieldVal);
1096 ++Num;
1097 }
1098
1099 assert(StartBits.size() == Num && EndBits.size() == Num &&
1100 FieldVals.size() == Num);
1101 return Num;
1102}
1103
Owen Andersone3591652011-07-28 21:54:31 +00001104void FilterChooser::emitBinaryParser(raw_ostream &o, unsigned &Indentation,
Petr Pavlu182b0572015-07-15 08:04:27 +00001105 const OperandInfo &OpInfo,
1106 bool &OpHasCompleteDecoder) const {
Craig Topper48c112b2012-03-16 05:58:09 +00001107 const std::string &Decoder = OpInfo.Decoder;
Owen Andersone3591652011-07-28 21:54:31 +00001108
Daniel Sanders1c5542a2019-08-09 17:30:33 +00001109 if (OpInfo.numFields() != 1 || OpInfo.InitValue != 0) {
1110 o.indent(Indentation) << "tmp = 0x";
1111 o.write_hex(OpInfo.InitValue);
1112 o << ";\n";
1113 }
Craig Topper5546f8c2014-09-27 05:26:42 +00001114
1115 for (const EncodingField &EF : OpInfo) {
1116 o.indent(Indentation) << "tmp ";
Daniel Sanders1c5542a2019-08-09 17:30:33 +00001117 if (OpInfo.numFields() != 1 || OpInfo.InitValue != 0) o << '|';
Craig Topper5546f8c2014-09-27 05:26:42 +00001118 o << "= fieldFromInstruction"
1119 << "(insn, " << EF.Base << ", " << EF.Width << ')';
1120 if (OpInfo.numFields() != 1 || EF.Offset != 0)
1121 o << " << " << EF.Offset;
1122 o << ";\n";
Owen Andersone3591652011-07-28 21:54:31 +00001123 }
1124
Petr Pavlu182b0572015-07-15 08:04:27 +00001125 if (Decoder != "") {
1126 OpHasCompleteDecoder = OpInfo.HasCompleteDecoder;
Craig Topperebc3aa22012-08-17 05:16:15 +00001127 o.indent(Indentation) << Emitter->GuardPrefix << Decoder
Petr Pavlu182b0572015-07-15 08:04:27 +00001128 << "(MI, tmp, Address, Decoder)"
1129 << Emitter->GuardPostfix
1130 << " { " << (OpHasCompleteDecoder ? "" : "DecodeComplete = false; ")
1131 << "return MCDisassembler::Fail; }\n";
1132 } else {
1133 OpHasCompleteDecoder = true;
Jim Grosbache9119e42015-05-13 18:37:00 +00001134 o.indent(Indentation) << "MI.addOperand(MCOperand::createImm(tmp));\n";
Petr Pavlu182b0572015-07-15 08:04:27 +00001135 }
Owen Andersone3591652011-07-28 21:54:31 +00001136}
1137
Jim Grosbachecaef492012-08-14 19:06:05 +00001138void FilterChooser::emitDecoder(raw_ostream &OS, unsigned Indentation,
Petr Pavlu182b0572015-07-15 08:04:27 +00001139 unsigned Opc, bool &HasCompleteDecoder) const {
1140 HasCompleteDecoder = true;
1141
Craig Topper1f7604d2014-12-13 05:12:19 +00001142 for (const auto &Op : Operands.find(Opc)->second) {
Jim Grosbachecaef492012-08-14 19:06:05 +00001143 // If a custom instruction decoder was specified, use that.
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001144 if (Op.numFields() == 0 && !Op.Decoder.empty()) {
Petr Pavlu182b0572015-07-15 08:04:27 +00001145 HasCompleteDecoder = Op.HasCompleteDecoder;
Craig Topper1f7604d2014-12-13 05:12:19 +00001146 OS.indent(Indentation) << Emitter->GuardPrefix << Op.Decoder
Jim Grosbachecaef492012-08-14 19:06:05 +00001147 << "(MI, insn, Address, Decoder)"
Petr Pavlu182b0572015-07-15 08:04:27 +00001148 << Emitter->GuardPostfix
1149 << " { " << (HasCompleteDecoder ? "" : "DecodeComplete = false; ")
1150 << "return MCDisassembler::Fail; }\n";
Jim Grosbachecaef492012-08-14 19:06:05 +00001151 break;
1152 }
1153
Petr Pavlu182b0572015-07-15 08:04:27 +00001154 bool OpHasCompleteDecoder;
1155 emitBinaryParser(OS, Indentation, Op, OpHasCompleteDecoder);
1156 if (!OpHasCompleteDecoder)
1157 HasCompleteDecoder = false;
Jim Grosbachecaef492012-08-14 19:06:05 +00001158 }
1159}
1160
1161unsigned FilterChooser::getDecoderIndex(DecoderSet &Decoders,
Petr Pavlu182b0572015-07-15 08:04:27 +00001162 unsigned Opc,
1163 bool &HasCompleteDecoder) const {
Jim Grosbachecaef492012-08-14 19:06:05 +00001164 // Build up the predicate string.
1165 SmallString<256> Decoder;
1166 // FIXME: emitDecoder() function can take a buffer directly rather than
1167 // a stream.
1168 raw_svector_ostream S(Decoder);
Craig Topperebc3aa22012-08-17 05:16:15 +00001169 unsigned I = 4;
Petr Pavlu182b0572015-07-15 08:04:27 +00001170 emitDecoder(S, I, Opc, HasCompleteDecoder);
Jim Grosbachecaef492012-08-14 19:06:05 +00001171
1172 // Using the full decoder string as the key value here is a bit
1173 // heavyweight, but is effective. If the string comparisons become a
1174 // performance concern, we can implement a mangling of the predicate
Nick Lewycky06b0ea22015-08-18 22:41:58 +00001175 // data easily enough with a map back to the actual string. That's
Jim Grosbachecaef492012-08-14 19:06:05 +00001176 // overkill for now, though.
1177
1178 // Make sure the predicate is in the table.
Justin Lebar5e83dfe2016-10-21 21:45:01 +00001179 Decoders.insert(CachedHashString(Decoder));
Jim Grosbachecaef492012-08-14 19:06:05 +00001180 // Now figure out the index for when we write out the table.
David Majnemer42531262016-08-12 03:55:06 +00001181 DecoderSet::const_iterator P = find(Decoders, Decoder.str());
Jim Grosbachecaef492012-08-14 19:06:05 +00001182 return (unsigned)(P - Decoders.begin());
1183}
1184
James Molloy8067df92011-09-07 19:42:28 +00001185static void emitSinglePredicateMatch(raw_ostream &o, StringRef str,
Craig Topper48c112b2012-03-16 05:58:09 +00001186 const std::string &PredicateNamespace) {
Andrew Trick43674ad2011-09-08 05:25:49 +00001187 if (str[0] == '!')
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001188 o << "!Bits[" << PredicateNamespace << "::"
1189 << str.slice(1,str.size()) << "]";
James Molloy8067df92011-09-07 19:42:28 +00001190 else
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001191 o << "Bits[" << PredicateNamespace << "::" << str << "]";
James Molloy8067df92011-09-07 19:42:28 +00001192}
1193
1194bool FilterChooser::emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
Craig Topper48c112b2012-03-16 05:58:09 +00001195 unsigned Opc) const {
Jim Grosbach3f4b2392012-02-29 22:07:56 +00001196 ListInit *Predicates =
Daniel Sandersa39df2e2018-12-13 16:17:54 +00001197 AllInstructions[Opc].EncodingDef->getValueAsListInit("Predicates");
Toma Tabacu3d5ce492015-04-07 12:10:11 +00001198 bool IsFirstEmission = true;
Craig Topper664f6a02015-06-02 04:15:57 +00001199 for (unsigned i = 0; i < Predicates->size(); ++i) {
James Molloy8067df92011-09-07 19:42:28 +00001200 Record *Pred = Predicates->getElementAsRecord(i);
1201 if (!Pred->getValue("AssemblerMatcherPredicate"))
1202 continue;
1203
Craig Topperbcd3c372017-05-31 21:12:46 +00001204 StringRef P = Pred->getValueAsString("AssemblerCondString");
James Molloy8067df92011-09-07 19:42:28 +00001205
Craig Topperbcd3c372017-05-31 21:12:46 +00001206 if (P.empty())
James Molloy8067df92011-09-07 19:42:28 +00001207 continue;
1208
Toma Tabacu3d5ce492015-04-07 12:10:11 +00001209 if (!IsFirstEmission)
James Molloy8067df92011-09-07 19:42:28 +00001210 o << " && ";
1211
Craig Topperbcd3c372017-05-31 21:12:46 +00001212 std::pair<StringRef, StringRef> pairs = P.split(',');
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001213 while (!pairs.second.empty()) {
James Molloy8067df92011-09-07 19:42:28 +00001214 emitSinglePredicateMatch(o, pairs.first, Emitter->PredicateNamespace);
1215 o << " && ";
1216 pairs = pairs.second.split(',');
1217 }
1218 emitSinglePredicateMatch(o, pairs.first, Emitter->PredicateNamespace);
Toma Tabacu3d5ce492015-04-07 12:10:11 +00001219 IsFirstEmission = false;
James Molloy8067df92011-09-07 19:42:28 +00001220 }
Craig Topper664f6a02015-06-02 04:15:57 +00001221 return !Predicates->empty();
Andrew Trick61abca62011-09-08 05:23:14 +00001222}
James Molloy8067df92011-09-07 19:42:28 +00001223
Jim Grosbachecaef492012-08-14 19:06:05 +00001224bool FilterChooser::doesOpcodeNeedPredicate(unsigned Opc) const {
1225 ListInit *Predicates =
Daniel Sandersa39df2e2018-12-13 16:17:54 +00001226 AllInstructions[Opc].EncodingDef->getValueAsListInit("Predicates");
Craig Topper664f6a02015-06-02 04:15:57 +00001227 for (unsigned i = 0; i < Predicates->size(); ++i) {
Jim Grosbachecaef492012-08-14 19:06:05 +00001228 Record *Pred = Predicates->getElementAsRecord(i);
1229 if (!Pred->getValue("AssemblerMatcherPredicate"))
1230 continue;
1231
Craig Topperbcd3c372017-05-31 21:12:46 +00001232 StringRef P = Pred->getValueAsString("AssemblerCondString");
Jim Grosbachecaef492012-08-14 19:06:05 +00001233
Craig Topperbcd3c372017-05-31 21:12:46 +00001234 if (P.empty())
Jim Grosbachecaef492012-08-14 19:06:05 +00001235 continue;
1236
1237 return true;
1238 }
1239 return false;
1240}
1241
1242unsigned FilterChooser::getPredicateIndex(DecoderTableInfo &TableInfo,
1243 StringRef Predicate) const {
1244 // Using the full predicate string as the key value here is a bit
1245 // heavyweight, but is effective. If the string comparisons become a
1246 // performance concern, we can implement a mangling of the predicate
Nick Lewycky06b0ea22015-08-18 22:41:58 +00001247 // data easily enough with a map back to the actual string. That's
Jim Grosbachecaef492012-08-14 19:06:05 +00001248 // overkill for now, though.
1249
1250 // Make sure the predicate is in the table.
Justin Lebar5e83dfe2016-10-21 21:45:01 +00001251 TableInfo.Predicates.insert(CachedHashString(Predicate));
Jim Grosbachecaef492012-08-14 19:06:05 +00001252 // Now figure out the index for when we write out the table.
Justin Lebar5e83dfe2016-10-21 21:45:01 +00001253 PredicateSet::const_iterator P = find(TableInfo.Predicates, Predicate);
Jim Grosbachecaef492012-08-14 19:06:05 +00001254 return (unsigned)(P - TableInfo.Predicates.begin());
1255}
1256
1257void FilterChooser::emitPredicateTableEntry(DecoderTableInfo &TableInfo,
1258 unsigned Opc) const {
1259 if (!doesOpcodeNeedPredicate(Opc))
1260 return;
1261
1262 // Build up the predicate string.
1263 SmallString<256> Predicate;
1264 // FIXME: emitPredicateMatch() functions can take a buffer directly rather
1265 // than a stream.
1266 raw_svector_ostream PS(Predicate);
1267 unsigned I = 0;
1268 emitPredicateMatch(PS, I, Opc);
1269
1270 // Figure out the index into the predicate table for the predicate just
1271 // computed.
1272 unsigned PIdx = getPredicateIndex(TableInfo, PS.str());
1273 SmallString<16> PBytes;
1274 raw_svector_ostream S(PBytes);
1275 encodeULEB128(PIdx, S);
Jim Grosbachecaef492012-08-14 19:06:05 +00001276
1277 TableInfo.Table.push_back(MCD::OPC_CheckPredicate);
1278 // Predicate index
Craig Topper29688ab2012-08-17 05:42:16 +00001279 for (unsigned i = 0, e = PBytes.size(); i != e; ++i)
Jim Grosbachecaef492012-08-14 19:06:05 +00001280 TableInfo.Table.push_back(PBytes[i]);
1281 // Push location for NumToSkip backpatching.
1282 TableInfo.FixupStack.back().push_back(TableInfo.Table.size());
1283 TableInfo.Table.push_back(0);
1284 TableInfo.Table.push_back(0);
Sander de Smalen13f94252018-07-05 10:39:15 +00001285 TableInfo.Table.push_back(0);
Jim Grosbachecaef492012-08-14 19:06:05 +00001286}
1287
1288void FilterChooser::emitSoftFailTableEntry(DecoderTableInfo &TableInfo,
1289 unsigned Opc) const {
Jim Grosbach3f4b2392012-02-29 22:07:56 +00001290 BitsInit *SFBits =
Daniel Sandersa39df2e2018-12-13 16:17:54 +00001291 AllInstructions[Opc].EncodingDef->getValueAsBitsInit("SoftFail");
James Molloyd9ba4fd2012-02-09 10:56:31 +00001292 if (!SFBits) return;
Daniel Sandersa39df2e2018-12-13 16:17:54 +00001293 BitsInit *InstBits =
1294 AllInstructions[Opc].EncodingDef->getValueAsBitsInit("Inst");
James Molloyd9ba4fd2012-02-09 10:56:31 +00001295
1296 APInt PositiveMask(BitWidth, 0ULL);
1297 APInt NegativeMask(BitWidth, 0ULL);
1298 for (unsigned i = 0; i < BitWidth; ++i) {
1299 bit_value_t B = bitFromBits(*SFBits, i);
1300 bit_value_t IB = bitFromBits(*InstBits, i);
1301
1302 if (B != BIT_TRUE) continue;
1303
1304 switch (IB) {
1305 case BIT_FALSE:
1306 // The bit is meant to be false, so emit a check to see if it is true.
1307 PositiveMask.setBit(i);
1308 break;
1309 case BIT_TRUE:
1310 // The bit is meant to be true, so emit a check to see if it is false.
1311 NegativeMask.setBit(i);
1312 break;
1313 default:
1314 // The bit is not set; this must be an error!
Daniel Sandersa39df2e2018-12-13 16:17:54 +00001315 errs() << "SoftFail Conflict: bit SoftFail{" << i << "} in "
1316 << AllInstructions[Opc] << " is set but Inst{" << i
1317 << "} is unset!\n"
James Molloyd9ba4fd2012-02-09 10:56:31 +00001318 << " - You can only mark a bit as SoftFail if it is fully defined"
1319 << " (1/0 - not '?') in Inst\n";
Jim Grosbachecaef492012-08-14 19:06:05 +00001320 return;
James Molloyd9ba4fd2012-02-09 10:56:31 +00001321 }
1322 }
1323
1324 bool NeedPositiveMask = PositiveMask.getBoolValue();
1325 bool NeedNegativeMask = NegativeMask.getBoolValue();
1326
1327 if (!NeedPositiveMask && !NeedNegativeMask)
1328 return;
1329
Jim Grosbachecaef492012-08-14 19:06:05 +00001330 TableInfo.Table.push_back(MCD::OPC_SoftFail);
James Molloyd9ba4fd2012-02-09 10:56:31 +00001331
Jim Grosbachecaef492012-08-14 19:06:05 +00001332 SmallString<16> MaskBytes;
1333 raw_svector_ostream S(MaskBytes);
1334 if (NeedPositiveMask) {
1335 encodeULEB128(PositiveMask.getZExtValue(), S);
Craig Topper29688ab2012-08-17 05:42:16 +00001336 for (unsigned i = 0, e = MaskBytes.size(); i != e; ++i)
Jim Grosbachecaef492012-08-14 19:06:05 +00001337 TableInfo.Table.push_back(MaskBytes[i]);
1338 } else
1339 TableInfo.Table.push_back(0);
1340 if (NeedNegativeMask) {
1341 MaskBytes.clear();
Jim Grosbachecaef492012-08-14 19:06:05 +00001342 encodeULEB128(NegativeMask.getZExtValue(), S);
Craig Topper29688ab2012-08-17 05:42:16 +00001343 for (unsigned i = 0, e = MaskBytes.size(); i != e; ++i)
Jim Grosbachecaef492012-08-14 19:06:05 +00001344 TableInfo.Table.push_back(MaskBytes[i]);
1345 } else
1346 TableInfo.Table.push_back(0);
James Molloyd9ba4fd2012-02-09 10:56:31 +00001347}
1348
Jim Grosbachecaef492012-08-14 19:06:05 +00001349// Emits table entries to decode the singleton.
1350void FilterChooser::emitSingletonTableEntry(DecoderTableInfo &TableInfo,
Daniel Sanders4c252222019-06-18 23:34:46 +00001351 EncodingIDAndOpcode Opc) const {
Owen Anderson4e818902011-02-18 21:51:29 +00001352 std::vector<unsigned> StartBits;
1353 std::vector<unsigned> EndBits;
1354 std::vector<uint64_t> FieldVals;
1355 insn_t Insn;
Daniel Sanders4c252222019-06-18 23:34:46 +00001356 insnWithID(Insn, Opc.EncodingID);
Owen Anderson4e818902011-02-18 21:51:29 +00001357
1358 // Look for islands of undecoded bits of the singleton.
1359 getIslands(StartBits, EndBits, FieldVals, Insn);
1360
1361 unsigned Size = StartBits.size();
Owen Anderson4e818902011-02-18 21:51:29 +00001362
Jim Grosbachecaef492012-08-14 19:06:05 +00001363 // Emit the predicate table entry if one is needed.
Daniel Sanders4c252222019-06-18 23:34:46 +00001364 emitPredicateTableEntry(TableInfo, Opc.EncodingID);
Owen Anderson4e818902011-02-18 21:51:29 +00001365
Jim Grosbachecaef492012-08-14 19:06:05 +00001366 // Check any additional encoding fields needed.
Craig Topper29688ab2012-08-17 05:42:16 +00001367 for (unsigned I = Size; I != 0; --I) {
1368 unsigned NumBits = EndBits[I-1] - StartBits[I-1] + 1;
Jim Grosbachecaef492012-08-14 19:06:05 +00001369 TableInfo.Table.push_back(MCD::OPC_CheckField);
1370 TableInfo.Table.push_back(StartBits[I-1]);
1371 TableInfo.Table.push_back(NumBits);
Sander de Smalen13f94252018-07-05 10:39:15 +00001372 uint8_t Buffer[16], *p;
Jim Grosbachecaef492012-08-14 19:06:05 +00001373 encodeULEB128(FieldVals[I-1], Buffer);
1374 for (p = Buffer; *p >= 128 ; ++p)
1375 TableInfo.Table.push_back(*p);
1376 TableInfo.Table.push_back(*p);
1377 // Push location for NumToSkip backpatching.
1378 TableInfo.FixupStack.back().push_back(TableInfo.Table.size());
Sander de Smalen13f94252018-07-05 10:39:15 +00001379 // The fixup is always 24-bits, so go ahead and allocate the space
Jim Grosbachecaef492012-08-14 19:06:05 +00001380 // in the table so all our relative position calculations work OK even
1381 // before we fully resolve the real value here.
1382 TableInfo.Table.push_back(0);
1383 TableInfo.Table.push_back(0);
Sander de Smalen13f94252018-07-05 10:39:15 +00001384 TableInfo.Table.push_back(0);
Owen Anderson4e818902011-02-18 21:51:29 +00001385 }
Owen Anderson4e818902011-02-18 21:51:29 +00001386
Jim Grosbachecaef492012-08-14 19:06:05 +00001387 // Check for soft failure of the match.
Daniel Sanders4c252222019-06-18 23:34:46 +00001388 emitSoftFailTableEntry(TableInfo, Opc.EncodingID);
Owen Anderson4e818902011-02-18 21:51:29 +00001389
Petr Pavlu182b0572015-07-15 08:04:27 +00001390 bool HasCompleteDecoder;
Daniel Sanders4c252222019-06-18 23:34:46 +00001391 unsigned DIdx =
1392 getDecoderIndex(TableInfo.Decoders, Opc.EncodingID, HasCompleteDecoder);
Petr Pavlu182b0572015-07-15 08:04:27 +00001393
1394 // Produce OPC_Decode or OPC_TryDecode opcode based on the information
1395 // whether the instruction decoder is complete or not. If it is complete
1396 // then it handles all possible values of remaining variable/unfiltered bits
1397 // and for any value can determine if the bitpattern is a valid instruction
1398 // or not. This means OPC_Decode will be the final step in the decoding
1399 // process. If it is not complete, then the Fail return code from the
1400 // decoder method indicates that additional processing should be done to see
1401 // if there is any other instruction that also matches the bitpattern and
1402 // can decode it.
1403 TableInfo.Table.push_back(HasCompleteDecoder ? MCD::OPC_Decode :
1404 MCD::OPC_TryDecode);
Daniel Sanders4c252222019-06-18 23:34:46 +00001405 NumEncodingsSupported++;
Sander de Smalen13f94252018-07-05 10:39:15 +00001406 uint8_t Buffer[16], *p;
Daniel Sanders4c252222019-06-18 23:34:46 +00001407 encodeULEB128(Opc.Opcode, Buffer);
Jim Grosbachecaef492012-08-14 19:06:05 +00001408 for (p = Buffer; *p >= 128 ; ++p)
1409 TableInfo.Table.push_back(*p);
1410 TableInfo.Table.push_back(*p);
1411
Jim Grosbachecaef492012-08-14 19:06:05 +00001412 SmallString<16> Bytes;
1413 raw_svector_ostream S(Bytes);
1414 encodeULEB128(DIdx, S);
Jim Grosbachecaef492012-08-14 19:06:05 +00001415
1416 // Decoder index
Craig Topper29688ab2012-08-17 05:42:16 +00001417 for (unsigned i = 0, e = Bytes.size(); i != e; ++i)
Jim Grosbachecaef492012-08-14 19:06:05 +00001418 TableInfo.Table.push_back(Bytes[i]);
Petr Pavlu182b0572015-07-15 08:04:27 +00001419
1420 if (!HasCompleteDecoder) {
1421 // Push location for NumToSkip backpatching.
1422 TableInfo.FixupStack.back().push_back(TableInfo.Table.size());
1423 // Allocate the space for the fixup.
1424 TableInfo.Table.push_back(0);
1425 TableInfo.Table.push_back(0);
Sander de Smalen13f94252018-07-05 10:39:15 +00001426 TableInfo.Table.push_back(0);
Petr Pavlu182b0572015-07-15 08:04:27 +00001427 }
Owen Anderson4e818902011-02-18 21:51:29 +00001428}
1429
Jim Grosbachecaef492012-08-14 19:06:05 +00001430// Emits table entries to decode the singleton, and then to decode the rest.
1431void FilterChooser::emitSingletonTableEntry(DecoderTableInfo &TableInfo,
1432 const Filter &Best) const {
Daniel Sanders4c252222019-06-18 23:34:46 +00001433 EncodingIDAndOpcode Opc = Best.getSingletonOpc();
Owen Anderson4e818902011-02-18 21:51:29 +00001434
Jim Grosbachecaef492012-08-14 19:06:05 +00001435 // complex singletons need predicate checks from the first singleton
1436 // to refer forward to the variable filterchooser that follows.
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00001437 TableInfo.FixupStack.emplace_back();
Owen Anderson4e818902011-02-18 21:51:29 +00001438
Jim Grosbachecaef492012-08-14 19:06:05 +00001439 emitSingletonTableEntry(TableInfo, Opc);
Owen Anderson4e818902011-02-18 21:51:29 +00001440
Jim Grosbachecaef492012-08-14 19:06:05 +00001441 resolveTableFixups(TableInfo.Table, TableInfo.FixupStack.back(),
1442 TableInfo.Table.size());
1443 TableInfo.FixupStack.pop_back();
1444
1445 Best.getVariableFC().emitTableEntries(TableInfo);
Owen Anderson4e818902011-02-18 21:51:29 +00001446}
1447
1448// Assign a single filter and run with it. Top level API client can initialize
1449// with a single filter to start the filtering process.
Craig Topper48c112b2012-03-16 05:58:09 +00001450void FilterChooser::runSingleFilter(unsigned startBit, unsigned numBit,
1451 bool mixed) {
Owen Anderson4e818902011-02-18 21:51:29 +00001452 Filters.clear();
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00001453 Filters.emplace_back(*this, startBit, numBit, true);
Owen Anderson4e818902011-02-18 21:51:29 +00001454 BestIndex = 0; // Sole Filter instance to choose from.
1455 bestFilter().recurse();
1456}
1457
1458// reportRegion is a helper function for filterProcessor to mark a region as
1459// eligible for use as a filter region.
1460void FilterChooser::reportRegion(bitAttr_t RA, unsigned StartBit,
Craig Topper82d0d5f2012-03-16 01:19:24 +00001461 unsigned BitIndex, bool AllowMixed) {
Owen Anderson4e818902011-02-18 21:51:29 +00001462 if (RA == ATTR_MIXED && AllowMixed)
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00001463 Filters.emplace_back(*this, StartBit, BitIndex - StartBit, true);
Owen Anderson4e818902011-02-18 21:51:29 +00001464 else if (RA == ATTR_ALL_SET && !AllowMixed)
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00001465 Filters.emplace_back(*this, StartBit, BitIndex - StartBit, false);
Owen Anderson4e818902011-02-18 21:51:29 +00001466}
1467
1468// FilterProcessor scans the well-known encoding bits of the instructions and
1469// builds up a list of candidate filters. It chooses the best filter and
1470// recursively descends down the decoding tree.
1471bool FilterChooser::filterProcessor(bool AllowMixed, bool Greedy) {
1472 Filters.clear();
1473 BestIndex = -1;
1474 unsigned numInstructions = Opcodes.size();
1475
1476 assert(numInstructions && "Filter created with no instructions");
1477
1478 // No further filtering is necessary.
1479 if (numInstructions == 1)
1480 return true;
1481
1482 // Heuristics. See also doFilter()'s "Heuristics" comment when num of
1483 // instructions is 3.
1484 if (AllowMixed && !Greedy) {
1485 assert(numInstructions == 3);
1486
1487 for (unsigned i = 0; i < Opcodes.size(); ++i) {
1488 std::vector<unsigned> StartBits;
1489 std::vector<unsigned> EndBits;
1490 std::vector<uint64_t> FieldVals;
1491 insn_t Insn;
1492
Daniel Sanders4c252222019-06-18 23:34:46 +00001493 insnWithID(Insn, Opcodes[i].EncodingID);
Owen Anderson4e818902011-02-18 21:51:29 +00001494
1495 // Look for islands of undecoded bits of any instruction.
1496 if (getIslands(StartBits, EndBits, FieldVals, Insn) > 0) {
1497 // Found an instruction with island(s). Now just assign a filter.
Craig Topper48c112b2012-03-16 05:58:09 +00001498 runSingleFilter(StartBits[0], EndBits[0] - StartBits[0] + 1, true);
Owen Anderson4e818902011-02-18 21:51:29 +00001499 return true;
1500 }
1501 }
1502 }
1503
Craig Topper29688ab2012-08-17 05:42:16 +00001504 unsigned BitIndex;
Owen Anderson4e818902011-02-18 21:51:29 +00001505
1506 // We maintain BIT_WIDTH copies of the bitAttrs automaton.
1507 // The automaton consumes the corresponding bit from each
1508 // instruction.
1509 //
1510 // Input symbols: 0, 1, and _ (unset).
1511 // States: NONE, FILTERED, ALL_SET, ALL_UNSET, and MIXED.
1512 // Initial state: NONE.
1513 //
1514 // (NONE) ------- [01] -> (ALL_SET)
1515 // (NONE) ------- _ ----> (ALL_UNSET)
1516 // (ALL_SET) ---- [01] -> (ALL_SET)
1517 // (ALL_SET) ---- _ ----> (MIXED)
1518 // (ALL_UNSET) -- [01] -> (MIXED)
1519 // (ALL_UNSET) -- _ ----> (ALL_UNSET)
1520 // (MIXED) ------ . ----> (MIXED)
1521 // (FILTERED)---- . ----> (FILTERED)
1522
Owen Andersonc78e03c2011-07-19 21:06:00 +00001523 std::vector<bitAttr_t> bitAttrs;
Owen Anderson4e818902011-02-18 21:51:29 +00001524
1525 // FILTERED bit positions provide no entropy and are not worthy of pursuing.
1526 // Filter::recurse() set either BIT_TRUE or BIT_FALSE for each position.
Owen Andersonc78e03c2011-07-19 21:06:00 +00001527 for (BitIndex = 0; BitIndex < BitWidth; ++BitIndex)
Owen Anderson4e818902011-02-18 21:51:29 +00001528 if (FilterBitValues[BitIndex] == BIT_TRUE ||
1529 FilterBitValues[BitIndex] == BIT_FALSE)
Owen Andersonc78e03c2011-07-19 21:06:00 +00001530 bitAttrs.push_back(ATTR_FILTERED);
Owen Anderson4e818902011-02-18 21:51:29 +00001531 else
Owen Andersonc78e03c2011-07-19 21:06:00 +00001532 bitAttrs.push_back(ATTR_NONE);
Owen Anderson4e818902011-02-18 21:51:29 +00001533
Craig Topper29688ab2012-08-17 05:42:16 +00001534 for (unsigned InsnIndex = 0; InsnIndex < numInstructions; ++InsnIndex) {
Owen Anderson4e818902011-02-18 21:51:29 +00001535 insn_t insn;
1536
Daniel Sanders4c252222019-06-18 23:34:46 +00001537 insnWithID(insn, Opcodes[InsnIndex].EncodingID);
Owen Anderson4e818902011-02-18 21:51:29 +00001538
Owen Andersonc78e03c2011-07-19 21:06:00 +00001539 for (BitIndex = 0; BitIndex < BitWidth; ++BitIndex) {
Owen Anderson4e818902011-02-18 21:51:29 +00001540 switch (bitAttrs[BitIndex]) {
1541 case ATTR_NONE:
1542 if (insn[BitIndex] == BIT_UNSET)
1543 bitAttrs[BitIndex] = ATTR_ALL_UNSET;
1544 else
1545 bitAttrs[BitIndex] = ATTR_ALL_SET;
1546 break;
1547 case ATTR_ALL_SET:
1548 if (insn[BitIndex] == BIT_UNSET)
1549 bitAttrs[BitIndex] = ATTR_MIXED;
1550 break;
1551 case ATTR_ALL_UNSET:
1552 if (insn[BitIndex] != BIT_UNSET)
1553 bitAttrs[BitIndex] = ATTR_MIXED;
1554 break;
1555 case ATTR_MIXED:
1556 case ATTR_FILTERED:
1557 break;
1558 }
1559 }
1560 }
1561
1562 // The regionAttr automaton consumes the bitAttrs automatons' state,
1563 // lowest-to-highest.
1564 //
1565 // Input symbols: F(iltered), (all_)S(et), (all_)U(nset), M(ixed)
1566 // States: NONE, ALL_SET, MIXED
1567 // Initial state: NONE
1568 //
1569 // (NONE) ----- F --> (NONE)
1570 // (NONE) ----- S --> (ALL_SET) ; and set region start
1571 // (NONE) ----- U --> (NONE)
1572 // (NONE) ----- M --> (MIXED) ; and set region start
1573 // (ALL_SET) -- F --> (NONE) ; and report an ALL_SET region
1574 // (ALL_SET) -- S --> (ALL_SET)
1575 // (ALL_SET) -- U --> (NONE) ; and report an ALL_SET region
1576 // (ALL_SET) -- M --> (MIXED) ; and report an ALL_SET region
1577 // (MIXED) ---- F --> (NONE) ; and report a MIXED region
1578 // (MIXED) ---- S --> (ALL_SET) ; and report a MIXED region
1579 // (MIXED) ---- U --> (NONE) ; and report a MIXED region
1580 // (MIXED) ---- M --> (MIXED)
1581
1582 bitAttr_t RA = ATTR_NONE;
1583 unsigned StartBit = 0;
1584
Craig Topper29688ab2012-08-17 05:42:16 +00001585 for (BitIndex = 0; BitIndex < BitWidth; ++BitIndex) {
Owen Anderson4e818902011-02-18 21:51:29 +00001586 bitAttr_t bitAttr = bitAttrs[BitIndex];
1587
1588 assert(bitAttr != ATTR_NONE && "Bit without attributes");
1589
1590 switch (RA) {
1591 case ATTR_NONE:
1592 switch (bitAttr) {
1593 case ATTR_FILTERED:
1594 break;
1595 case ATTR_ALL_SET:
1596 StartBit = BitIndex;
1597 RA = ATTR_ALL_SET;
1598 break;
1599 case ATTR_ALL_UNSET:
1600 break;
1601 case ATTR_MIXED:
1602 StartBit = BitIndex;
1603 RA = ATTR_MIXED;
1604 break;
1605 default:
Craig Topperc4965bc2012-02-05 07:21:30 +00001606 llvm_unreachable("Unexpected bitAttr!");
Owen Anderson4e818902011-02-18 21:51:29 +00001607 }
1608 break;
1609 case ATTR_ALL_SET:
1610 switch (bitAttr) {
1611 case ATTR_FILTERED:
1612 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1613 RA = ATTR_NONE;
1614 break;
1615 case ATTR_ALL_SET:
1616 break;
1617 case ATTR_ALL_UNSET:
1618 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1619 RA = ATTR_NONE;
1620 break;
1621 case ATTR_MIXED:
1622 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1623 StartBit = BitIndex;
1624 RA = ATTR_MIXED;
1625 break;
1626 default:
Craig Topperc4965bc2012-02-05 07:21:30 +00001627 llvm_unreachable("Unexpected bitAttr!");
Owen Anderson4e818902011-02-18 21:51:29 +00001628 }
1629 break;
1630 case ATTR_MIXED:
1631 switch (bitAttr) {
1632 case ATTR_FILTERED:
1633 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1634 StartBit = BitIndex;
1635 RA = ATTR_NONE;
1636 break;
1637 case ATTR_ALL_SET:
1638 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1639 StartBit = BitIndex;
1640 RA = ATTR_ALL_SET;
1641 break;
1642 case ATTR_ALL_UNSET:
1643 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1644 RA = ATTR_NONE;
1645 break;
1646 case ATTR_MIXED:
1647 break;
1648 default:
Craig Topperc4965bc2012-02-05 07:21:30 +00001649 llvm_unreachable("Unexpected bitAttr!");
Owen Anderson4e818902011-02-18 21:51:29 +00001650 }
1651 break;
1652 case ATTR_ALL_UNSET:
Craig Topperc4965bc2012-02-05 07:21:30 +00001653 llvm_unreachable("regionAttr state machine has no ATTR_UNSET state");
Owen Anderson4e818902011-02-18 21:51:29 +00001654 case ATTR_FILTERED:
Craig Topperc4965bc2012-02-05 07:21:30 +00001655 llvm_unreachable("regionAttr state machine has no ATTR_FILTERED state");
Owen Anderson4e818902011-02-18 21:51:29 +00001656 }
1657 }
1658
1659 // At the end, if we're still in ALL_SET or MIXED states, report a region
1660 switch (RA) {
1661 case ATTR_NONE:
1662 break;
1663 case ATTR_FILTERED:
1664 break;
1665 case ATTR_ALL_SET:
1666 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1667 break;
1668 case ATTR_ALL_UNSET:
1669 break;
1670 case ATTR_MIXED:
1671 reportRegion(RA, StartBit, BitIndex, AllowMixed);
1672 break;
1673 }
1674
1675 // We have finished with the filter processings. Now it's time to choose
1676 // the best performing filter.
1677 BestIndex = 0;
1678 bool AllUseless = true;
1679 unsigned BestScore = 0;
1680
1681 for (unsigned i = 0, e = Filters.size(); i != e; ++i) {
1682 unsigned Usefulness = Filters[i].usefulness();
1683
1684 if (Usefulness)
1685 AllUseless = false;
1686
1687 if (Usefulness > BestScore) {
1688 BestIndex = i;
1689 BestScore = Usefulness;
1690 }
1691 }
1692
1693 if (!AllUseless)
1694 bestFilter().recurse();
1695
1696 return !AllUseless;
1697} // end of FilterChooser::filterProcessor(bool)
1698
1699// Decides on the best configuration of filter(s) to use in order to decode
1700// the instructions. A conflict of instructions may occur, in which case we
1701// dump the conflict set to the standard error.
1702void FilterChooser::doFilter() {
1703 unsigned Num = Opcodes.size();
1704 assert(Num && "FilterChooser created with no instructions");
1705
1706 // Try regions of consecutive known bit values first.
1707 if (filterProcessor(false))
1708 return;
1709
1710 // Then regions of mixed bits (both known and unitialized bit values allowed).
1711 if (filterProcessor(true))
1712 return;
1713
1714 // Heuristics to cope with conflict set {t2CMPrs, t2SUBSrr, t2SUBSrs} where
1715 // no single instruction for the maximum ATTR_MIXED region Inst{14-4} has a
1716 // well-known encoding pattern. In such case, we backtrack and scan for the
1717 // the very first consecutive ATTR_ALL_SET region and assign a filter to it.
1718 if (Num == 3 && filterProcessor(true, false))
1719 return;
1720
1721 // If we come to here, the instruction decoding has failed.
1722 // Set the BestIndex to -1 to indicate so.
1723 BestIndex = -1;
1724}
1725
Jim Grosbachecaef492012-08-14 19:06:05 +00001726// emitTableEntries - Emit state machine entries to decode our share of
1727// instructions.
1728void FilterChooser::emitTableEntries(DecoderTableInfo &TableInfo) const {
1729 if (Opcodes.size() == 1) {
Owen Anderson4e818902011-02-18 21:51:29 +00001730 // There is only one instruction in the set, which is great!
1731 // Call emitSingletonDecoder() to see whether there are any remaining
1732 // encodings bits.
Jim Grosbachecaef492012-08-14 19:06:05 +00001733 emitSingletonTableEntry(TableInfo, Opcodes[0]);
1734 return;
1735 }
Owen Anderson4e818902011-02-18 21:51:29 +00001736
1737 // Choose the best filter to do the decodings!
1738 if (BestIndex != -1) {
Craig Topper48c112b2012-03-16 05:58:09 +00001739 const Filter &Best = Filters[BestIndex];
Owen Anderson4e818902011-02-18 21:51:29 +00001740 if (Best.getNumFiltered() == 1)
Jim Grosbachecaef492012-08-14 19:06:05 +00001741 emitSingletonTableEntry(TableInfo, Best);
Owen Anderson4e818902011-02-18 21:51:29 +00001742 else
Jim Grosbachecaef492012-08-14 19:06:05 +00001743 Best.emitTableEntry(TableInfo);
1744 return;
Owen Anderson4e818902011-02-18 21:51:29 +00001745 }
1746
Jim Grosbachecaef492012-08-14 19:06:05 +00001747 // We don't know how to decode these instructions! Dump the
1748 // conflict set and bail.
Owen Anderson4e818902011-02-18 21:51:29 +00001749
1750 // Print out useful conflict information for postmortem analysis.
1751 errs() << "Decoding Conflict:\n";
1752
1753 dumpStack(errs(), "\t\t");
1754
Craig Topper82d0d5f2012-03-16 01:19:24 +00001755 for (unsigned i = 0; i < Opcodes.size(); ++i) {
Daniel Sanders4c252222019-06-18 23:34:46 +00001756 errs() << '\t';
1757 emitNameWithID(errs(), Opcodes[i].EncodingID);
1758 errs() << " ";
1759 dumpBits(
1760 errs(),
1761 getBitsField(*AllInstructions[Opcodes[i].EncodingID].EncodingDef, "Inst"));
Owen Anderson4e818902011-02-18 21:51:29 +00001762 errs() << '\n';
1763 }
Owen Anderson4e818902011-02-18 21:51:29 +00001764}
1765
Matt Arsenault4cb438b2016-07-18 23:20:46 +00001766static std::string findOperandDecoderMethod(TypedInit *TI) {
1767 std::string Decoder;
1768
Nicolai Haehnle0409b282018-03-05 14:01:30 +00001769 Record *Record = cast<DefInit>(TI)->getDef();
Matt Arsenault4cb438b2016-07-18 23:20:46 +00001770
Nicolai Haehnle0409b282018-03-05 14:01:30 +00001771 RecordVal *DecoderString = Record->getValue("DecoderMethod");
Matt Arsenault4cb438b2016-07-18 23:20:46 +00001772 StringInit *String = DecoderString ?
1773 dyn_cast<StringInit>(DecoderString->getValue()) : nullptr;
1774 if (String) {
Benjamin Krameradcd0262020-01-28 20:23:46 +01001775 Decoder = std::string(String->getValue());
Matt Arsenault4cb438b2016-07-18 23:20:46 +00001776 if (!Decoder.empty())
1777 return Decoder;
1778 }
1779
Nicolai Haehnle0409b282018-03-05 14:01:30 +00001780 if (Record->isSubClassOf("RegisterOperand"))
1781 Record = Record->getValueAsDef("RegClass");
Matt Arsenault4cb438b2016-07-18 23:20:46 +00001782
Nicolai Haehnle0409b282018-03-05 14:01:30 +00001783 if (Record->isSubClassOf("RegisterClass")) {
1784 Decoder = "Decode" + Record->getName().str() + "RegisterClass";
1785 } else if (Record->isSubClassOf("PointerLikeRegClass")) {
Matt Arsenault4cb438b2016-07-18 23:20:46 +00001786 Decoder = "DecodePointerLikeRegClass" +
Nicolai Haehnle0409b282018-03-05 14:01:30 +00001787 utostr(Record->getValueAsInt("RegClassKind"));
Matt Arsenault4cb438b2016-07-18 23:20:46 +00001788 }
1789
1790 return Decoder;
1791}
1792
Daniel Sanders4c252222019-06-18 23:34:46 +00001793static bool
1794populateInstruction(CodeGenTarget &Target, const Record &EncodingDef,
1795 const CodeGenInstruction &CGI, unsigned Opc,
1796 std::map<unsigned, std::vector<OperandInfo>> &Operands) {
Owen Anderson4e818902011-02-18 21:51:29 +00001797 const Record &Def = *CGI.TheDef;
1798 // If all the bit positions are not specified; do not decode this instruction.
1799 // We are bound to fail! For proper disassembly, the well-known encoding bits
1800 // of the instruction must be fully specified.
Owen Anderson4e818902011-02-18 21:51:29 +00001801
Daniel Sanders4c252222019-06-18 23:34:46 +00001802 BitsInit &Bits = getBitsField(EncodingDef, "Inst");
Jim Grosbachf3fd36e2011-07-06 21:33:38 +00001803 if (Bits.allInComplete()) return false;
1804
Owen Anderson4e818902011-02-18 21:51:29 +00001805 std::vector<OperandInfo> InsnOperands;
1806
1807 // If the instruction has specified a custom decoding hook, use that instead
1808 // of trying to auto-generate the decoder.
Daniel Sanders4c252222019-06-18 23:34:46 +00001809 StringRef InstDecoder = EncodingDef.getValueAsString("DecoderMethod");
Owen Anderson4e818902011-02-18 21:51:29 +00001810 if (InstDecoder != "") {
Daniel Sanders4c252222019-06-18 23:34:46 +00001811 bool HasCompleteInstDecoder = EncodingDef.getValueAsBit("hasCompleteDecoder");
Benjamin Krameradcd0262020-01-28 20:23:46 +01001812 InsnOperands.push_back(
1813 OperandInfo(std::string(InstDecoder), HasCompleteInstDecoder));
Owen Anderson4e818902011-02-18 21:51:29 +00001814 Operands[Opc] = InsnOperands;
1815 return true;
1816 }
1817
1818 // Generate a description of the operand of the instruction that we know
1819 // how to decode automatically.
1820 // FIXME: We'll need to have a way to manually override this as needed.
1821
1822 // Gather the outputs/inputs of the instruction, so we can find their
1823 // positions in the encoding. This assumes for now that they appear in the
1824 // MCInst in the order that they're listed.
Matthias Braunbb053162016-12-05 06:00:46 +00001825 std::vector<std::pair<Init*, StringRef>> InOutOperands;
David Greeneaf8ee2c2011-07-29 22:43:06 +00001826 DagInit *Out = Def.getValueAsDag("OutOperandList");
1827 DagInit *In = Def.getValueAsDag("InOperandList");
Owen Anderson4e818902011-02-18 21:51:29 +00001828 for (unsigned i = 0; i < Out->getNumArgs(); ++i)
Matthias Braunbb053162016-12-05 06:00:46 +00001829 InOutOperands.push_back(std::make_pair(Out->getArg(i),
1830 Out->getArgNameStr(i)));
Owen Anderson4e818902011-02-18 21:51:29 +00001831 for (unsigned i = 0; i < In->getNumArgs(); ++i)
Matthias Braunbb053162016-12-05 06:00:46 +00001832 InOutOperands.push_back(std::make_pair(In->getArg(i),
1833 In->getArgNameStr(i)));
Owen Anderson4e818902011-02-18 21:51:29 +00001834
Owen Anderson53562d02011-07-28 23:56:20 +00001835 // Search for tied operands, so that we can correctly instantiate
1836 // operands that are not explicitly represented in the encoding.
Owen Andersoncb32ce22011-07-29 18:28:52 +00001837 std::map<std::string, std::string> TiedNames;
Owen Anderson53562d02011-07-28 23:56:20 +00001838 for (unsigned i = 0; i < CGI.Operands.size(); ++i) {
1839 int tiedTo = CGI.Operands[i].getTiedRegister();
Owen Andersoncb32ce22011-07-29 18:28:52 +00001840 if (tiedTo != -1) {
Hal Finkel71b2e202013-12-19 16:12:53 +00001841 std::pair<unsigned, unsigned> SO =
1842 CGI.Operands.getSubOperandNumber(tiedTo);
Benjamin Krameradcd0262020-01-28 20:23:46 +01001843 TiedNames[std::string(InOutOperands[i].second)] =
1844 std::string(InOutOperands[SO.first].second);
1845 TiedNames[std::string(InOutOperands[SO.first].second)] =
1846 std::string(InOutOperands[i].second);
Hal Finkel71b2e202013-12-19 16:12:53 +00001847 }
1848 }
1849
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001850 std::map<std::string, std::vector<OperandInfo>> NumberedInsnOperands;
Hal Finkel71b2e202013-12-19 16:12:53 +00001851 std::set<std::string> NumberedInsnOperandsNoTie;
1852 if (Target.getInstructionSet()->
1853 getValueAsBit("decodePositionallyEncodedOperands")) {
1854 const std::vector<RecordVal> &Vals = Def.getValues();
1855 unsigned NumberedOp = 0;
1856
Hal Finkel5457bd02014-03-13 07:57:54 +00001857 std::set<unsigned> NamedOpIndices;
1858 if (Target.getInstructionSet()->
1859 getValueAsBit("noNamedPositionallyEncodedOperands"))
1860 // Collect the set of operand indices that might correspond to named
1861 // operand, and skip these when assigning operands based on position.
1862 for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
1863 unsigned OpIdx;
1864 if (!CGI.Operands.hasOperandNamed(Vals[i].getName(), OpIdx))
1865 continue;
1866
1867 NamedOpIndices.insert(OpIdx);
1868 }
1869
Hal Finkel71b2e202013-12-19 16:12:53 +00001870 for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
1871 // Ignore fixed fields in the record, we're looking for values like:
1872 // bits<5> RST = { ?, ?, ?, ?, ? };
1873 if (Vals[i].getPrefix() || Vals[i].getValue()->isComplete())
1874 continue;
1875
1876 // Determine if Vals[i] actually contributes to the Inst encoding.
1877 unsigned bi = 0;
1878 for (; bi < Bits.getNumBits(); ++bi) {
Craig Topper24064772014-04-15 07:20:03 +00001879 VarInit *Var = nullptr;
Hal Finkel71b2e202013-12-19 16:12:53 +00001880 VarBitInit *BI = dyn_cast<VarBitInit>(Bits.getBit(bi));
1881 if (BI)
1882 Var = dyn_cast<VarInit>(BI->getBitVar());
1883 else
1884 Var = dyn_cast<VarInit>(Bits.getBit(bi));
1885
1886 if (Var && Var->getName() == Vals[i].getName())
1887 break;
1888 }
1889
1890 if (bi == Bits.getNumBits())
1891 continue;
1892
1893 // Skip variables that correspond to explicitly-named operands.
1894 unsigned OpIdx;
1895 if (CGI.Operands.hasOperandNamed(Vals[i].getName(), OpIdx))
1896 continue;
1897
1898 // Get the bit range for this operand:
1899 unsigned bitStart = bi++, bitWidth = 1;
1900 for (; bi < Bits.getNumBits(); ++bi) {
Craig Topper24064772014-04-15 07:20:03 +00001901 VarInit *Var = nullptr;
Hal Finkel71b2e202013-12-19 16:12:53 +00001902 VarBitInit *BI = dyn_cast<VarBitInit>(Bits.getBit(bi));
1903 if (BI)
1904 Var = dyn_cast<VarInit>(BI->getBitVar());
1905 else
1906 Var = dyn_cast<VarInit>(Bits.getBit(bi));
1907
1908 if (!Var)
1909 break;
1910
1911 if (Var->getName() != Vals[i].getName())
1912 break;
1913
1914 ++bitWidth;
1915 }
1916
1917 unsigned NumberOps = CGI.Operands.size();
1918 while (NumberedOp < NumberOps &&
Hal Finkel5457bd02014-03-13 07:57:54 +00001919 (CGI.Operands.isFlatOperandNotEmitted(NumberedOp) ||
Alexander Kornienko8c0809c2015-01-15 11:41:30 +00001920 (!NamedOpIndices.empty() && NamedOpIndices.count(
Hal Finkel5457bd02014-03-13 07:57:54 +00001921 CGI.Operands.getSubOperandNumber(NumberedOp).first))))
Hal Finkel71b2e202013-12-19 16:12:53 +00001922 ++NumberedOp;
1923
1924 OpIdx = NumberedOp++;
1925
1926 // OpIdx now holds the ordered operand number of Vals[i].
1927 std::pair<unsigned, unsigned> SO =
1928 CGI.Operands.getSubOperandNumber(OpIdx);
1929 const std::string &Name = CGI.Operands[SO.first].Name;
1930
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001931 LLVM_DEBUG(dbgs() << "Numbered operand mapping for " << Def.getName()
1932 << ": " << Name << "(" << SO.first << ", " << SO.second
1933 << ") => " << Vals[i].getName() << "\n");
Hal Finkel71b2e202013-12-19 16:12:53 +00001934
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001935 std::string Decoder;
Hal Finkel71b2e202013-12-19 16:12:53 +00001936 Record *TypeRecord = CGI.Operands[SO.first].Rec;
1937
1938 RecordVal *DecoderString = TypeRecord->getValue("DecoderMethod");
1939 StringInit *String = DecoderString ?
Craig Topper24064772014-04-15 07:20:03 +00001940 dyn_cast<StringInit>(DecoderString->getValue()) : nullptr;
Hal Finkel71b2e202013-12-19 16:12:53 +00001941 if (String && String->getValue() != "")
Benjamin Krameradcd0262020-01-28 20:23:46 +01001942 Decoder = std::string(String->getValue());
Hal Finkel71b2e202013-12-19 16:12:53 +00001943
1944 if (Decoder == "" &&
1945 CGI.Operands[SO.first].MIOperandInfo &&
1946 CGI.Operands[SO.first].MIOperandInfo->getNumArgs()) {
1947 Init *Arg = CGI.Operands[SO.first].MIOperandInfo->
1948 getArg(SO.second);
Nicolai Haehnle0409b282018-03-05 14:01:30 +00001949 if (DefInit *DI = cast<DefInit>(Arg))
1950 TypeRecord = DI->getDef();
Hal Finkel71b2e202013-12-19 16:12:53 +00001951 }
1952
1953 bool isReg = false;
1954 if (TypeRecord->isSubClassOf("RegisterOperand"))
1955 TypeRecord = TypeRecord->getValueAsDef("RegClass");
1956 if (TypeRecord->isSubClassOf("RegisterClass")) {
Matthias Braun4a86d452016-12-04 05:48:16 +00001957 Decoder = "Decode" + TypeRecord->getName().str() + "RegisterClass";
Hal Finkel71b2e202013-12-19 16:12:53 +00001958 isReg = true;
1959 } else if (TypeRecord->isSubClassOf("PointerLikeRegClass")) {
1960 Decoder = "DecodePointerLikeRegClass" +
1961 utostr(TypeRecord->getValueAsInt("RegClassKind"));
1962 isReg = true;
1963 }
1964
1965 DecoderString = TypeRecord->getValue("DecoderMethod");
1966 String = DecoderString ?
Craig Topper24064772014-04-15 07:20:03 +00001967 dyn_cast<StringInit>(DecoderString->getValue()) : nullptr;
Hal Finkel71b2e202013-12-19 16:12:53 +00001968 if (!isReg && String && String->getValue() != "")
Benjamin Krameradcd0262020-01-28 20:23:46 +01001969 Decoder = std::string(String->getValue());
Hal Finkel71b2e202013-12-19 16:12:53 +00001970
Petr Pavlu182b0572015-07-15 08:04:27 +00001971 RecordVal *HasCompleteDecoderVal =
1972 TypeRecord->getValue("hasCompleteDecoder");
1973 BitInit *HasCompleteDecoderBit = HasCompleteDecoderVal ?
1974 dyn_cast<BitInit>(HasCompleteDecoderVal->getValue()) : nullptr;
1975 bool HasCompleteDecoder = HasCompleteDecoderBit ?
1976 HasCompleteDecoderBit->getValue() : true;
1977
1978 OperandInfo OpInfo(Decoder, HasCompleteDecoder);
Hal Finkel71b2e202013-12-19 16:12:53 +00001979 OpInfo.addField(bitStart, bitWidth, 0);
1980
1981 NumberedInsnOperands[Name].push_back(OpInfo);
1982
1983 // FIXME: For complex operands with custom decoders we can't handle tied
1984 // sub-operands automatically. Skip those here and assume that this is
1985 // fixed up elsewhere.
1986 if (CGI.Operands[SO.first].MIOperandInfo &&
1987 CGI.Operands[SO.first].MIOperandInfo->getNumArgs() > 1 &&
1988 String && String->getValue() != "")
1989 NumberedInsnOperandsNoTie.insert(Name);
Owen Andersoncb32ce22011-07-29 18:28:52 +00001990 }
Owen Anderson53562d02011-07-28 23:56:20 +00001991 }
1992
Owen Anderson4e818902011-02-18 21:51:29 +00001993 // For each operand, see if we can figure out where it is encoded.
Craig Topper1f7604d2014-12-13 05:12:19 +00001994 for (const auto &Op : InOutOperands) {
Benjamin Krameradcd0262020-01-28 20:23:46 +01001995 if (!NumberedInsnOperands[std::string(Op.second)].empty()) {
Hal Finkel71b2e202013-12-19 16:12:53 +00001996 InsnOperands.insert(InsnOperands.end(),
Benjamin Krameradcd0262020-01-28 20:23:46 +01001997 NumberedInsnOperands[std::string(Op.second)].begin(),
1998 NumberedInsnOperands[std::string(Op.second)].end());
Hal Finkel71b2e202013-12-19 16:12:53 +00001999 continue;
Craig Topper1f7604d2014-12-13 05:12:19 +00002000 }
Benjamin Krameradcd0262020-01-28 20:23:46 +01002001 if (!NumberedInsnOperands[TiedNames[std::string(Op.second)]].empty()) {
2002 if (!NumberedInsnOperandsNoTie.count(TiedNames[std::string(Op.second)])) {
Hal Finkel71b2e202013-12-19 16:12:53 +00002003 // Figure out to which (sub)operand we're tied.
Benjamin Krameradcd0262020-01-28 20:23:46 +01002004 unsigned i =
2005 CGI.Operands.getOperandNamed(TiedNames[std::string(Op.second)]);
Hal Finkel71b2e202013-12-19 16:12:53 +00002006 int tiedTo = CGI.Operands[i].getTiedRegister();
2007 if (tiedTo == -1) {
Craig Topper1f7604d2014-12-13 05:12:19 +00002008 i = CGI.Operands.getOperandNamed(Op.second);
Hal Finkel71b2e202013-12-19 16:12:53 +00002009 tiedTo = CGI.Operands[i].getTiedRegister();
2010 }
2011
2012 if (tiedTo != -1) {
2013 std::pair<unsigned, unsigned> SO =
2014 CGI.Operands.getSubOperandNumber(tiedTo);
2015
Benjamin Krameradcd0262020-01-28 20:23:46 +01002016 InsnOperands.push_back(
2017 NumberedInsnOperands[TiedNames[std::string(Op.second)]]
2018 [SO.second]);
Hal Finkel71b2e202013-12-19 16:12:53 +00002019 }
2020 }
2021 continue;
2022 }
2023
Craig Topper1f7604d2014-12-13 05:12:19 +00002024 TypedInit *TI = cast<TypedInit>(Op.first);
Owen Andersone3591652011-07-28 21:54:31 +00002025
Matt Arsenault4cb438b2016-07-18 23:20:46 +00002026 // At this point, we can locate the decoder field, but we need to know how
2027 // to interpret it. As a first step, require the target to provide
2028 // callbacks for decoding register classes.
2029 std::string Decoder = findOperandDecoderMethod(TI);
Nicolai Haehnle0409b282018-03-05 14:01:30 +00002030 Record *TypeRecord = cast<DefInit>(TI)->getDef();
Owen Andersone3591652011-07-28 21:54:31 +00002031
Petr Pavlu182b0572015-07-15 08:04:27 +00002032 RecordVal *HasCompleteDecoderVal =
2033 TypeRecord->getValue("hasCompleteDecoder");
2034 BitInit *HasCompleteDecoderBit = HasCompleteDecoderVal ?
2035 dyn_cast<BitInit>(HasCompleteDecoderVal->getValue()) : nullptr;
2036 bool HasCompleteDecoder = HasCompleteDecoderBit ?
2037 HasCompleteDecoderBit->getValue() : true;
2038
2039 OperandInfo OpInfo(Decoder, HasCompleteDecoder);
Daniel Sanders1c5542a2019-08-09 17:30:33 +00002040
2041 // Some bits of the operand may be required to be 1 depending on the
2042 // instruction's encoding. Collect those bits.
2043 if (const RecordVal *EncodedValue = EncodingDef.getValue(Op.second))
2044 if (const BitsInit *OpBits = dyn_cast<BitsInit>(EncodedValue->getValue()))
2045 for (unsigned I = 0; I < OpBits->getNumBits(); ++I)
2046 if (const BitInit *OpBit = dyn_cast<BitInit>(OpBits->getBit(I)))
2047 if (OpBit->getValue())
Michael Liao8a25eab2019-08-10 16:15:06 +00002048 OpInfo.InitValue |= 1ULL << I;
Daniel Sanders1c5542a2019-08-09 17:30:33 +00002049
Owen Andersone3591652011-07-28 21:54:31 +00002050 unsigned Base = ~0U;
2051 unsigned Width = 0;
2052 unsigned Offset = 0;
2053
Owen Anderson4e818902011-02-18 21:51:29 +00002054 for (unsigned bi = 0; bi < Bits.getNumBits(); ++bi) {
Craig Topper24064772014-04-15 07:20:03 +00002055 VarInit *Var = nullptr;
Sean Silvafb509ed2012-10-10 20:24:43 +00002056 VarBitInit *BI = dyn_cast<VarBitInit>(Bits.getBit(bi));
Owen Anderson3022d672011-08-01 22:45:43 +00002057 if (BI)
Sean Silvafb509ed2012-10-10 20:24:43 +00002058 Var = dyn_cast<VarInit>(BI->getBitVar());
Owen Anderson3022d672011-08-01 22:45:43 +00002059 else
Sean Silvafb509ed2012-10-10 20:24:43 +00002060 Var = dyn_cast<VarInit>(Bits.getBit(bi));
Owen Anderson3022d672011-08-01 22:45:43 +00002061
2062 if (!Var) {
Owen Andersone3591652011-07-28 21:54:31 +00002063 if (Base != ~0U) {
2064 OpInfo.addField(Base, Width, Offset);
2065 Base = ~0U;
2066 Width = 0;
2067 Offset = 0;
2068 }
2069 continue;
2070 }
Owen Anderson4e818902011-02-18 21:51:29 +00002071
Craig Topper1f7604d2014-12-13 05:12:19 +00002072 if (Var->getName() != Op.second &&
Benjamin Krameradcd0262020-01-28 20:23:46 +01002073 Var->getName() != TiedNames[std::string(Op.second)]) {
Owen Andersone3591652011-07-28 21:54:31 +00002074 if (Base != ~0U) {
2075 OpInfo.addField(Base, Width, Offset);
2076 Base = ~0U;
2077 Width = 0;
2078 Offset = 0;
2079 }
2080 continue;
Owen Anderson4e818902011-02-18 21:51:29 +00002081 }
2082
Owen Andersone3591652011-07-28 21:54:31 +00002083 if (Base == ~0U) {
2084 Base = bi;
2085 Width = 1;
Owen Anderson3022d672011-08-01 22:45:43 +00002086 Offset = BI ? BI->getBitNum() : 0;
2087 } else if (BI && BI->getBitNum() != Offset + Width) {
Owen Andersone08f5b52011-07-29 23:01:18 +00002088 OpInfo.addField(Base, Width, Offset);
2089 Base = bi;
2090 Width = 1;
2091 Offset = BI->getBitNum();
Owen Andersone3591652011-07-28 21:54:31 +00002092 } else {
2093 ++Width;
Owen Anderson4e818902011-02-18 21:51:29 +00002094 }
Owen Anderson4e818902011-02-18 21:51:29 +00002095 }
2096
Owen Andersone3591652011-07-28 21:54:31 +00002097 if (Base != ~0U)
2098 OpInfo.addField(Base, Width, Offset);
2099
2100 if (OpInfo.numFields() > 0)
2101 InsnOperands.push_back(OpInfo);
Owen Anderson4e818902011-02-18 21:51:29 +00002102 }
2103
2104 Operands[Opc] = InsnOperands;
2105
Owen Anderson4e818902011-02-18 21:51:29 +00002106#if 0
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002107 LLVM_DEBUG({
Owen Anderson4e818902011-02-18 21:51:29 +00002108 // Dumps the instruction encoding bits.
2109 dumpBits(errs(), Bits);
2110
2111 errs() << '\n';
2112
2113 // Dumps the list of operand info.
2114 for (unsigned i = 0, e = CGI.Operands.size(); i != e; ++i) {
2115 const CGIOperandList::OperandInfo &Info = CGI.Operands[i];
2116 const std::string &OperandName = Info.Name;
2117 const Record &OperandDef = *Info.Rec;
2118
2119 errs() << "\t" << OperandName << " (" << OperandDef.getName() << ")\n";
2120 }
2121 });
2122#endif
2123
2124 return true;
2125}
2126
Jim Grosbachecaef492012-08-14 19:06:05 +00002127// emitFieldFromInstruction - Emit the templated helper function
2128// fieldFromInstruction().
Stella Stamenovabb9fd462018-07-25 17:33:20 +00002129// On Windows we make sure that this function is not inlined when
2130// using the VS compiler. It has a bug which causes the function
2131// to be optimized out in some circustances. See llvm.org/pr38292
Jim Grosbachecaef492012-08-14 19:06:05 +00002132static void emitFieldFromInstruction(formatted_raw_ostream &OS) {
Daniel Sandersd300ba12018-10-23 17:23:31 +00002133 OS << "// Helper functions for extracting fields from encoded instructions.\n"
2134 << "// InsnType must either be integral or an APInt-like object that "
2135 "must:\n"
2136 << "// * Have a static const max_size_in_bits equal to the number of bits "
2137 "in the\n"
2138 << "// encoding.\n"
2139 << "// * be default-constructible and copy-constructible\n"
2140 << "// * be constructible from a uint64_t\n"
2141 << "// * be constructible from an APInt (this can be private)\n"
2142 << "// * Support getBitsSet(loBit, hiBit)\n"
2143 << "// * be convertible to uint64_t\n"
2144 << "// * Support the ~, &, ==, !=, and |= operators with other objects of "
2145 "the same type\n"
2146 << "// * Support shift (<<, >>) with signed and unsigned integers on the "
2147 "RHS\n"
2148 << "// * Support put (<<) to raw_ostream&\n"
Daniel Sandersd0ef6892018-10-23 17:41:39 +00002149 << "template<typename InsnType>\n"
Stella Stamenovabb9fd462018-07-25 17:33:20 +00002150 << "#if defined(_MSC_VER) && !defined(__clang__)\n"
2151 << "__declspec(noinline)\n"
2152 << "#endif\n"
Daniel Sandersd300ba12018-10-23 17:23:31 +00002153 << "static InsnType fieldFromInstruction(InsnType insn, unsigned "
2154 "startBit,\n"
2155 << " unsigned numBits, "
2156 "std::true_type) {\n"
2157 << " assert(startBit + numBits <= 64 && \"Cannot support >64-bit "
2158 "extractions!\");\n"
2159 << " assert(startBit + numBits <= (sizeof(InsnType) * 8) &&\n"
2160 << " \"Instruction field out of bounds!\");\n"
2161 << " InsnType fieldMask;\n"
2162 << " if (numBits == sizeof(InsnType) * 8)\n"
2163 << " fieldMask = (InsnType)(-1LL);\n"
2164 << " else\n"
2165 << " fieldMask = (((InsnType)1 << numBits) - 1) << startBit;\n"
2166 << " return (insn & fieldMask) >> startBit;\n"
2167 << "}\n"
2168 << "\n"
2169 << "template<typename InsnType>\n"
2170 << "static InsnType fieldFromInstruction(InsnType insn, unsigned "
2171 "startBit,\n"
2172 << " unsigned numBits, "
2173 "std::false_type) {\n"
2174 << " assert(startBit + numBits <= InsnType::max_size_in_bits && "
2175 "\"Instruction field out of bounds!\");\n"
2176 << " InsnType fieldMask = InsnType::getBitsSet(0, numBits);\n"
2177 << " return (insn >> startBit) & fieldMask;\n"
2178 << "}\n"
2179 << "\n"
2180 << "template<typename InsnType>\n"
2181 << "static InsnType fieldFromInstruction(InsnType insn, unsigned "
2182 "startBit,\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002183 << " unsigned numBits) {\n"
Daniel Sandersd300ba12018-10-23 17:23:31 +00002184 << " return fieldFromInstruction(insn, startBit, numBits, "
2185 "std::is_integral<InsnType>());\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002186 << "}\n\n";
2187}
Owen Anderson4e818902011-02-18 21:51:29 +00002188
Jim Grosbachecaef492012-08-14 19:06:05 +00002189// emitDecodeInstruction - Emit the templated helper function
2190// decodeInstruction().
2191static void emitDecodeInstruction(formatted_raw_ostream &OS) {
2192 OS << "template<typename InsnType>\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002193 << "static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], "
2194 "MCInst &MI,\n"
2195 << " InsnType insn, uint64_t "
2196 "Address,\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002197 << " const void *DisAsm,\n"
2198 << " const MCSubtargetInfo &STI) {\n"
Michael Kupersteindb0712f2015-05-26 10:47:10 +00002199 << " const FeatureBitset& Bits = STI.getFeatureBits();\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002200 << "\n"
2201 << " const uint8_t *Ptr = DecodeTable;\n"
Daniel Sanders4c252222019-06-18 23:34:46 +00002202 << " InsnType CurFieldValue = 0;\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002203 << " DecodeStatus S = MCDisassembler::Success;\n"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002204 << " while (true) {\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002205 << " ptrdiff_t Loc = Ptr - DecodeTable;\n"
2206 << " switch (*Ptr) {\n"
2207 << " default:\n"
2208 << " errs() << Loc << \": Unexpected decode table opcode!\\n\";\n"
2209 << " return MCDisassembler::Fail;\n"
2210 << " case MCD::OPC_ExtractField: {\n"
2211 << " unsigned Start = *++Ptr;\n"
2212 << " unsigned Len = *++Ptr;\n"
2213 << " ++Ptr;\n"
2214 << " CurFieldValue = fieldFromInstruction(insn, Start, Len);\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002215 << " LLVM_DEBUG(dbgs() << Loc << \": OPC_ExtractField(\" << Start << "
2216 "\", \"\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002217 << " << Len << \"): \" << CurFieldValue << \"\\n\");\n"
2218 << " break;\n"
2219 << " }\n"
2220 << " case MCD::OPC_FilterValue: {\n"
2221 << " // Decode the field value.\n"
2222 << " unsigned Len;\n"
2223 << " InsnType Val = decodeULEB128(++Ptr, &Len);\n"
2224 << " Ptr += Len;\n"
Sander de Smalen13f94252018-07-05 10:39:15 +00002225 << " // NumToSkip is a plain 24-bit integer.\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002226 << " unsigned NumToSkip = *Ptr++;\n"
2227 << " NumToSkip |= (*Ptr++) << 8;\n"
Sander de Smalen13f94252018-07-05 10:39:15 +00002228 << " NumToSkip |= (*Ptr++) << 16;\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002229 << "\n"
2230 << " // Perform the filter operation.\n"
2231 << " if (Val != CurFieldValue)\n"
2232 << " Ptr += NumToSkip;\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002233 << " LLVM_DEBUG(dbgs() << Loc << \": OPC_FilterValue(\" << Val << "
2234 "\", \" << NumToSkip\n"
2235 << " << \"): \" << ((Val != CurFieldValue) ? \"FAIL:\" "
2236 ": \"PASS:\")\n"
2237 << " << \" continuing at \" << (Ptr - DecodeTable) << "
2238 "\"\\n\");\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002239 << "\n"
2240 << " break;\n"
2241 << " }\n"
2242 << " case MCD::OPC_CheckField: {\n"
2243 << " unsigned Start = *++Ptr;\n"
2244 << " unsigned Len = *++Ptr;\n"
2245 << " InsnType FieldValue = fieldFromInstruction(insn, Start, Len);\n"
2246 << " // Decode the field value.\n"
Daniel Sanders4c252222019-06-18 23:34:46 +00002247 << " InsnType ExpectedValue = decodeULEB128(++Ptr, &Len);\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002248 << " Ptr += Len;\n"
Sander de Smalen13f94252018-07-05 10:39:15 +00002249 << " // NumToSkip is a plain 24-bit integer.\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002250 << " unsigned NumToSkip = *Ptr++;\n"
2251 << " NumToSkip |= (*Ptr++) << 8;\n"
Sander de Smalen13f94252018-07-05 10:39:15 +00002252 << " NumToSkip |= (*Ptr++) << 16;\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002253 << "\n"
2254 << " // If the actual and expected values don't match, skip.\n"
2255 << " if (ExpectedValue != FieldValue)\n"
2256 << " Ptr += NumToSkip;\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002257 << " LLVM_DEBUG(dbgs() << Loc << \": OPC_CheckField(\" << Start << "
2258 "\", \"\n"
2259 << " << Len << \", \" << ExpectedValue << \", \" << "
2260 "NumToSkip\n"
2261 << " << \"): FieldValue = \" << FieldValue << \", "
2262 "ExpectedValue = \"\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002263 << " << ExpectedValue << \": \"\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002264 << " << ((ExpectedValue == FieldValue) ? \"PASS\\n\" : "
2265 "\"FAIL\\n\"));\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002266 << " break;\n"
2267 << " }\n"
2268 << " case MCD::OPC_CheckPredicate: {\n"
2269 << " unsigned Len;\n"
2270 << " // Decode the Predicate Index value.\n"
2271 << " unsigned PIdx = decodeULEB128(++Ptr, &Len);\n"
2272 << " Ptr += Len;\n"
Sander de Smalen13f94252018-07-05 10:39:15 +00002273 << " // NumToSkip is a plain 24-bit integer.\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002274 << " unsigned NumToSkip = *Ptr++;\n"
2275 << " NumToSkip |= (*Ptr++) << 8;\n"
Sander de Smalen13f94252018-07-05 10:39:15 +00002276 << " NumToSkip |= (*Ptr++) << 16;\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002277 << " // Check the predicate.\n"
2278 << " bool Pred;\n"
2279 << " if (!(Pred = checkDecoderPredicate(PIdx, Bits)))\n"
2280 << " Ptr += NumToSkip;\n"
2281 << " (void)Pred;\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002282 << " LLVM_DEBUG(dbgs() << Loc << \": OPC_CheckPredicate(\" << PIdx "
2283 "<< \"): \"\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002284 << " << (Pred ? \"PASS\\n\" : \"FAIL\\n\"));\n"
2285 << "\n"
2286 << " break;\n"
2287 << " }\n"
2288 << " case MCD::OPC_Decode: {\n"
2289 << " unsigned Len;\n"
2290 << " // Decode the Opcode value.\n"
2291 << " unsigned Opc = decodeULEB128(++Ptr, &Len);\n"
2292 << " Ptr += Len;\n"
2293 << " unsigned DecodeIdx = decodeULEB128(Ptr, &Len);\n"
2294 << " Ptr += Len;\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002295 << "\n"
Cameron Esfahanif97999d2015-08-11 01:15:07 +00002296 << " MI.clear();\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002297 << " MI.setOpcode(Opc);\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002298 << " bool DecodeComplete;\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002299 << " S = decodeToMCInst(S, DecodeIdx, insn, MI, Address, DisAsm, "
2300 "DecodeComplete);\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002301 << " assert(DecodeComplete);\n"
2302 << "\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002303 << " LLVM_DEBUG(dbgs() << Loc << \": OPC_Decode: opcode \" << Opc\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002304 << " << \", using decoder \" << DecodeIdx << \": \"\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002305 << " << (S != MCDisassembler::Fail ? \"PASS\" : "
2306 "\"FAIL\") << \"\\n\");\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002307 << " return S;\n"
2308 << " }\n"
2309 << " case MCD::OPC_TryDecode: {\n"
2310 << " unsigned Len;\n"
2311 << " // Decode the Opcode value.\n"
2312 << " unsigned Opc = decodeULEB128(++Ptr, &Len);\n"
2313 << " Ptr += Len;\n"
2314 << " unsigned DecodeIdx = decodeULEB128(Ptr, &Len);\n"
2315 << " Ptr += Len;\n"
Sander de Smalen13f94252018-07-05 10:39:15 +00002316 << " // NumToSkip is a plain 24-bit integer.\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002317 << " unsigned NumToSkip = *Ptr++;\n"
2318 << " NumToSkip |= (*Ptr++) << 8;\n"
Sander de Smalen13f94252018-07-05 10:39:15 +00002319 << " NumToSkip |= (*Ptr++) << 16;\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002320 << "\n"
2321 << " // Perform the decode operation.\n"
2322 << " MCInst TmpMI;\n"
2323 << " TmpMI.setOpcode(Opc);\n"
2324 << " bool DecodeComplete;\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002325 << " S = decodeToMCInst(S, DecodeIdx, insn, TmpMI, Address, DisAsm, "
2326 "DecodeComplete);\n"
2327 << " LLVM_DEBUG(dbgs() << Loc << \": OPC_TryDecode: opcode \" << "
2328 "Opc\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002329 << " << \", using decoder \" << DecodeIdx << \": \");\n"
2330 << "\n"
2331 << " if (DecodeComplete) {\n"
2332 << " // Decoding complete.\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002333 << " LLVM_DEBUG(dbgs() << (S != MCDisassembler::Fail ? \"PASS\" : "
2334 "\"FAIL\") << \"\\n\");\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002335 << " MI = TmpMI;\n"
2336 << " return S;\n"
2337 << " } else {\n"
2338 << " assert(S == MCDisassembler::Fail);\n"
2339 << " // If the decoding was incomplete, skip.\n"
2340 << " Ptr += NumToSkip;\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002341 << " LLVM_DEBUG(dbgs() << \"FAIL: continuing at \" << (Ptr - "
2342 "DecodeTable) << \"\\n\");\n"
2343 << " // Reset decode status. This also drops a SoftFail status "
2344 "that could be\n"
Petr Pavlu182b0572015-07-15 08:04:27 +00002345 << " // set before the decode attempt.\n"
2346 << " S = MCDisassembler::Success;\n"
2347 << " }\n"
2348 << " break;\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002349 << " }\n"
2350 << " case MCD::OPC_SoftFail: {\n"
2351 << " // Decode the mask values.\n"
2352 << " unsigned Len;\n"
2353 << " InsnType PositiveMask = decodeULEB128(++Ptr, &Len);\n"
2354 << " Ptr += Len;\n"
2355 << " InsnType NegativeMask = decodeULEB128(Ptr, &Len);\n"
2356 << " Ptr += Len;\n"
2357 << " bool Fail = (insn & PositiveMask) || (~insn & NegativeMask);\n"
2358 << " if (Fail)\n"
2359 << " S = MCDisassembler::SoftFail;\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002360 << " LLVM_DEBUG(dbgs() << Loc << \": OPC_SoftFail: \" << (Fail ? "
2361 "\"FAIL\\n\":\"PASS\\n\"));\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002362 << " break;\n"
2363 << " }\n"
2364 << " case MCD::OPC_Fail: {\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002365 << " LLVM_DEBUG(dbgs() << Loc << \": OPC_Fail\\n\");\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002366 << " return MCDisassembler::Fail;\n"
2367 << " }\n"
2368 << " }\n"
2369 << " }\n"
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002370 << " llvm_unreachable(\"bogosity detected in disassembler state "
2371 "machine!\");\n"
Jim Grosbachecaef492012-08-14 19:06:05 +00002372 << "}\n\n";
Owen Anderson4e818902011-02-18 21:51:29 +00002373}
2374
2375// Emits disassembler code for instruction decoding.
Craig Topper82d0d5f2012-03-16 01:19:24 +00002376void FixedLenDecoderEmitter::run(raw_ostream &o) {
Jim Grosbachecaef492012-08-14 19:06:05 +00002377 formatted_raw_ostream OS(o);
2378 OS << "#include \"llvm/MC/MCInst.h\"\n";
2379 OS << "#include \"llvm/Support/Debug.h\"\n";
2380 OS << "#include \"llvm/Support/DataTypes.h\"\n";
2381 OS << "#include \"llvm/Support/LEB128.h\"\n";
2382 OS << "#include \"llvm/Support/raw_ostream.h\"\n";
2383 OS << "#include <assert.h>\n";
2384 OS << '\n';
2385 OS << "namespace llvm {\n\n";
2386
2387 emitFieldFromInstruction(OS);
Owen Anderson4e818902011-02-18 21:51:29 +00002388
Hal Finkel81e6fcc2013-12-17 22:37:50 +00002389 Target.reverseBitsForLittleEndianEncoding();
2390
Owen Andersonc78e03c2011-07-19 21:06:00 +00002391 // Parameterize the decoders based on namespace and instruction width.
James Molloy88a5fbf2019-09-19 13:39:54 +00002392 std::set<StringRef> HwModeNames;
Daniel Sandersa39df2e2018-12-13 16:17:54 +00002393 const auto &NumberedInstructions = Target.getInstructionsByEnumValue();
2394 NumberedEncodings.reserve(NumberedInstructions.size());
Daniel Sanders4c252222019-06-18 23:34:46 +00002395 DenseMap<Record *, unsigned> IndexOfInstruction;
James Molloy88a5fbf2019-09-19 13:39:54 +00002396 // First, collect all HwModes referenced by the target.
Daniel Sanders4c252222019-06-18 23:34:46 +00002397 for (const auto &NumberedInstruction : NumberedInstructions) {
2398 IndexOfInstruction[NumberedInstruction->TheDef] = NumberedEncodings.size();
James Molloy88a5fbf2019-09-19 13:39:54 +00002399
2400 if (const RecordVal *RV =
2401 NumberedInstruction->TheDef->getValue("EncodingInfos")) {
2402 if (auto *DI = dyn_cast_or_null<DefInit>(RV->getValue())) {
2403 const CodeGenHwModes &HWM = Target.getHwModes();
2404 EncodingInfoByHwMode EBM(DI->getDef(), HWM);
2405 for (auto &KV : EBM.Map)
2406 HwModeNames.insert(HWM.getMode(KV.first).Name);
2407 }
2408 }
2409 }
2410
2411 // If HwModeNames is empty, add the empty string so we always have one HwMode.
2412 if (HwModeNames.empty())
2413 HwModeNames.insert("");
2414
2415 for (const auto &NumberedInstruction : NumberedInstructions) {
2416 IndexOfInstruction[NumberedInstruction->TheDef] = NumberedEncodings.size();
2417
2418 if (const RecordVal *RV =
2419 NumberedInstruction->TheDef->getValue("EncodingInfos")) {
2420 if (DefInit *DI = dyn_cast_or_null<DefInit>(RV->getValue())) {
2421 const CodeGenHwModes &HWM = Target.getHwModes();
2422 EncodingInfoByHwMode EBM(DI->getDef(), HWM);
2423 for (auto &KV : EBM.Map) {
2424 NumberedEncodings.emplace_back(KV.second, NumberedInstruction,
2425 HWM.getMode(KV.first).Name);
2426 HwModeNames.insert(HWM.getMode(KV.first).Name);
2427 }
2428 continue;
2429 }
2430 }
2431 // This instruction is encoded the same on all HwModes. Emit it for all
2432 // HwModes.
2433 for (StringRef HwModeName : HwModeNames)
2434 NumberedEncodings.emplace_back(NumberedInstruction->TheDef,
2435 NumberedInstruction, HwModeName);
Daniel Sanders4c252222019-06-18 23:34:46 +00002436 }
2437 for (const auto &NumberedAlias : RK.getAllDerivedDefinitions("AdditionalEncoding"))
2438 NumberedEncodings.emplace_back(
2439 NumberedAlias,
2440 &Target.getInstruction(NumberedAlias->getValueAsDef("AliasOf")));
Daniel Sandersa39df2e2018-12-13 16:17:54 +00002441
Daniel Sanders4c252222019-06-18 23:34:46 +00002442 std::map<std::pair<std::string, unsigned>, std::vector<EncodingIDAndOpcode>>
2443 OpcMap;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002444 std::map<unsigned, std::vector<OperandInfo>> Operands;
Owen Andersonc78e03c2011-07-19 21:06:00 +00002445
Daniel Sandersa39df2e2018-12-13 16:17:54 +00002446 for (unsigned i = 0; i < NumberedEncodings.size(); ++i) {
Daniel Sanders4c252222019-06-18 23:34:46 +00002447 const Record *EncodingDef = NumberedEncodings[i].EncodingDef;
Daniel Sandersa39df2e2018-12-13 16:17:54 +00002448 const CodeGenInstruction *Inst = NumberedEncodings[i].Inst;
Craig Topper48c112b2012-03-16 05:58:09 +00002449 const Record *Def = Inst->TheDef;
Daniel Sanders4c252222019-06-18 23:34:46 +00002450 unsigned Size = EncodingDef->getValueAsInt("Size");
Owen Andersonc78e03c2011-07-19 21:06:00 +00002451 if (Def->getValueAsString("Namespace") == "TargetOpcode" ||
2452 Def->getValueAsBit("isPseudo") ||
2453 Def->getValueAsBit("isAsmParserOnly") ||
Daniel Sanders4c252222019-06-18 23:34:46 +00002454 Def->getValueAsBit("isCodeGenOnly")) {
2455 NumEncodingsLackingDisasm++;
Owen Andersonc78e03c2011-07-19 21:06:00 +00002456 continue;
Daniel Sanders4c252222019-06-18 23:34:46 +00002457 }
Owen Andersonc78e03c2011-07-19 21:06:00 +00002458
Daniel Sanders4c252222019-06-18 23:34:46 +00002459 if (i < NumberedInstructions.size())
2460 NumInstructions++;
2461 NumEncodings++;
2462
James Molloy88a5fbf2019-09-19 13:39:54 +00002463 if (!Size)
2464 continue;
Owen Andersonc78e03c2011-07-19 21:06:00 +00002465
James Molloy88a5fbf2019-09-19 13:39:54 +00002466 if (populateInstruction(Target, *EncodingDef, *Inst, i, Operands)) {
2467 std::string DecoderNamespace =
Benjamin Krameradcd0262020-01-28 20:23:46 +01002468 std::string(EncodingDef->getValueAsString("DecoderNamespace"));
James Molloy88a5fbf2019-09-19 13:39:54 +00002469 if (!NumberedEncodings[i].HwModeName.empty())
2470 DecoderNamespace +=
2471 std::string("_") + NumberedEncodings[i].HwModeName.str();
2472 OpcMap[std::make_pair(DecoderNamespace, Size)].emplace_back(
2473 i, IndexOfInstruction.find(Def)->second);
2474 } else {
2475 NumEncodingsOmitted++;
Owen Andersonc78e03c2011-07-19 21:06:00 +00002476 }
2477 }
2478
Jim Grosbachecaef492012-08-14 19:06:05 +00002479 DecoderTableInfo TableInfo;
Craig Topper1f7604d2014-12-13 05:12:19 +00002480 for (const auto &Opc : OpcMap) {
Owen Andersonc78e03c2011-07-19 21:06:00 +00002481 // Emit the decoder for this namespace+width combination.
Daniel Sanders4c252222019-06-18 23:34:46 +00002482 ArrayRef<EncodingAndInst> NumberedEncodingsRef(
2483 NumberedEncodings.data(), NumberedEncodings.size());
Daniel Sandersa39df2e2018-12-13 16:17:54 +00002484 FilterChooser FC(NumberedEncodingsRef, Opc.second, Operands,
2485 8 * Opc.first.second, this);
Jim Grosbachecaef492012-08-14 19:06:05 +00002486
2487 // The decode table is cleared for each top level decoder function. The
2488 // predicates and decoders themselves, however, are shared across all
2489 // decoders to give more opportunities for uniqueing.
2490 TableInfo.Table.clear();
2491 TableInfo.FixupStack.clear();
2492 TableInfo.Table.reserve(16384);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002493 TableInfo.FixupStack.emplace_back();
Jim Grosbachecaef492012-08-14 19:06:05 +00002494 FC.emitTableEntries(TableInfo);
2495 // Any NumToSkip fixups in the top level scope can resolve to the
2496 // OPC_Fail at the end of the table.
2497 assert(TableInfo.FixupStack.size() == 1 && "fixup stack phasing error!");
2498 // Resolve any NumToSkip fixups in the current scope.
2499 resolveTableFixups(TableInfo.Table, TableInfo.FixupStack.back(),
2500 TableInfo.Table.size());
2501 TableInfo.FixupStack.clear();
2502
2503 TableInfo.Table.push_back(MCD::OPC_Fail);
2504
2505 // Print the table to the output stream.
Craig Topper1f7604d2014-12-13 05:12:19 +00002506 emitTable(OS, TableInfo.Table, 0, FC.getBitWidth(), Opc.first.first);
Jim Grosbachecaef492012-08-14 19:06:05 +00002507 OS.flush();
Owen Andersonc78e03c2011-07-19 21:06:00 +00002508 }
Owen Anderson4e818902011-02-18 21:51:29 +00002509
Jim Grosbachecaef492012-08-14 19:06:05 +00002510 // Emit the predicate function.
2511 emitPredicateFunction(OS, TableInfo.Predicates, 0);
2512
2513 // Emit the decoder function.
2514 emitDecoderFunction(OS, TableInfo.Decoders, 0);
2515
2516 // Emit the main entry point for the decoder, decodeInstruction().
2517 emitDecodeInstruction(OS);
2518
Bjorn Pettersson6bd3a9e2019-08-25 10:47:30 +00002519 OS << "\n} // end namespace llvm\n";
Owen Anderson4e818902011-02-18 21:51:29 +00002520}
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +00002521
2522namespace llvm {
2523
2524void EmitFixedLenDecoder(RecordKeeper &RK, raw_ostream &OS,
Benjamin Kramerc321e532016-06-08 19:09:22 +00002525 const std::string &PredicateNamespace,
2526 const std::string &GPrefix,
2527 const std::string &GPostfix, const std::string &ROK,
2528 const std::string &RFail, const std::string &L) {
Jakob Stoklund Olesene6aed132012-06-11 15:37:55 +00002529 FixedLenDecoderEmitter(RK, PredicateNamespace, GPrefix, GPostfix,
2530 ROK, RFail, L).run(OS);
2531}
2532
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002533} // end namespace llvm