[Alignment][NFC] Migrate Instructions to Align
[llvm-core.git] / include / llvm / Target / Target.td
blob93a6135928828da8967a67ad248c5482cb0905e5
1 //===- Target.td - Target Independent TableGen interface ---*- tablegen -*-===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines the target-independent interfaces which should be
10 // implemented by each target which is using a TableGen based code generator.
12 //===----------------------------------------------------------------------===//
14 // Include all information about LLVM intrinsics.
15 include "llvm/IR/Intrinsics.td"
17 //===----------------------------------------------------------------------===//
18 // Register file description - These classes are used to fill in the target
19 // description classes.
21 class RegisterClass; // Forward def
23 class HwMode<string FS> {
24   // A string representing subtarget features that turn on this HW mode.
25   // For example, "+feat1,-feat2" will indicate that the mode is active
26   // when "feat1" is enabled and "feat2" is disabled at the same time.
27   // Any other features are not checked.
28   // When multiple modes are used, they should be mutually exclusive,
29   // otherwise the results are unpredictable.
30   string Features = FS;
33 // A special mode recognized by tablegen. This mode is considered active
34 // when no other mode is active. For targets that do not use specific hw
35 // modes, this is the only mode.
36 def DefaultMode : HwMode<"">;
38 // A class used to associate objects with HW modes. It is only intended to
39 // be used as a base class, where the derived class should contain a member
40 // "Objects", which is a list of the same length as the list of modes.
41 // The n-th element on the Objects list will be associated with the n-th
42 // element on the Modes list.
43 class HwModeSelect<list<HwMode> Ms> {
44   list<HwMode> Modes = Ms;
47 // A common class that implements a counterpart of ValueType, which is
48 // dependent on a HW mode. This class inherits from ValueType itself,
49 // which makes it possible to use objects of this class where ValueType
50 // objects could be used. This is specifically applicable to selection
51 // patterns.
52 class ValueTypeByHwMode<list<HwMode> Ms, list<ValueType> Ts>
53     : HwModeSelect<Ms>, ValueType<0, 0> {
54   // The length of this list must be the same as the length of Ms.
55   list<ValueType> Objects = Ts;
58 // A class representing the register size, spill size and spill alignment
59 // in bits of a register.
60 class RegInfo<int RS, int SS, int SA> {
61   int RegSize = RS;         // Register size in bits.
62   int SpillSize = SS;       // Spill slot size in bits.
63   int SpillAlignment = SA;  // Spill slot alignment in bits.
66 // The register size/alignment information, parameterized by a HW mode.
67 class RegInfoByHwMode<list<HwMode> Ms = [], list<RegInfo> Ts = []>
68     : HwModeSelect<Ms> {
69   // The length of this list must be the same as the length of Ms.
70   list<RegInfo> Objects = Ts;
73 // SubRegIndex - Use instances of SubRegIndex to identify subregisters.
74 class SubRegIndex<int size, int offset = 0> {
75   string Namespace = "";
77   // Size - Size (in bits) of the sub-registers represented by this index.
78   int Size = size;
80   // Offset - Offset of the first bit that is part of this sub-register index.
81   // Set it to -1 if the same index is used to represent sub-registers that can
82   // be at different offsets (for example when using an index to access an
83   // element in a register tuple).
84   int Offset = offset;
86   // ComposedOf - A list of two SubRegIndex instances, [A, B].
87   // This indicates that this SubRegIndex is the result of composing A and B.
88   // See ComposedSubRegIndex.
89   list<SubRegIndex> ComposedOf = [];
91   // CoveringSubRegIndices - A list of two or more sub-register indexes that
92   // cover this sub-register.
93   //
94   // This field should normally be left blank as TableGen can infer it.
95   //
96   // TableGen automatically detects sub-registers that straddle the registers
97   // in the SubRegs field of a Register definition. For example:
98   //
99   //   Q0    = dsub_0 -> D0, dsub_1 -> D1
100   //   Q1    = dsub_0 -> D2, dsub_1 -> D3
101   //   D1_D2 = dsub_0 -> D1, dsub_1 -> D2
102   //   QQ0   = qsub_0 -> Q0, qsub_1 -> Q1
103   //
104   // TableGen will infer that D1_D2 is a sub-register of QQ0. It will be given
105   // the synthetic index dsub_1_dsub_2 unless some SubRegIndex is defined with
106   // CoveringSubRegIndices = [dsub_1, dsub_2].
107   list<SubRegIndex> CoveringSubRegIndices = [];
110 // ComposedSubRegIndex - A sub-register that is the result of composing A and B.
111 // Offset is set to the sum of A and B's Offsets. Size is set to B's Size.
112 class ComposedSubRegIndex<SubRegIndex A, SubRegIndex B>
113   : SubRegIndex<B.Size, !if(!eq(A.Offset, -1), -1,
114                         !if(!eq(B.Offset, -1), -1,
115                             !add(A.Offset, B.Offset)))> {
116   // See SubRegIndex.
117   let ComposedOf = [A, B];
120 // RegAltNameIndex - The alternate name set to use for register operands of
121 // this register class when printing.
122 class RegAltNameIndex {
123   string Namespace = "";
125   // A set to be used if the name for a register is not defined in this set.
126   // This allows creating name sets with only a few alternative names.
127   RegAltNameIndex FallbackRegAltNameIndex = ?;
129 def NoRegAltName : RegAltNameIndex;
131 // Register - You should define one instance of this class for each register
132 // in the target machine.  String n will become the "name" of the register.
133 class Register<string n, list<string> altNames = []> {
134   string Namespace = "";
135   string AsmName = n;
136   list<string> AltNames = altNames;
138   // Aliases - A list of registers that this register overlaps with.  A read or
139   // modification of this register can potentially read or modify the aliased
140   // registers.
141   list<Register> Aliases = [];
143   // SubRegs - A list of registers that are parts of this register. Note these
144   // are "immediate" sub-registers and the registers within the list do not
145   // themselves overlap. e.g. For X86, EAX's SubRegs list contains only [AX],
146   // not [AX, AH, AL].
147   list<Register> SubRegs = [];
149   // SubRegIndices - For each register in SubRegs, specify the SubRegIndex used
150   // to address it. Sub-sub-register indices are automatically inherited from
151   // SubRegs.
152   list<SubRegIndex> SubRegIndices = [];
154   // RegAltNameIndices - The alternate name indices which are valid for this
155   // register.
156   list<RegAltNameIndex> RegAltNameIndices = [];
158   // DwarfNumbers - Numbers used internally by gcc/gdb to identify the register.
159   // These values can be determined by locating the <target>.h file in the
160   // directory llvmgcc/gcc/config/<target>/ and looking for REGISTER_NAMES.  The
161   // order of these names correspond to the enumeration used by gcc.  A value of
162   // -1 indicates that the gcc number is undefined and -2 that register number
163   // is invalid for this mode/flavour.
164   list<int> DwarfNumbers = [];
166   // CostPerUse - Additional cost of instructions using this register compared
167   // to other registers in its class. The register allocator will try to
168   // minimize the number of instructions using a register with a CostPerUse.
169   // This is used by the x86-64 and ARM Thumb targets where some registers
170   // require larger instruction encodings.
171   int CostPerUse = 0;
173   // CoveredBySubRegs - When this bit is set, the value of this register is
174   // completely determined by the value of its sub-registers.  For example, the
175   // x86 register AX is covered by its sub-registers AL and AH, but EAX is not
176   // covered by its sub-register AX.
177   bit CoveredBySubRegs = 0;
179   // HWEncoding - The target specific hardware encoding for this register.
180   bits<16> HWEncoding = 0;
182   bit isArtificial = 0;
185 // RegisterWithSubRegs - This can be used to define instances of Register which
186 // need to specify sub-registers.
187 // List "subregs" specifies which registers are sub-registers to this one. This
188 // is used to populate the SubRegs and AliasSet fields of TargetRegisterDesc.
189 // This allows the code generator to be careful not to put two values with
190 // overlapping live ranges into registers which alias.
191 class RegisterWithSubRegs<string n, list<Register> subregs> : Register<n> {
192   let SubRegs = subregs;
195 // DAGOperand - An empty base class that unifies RegisterClass's and other forms
196 // of Operand's that are legal as type qualifiers in DAG patterns.  This should
197 // only ever be used for defining multiclasses that are polymorphic over both
198 // RegisterClass's and other Operand's.
199 class DAGOperand {
200   string OperandNamespace = "MCOI";
201   string DecoderMethod = "";
204 // RegisterClass - Now that all of the registers are defined, and aliases
205 // between registers are defined, specify which registers belong to which
206 // register classes.  This also defines the default allocation order of
207 // registers by register allocators.
209 class RegisterClass<string namespace, list<ValueType> regTypes, int alignment,
210                     dag regList, RegAltNameIndex idx = NoRegAltName>
211   : DAGOperand {
212   string Namespace = namespace;
214   // The register size/alignment information, parameterized by a HW mode.
215   RegInfoByHwMode RegInfos;
217   // RegType - Specify the list ValueType of the registers in this register
218   // class.  Note that all registers in a register class must have the same
219   // ValueTypes.  This is a list because some targets permit storing different
220   // types in same register, for example vector values with 128-bit total size,
221   // but different count/size of items, like SSE on x86.
222   //
223   list<ValueType> RegTypes = regTypes;
225   // Size - Specify the spill size in bits of the registers.  A default value of
226   // zero lets tablgen pick an appropriate size.
227   int Size = 0;
229   // Alignment - Specify the alignment required of the registers when they are
230   // stored or loaded to memory.
231   //
232   int Alignment = alignment;
234   // CopyCost - This value is used to specify the cost of copying a value
235   // between two registers in this register class. The default value is one
236   // meaning it takes a single instruction to perform the copying. A negative
237   // value means copying is extremely expensive or impossible.
238   int CopyCost = 1;
240   // MemberList - Specify which registers are in this class.  If the
241   // allocation_order_* method are not specified, this also defines the order of
242   // allocation used by the register allocator.
243   //
244   dag MemberList = regList;
246   // AltNameIndex - The alternate register name to use when printing operands
247   // of this register class. Every register in the register class must have
248   // a valid alternate name for the given index.
249   RegAltNameIndex altNameIndex = idx;
251   // isAllocatable - Specify that the register class can be used for virtual
252   // registers and register allocation.  Some register classes are only used to
253   // model instruction operand constraints, and should have isAllocatable = 0.
254   bit isAllocatable = 1;
256   // AltOrders - List of alternative allocation orders. The default order is
257   // MemberList itself, and that is good enough for most targets since the
258   // register allocators automatically remove reserved registers and move
259   // callee-saved registers to the end.
260   list<dag> AltOrders = [];
262   // AltOrderSelect - The body of a function that selects the allocation order
263   // to use in a given machine function. The code will be inserted in a
264   // function like this:
265   //
266   //   static inline unsigned f(const MachineFunction &MF) { ... }
267   //
268   // The function should return 0 to select the default order defined by
269   // MemberList, 1 to select the first AltOrders entry and so on.
270   code AltOrderSelect = [{}];
272   // Specify allocation priority for register allocators using a greedy
273   // heuristic. Classes with higher priority values are assigned first. This is
274   // useful as it is sometimes beneficial to assign registers to highly
275   // constrained classes first. The value has to be in the range [0,63].
276   int AllocationPriority = 0;
278   // The diagnostic type to present when referencing this operand in a match
279   // failure error message. If this is empty, the default Match_InvalidOperand
280   // diagnostic type will be used. If this is "<name>", a Match_<name> enum
281   // value will be generated and used for this operand type. The target
282   // assembly parser is responsible for converting this into a user-facing
283   // diagnostic message.
284   string DiagnosticType = "";
286   // A diagnostic message to emit when an invalid value is provided for this
287   // register class when it is being used an an assembly operand. If this is
288   // non-empty, an anonymous diagnostic type enum value will be generated, and
289   // the assembly matcher will provide a function to map from diagnostic types
290   // to message strings.
291   string DiagnosticString = "";
294 // The memberList in a RegisterClass is a dag of set operations. TableGen
295 // evaluates these set operations and expand them into register lists. These
296 // are the most common operation, see test/TableGen/SetTheory.td for more
297 // examples of what is possible:
299 // (add R0, R1, R2) - Set Union. Each argument can be an individual register, a
300 // register class, or a sub-expression. This is also the way to simply list
301 // registers.
303 // (sub GPR, SP) - Set difference. Subtract the last arguments from the first.
305 // (and GPR, CSR) - Set intersection. All registers from the first set that are
306 // also in the second set.
308 // (sequence "R%u", 0, 15) -> [R0, R1, ..., R15]. Generate a sequence of
309 // numbered registers.  Takes an optional 4th operand which is a stride to use
310 // when generating the sequence.
312 // (shl GPR, 4) - Remove the first N elements.
314 // (trunc GPR, 4) - Truncate after the first N elements.
316 // (rotl GPR, 1) - Rotate N places to the left.
318 // (rotr GPR, 1) - Rotate N places to the right.
320 // (decimate GPR, 2) - Pick every N'th element, starting with the first.
322 // (interleave A, B, ...) - Interleave the elements from each argument list.
324 // All of these operators work on ordered sets, not lists. That means
325 // duplicates are removed from sub-expressions.
327 // Set operators. The rest is defined in TargetSelectionDAG.td.
328 def sequence;
329 def decimate;
330 def interleave;
332 // RegisterTuples - Automatically generate super-registers by forming tuples of
333 // sub-registers. This is useful for modeling register sequence constraints
334 // with pseudo-registers that are larger than the architectural registers.
336 // The sub-register lists are zipped together:
338 //   def EvenOdd : RegisterTuples<[sube, subo], [(add R0, R2), (add R1, R3)]>;
340 // Generates the same registers as:
342 //   let SubRegIndices = [sube, subo] in {
343 //     def R0_R1 : RegisterWithSubRegs<"", [R0, R1]>;
344 //     def R2_R3 : RegisterWithSubRegs<"", [R2, R3]>;
345 //   }
347 // The generated pseudo-registers inherit super-classes and fields from their
348 // first sub-register. Most fields from the Register class are inferred, and
349 // the AsmName and Dwarf numbers are cleared.
351 // RegisterTuples instances can be used in other set operations to form
352 // register classes and so on. This is the only way of using the generated
353 // registers.
355 // RegNames may be specified to supply asm names for the generated tuples.
356 // If used must have the same size as the list of produced registers.
357 class RegisterTuples<list<SubRegIndex> Indices, list<dag> Regs,
358                      list<string> RegNames = []> {
359   // SubRegs - N lists of registers to be zipped up. Super-registers are
360   // synthesized from the first element of each SubRegs list, the second
361   // element and so on.
362   list<dag> SubRegs = Regs;
364   // SubRegIndices - N SubRegIndex instances. This provides the names of the
365   // sub-registers in the synthesized super-registers.
366   list<SubRegIndex> SubRegIndices = Indices;
368   // List of asm names for the generated tuple registers.
369   list<string> RegAsmNames = RegNames;
373 //===----------------------------------------------------------------------===//
374 // DwarfRegNum - This class provides a mapping of the llvm register enumeration
375 // to the register numbering used by gcc and gdb.  These values are used by a
376 // debug information writer to describe where values may be located during
377 // execution.
378 class DwarfRegNum<list<int> Numbers> {
379   // DwarfNumbers - Numbers used internally by gcc/gdb to identify the register.
380   // These values can be determined by locating the <target>.h file in the
381   // directory llvmgcc/gcc/config/<target>/ and looking for REGISTER_NAMES.  The
382   // order of these names correspond to the enumeration used by gcc.  A value of
383   // -1 indicates that the gcc number is undefined and -2 that register number
384   // is invalid for this mode/flavour.
385   list<int> DwarfNumbers = Numbers;
388 // DwarfRegAlias - This class declares that a given register uses the same dwarf
389 // numbers as another one. This is useful for making it clear that the two
390 // registers do have the same number. It also lets us build a mapping
391 // from dwarf register number to llvm register.
392 class DwarfRegAlias<Register reg> {
393       Register DwarfAlias = reg;
396 //===----------------------------------------------------------------------===//
397 // Pull in the common support for MCPredicate (portable scheduling predicates).
399 include "llvm/Target/TargetInstrPredicate.td"
401 //===----------------------------------------------------------------------===//
402 // Pull in the common support for scheduling
404 include "llvm/Target/TargetSchedule.td"
406 class Predicate; // Forward def
408 class InstructionEncoding {
409   // Size of encoded instruction.
410   int Size;
412   // The "namespace" in which this instruction exists, on targets like ARM
413   // which multiple ISA namespaces exist.
414   string DecoderNamespace = "";
416   // List of predicates which will be turned into isel matching code.
417   list<Predicate> Predicates = [];
419   string DecoderMethod = "";
421   // Is the instruction decoder method able to completely determine if the
422   // given instruction is valid or not. If the TableGen definition of the
423   // instruction specifies bitpattern A??B where A and B are static bits, the
424   // hasCompleteDecoder flag says whether the decoder method fully handles the
425   // ?? space, i.e. if it is a final arbiter for the instruction validity.
426   // If not then the decoder attempts to continue decoding when the decoder
427   // method fails.
428   //
429   // This allows to handle situations where the encoding is not fully
430   // orthogonal. Example:
431   // * InstA with bitpattern 0b0000????,
432   // * InstB with bitpattern 0b000000?? but the associated decoder method
433   //   DecodeInstB() returns Fail when ?? is 0b00 or 0b11.
434   //
435   // The decoder tries to decode a bitpattern that matches both InstA and
436   // InstB bitpatterns first as InstB (because it is the most specific
437   // encoding). In the default case (hasCompleteDecoder = 1), when
438   // DecodeInstB() returns Fail the bitpattern gets rejected. By setting
439   // hasCompleteDecoder = 0 in InstB, the decoder is informed that
440   // DecodeInstB() is not able to determine if all possible values of ?? are
441   // valid or not. If DecodeInstB() returns Fail the decoder will attempt to
442   // decode the bitpattern as InstA too.
443   bit hasCompleteDecoder = 1;
446 // Allows specifying an InstructionEncoding by HwMode. If an Instruction specifies
447 // an EncodingByHwMode, its Inst and Size members are ignored and Ts are used
448 // to encode and decode based on HwMode.
449 class EncodingByHwMode<list<HwMode> Ms = [], list<InstructionEncoding> Ts = []>
450     : HwModeSelect<Ms> {
451   // The length of this list must be the same as the length of Ms.
452   list<InstructionEncoding> Objects = Ts;
455 //===----------------------------------------------------------------------===//
456 // Instruction set description - These classes correspond to the C++ classes in
457 // the Target/TargetInstrInfo.h file.
459 class Instruction : InstructionEncoding {
460   string Namespace = "";
462   dag OutOperandList;       // An dag containing the MI def operand list.
463   dag InOperandList;        // An dag containing the MI use operand list.
464   string AsmString = "";    // The .s format to print the instruction with.
466   // Allows specifying a canonical InstructionEncoding by HwMode. If non-empty,
467   // the Inst member of this Instruction is ignored.
468   EncodingByHwMode EncodingInfos;
470   // Pattern - Set to the DAG pattern for this instruction, if we know of one,
471   // otherwise, uninitialized.
472   list<dag> Pattern;
474   // The follow state will eventually be inferred automatically from the
475   // instruction pattern.
477   list<Register> Uses = []; // Default to using no non-operand registers
478   list<Register> Defs = []; // Default to modifying no non-operand registers
480   // Predicates - List of predicates which will be turned into isel matching
481   // code.
482   list<Predicate> Predicates = [];
484   // Size - Size of encoded instruction, or zero if the size cannot be determined
485   // from the opcode.
486   int Size = 0;
488   // Code size, for instruction selection.
489   // FIXME: What does this actually mean?
490   int CodeSize = 0;
492   // Added complexity passed onto matching pattern.
493   int AddedComplexity  = 0;
495   // These bits capture information about the high-level semantics of the
496   // instruction.
497   bit isReturn     = 0;     // Is this instruction a return instruction?
498   bit isBranch     = 0;     // Is this instruction a branch instruction?
499   bit isEHScopeReturn = 0;  // Does this instruction end an EH scope?
500   bit isIndirectBranch = 0; // Is this instruction an indirect branch?
501   bit isCompare    = 0;     // Is this instruction a comparison instruction?
502   bit isMoveImm    = 0;     // Is this instruction a move immediate instruction?
503   bit isMoveReg    = 0;     // Is this instruction a move register instruction?
504   bit isBitcast    = 0;     // Is this instruction a bitcast instruction?
505   bit isSelect     = 0;     // Is this instruction a select instruction?
506   bit isBarrier    = 0;     // Can control flow fall through this instruction?
507   bit isCall       = 0;     // Is this instruction a call instruction?
508   bit isAdd        = 0;     // Is this instruction an add instruction?
509   bit isTrap       = 0;     // Is this instruction a trap instruction?
510   bit canFoldAsLoad = 0;    // Can this be folded as a simple memory operand?
511   bit mayLoad      = ?;     // Is it possible for this inst to read memory?
512   bit mayStore     = ?;     // Is it possible for this inst to write memory?
513   bit mayRaiseFPException = 0; // Can this raise a floating-point exception?
514   bit isConvertibleToThreeAddress = 0;  // Can this 2-addr instruction promote?
515   bit isCommutable = 0;     // Is this 3 operand instruction commutable?
516   bit isTerminator = 0;     // Is this part of the terminator for a basic block?
517   bit isReMaterializable = 0; // Is this instruction re-materializable?
518   bit isPredicable = 0;     // 1 means this instruction is predicable
519                             // even if it does not have any operand
520                             // tablegen can identify as a predicate
521   bit isUnpredicable = 0;   // 1 means this instruction is not predicable
522                             // even if it _does_ have a predicate operand
523   bit hasDelaySlot = 0;     // Does this instruction have an delay slot?
524   bit usesCustomInserter = 0; // Pseudo instr needing special help.
525   bit hasPostISelHook = 0;  // To be *adjusted* after isel by target hook.
526   bit hasCtrlDep   = 0;     // Does this instruction r/w ctrl-flow chains?
527   bit isNotDuplicable = 0;  // Is it unsafe to duplicate this instruction?
528   bit isConvergent = 0;     // Is this instruction convergent?
529   bit isAsCheapAsAMove = 0; // As cheap (or cheaper) than a move instruction.
530   bit hasExtraSrcRegAllocReq = 0; // Sources have special regalloc requirement?
531   bit hasExtraDefRegAllocReq = 0; // Defs have special regalloc requirement?
532   bit isRegSequence = 0;    // Is this instruction a kind of reg sequence?
533                             // If so, make sure to override
534                             // TargetInstrInfo::getRegSequenceLikeInputs.
535   bit isPseudo     = 0;     // Is this instruction a pseudo-instruction?
536                             // If so, won't have encoding information for
537                             // the [MC]CodeEmitter stuff.
538   bit isExtractSubreg = 0;  // Is this instruction a kind of extract subreg?
539                              // If so, make sure to override
540                              // TargetInstrInfo::getExtractSubregLikeInputs.
541   bit isInsertSubreg = 0;   // Is this instruction a kind of insert subreg?
542                             // If so, make sure to override
543                             // TargetInstrInfo::getInsertSubregLikeInputs.
544   bit variadicOpsAreDefs = 0; // Are variadic operands definitions?
546   // Does the instruction have side effects that are not captured by any
547   // operands of the instruction or other flags?
548   bit hasSideEffects = ?;
550   // Is this instruction a "real" instruction (with a distinct machine
551   // encoding), or is it a pseudo instruction used for codegen modeling
552   // purposes.
553   // FIXME: For now this is distinct from isPseudo, above, as code-gen-only
554   // instructions can (and often do) still have encoding information
555   // associated with them. Once we've migrated all of them over to true
556   // pseudo-instructions that are lowered to real instructions prior to
557   // the printer/emitter, we can remove this attribute and just use isPseudo.
558   //
559   // The intended use is:
560   // isPseudo: Does not have encoding information and should be expanded,
561   //   at the latest, during lowering to MCInst.
562   //
563   // isCodeGenOnly: Does have encoding information and can go through to the
564   //   CodeEmitter unchanged, but duplicates a canonical instruction
565   //   definition's encoding and should be ignored when constructing the
566   //   assembler match tables.
567   bit isCodeGenOnly = 0;
569   // Is this instruction a pseudo instruction for use by the assembler parser.
570   bit isAsmParserOnly = 0;
572   // This instruction is not expected to be queried for scheduling latencies
573   // and therefore needs no scheduling information even for a complete
574   // scheduling model.
575   bit hasNoSchedulingInfo = 0;
577   InstrItinClass Itinerary = NoItinerary;// Execution steps used for scheduling.
579   // Scheduling information from TargetSchedule.td.
580   list<SchedReadWrite> SchedRW;
582   string Constraints = "";  // OperandConstraint, e.g. $src = $dst.
584   /// DisableEncoding - List of operand names (e.g. "$op1,$op2") that should not
585   /// be encoded into the output machineinstr.
586   string DisableEncoding = "";
588   string PostEncoderMethod = "";
590   /// Target-specific flags. This becomes the TSFlags field in TargetInstrDesc.
591   bits<64> TSFlags = 0;
593   ///@name Assembler Parser Support
594   ///@{
596   string AsmMatchConverter = "";
598   /// TwoOperandAliasConstraint - Enable TableGen to auto-generate a
599   /// two-operand matcher inst-alias for a three operand instruction.
600   /// For example, the arm instruction "add r3, r3, r5" can be written
601   /// as "add r3, r5". The constraint is of the same form as a tied-operand
602   /// constraint. For example, "$Rn = $Rd".
603   string TwoOperandAliasConstraint = "";
605   /// Assembler variant name to use for this instruction. If specified then
606   /// instruction will be presented only in MatchTable for this variant. If
607   /// not specified then assembler variants will be determined based on
608   /// AsmString
609   string AsmVariantName = "";
611   ///@}
613   /// UseNamedOperandTable - If set, the operand indices of this instruction
614   /// can be queried via the getNamedOperandIdx() function which is generated
615   /// by TableGen.
616   bit UseNamedOperandTable = 0;
618   /// Should FastISel ignore this instruction. For certain ISAs, they have
619   /// instructions which map to the same ISD Opcode, value type operands and
620   /// instruction selection predicates. FastISel cannot handle such cases, but
621   /// SelectionDAG can.
622   bit FastISelShouldIgnore = 0;
625 /// Defines an additional encoding that disassembles to the given instruction
626 /// Like Instruction, the Inst and SoftFail fields are omitted to allow targets
627 // to specify their size.
628 class AdditionalEncoding<Instruction I> : InstructionEncoding {
629   Instruction AliasOf = I;
632 /// PseudoInstExpansion - Expansion information for a pseudo-instruction.
633 /// Which instruction it expands to and how the operands map from the
634 /// pseudo.
635 class PseudoInstExpansion<dag Result> {
636   dag ResultInst = Result;     // The instruction to generate.
637   bit isPseudo = 1;
640 /// Predicates - These are extra conditionals which are turned into instruction
641 /// selector matching code. Currently each predicate is just a string.
642 class Predicate<string cond> {
643   string CondString = cond;
645   /// AssemblerMatcherPredicate - If this feature can be used by the assembler
646   /// matcher, this is true.  Targets should set this by inheriting their
647   /// feature from the AssemblerPredicate class in addition to Predicate.
648   bit AssemblerMatcherPredicate = 0;
650   /// AssemblerCondString - Name of the subtarget feature being tested used
651   /// as alternative condition string used for assembler matcher.
652   /// e.g. "ModeThumb" is translated to "(Bits & ModeThumb) != 0".
653   ///      "!ModeThumb" is translated to "(Bits & ModeThumb) == 0".
654   /// It can also list multiple features separated by ",".
655   /// e.g. "ModeThumb,FeatureThumb2" is translated to
656   ///      "(Bits & ModeThumb) != 0 && (Bits & FeatureThumb2) != 0".
657   string AssemblerCondString = "";
659   /// PredicateName - User-level name to use for the predicate. Mainly for use
660   /// in diagnostics such as missing feature errors in the asm matcher.
661   string PredicateName = "";
663   /// Setting this to '1' indicates that the predicate must be recomputed on
664   /// every function change. Most predicates can leave this at '0'.
665   ///
666   /// Ignored by SelectionDAG, it always recomputes the predicate on every use.
667   bit RecomputePerFunction = 0;
670 /// NoHonorSignDependentRounding - This predicate is true if support for
671 /// sign-dependent-rounding is not enabled.
672 def NoHonorSignDependentRounding
673  : Predicate<"!TM.Options.HonorSignDependentRoundingFPMath()">;
675 class Requires<list<Predicate> preds> {
676   list<Predicate> Predicates = preds;
679 /// ops definition - This is just a simple marker used to identify the operand
680 /// list for an instruction. outs and ins are identical both syntactically and
681 /// semantically; they are used to define def operands and use operands to
682 /// improve readibility. This should be used like this:
683 ///     (outs R32:$dst), (ins R32:$src1, R32:$src2) or something similar.
684 def ops;
685 def outs;
686 def ins;
688 /// variable_ops definition - Mark this instruction as taking a variable number
689 /// of operands.
690 def variable_ops;
693 /// PointerLikeRegClass - Values that are designed to have pointer width are
694 /// derived from this.  TableGen treats the register class as having a symbolic
695 /// type that it doesn't know, and resolves the actual regclass to use by using
696 /// the TargetRegisterInfo::getPointerRegClass() hook at codegen time.
697 class PointerLikeRegClass<int Kind> {
698   int RegClassKind = Kind;
702 /// ptr_rc definition - Mark this operand as being a pointer value whose
703 /// register class is resolved dynamically via a callback to TargetInstrInfo.
704 /// FIXME: We should probably change this to a class which contain a list of
705 /// flags. But currently we have but one flag.
706 def ptr_rc : PointerLikeRegClass<0>;
708 /// unknown definition - Mark this operand as being of unknown type, causing
709 /// it to be resolved by inference in the context it is used.
710 class unknown_class;
711 def unknown : unknown_class;
713 /// AsmOperandClass - Representation for the kinds of operands which the target
714 /// specific parser can create and the assembly matcher may need to distinguish.
716 /// Operand classes are used to define the order in which instructions are
717 /// matched, to ensure that the instruction which gets matched for any
718 /// particular list of operands is deterministic.
720 /// The target specific parser must be able to classify a parsed operand into a
721 /// unique class which does not partially overlap with any other classes. It can
722 /// match a subset of some other class, in which case the super class field
723 /// should be defined.
724 class AsmOperandClass {
725   /// The name to use for this class, which should be usable as an enum value.
726   string Name = ?;
728   /// The super classes of this operand.
729   list<AsmOperandClass> SuperClasses = [];
731   /// The name of the method on the target specific operand to call to test
732   /// whether the operand is an instance of this class. If not set, this will
733   /// default to "isFoo", where Foo is the AsmOperandClass name. The method
734   /// signature should be:
735   ///   bool isFoo() const;
736   string PredicateMethod = ?;
738   /// The name of the method on the target specific operand to call to add the
739   /// target specific operand to an MCInst. If not set, this will default to
740   /// "addFooOperands", where Foo is the AsmOperandClass name. The method
741   /// signature should be:
742   ///   void addFooOperands(MCInst &Inst, unsigned N) const;
743   string RenderMethod = ?;
745   /// The name of the method on the target specific operand to call to custom
746   /// handle the operand parsing. This is useful when the operands do not relate
747   /// to immediates or registers and are very instruction specific (as flags to
748   /// set in a processor register, coprocessor number, ...).
749   string ParserMethod = ?;
751   // The diagnostic type to present when referencing this operand in a
752   // match failure error message. By default, use a generic "invalid operand"
753   // diagnostic. The target AsmParser maps these codes to text.
754   string DiagnosticType = "";
756   /// A diagnostic message to emit when an invalid value is provided for this
757   /// operand.
758   string DiagnosticString = "";
760   /// Set to 1 if this operand is optional and not always required. Typically,
761   /// the AsmParser will emit an error when it finishes parsing an
762   /// instruction if it hasn't matched all the operands yet.  However, this
763   /// error will be suppressed if all of the remaining unmatched operands are
764   /// marked as IsOptional.
765   ///
766   /// Optional arguments must be at the end of the operand list.
767   bit IsOptional = 0;
769   /// The name of the method on the target specific asm parser that returns the
770   /// default operand for this optional operand. This method is only used if
771   /// IsOptional == 1. If not set, this will default to "defaultFooOperands",
772   /// where Foo is the AsmOperandClass name. The method signature should be:
773   ///   std::unique_ptr<MCParsedAsmOperand> defaultFooOperands() const;
774   string DefaultMethod = ?;
777 def ImmAsmOperand : AsmOperandClass {
778   let Name = "Imm";
781 /// Operand Types - These provide the built-in operand types that may be used
782 /// by a target.  Targets can optionally provide their own operand types as
783 /// needed, though this should not be needed for RISC targets.
784 class Operand<ValueType ty> : DAGOperand {
785   ValueType Type = ty;
786   string PrintMethod = "printOperand";
787   string EncoderMethod = "";
788   bit hasCompleteDecoder = 1;
789   string OperandType = "OPERAND_UNKNOWN";
790   dag MIOperandInfo = (ops);
792   // MCOperandPredicate - Optionally, a code fragment operating on
793   // const MCOperand &MCOp, and returning a bool, to indicate if
794   // the value of MCOp is valid for the specific subclass of Operand
795   code MCOperandPredicate;
797   // ParserMatchClass - The "match class" that operands of this type fit
798   // in. Match classes are used to define the order in which instructions are
799   // match, to ensure that which instructions gets matched is deterministic.
800   //
801   // The target specific parser must be able to classify an parsed operand into
802   // a unique class, which does not partially overlap with any other classes. It
803   // can match a subset of some other class, in which case the AsmOperandClass
804   // should declare the other operand as one of its super classes.
805   AsmOperandClass ParserMatchClass = ImmAsmOperand;
808 class RegisterOperand<RegisterClass regclass, string pm = "printOperand">
809   : DAGOperand {
810   // RegClass - The register class of the operand.
811   RegisterClass RegClass = regclass;
812   // PrintMethod - The target method to call to print register operands of
813   // this type. The method normally will just use an alt-name index to look
814   // up the name to print. Default to the generic printOperand().
815   string PrintMethod = pm;
817   // EncoderMethod - The target method name to call to encode this register
818   // operand.
819   string EncoderMethod = "";
821   // ParserMatchClass - The "match class" that operands of this type fit
822   // in. Match classes are used to define the order in which instructions are
823   // match, to ensure that which instructions gets matched is deterministic.
824   //
825   // The target specific parser must be able to classify an parsed operand into
826   // a unique class, which does not partially overlap with any other classes. It
827   // can match a subset of some other class, in which case the AsmOperandClass
828   // should declare the other operand as one of its super classes.
829   AsmOperandClass ParserMatchClass;
831   string OperandType = "OPERAND_REGISTER";
833   // When referenced in the result of a CodeGen pattern, GlobalISel will
834   // normally copy the matched operand to the result. When this is set, it will
835   // emit a special copy that will replace zero-immediates with the specified
836   // zero-register.
837   Register GIZeroRegister = ?;
840 let OperandType = "OPERAND_IMMEDIATE" in {
841 def i1imm  : Operand<i1>;
842 def i8imm  : Operand<i8>;
843 def i16imm : Operand<i16>;
844 def i32imm : Operand<i32>;
845 def i64imm : Operand<i64>;
847 def f32imm : Operand<f32>;
848 def f64imm : Operand<f64>;
851 // Register operands for generic instructions don't have an MVT, but do have
852 // constraints linking the operands (e.g. all operands of a G_ADD must
853 // have the same LLT).
854 class TypedOperand<string Ty> : Operand<untyped> {
855   let OperandType = Ty;
856   bit IsPointer = 0;
857   bit IsImmediate = 0;
860 def type0 : TypedOperand<"OPERAND_GENERIC_0">;
861 def type1 : TypedOperand<"OPERAND_GENERIC_1">;
862 def type2 : TypedOperand<"OPERAND_GENERIC_2">;
863 def type3 : TypedOperand<"OPERAND_GENERIC_3">;
864 def type4 : TypedOperand<"OPERAND_GENERIC_4">;
865 def type5 : TypedOperand<"OPERAND_GENERIC_5">;
867 let IsPointer = 1 in {
868   def ptype0 : TypedOperand<"OPERAND_GENERIC_0">;
869   def ptype1 : TypedOperand<"OPERAND_GENERIC_1">;
870   def ptype2 : TypedOperand<"OPERAND_GENERIC_2">;
871   def ptype3 : TypedOperand<"OPERAND_GENERIC_3">;
872   def ptype4 : TypedOperand<"OPERAND_GENERIC_4">;
873   def ptype5 : TypedOperand<"OPERAND_GENERIC_5">;
876 // untyped_imm is for operands where isImm() will be true. It currently has no
877 // special behaviour and is only used for clarity.
878 def untyped_imm_0 : TypedOperand<"OPERAND_GENERIC_IMM_0"> {
879   let IsImmediate = 1;
882 /// zero_reg definition - Special node to stand for the zero register.
884 def zero_reg;
886 /// All operands which the MC layer classifies as predicates should inherit from
887 /// this class in some manner. This is already handled for the most commonly
888 /// used PredicateOperand, but may be useful in other circumstances.
889 class PredicateOp;
891 /// OperandWithDefaultOps - This Operand class can be used as the parent class
892 /// for an Operand that needs to be initialized with a default value if
893 /// no value is supplied in a pattern.  This class can be used to simplify the
894 /// pattern definitions for instructions that have target specific flags
895 /// encoded as immediate operands.
896 class OperandWithDefaultOps<ValueType ty, dag defaultops>
897   : Operand<ty> {
898   dag DefaultOps = defaultops;
901 /// PredicateOperand - This can be used to define a predicate operand for an
902 /// instruction.  OpTypes specifies the MIOperandInfo for the operand, and
903 /// AlwaysVal specifies the value of this predicate when set to "always
904 /// execute".
905 class PredicateOperand<ValueType ty, dag OpTypes, dag AlwaysVal>
906   : OperandWithDefaultOps<ty, AlwaysVal>, PredicateOp {
907   let MIOperandInfo = OpTypes;
910 /// OptionalDefOperand - This is used to define a optional definition operand
911 /// for an instruction. DefaultOps is the register the operand represents if
912 /// none is supplied, e.g. zero_reg.
913 class OptionalDefOperand<ValueType ty, dag OpTypes, dag defaultops>
914   : OperandWithDefaultOps<ty, defaultops> {
915   let MIOperandInfo = OpTypes;
919 // InstrInfo - This class should only be instantiated once to provide parameters
920 // which are global to the target machine.
922 class InstrInfo {
923   // Target can specify its instructions in either big or little-endian formats.
924   // For instance, while both Sparc and PowerPC are big-endian platforms, the
925   // Sparc manual specifies its instructions in the format [31..0] (big), while
926   // PowerPC specifies them using the format [0..31] (little).
927   bit isLittleEndianEncoding = 0;
929   // The instruction properties mayLoad, mayStore, and hasSideEffects are unset
930   // by default, and TableGen will infer their value from the instruction
931   // pattern when possible.
932   //
933   // Normally, TableGen will issue an error it it can't infer the value of a
934   // property that hasn't been set explicitly. When guessInstructionProperties
935   // is set, it will guess a safe value instead.
936   //
937   // This option is a temporary migration help. It will go away.
938   bit guessInstructionProperties = 1;
940   // TableGen's instruction encoder generator has support for matching operands
941   // to bit-field variables both by name and by position. While matching by
942   // name is preferred, this is currently not possible for complex operands,
943   // and some targets still reply on the positional encoding rules. When
944   // generating a decoder for such targets, the positional encoding rules must
945   // be used by the decoder generator as well.
946   //
947   // This option is temporary; it will go away once the TableGen decoder
948   // generator has better support for complex operands and targets have
949   // migrated away from using positionally encoded operands.
950   bit decodePositionallyEncodedOperands = 0;
952   // When set, this indicates that there will be no overlap between those
953   // operands that are matched by ordering (positional operands) and those
954   // matched by name.
955   //
956   // This option is temporary; it will go away once the TableGen decoder
957   // generator has better support for complex operands and targets have
958   // migrated away from using positionally encoded operands.
959   bit noNamedPositionallyEncodedOperands = 0;
962 // Standard Pseudo Instructions.
963 // This list must match TargetOpcodes.def.
964 // Only these instructions are allowed in the TargetOpcode namespace.
965 // Ensure mayLoad and mayStore have a default value, so as not to break
966 // targets that set guessInstructionProperties=0. Any local definition of
967 // mayLoad/mayStore takes precedence over these default values.
968 class StandardPseudoInstruction : Instruction {
969   let mayLoad = 0;
970   let mayStore = 0;
971   let isCodeGenOnly = 1;
972   let isPseudo = 1;
973   let hasNoSchedulingInfo = 1;
974   let Namespace = "TargetOpcode";
976 def PHI : StandardPseudoInstruction {
977   let OutOperandList = (outs unknown:$dst);
978   let InOperandList = (ins variable_ops);
979   let AsmString = "PHINODE";
980   let hasSideEffects = 0;
982 def INLINEASM : StandardPseudoInstruction {
983   let OutOperandList = (outs);
984   let InOperandList = (ins variable_ops);
985   let AsmString = "";
986   let hasSideEffects = 0;  // Note side effect is encoded in an operand.
988 def INLINEASM_BR : StandardPseudoInstruction {
989   let OutOperandList = (outs);
990   let InOperandList = (ins variable_ops);
991   let AsmString = "";
992   let hasSideEffects = 0;  // Note side effect is encoded in an operand.
993   let isTerminator = 1;
994   let isBranch = 1;
995   let isIndirectBranch = 1;
997 def CFI_INSTRUCTION : StandardPseudoInstruction {
998   let OutOperandList = (outs);
999   let InOperandList = (ins i32imm:$id);
1000   let AsmString = "";
1001   let hasCtrlDep = 1;
1002   let hasSideEffects = 0;
1003   let isNotDuplicable = 1;
1005 def EH_LABEL : StandardPseudoInstruction {
1006   let OutOperandList = (outs);
1007   let InOperandList = (ins i32imm:$id);
1008   let AsmString = "";
1009   let hasCtrlDep = 1;
1010   let hasSideEffects = 0;
1011   let isNotDuplicable = 1;
1013 def GC_LABEL : StandardPseudoInstruction {
1014   let OutOperandList = (outs);
1015   let InOperandList = (ins i32imm:$id);
1016   let AsmString = "";
1017   let hasCtrlDep = 1;
1018   let hasSideEffects = 0;
1019   let isNotDuplicable = 1;
1021 def ANNOTATION_LABEL : StandardPseudoInstruction {
1022   let OutOperandList = (outs);
1023   let InOperandList = (ins i32imm:$id);
1024   let AsmString = "";
1025   let hasCtrlDep = 1;
1026   let hasSideEffects = 0;
1027   let isNotDuplicable = 1;
1029 def KILL : StandardPseudoInstruction {
1030   let OutOperandList = (outs);
1031   let InOperandList = (ins variable_ops);
1032   let AsmString = "";
1033   let hasSideEffects = 0;
1035 def EXTRACT_SUBREG : StandardPseudoInstruction {
1036   let OutOperandList = (outs unknown:$dst);
1037   let InOperandList = (ins unknown:$supersrc, i32imm:$subidx);
1038   let AsmString = "";
1039   let hasSideEffects = 0;
1041 def INSERT_SUBREG : StandardPseudoInstruction {
1042   let OutOperandList = (outs unknown:$dst);
1043   let InOperandList = (ins unknown:$supersrc, unknown:$subsrc, i32imm:$subidx);
1044   let AsmString = "";
1045   let hasSideEffects = 0;
1046   let Constraints = "$supersrc = $dst";
1048 def IMPLICIT_DEF : StandardPseudoInstruction {
1049   let OutOperandList = (outs unknown:$dst);
1050   let InOperandList = (ins);
1051   let AsmString = "";
1052   let hasSideEffects = 0;
1053   let isReMaterializable = 1;
1054   let isAsCheapAsAMove = 1;
1056 def SUBREG_TO_REG : StandardPseudoInstruction {
1057   let OutOperandList = (outs unknown:$dst);
1058   let InOperandList = (ins unknown:$implsrc, unknown:$subsrc, i32imm:$subidx);
1059   let AsmString = "";
1060   let hasSideEffects = 0;
1062 def COPY_TO_REGCLASS : StandardPseudoInstruction {
1063   let OutOperandList = (outs unknown:$dst);
1064   let InOperandList = (ins unknown:$src, i32imm:$regclass);
1065   let AsmString = "";
1066   let hasSideEffects = 0;
1067   let isAsCheapAsAMove = 1;
1069 def DBG_VALUE : StandardPseudoInstruction {
1070   let OutOperandList = (outs);
1071   let InOperandList = (ins variable_ops);
1072   let AsmString = "DBG_VALUE";
1073   let hasSideEffects = 0;
1075 def DBG_LABEL : StandardPseudoInstruction {
1076   let OutOperandList = (outs);
1077   let InOperandList = (ins unknown:$label);
1078   let AsmString = "DBG_LABEL";
1079   let hasSideEffects = 0;
1081 def REG_SEQUENCE : StandardPseudoInstruction {
1082   let OutOperandList = (outs unknown:$dst);
1083   let InOperandList = (ins unknown:$supersrc, variable_ops);
1084   let AsmString = "";
1085   let hasSideEffects = 0;
1086   let isAsCheapAsAMove = 1;
1088 def COPY : StandardPseudoInstruction {
1089   let OutOperandList = (outs unknown:$dst);
1090   let InOperandList = (ins unknown:$src);
1091   let AsmString = "";
1092   let hasSideEffects = 0;
1093   let isAsCheapAsAMove = 1;
1094   let hasNoSchedulingInfo = 0;
1096 def BUNDLE : StandardPseudoInstruction {
1097   let OutOperandList = (outs);
1098   let InOperandList = (ins variable_ops);
1099   let AsmString = "BUNDLE";
1100   let hasSideEffects = 0;
1102 def LIFETIME_START : StandardPseudoInstruction {
1103   let OutOperandList = (outs);
1104   let InOperandList = (ins i32imm:$id);
1105   let AsmString = "LIFETIME_START";
1106   let hasSideEffects = 0;
1108 def LIFETIME_END : StandardPseudoInstruction {
1109   let OutOperandList = (outs);
1110   let InOperandList = (ins i32imm:$id);
1111   let AsmString = "LIFETIME_END";
1112   let hasSideEffects = 0;
1114 def STACKMAP : StandardPseudoInstruction {
1115   let OutOperandList = (outs);
1116   let InOperandList = (ins i64imm:$id, i32imm:$nbytes, variable_ops);
1117   let hasSideEffects = 1;
1118   let isCall = 1;
1119   let mayLoad = 1;
1120   let usesCustomInserter = 1;
1122 def PATCHPOINT : StandardPseudoInstruction {
1123   let OutOperandList = (outs unknown:$dst);
1124   let InOperandList = (ins i64imm:$id, i32imm:$nbytes, unknown:$callee,
1125                        i32imm:$nargs, i32imm:$cc, variable_ops);
1126   let hasSideEffects = 1;
1127   let isCall = 1;
1128   let mayLoad = 1;
1129   let usesCustomInserter = 1;
1131 def STATEPOINT : StandardPseudoInstruction {
1132   let OutOperandList = (outs);
1133   let InOperandList = (ins variable_ops);
1134   let usesCustomInserter = 1;
1135   let mayLoad = 1;
1136   let mayStore = 1;
1137   let hasSideEffects = 1;
1138   let isCall = 1;
1140 def LOAD_STACK_GUARD : StandardPseudoInstruction {
1141   let OutOperandList = (outs ptr_rc:$dst);
1142   let InOperandList = (ins);
1143   let mayLoad = 1;
1144   bit isReMaterializable = 1;
1145   let hasSideEffects = 0;
1146   bit isPseudo = 1;
1148 def LOCAL_ESCAPE : StandardPseudoInstruction {
1149   // This instruction is really just a label. It has to be part of the chain so
1150   // that it doesn't get dropped from the DAG, but it produces nothing and has
1151   // no side effects.
1152   let OutOperandList = (outs);
1153   let InOperandList = (ins ptr_rc:$symbol, i32imm:$id);
1154   let hasSideEffects = 0;
1155   let hasCtrlDep = 1;
1157 def FAULTING_OP : StandardPseudoInstruction {
1158   let OutOperandList = (outs unknown:$dst);
1159   let InOperandList = (ins variable_ops);
1160   let usesCustomInserter = 1;
1161   let hasSideEffects = 1;
1162   let mayLoad = 1;
1163   let mayStore = 1;
1164   let isTerminator = 1;
1165   let isBranch = 1;
1167 def PATCHABLE_OP : StandardPseudoInstruction {
1168   let OutOperandList = (outs);
1169   let InOperandList = (ins variable_ops);
1170   let usesCustomInserter = 1;
1171   let mayLoad = 1;
1172   let mayStore = 1;
1173   let hasSideEffects = 1;
1175 def PATCHABLE_FUNCTION_ENTER : StandardPseudoInstruction {
1176   let OutOperandList = (outs);
1177   let InOperandList = (ins);
1178   let AsmString = "# XRay Function Enter.";
1179   let usesCustomInserter = 1;
1180   let hasSideEffects = 0;
1182 def PATCHABLE_RET : StandardPseudoInstruction {
1183   let OutOperandList = (outs);
1184   let InOperandList = (ins variable_ops);
1185   let AsmString = "# XRay Function Patchable RET.";
1186   let usesCustomInserter = 1;
1187   let hasSideEffects = 1;
1188   let isTerminator = 1;
1189   let isReturn = 1;
1191 def PATCHABLE_FUNCTION_EXIT : StandardPseudoInstruction {
1192   let OutOperandList = (outs);
1193   let InOperandList = (ins);
1194   let AsmString = "# XRay Function Exit.";
1195   let usesCustomInserter = 1;
1196   let hasSideEffects = 0; // FIXME: is this correct?
1197   let isReturn = 0; // Original return instruction will follow
1199 def PATCHABLE_TAIL_CALL : StandardPseudoInstruction {
1200   let OutOperandList = (outs);
1201   let InOperandList = (ins variable_ops);
1202   let AsmString = "# XRay Tail Call Exit.";
1203   let usesCustomInserter = 1;
1204   let hasSideEffects = 1;
1205   let isReturn = 1;
1207 def PATCHABLE_EVENT_CALL : StandardPseudoInstruction {
1208   let OutOperandList = (outs);
1209   let InOperandList = (ins ptr_rc:$event, i8imm:$size);
1210   let AsmString = "# XRay Custom Event Log.";
1211   let usesCustomInserter = 1;
1212   let isCall = 1;
1213   let mayLoad = 1;
1214   let mayStore = 1;
1215   let hasSideEffects = 1;
1217 def PATCHABLE_TYPED_EVENT_CALL : StandardPseudoInstruction {
1218   let OutOperandList = (outs);
1219   let InOperandList = (ins i16imm:$type, ptr_rc:$event, i32imm:$size);
1220   let AsmString = "# XRay Typed Event Log.";
1221   let usesCustomInserter = 1;
1222   let isCall = 1;
1223   let mayLoad = 1;
1224   let mayStore = 1;
1225   let hasSideEffects = 1;
1227 def FENTRY_CALL : StandardPseudoInstruction {
1228   let OutOperandList = (outs);
1229   let InOperandList = (ins);
1230   let AsmString = "# FEntry call";
1231   let usesCustomInserter = 1;
1232   let mayLoad = 1;
1233   let mayStore = 1;
1234   let hasSideEffects = 1;
1236 def ICALL_BRANCH_FUNNEL : StandardPseudoInstruction {
1237   let OutOperandList = (outs);
1238   let InOperandList = (ins variable_ops);
1239   let AsmString = "";
1240   let hasSideEffects = 1;
1243 // Generic opcodes used in GlobalISel.
1244 include "llvm/Target/GenericOpcodes.td"
1246 //===----------------------------------------------------------------------===//
1247 // AsmParser - This class can be implemented by targets that wish to implement
1248 // .s file parsing.
1250 // Subtargets can have multiple different assembly parsers (e.g. AT&T vs Intel
1251 // syntax on X86 for example).
1253 class AsmParser {
1254   // AsmParserClassName - This specifies the suffix to use for the asmparser
1255   // class.  Generated AsmParser classes are always prefixed with the target
1256   // name.
1257   string AsmParserClassName  = "AsmParser";
1259   // AsmParserInstCleanup - If non-empty, this is the name of a custom member
1260   // function of the AsmParser class to call on every matched instruction.
1261   // This can be used to perform target specific instruction post-processing.
1262   string AsmParserInstCleanup  = "";
1264   // ShouldEmitMatchRegisterName - Set to false if the target needs a hand
1265   // written register name matcher
1266   bit ShouldEmitMatchRegisterName = 1;
1268   // Set to true if the target needs a generated 'alternative register name'
1269   // matcher.
1270   //
1271   // This generates a function which can be used to lookup registers from
1272   // their aliases. This function will fail when called on targets where
1273   // several registers share the same alias (i.e. not a 1:1 mapping).
1274   bit ShouldEmitMatchRegisterAltName = 0;
1276   // Set to true if MatchRegisterName and MatchRegisterAltName functions
1277   // should be generated even if there are duplicate register names. The
1278   // target is responsible for coercing aliased registers as necessary
1279   // (e.g. in validateTargetOperandClass), and there are no guarantees about
1280   // which numeric register identifier will be returned in the case of
1281   // multiple matches.
1282   bit AllowDuplicateRegisterNames = 0;
1284   // HasMnemonicFirst - Set to false if target instructions don't always
1285   // start with a mnemonic as the first token.
1286   bit HasMnemonicFirst = 1;
1288   // ReportMultipleNearMisses -
1289   // When 0, the assembly matcher reports an error for one encoding or operand
1290   // that did not match the parsed instruction.
1291   // When 1, the assmebly matcher returns a list of encodings that were close
1292   // to matching the parsed instruction, so to allow more detailed error
1293   // messages.
1294   bit ReportMultipleNearMisses = 0;
1296 def DefaultAsmParser : AsmParser;
1298 //===----------------------------------------------------------------------===//
1299 // AsmParserVariant - Subtargets can have multiple different assembly parsers
1300 // (e.g. AT&T vs Intel syntax on X86 for example). This class can be
1301 // implemented by targets to describe such variants.
1303 class AsmParserVariant {
1304   // Variant - AsmParsers can be of multiple different variants.  Variants are
1305   // used to support targets that need to parser multiple formats for the
1306   // assembly language.
1307   int Variant = 0;
1309   // Name - The AsmParser variant name (e.g., AT&T vs Intel).
1310   string Name = "";
1312   // CommentDelimiter - If given, the delimiter string used to recognize
1313   // comments which are hard coded in the .td assembler strings for individual
1314   // instructions.
1315   string CommentDelimiter = "";
1317   // RegisterPrefix - If given, the token prefix which indicates a register
1318   // token. This is used by the matcher to automatically recognize hard coded
1319   // register tokens as constrained registers, instead of tokens, for the
1320   // purposes of matching.
1321   string RegisterPrefix = "";
1323   // TokenizingCharacters - Characters that are standalone tokens
1324   string TokenizingCharacters = "[]*!";
1326   // SeparatorCharacters - Characters that are not tokens
1327   string SeparatorCharacters = " \t,";
1329   // BreakCharacters - Characters that start new identifiers
1330   string BreakCharacters = "";
1332 def DefaultAsmParserVariant : AsmParserVariant;
1334 /// AssemblerPredicate - This is a Predicate that can be used when the assembler
1335 /// matches instructions and aliases.
1336 class AssemblerPredicate<string cond, string name = ""> {
1337   bit AssemblerMatcherPredicate = 1;
1338   string AssemblerCondString = cond;
1339   string PredicateName = name;
1342 /// TokenAlias - This class allows targets to define assembler token
1343 /// operand aliases. That is, a token literal operand which is equivalent
1344 /// to another, canonical, token literal. For example, ARM allows:
1345 ///   vmov.u32 s4, #0  -> vmov.i32, #0
1346 /// 'u32' is a more specific designator for the 32-bit integer type specifier
1347 /// and is legal for any instruction which accepts 'i32' as a datatype suffix.
1348 ///   def : TokenAlias<".u32", ".i32">;
1350 /// This works by marking the match class of 'From' as a subclass of the
1351 /// match class of 'To'.
1352 class TokenAlias<string From, string To> {
1353   string FromToken = From;
1354   string ToToken = To;
1357 /// MnemonicAlias - This class allows targets to define assembler mnemonic
1358 /// aliases.  This should be used when all forms of one mnemonic are accepted
1359 /// with a different mnemonic.  For example, X86 allows:
1360 ///   sal %al, 1    -> shl %al, 1
1361 ///   sal %ax, %cl  -> shl %ax, %cl
1362 ///   sal %eax, %cl -> shl %eax, %cl
1363 /// etc.  Though "sal" is accepted with many forms, all of them are directly
1364 /// translated to a shl, so it can be handled with (in the case of X86, it
1365 /// actually has one for each suffix as well):
1366 ///   def : MnemonicAlias<"sal", "shl">;
1368 /// Mnemonic aliases are mapped before any other translation in the match phase,
1369 /// and do allow Requires predicates, e.g.:
1371 ///  def : MnemonicAlias<"pushf", "pushfq">, Requires<[In64BitMode]>;
1372 ///  def : MnemonicAlias<"pushf", "pushfl">, Requires<[In32BitMode]>;
1374 /// Mnemonic aliases can also be constrained to specific variants, e.g.:
1376 ///  def : MnemonicAlias<"pushf", "pushfq", "att">, Requires<[In64BitMode]>;
1378 /// If no variant (e.g., "att" or "intel") is specified then the alias is
1379 /// applied unconditionally.
1380 class MnemonicAlias<string From, string To, string VariantName = ""> {
1381   string FromMnemonic = From;
1382   string ToMnemonic = To;
1383   string AsmVariantName = VariantName;
1385   // Predicates - Predicates that must be true for this remapping to happen.
1386   list<Predicate> Predicates = [];
1389 /// InstAlias - This defines an alternate assembly syntax that is allowed to
1390 /// match an instruction that has a different (more canonical) assembly
1391 /// representation.
1392 class InstAlias<string Asm, dag Result, int Emit = 1, string VariantName = ""> {
1393   string AsmString = Asm;      // The .s format to match the instruction with.
1394   dag ResultInst = Result;     // The MCInst to generate.
1396   // This determines which order the InstPrinter detects aliases for
1397   // printing. A larger value makes the alias more likely to be
1398   // emitted. The Instruction's own definition is notionally 0.5, so 0
1399   // disables printing and 1 enables it if there are no conflicting aliases.
1400   int EmitPriority = Emit;
1402   // Predicates - Predicates that must be true for this to match.
1403   list<Predicate> Predicates = [];
1405   // If the instruction specified in Result has defined an AsmMatchConverter
1406   // then setting this to 1 will cause the alias to use the AsmMatchConverter
1407   // function when converting the OperandVector into an MCInst instead of the
1408   // function that is generated by the dag Result.
1409   // Setting this to 0 will cause the alias to ignore the Result instruction's
1410   // defined AsmMatchConverter and instead use the function generated by the
1411   // dag Result.
1412   bit UseInstAsmMatchConverter = 1;
1414   // Assembler variant name to use for this alias. If not specified then
1415   // assembler variants will be determined based on AsmString
1416   string AsmVariantName = VariantName;
1419 //===----------------------------------------------------------------------===//
1420 // AsmWriter - This class can be implemented by targets that need to customize
1421 // the format of the .s file writer.
1423 // Subtargets can have multiple different asmwriters (e.g. AT&T vs Intel syntax
1424 // on X86 for example).
1426 class AsmWriter {
1427   // AsmWriterClassName - This specifies the suffix to use for the asmwriter
1428   // class.  Generated AsmWriter classes are always prefixed with the target
1429   // name.
1430   string AsmWriterClassName  = "InstPrinter";
1432   // PassSubtarget - Determines whether MCSubtargetInfo should be passed to
1433   // the various print methods.
1434   // FIXME: Remove after all ports are updated.
1435   int PassSubtarget = 0;
1437   // Variant - AsmWriters can be of multiple different variants.  Variants are
1438   // used to support targets that need to emit assembly code in ways that are
1439   // mostly the same for different targets, but have minor differences in
1440   // syntax.  If the asmstring contains {|} characters in them, this integer
1441   // will specify which alternative to use.  For example "{x|y|z}" with Variant
1442   // == 1, will expand to "y".
1443   int Variant = 0;
1445 def DefaultAsmWriter : AsmWriter;
1448 //===----------------------------------------------------------------------===//
1449 // Target - This class contains the "global" target information
1451 class Target {
1452   // InstructionSet - Instruction set description for this target.
1453   InstrInfo InstructionSet;
1455   // AssemblyParsers - The AsmParser instances available for this target.
1456   list<AsmParser> AssemblyParsers = [DefaultAsmParser];
1458   /// AssemblyParserVariants - The AsmParserVariant instances available for
1459   /// this target.
1460   list<AsmParserVariant> AssemblyParserVariants = [DefaultAsmParserVariant];
1462   // AssemblyWriters - The AsmWriter instances available for this target.
1463   list<AsmWriter> AssemblyWriters = [DefaultAsmWriter];
1465   // AllowRegisterRenaming - Controls whether this target allows
1466   // post-register-allocation renaming of registers.  This is done by
1467   // setting hasExtraDefRegAllocReq and hasExtraSrcRegAllocReq to 1
1468   // for all opcodes if this flag is set to 0.
1469   int AllowRegisterRenaming = 0;
1472 //===----------------------------------------------------------------------===//
1473 // SubtargetFeature - A characteristic of the chip set.
1475 class SubtargetFeature<string n, string a,  string v, string d,
1476                        list<SubtargetFeature> i = []> {
1477   // Name - Feature name.  Used by command line (-mattr=) to determine the
1478   // appropriate target chip.
1479   //
1480   string Name = n;
1482   // Attribute - Attribute to be set by feature.
1483   //
1484   string Attribute = a;
1486   // Value - Value the attribute to be set to by feature.
1487   //
1488   string Value = v;
1490   // Desc - Feature description.  Used by command line (-mattr=) to display help
1491   // information.
1492   //
1493   string Desc = d;
1495   // Implies - Features that this feature implies are present. If one of those
1496   // features isn't set, then this one shouldn't be set either.
1497   //
1498   list<SubtargetFeature> Implies = i;
1501 /// Specifies a Subtarget feature that this instruction is deprecated on.
1502 class Deprecated<SubtargetFeature dep> {
1503   SubtargetFeature DeprecatedFeatureMask = dep;
1506 /// A custom predicate used to determine if an instruction is
1507 /// deprecated or not.
1508 class ComplexDeprecationPredicate<string dep> {
1509   string ComplexDeprecationPredicate = dep;
1512 //===----------------------------------------------------------------------===//
1513 // Processor chip sets - These values represent each of the chip sets supported
1514 // by the scheduler.  Each Processor definition requires corresponding
1515 // instruction itineraries.
1517 class Processor<string n, ProcessorItineraries pi, list<SubtargetFeature> f> {
1518   // Name - Chip set name.  Used by command line (-mcpu=) to determine the
1519   // appropriate target chip.
1520   //
1521   string Name = n;
1523   // SchedModel - The machine model for scheduling and instruction cost.
1524   //
1525   SchedMachineModel SchedModel = NoSchedModel;
1527   // ProcItin - The scheduling information for the target processor.
1528   //
1529   ProcessorItineraries ProcItin = pi;
1531   // Features - list of
1532   list<SubtargetFeature> Features = f;
1535 // ProcessorModel allows subtargets to specify the more general
1536 // SchedMachineModel instead if a ProcessorItinerary. Subtargets will
1537 // gradually move to this newer form.
1539 // Although this class always passes NoItineraries to the Processor
1540 // class, the SchedMachineModel may still define valid Itineraries.
1541 class ProcessorModel<string n, SchedMachineModel m, list<SubtargetFeature> f>
1542   : Processor<n, NoItineraries, f> {
1543   let SchedModel = m;
1546 //===----------------------------------------------------------------------===//
1547 // InstrMapping - This class is used to create mapping tables to relate
1548 // instructions with each other based on the values specified in RowFields,
1549 // ColFields, KeyCol and ValueCols.
1551 class InstrMapping {
1552   // FilterClass - Used to limit search space only to the instructions that
1553   // define the relationship modeled by this InstrMapping record.
1554   string FilterClass;
1556   // RowFields - List of fields/attributes that should be same for all the
1557   // instructions in a row of the relation table. Think of this as a set of
1558   // properties shared by all the instructions related by this relationship
1559   // model and is used to categorize instructions into subgroups. For instance,
1560   // if we want to define a relation that maps 'Add' instruction to its
1561   // predicated forms, we can define RowFields like this:
1562   //
1563   // let RowFields = BaseOp
1564   // All add instruction predicated/non-predicated will have to set their BaseOp
1565   // to the same value.
1566   //
1567   // def Add: { let BaseOp = 'ADD'; let predSense = 'nopred' }
1568   // def Add_predtrue: { let BaseOp = 'ADD'; let predSense = 'true' }
1569   // def Add_predfalse: { let BaseOp = 'ADD'; let predSense = 'false'  }
1570   list<string> RowFields = [];
1572   // List of fields/attributes that are same for all the instructions
1573   // in a column of the relation table.
1574   // Ex: let ColFields = 'predSense' -- It means that the columns are arranged
1575   // based on the 'predSense' values. All the instruction in a specific
1576   // column have the same value and it is fixed for the column according
1577   // to the values set in 'ValueCols'.
1578   list<string> ColFields = [];
1580   // Values for the fields/attributes listed in 'ColFields'.
1581   // Ex: let KeyCol = 'nopred' -- It means that the key instruction (instruction
1582   // that models this relation) should be non-predicated.
1583   // In the example above, 'Add' is the key instruction.
1584   list<string> KeyCol = [];
1586   // List of values for the fields/attributes listed in 'ColFields', one for
1587   // each column in the relation table.
1588   //
1589   // Ex: let ValueCols = [['true'],['false']] -- It adds two columns in the
1590   // table. First column requires all the instructions to have predSense
1591   // set to 'true' and second column requires it to be 'false'.
1592   list<list<string> > ValueCols = [];
1595 //===----------------------------------------------------------------------===//
1596 // Pull in the common support for calling conventions.
1598 include "llvm/Target/TargetCallingConv.td"
1600 //===----------------------------------------------------------------------===//
1601 // Pull in the common support for DAG isel generation.
1603 include "llvm/Target/TargetSelectionDAG.td"
1605 //===----------------------------------------------------------------------===//
1606 // Pull in the common support for Global ISel register bank info generation.
1608 include "llvm/Target/GlobalISel/RegisterBank.td"
1610 //===----------------------------------------------------------------------===//
1611 // Pull in the common support for DAG isel generation.
1613 include "llvm/Target/GlobalISel/Target.td"
1615 //===----------------------------------------------------------------------===//
1616 // Pull in the common support for the Global ISel DAG-based selector generation.
1618 include "llvm/Target/GlobalISel/SelectionDAGCompat.td"
1620 //===----------------------------------------------------------------------===//
1621 // Pull in the common support for Pfm Counters generation.
1623 include "llvm/Target/TargetPfmCounters.td"