2014-04-01 11:51:49 +02:00
|
|
|
==============================
|
|
|
|
TableGen Language Introduction
|
|
|
|
==============================
|
|
|
|
|
|
|
|
.. contents::
|
|
|
|
:local:
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
This document is extremely rough. If you find something lacking, please
|
2015-08-05 05:51:17 +02:00
|
|
|
fix it, file a documentation bug, or ask about it on llvm-dev.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
Introduction
|
|
|
|
============
|
|
|
|
|
|
|
|
This document is not meant to be a normative spec about the TableGen language
|
|
|
|
in and of itself (i.e. how to understand a given construct in terms of how
|
|
|
|
it affects the final set of records represented by the TableGen file). For
|
|
|
|
the formal language specification, see :doc:`LangRef`.
|
|
|
|
|
|
|
|
TableGen syntax
|
|
|
|
===============
|
|
|
|
|
|
|
|
TableGen doesn't care about the meaning of data (that is up to the backend to
|
|
|
|
define), but it does care about syntax, and it enforces a simple type system.
|
|
|
|
This section describes the syntax and the constructs allowed in a TableGen file.
|
|
|
|
|
|
|
|
TableGen primitives
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
TableGen comments
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
TableGen supports C++ style "``//``" comments, which run to the end of the
|
|
|
|
line, and it also supports **nestable** "``/* */``" comments.
|
|
|
|
|
|
|
|
.. _TableGen type:
|
|
|
|
|
|
|
|
The TableGen type system
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
TableGen files are strongly typed, in a simple (but complete) type-system.
|
|
|
|
These types are used to perform automatic conversions, check for errors, and to
|
|
|
|
help interface designers constrain the input that they allow. Every `value
|
|
|
|
definition`_ is required to have an associated type.
|
|
|
|
|
|
|
|
TableGen supports a mixture of very low-level types (such as ``bit``) and very
|
|
|
|
high-level types (such as ``dag``). This flexibility is what allows it to
|
|
|
|
describe a wide range of information conveniently and compactly. The TableGen
|
|
|
|
types are:
|
|
|
|
|
|
|
|
``bit``
|
|
|
|
A 'bit' is a boolean value that can hold either 0 or 1.
|
|
|
|
|
|
|
|
``int``
|
|
|
|
The 'int' type represents a simple 32-bit integer value, such as 5.
|
|
|
|
|
|
|
|
``string``
|
|
|
|
The 'string' type represents an ordered sequence of characters of arbitrary
|
|
|
|
length.
|
|
|
|
|
2017-05-02 15:47:10 +02:00
|
|
|
``code``
|
|
|
|
The `code` type represents a code fragment, which can be single/multi-line
|
|
|
|
string literal.
|
|
|
|
|
2014-04-01 11:51:49 +02:00
|
|
|
``bits<n>``
|
|
|
|
A 'bits' type is an arbitrary, but fixed, size integer that is broken up
|
|
|
|
into individual bits. This type is useful because it can handle some bits
|
|
|
|
being defined while others are undefined.
|
|
|
|
|
|
|
|
``list<ty>``
|
|
|
|
This type represents a list whose elements are some other type. The
|
|
|
|
contained type is arbitrary: it can even be another list type.
|
|
|
|
|
|
|
|
Class type
|
|
|
|
Specifying a class name in a type context means that the defined value must
|
|
|
|
be a subclass of the specified class. This is useful in conjunction with
|
|
|
|
the ``list`` type, for example, to constrain the elements of the list to a
|
|
|
|
common base class (e.g., a ``list<Register>`` can only contain definitions
|
|
|
|
derived from the "``Register``" class).
|
|
|
|
|
|
|
|
``dag``
|
|
|
|
This type represents a nestable directed graph of elements.
|
|
|
|
|
|
|
|
To date, these types have been sufficient for describing things that TableGen
|
|
|
|
has been used for, but it is straight-forward to extend this list if needed.
|
|
|
|
|
|
|
|
.. _TableGen expressions:
|
|
|
|
|
|
|
|
TableGen values and expressions
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
TableGen allows for a pretty reasonable number of different expression forms
|
|
|
|
when building up values. These forms allow the TableGen file to be written in a
|
|
|
|
natural syntax and flavor for the application. The current expression forms
|
|
|
|
supported include:
|
|
|
|
|
|
|
|
``?``
|
|
|
|
uninitialized field
|
|
|
|
|
|
|
|
``0b1001011``
|
2014-08-07 07:47:13 +02:00
|
|
|
binary integer value.
|
|
|
|
Note that this is sized by the number of bits given and will not be
|
|
|
|
silently extended/truncated.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
``7``
|
|
|
|
decimal integer value
|
|
|
|
|
|
|
|
``0x7F``
|
|
|
|
hexadecimal integer value
|
|
|
|
|
|
|
|
``"foo"``
|
2017-05-02 15:47:10 +02:00
|
|
|
a single-line string value, can be assigned to ``string`` or ``code`` variable.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
``[{ ... }]``
|
|
|
|
usually called a "code fragment", but is just a multiline string literal
|
|
|
|
|
|
|
|
``[ X, Y, Z ]<type>``
|
|
|
|
list value. <type> is the type of the list element and is usually optional.
|
|
|
|
In rare cases, TableGen is unable to deduce the element type in which case
|
|
|
|
the user must specify it explicitly.
|
|
|
|
|
2014-08-07 07:47:13 +02:00
|
|
|
``{ a, b, 0b10 }``
|
|
|
|
initializer for a "bits<4>" value.
|
|
|
|
1-bit from "a", 1-bit from "b", 2-bits from 0b10.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
``value``
|
|
|
|
value reference
|
|
|
|
|
|
|
|
``value{17}``
|
|
|
|
access to one bit of a value
|
|
|
|
|
|
|
|
``value{15-17}``
|
2017-05-02 15:47:10 +02:00
|
|
|
access to an ordered sequence of bits of a value, in particular ``value{15-17}``
|
|
|
|
produces an order that is the reverse of ``value{17-15}``.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
``DEF``
|
|
|
|
reference to a record definition
|
|
|
|
|
|
|
|
``CLASS<val list>``
|
|
|
|
reference to a new anonymous definition of CLASS with the specified template
|
|
|
|
arguments.
|
|
|
|
|
|
|
|
``X.Y``
|
|
|
|
reference to the subfield of a value
|
|
|
|
|
|
|
|
``list[4-7,17,2-3]``
|
|
|
|
A slice of the 'list' list, including elements 4,5,6,7,17,2, and 3 from it.
|
|
|
|
Elements may be included multiple times.
|
|
|
|
|
|
|
|
``foreach <var> = [ <list> ] in { <body> }``
|
|
|
|
|
|
|
|
``foreach <var> = [ <list> ] in <def>``
|
|
|
|
Replicate <body> or <def>, replacing instances of <var> with each value
|
|
|
|
in <list>. <var> is scoped at the level of the ``foreach`` loop and must
|
2018-06-04 16:26:12 +02:00
|
|
|
not conflict with any other object introduced in <body> or <def>. Only
|
|
|
|
``def``\s and ``defm``\s are expanded within <body>.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
``foreach <var> = 0-15 in ...``
|
|
|
|
|
|
|
|
``foreach <var> = {0-15,32-47} in ...``
|
|
|
|
Loop over ranges of integers. The braces are required for multiple ranges.
|
|
|
|
|
|
|
|
``(DEF a, b)``
|
|
|
|
a dag value. The first element is required to be a record definition, the
|
|
|
|
remaining elements in the list may be arbitrary other values, including
|
|
|
|
nested ```dag``' values.
|
|
|
|
|
2018-03-14 12:00:26 +01:00
|
|
|
``!con(a, b, ...)``
|
|
|
|
Concatenate two or more DAG nodes. Their operations must equal.
|
|
|
|
|
|
|
|
Example: !con((op a1:$name1, a2:$name2), (op b1:$name3)) results in
|
|
|
|
the DAG node (op a1:$name1, a2:$name2, b1:$name3).
|
|
|
|
|
|
|
|
``!dag(op, children, names)``
|
|
|
|
Generate a DAG node programmatically. 'children' and 'names' must be lists
|
|
|
|
of equal length or unset ('?'). 'names' must be a 'list<string>'.
|
|
|
|
|
|
|
|
Due to limitations of the type system, 'children' must be a list of items
|
|
|
|
of a common type. In practice, this means that they should either have the
|
|
|
|
same type or be records with a common superclass. Mixing dag and non-dag
|
2018-03-14 12:00:33 +01:00
|
|
|
items is not possible. However, '?' can be used.
|
2018-03-14 12:00:26 +01:00
|
|
|
|
2018-03-14 12:00:33 +01:00
|
|
|
Example: !dag(op, [a1, a2, ?], ["name1", "name2", "name3"]) results in
|
|
|
|
(op a1:$name1, a2:$name2, ?:$name3).
|
2018-03-14 12:00:26 +01:00
|
|
|
|
2019-12-11 13:02:15 +01:00
|
|
|
``!setop(dag, op)``
|
|
|
|
Return a DAG node with the same arguments as ``dag``, but with its
|
|
|
|
operator replaced with ``op``.
|
|
|
|
|
|
|
|
Example: ``!setop((foo 1, 2), bar)`` results in ``(bar 1, 2)``.
|
|
|
|
|
|
|
|
``!getop(dag)``
|
|
|
|
|
|
|
|
``!getop<type>(dag)``
|
|
|
|
Return the operator of the given DAG node.
|
|
|
|
Example: ``!getop((foo 1, 2))`` results in ``foo``.
|
|
|
|
|
|
|
|
The result of ``!getop`` can be used directly in a context where
|
|
|
|
any record value at all is acceptable (typically placing it into
|
|
|
|
another dag value). But in other contexts, it must be explicitly
|
|
|
|
cast to a particular class type. The ``!getop<type>`` syntax is
|
|
|
|
provided to make this easy.
|
|
|
|
|
|
|
|
For example, to assign the result to a class-typed value, you
|
|
|
|
could write either of these:
|
2019-12-23 21:52:39 +01:00
|
|
|
``BaseClass b = !getop<BaseClass>(someDag);``
|
2019-12-11 13:02:15 +01:00
|
|
|
|
2019-12-23 21:52:39 +01:00
|
|
|
``BaseClass b = !cast<BaseClass>(!getop(someDag));``
|
2019-12-11 13:02:15 +01:00
|
|
|
|
|
|
|
But to build a new dag node reusing the operator from another, no
|
|
|
|
cast is necessary:
|
2019-12-23 21:52:39 +01:00
|
|
|
``dag d = !dag(!getop(someDag), args, names);``
|
2019-12-11 13:02:15 +01:00
|
|
|
|
2014-05-07 12:13:19 +02:00
|
|
|
``!listconcat(a, b, ...)``
|
|
|
|
A list value that is the result of concatenating the 'a' and 'b' lists.
|
|
|
|
The lists must have the same element type.
|
|
|
|
More than two arguments are accepted with the result being the concatenation
|
|
|
|
of all the lists given.
|
|
|
|
|
2019-04-10 20:26:36 +02:00
|
|
|
``!listsplat(a, size)``
|
|
|
|
A list value that contains the value ``a`` ``size`` times.
|
|
|
|
Example: ``!listsplat(0, 2)`` results in ``[0, 0]``.
|
|
|
|
|
2014-05-02 21:25:52 +02:00
|
|
|
``!strconcat(a, b, ...)``
|
2014-04-01 11:51:49 +02:00
|
|
|
A string value that is the result of concatenating the 'a' and 'b' strings.
|
2014-05-02 21:25:52 +02:00
|
|
|
More than two arguments are accepted with the result being the concatenation
|
|
|
|
of all the strings given.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
``str1#str2``
|
|
|
|
"#" (paste) is a shorthand for !strconcat. It may concatenate things that
|
|
|
|
are not quoted strings, in which case an implicit !cast<string> is done on
|
|
|
|
the operand of the paste.
|
|
|
|
|
|
|
|
``!cast<type>(a)``
|
TableGen: Allow !cast of records, cleanup conversion machinery
Summary:
Distinguish two relationships between types: is-a and convertible-to.
For example, a bit is not an int or vice versa, but they can be
converted into each other (with range checks that you can think of
as "dynamic": unlike other type checks, those range checks do not
happen during parsing, but only once the final values have been
established).
Actually converting initializers between types is subtle: even
when values of type A can be converted to type B (e.g. int into
string), it may not be possible to do so with a concrete initializer
(e.g., a VarInit that refers to a variable of type int cannot
be immediately converted to a string).
For this reason, distinguish between getCastTo and convertInitializerTo:
the latter implements the actual conversion when appropriate, while
the former will first try to do the actual conversion and fall back
to introducing a !cast operation so that the conversion will be
delayed until variable references have been resolved.
To make the approach of adding !cast operations to work, !cast needs
to fallback to convertInitializerTo when the special string <-> record
logic does not apply.
This enables casting records to a subclass, although that new
functionality is only truly useful together with !isa, which will be
added in a later change.
The test is removed because it uses !srl on a bit sequence,
which cannot really be supported consistently, but luckily
isn't used anywhere either.
Change-Id: I98168bf52649176654ed2ec61a29bdb29970cfe7
Reviewers: arsenm, craig.topper, tra, MartinO
Subscribers: wdng, llvm-commits
Differential Revision: https://reviews.llvm.org/D43753
llvm-svn: 326785
2018-03-06 14:48:39 +01:00
|
|
|
If 'a' is a string, a record of type *type* obtained by looking up the
|
|
|
|
string 'a' in the list of all records defined by the time that all template
|
|
|
|
arguments in 'a' are fully resolved.
|
|
|
|
|
|
|
|
For example, if !cast<type>(a) appears in a multiclass definition, or in a
|
|
|
|
class instantiated inside of a multiclass definition, and 'a' does not
|
|
|
|
reference any template arguments of the multiclass, then a record of name
|
|
|
|
'a' must be instantiated earlier in the source file. If 'a' does reference
|
|
|
|
a template argument, then the lookup is delayed until defm statements
|
|
|
|
instantiating the multiclass (or later, if the defm occurs in another
|
|
|
|
multiclass and template arguments of the inner multiclass that are
|
|
|
|
referenced by 'a' are substituted by values that themselves contain
|
|
|
|
references to template arguments of the outer multiclass).
|
|
|
|
|
|
|
|
If the type of 'a' does not match *type*, TableGen aborts with an error.
|
|
|
|
|
|
|
|
Otherwise, perform a normal type cast e.g. between an int and a bit, or
|
|
|
|
between record types. This allows casting a record to a subclass, though if
|
|
|
|
the types do not match, constant folding will be inhibited. !cast<string>
|
|
|
|
is a special case in that the argument can be an int or a record. In the
|
|
|
|
latter case, the record's name is returned.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
2018-03-09 13:24:06 +01:00
|
|
|
``!isa<type>(a)``
|
|
|
|
Returns an integer: 1 if 'a' is dynamically of the given type, 0 otherwise.
|
|
|
|
|
2014-04-01 11:51:49 +02:00
|
|
|
``!subst(a, b, c)``
|
|
|
|
If 'a' and 'b' are of string type or are symbol references, substitute 'b'
|
|
|
|
for 'a' in 'c.' This operation is analogous to $(subst) in GNU make.
|
|
|
|
|
|
|
|
``!foreach(a, b, c)``
|
TableGen: Reimplement !foreach using the resolving mechanism
Summary:
This changes the syntax of !foreach so that the first "parameter" is
a new syntactic variable: !foreach(x, lst, expr) will define the
variable x within the scope of expr, and evaluation of the !foreach
will substitute elements of the given list (or dag) for x in expr.
Aside from leading to a nicer syntax, this allows more complex
expressions where x is deeply nested, or even constant expressions
in which x does not occur at all.
!foreach is currently not actually used anywhere in trunk, but I
plan to use it in the AMDGPU backend. If out-of-tree targets are
using it, they can adjust to the new syntax very easily.
Change-Id: Ib966694d8ab6542279d6bc358b6f4d767945a805
Reviewers: arsenm, craig.topper, tra, MartinO
Subscribers: wdng, llvm-commits, tpr
Differential Revision: https://reviews.llvm.org/D43651
llvm-svn: 326705
2018-03-05 16:21:04 +01:00
|
|
|
For each member of dag or list 'b' apply operator 'c'. 'a' is the name
|
|
|
|
of a variable that will be substituted by members of 'b' in 'c'.
|
|
|
|
This operation is analogous to $(foreach) in GNU make.
|
2014-04-01 11:51:49 +02:00
|
|
|
|
2018-03-06 14:49:16 +01:00
|
|
|
``!foldl(start, lst, a, b, expr)``
|
|
|
|
Perform a left-fold over 'lst' with the given starting value. 'a' and 'b'
|
|
|
|
are variable names which will be substituted in 'expr'. If you think of
|
|
|
|
expr as a function f(a,b), the fold will compute
|
|
|
|
'f(...f(f(start, lst[0]), lst[1]), ...), lst[n-1])' for a list of length n.
|
|
|
|
As usual, 'a' will be of the type of 'start', and 'b' will be of the type
|
|
|
|
of elements of 'lst'. These types need not be the same, but 'expr' must be
|
|
|
|
of the same type as 'start'.
|
|
|
|
|
2014-04-01 11:51:49 +02:00
|
|
|
``!head(a)``
|
|
|
|
The first element of list 'a.'
|
|
|
|
|
|
|
|
``!tail(a)``
|
|
|
|
The 2nd-N elements of list 'a.'
|
|
|
|
|
|
|
|
``!empty(a)``
|
|
|
|
An integer {0,1} indicating whether list 'a' is empty.
|
|
|
|
|
2018-02-23 11:46:07 +01:00
|
|
|
``!size(a)``
|
|
|
|
An integer indicating the number of elements in list 'a'.
|
|
|
|
|
2014-04-01 11:51:49 +02:00
|
|
|
``!if(a,b,c)``
|
|
|
|
'b' if the result of 'int' or 'bit' operator 'a' is nonzero, 'c' otherwise.
|
|
|
|
|
2019-01-25 11:25:25 +01:00
|
|
|
``!cond(condition_1 : val1, condition_2 : val2, ..., condition_n : valn)``
|
|
|
|
Instead of embedding !if inside !if which can get cumbersome,
|
|
|
|
one can use !cond. !cond returns 'val1' if the result of 'int' or 'bit'
|
|
|
|
operator 'condition1' is nonzero. Otherwise, it checks 'condition2'.
|
|
|
|
If 'condition2' is nonzero, returns 'val2', and so on.
|
2019-01-25 17:17:57 +01:00
|
|
|
If all conditions are zero, it reports an error.
|
2019-01-25 11:25:25 +01:00
|
|
|
|
2019-01-25 17:17:57 +01:00
|
|
|
For example, to convert an integer 'x' into a string:
|
|
|
|
!cond(!lt(x,0) : "negative", !eq(x,0) : "zero", 1 : "positive")
|
2019-01-25 11:25:25 +01:00
|
|
|
|
2014-04-01 11:51:49 +02:00
|
|
|
``!eq(a,b)``
|
|
|
|
'bit 1' if string a is equal to string b, 0 otherwise. This only operates
|
|
|
|
on string, int and bit objects. Use !cast<string> to compare other types of
|
|
|
|
objects.
|
|
|
|
|
2018-03-14 12:00:57 +01:00
|
|
|
``!ne(a,b)``
|
|
|
|
The negation of ``!eq(a,b)``.
|
|
|
|
|
|
|
|
``!le(a,b), !lt(a,b), !ge(a,b), !gt(a,b)``
|
|
|
|
(Signed) comparison of integer values that returns bit 1 or 0 depending on
|
|
|
|
the result of the comparison.
|
|
|
|
|
2018-03-14 12:00:43 +01:00
|
|
|
``!shl(a,b)`` ``!srl(a,b)`` ``!sra(a,b)``
|
|
|
|
The usual shift operators. Operations are on 64-bit integers, the result
|
|
|
|
is undefined for shift counts outside [0, 63].
|
|
|
|
|
2019-03-01 10:46:29 +01:00
|
|
|
``!add(a,b,...)`` ``!mul(a,b,...)`` ``!and(a,b,...)`` ``!or(a,b,...)``
|
2018-03-14 12:00:43 +01:00
|
|
|
The usual arithmetic and binary operators.
|
2014-07-17 19:04:27 +02:00
|
|
|
|
2014-04-01 11:51:49 +02:00
|
|
|
Note that all of the values have rules specifying how they convert to values
|
|
|
|
for different types. These rules allow you to assign a value like "``7``"
|
|
|
|
to a "``bits<4>``" value, for example.
|
|
|
|
|
|
|
|
Classes and definitions
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
As mentioned in the :doc:`introduction <index>`, classes and definitions (collectively known as
|
|
|
|
'records') in TableGen are the main high-level unit of information that TableGen
|
|
|
|
collects. Records are defined with a ``def`` or ``class`` keyword, the record
|
|
|
|
name, and an optional list of "`template arguments`_". If the record has
|
|
|
|
superclasses, they are specified as a comma separated list that starts with a
|
|
|
|
colon character ("``:``"). If `value definitions`_ or `let expressions`_ are
|
|
|
|
needed for the class, they are enclosed in curly braces ("``{}``"); otherwise,
|
|
|
|
the record ends with a semicolon.
|
|
|
|
|
|
|
|
Here is a simple TableGen file:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
class C { bit V = 1; }
|
|
|
|
def X : C;
|
|
|
|
def Y : C {
|
|
|
|
string Greeting = "hello";
|
|
|
|
}
|
|
|
|
|
|
|
|
This example defines two definitions, ``X`` and ``Y``, both of which derive from
|
|
|
|
the ``C`` class. Because of this, they both get the ``V`` bit value. The ``Y``
|
|
|
|
definition also gets the Greeting member as well.
|
|
|
|
|
|
|
|
In general, classes are useful for collecting together the commonality between a
|
|
|
|
group of records and isolating it in a single place. Also, classes permit the
|
|
|
|
specification of default values for their subclasses, allowing the subclasses to
|
|
|
|
override them as they wish.
|
|
|
|
|
|
|
|
.. _value definition:
|
|
|
|
.. _value definitions:
|
|
|
|
|
|
|
|
Value definitions
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Value definitions define named entries in records. A value must be defined
|
|
|
|
before it can be referred to as the operand for another value definition or
|
|
|
|
before the value is reset with a `let expression`_. A value is defined by
|
|
|
|
specifying a `TableGen type`_ and a name. If an initial value is available, it
|
|
|
|
may be specified after the type with an equal sign. Value definitions require
|
|
|
|
terminating semicolons.
|
|
|
|
|
|
|
|
.. _let expression:
|
|
|
|
.. _let expressions:
|
|
|
|
.. _"let" expressions within a record:
|
|
|
|
|
|
|
|
'let' expressions
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
A record-level let expression is used to change the value of a value definition
|
|
|
|
in a record. This is primarily useful when a superclass defines a value that a
|
|
|
|
derived class or definition wants to override. Let expressions consist of the
|
|
|
|
'``let``' keyword followed by a value name, an equal sign ("``=``"), and a new
|
|
|
|
value. For example, a new class could be added to the example above, redefining
|
|
|
|
the ``V`` field for all of its subclasses:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
class D : C { let V = 0; }
|
|
|
|
def Z : D;
|
|
|
|
|
|
|
|
In this case, the ``Z`` definition will have a zero value for its ``V`` value,
|
|
|
|
despite the fact that it derives (indirectly) from the ``C`` class, because the
|
|
|
|
``D`` class overrode its value.
|
|
|
|
|
2018-06-04 16:26:12 +02:00
|
|
|
References between variables in a record are substituted late, which gives
|
|
|
|
``let`` expressions unusual power. Consider this admittedly silly example:
|
|
|
|
|
|
|
|
.. code-block:: text
|
|
|
|
|
|
|
|
class A<int x> {
|
|
|
|
int Y = x;
|
|
|
|
int Yplus1 = !add(Y, 1);
|
|
|
|
int xplus1 = !add(x, 1);
|
|
|
|
}
|
|
|
|
def Z : A<5> {
|
|
|
|
let Y = 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
The value of ``Z.xplus1`` will be 6, but the value of ``Z.Yplus1`` is 11. Use
|
|
|
|
this power wisely.
|
|
|
|
|
2014-04-01 11:51:49 +02:00
|
|
|
.. _template arguments:
|
|
|
|
|
|
|
|
Class template arguments
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
TableGen permits the definition of parameterized classes as well as normal
|
|
|
|
concrete classes. Parameterized TableGen classes specify a list of variable
|
|
|
|
bindings (which may optionally have defaults) that are bound when used. Here is
|
|
|
|
a simple example:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
class FPFormat<bits<3> val> {
|
|
|
|
bits<3> Value = val;
|
|
|
|
}
|
|
|
|
def NotFP : FPFormat<0>;
|
|
|
|
def ZeroArgFP : FPFormat<1>;
|
|
|
|
def OneArgFP : FPFormat<2>;
|
|
|
|
def OneArgFPRW : FPFormat<3>;
|
|
|
|
def TwoArgFP : FPFormat<4>;
|
|
|
|
def CompareFP : FPFormat<5>;
|
|
|
|
def CondMovFP : FPFormat<6>;
|
|
|
|
def SpecialFP : FPFormat<7>;
|
|
|
|
|
|
|
|
In this case, template arguments are used as a space efficient way to specify a
|
|
|
|
list of "enumeration values", each with a "``Value``" field set to the specified
|
|
|
|
integer.
|
|
|
|
|
|
|
|
The more esoteric forms of `TableGen expressions`_ are useful in conjunction
|
|
|
|
with template arguments. As an example:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
class ModRefVal<bits<2> val> {
|
|
|
|
bits<2> Value = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
def None : ModRefVal<0>;
|
|
|
|
def Mod : ModRefVal<1>;
|
|
|
|
def Ref : ModRefVal<2>;
|
|
|
|
def ModRef : ModRefVal<3>;
|
|
|
|
|
|
|
|
class Value<ModRefVal MR> {
|
|
|
|
// Decode some information into a more convenient format, while providing
|
|
|
|
// a nice interface to the user of the "Value" class.
|
|
|
|
bit isMod = MR.Value{0};
|
|
|
|
bit isRef = MR.Value{1};
|
|
|
|
|
|
|
|
// other stuff...
|
|
|
|
}
|
|
|
|
|
|
|
|
// Example uses
|
|
|
|
def bork : Value<Mod>;
|
|
|
|
def zork : Value<Ref>;
|
|
|
|
def hork : Value<ModRef>;
|
|
|
|
|
|
|
|
This is obviously a contrived example, but it shows how template arguments can
|
|
|
|
be used to decouple the interface provided to the user of the class from the
|
|
|
|
actual internal data representation expected by the class. In this case,
|
|
|
|
running ``llvm-tblgen`` on the example prints the following definitions:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
def bork { // Value
|
|
|
|
bit isMod = 1;
|
|
|
|
bit isRef = 0;
|
|
|
|
}
|
|
|
|
def hork { // Value
|
|
|
|
bit isMod = 1;
|
|
|
|
bit isRef = 1;
|
|
|
|
}
|
|
|
|
def zork { // Value
|
|
|
|
bit isMod = 0;
|
|
|
|
bit isRef = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
This shows that TableGen was able to dig into the argument and extract a piece
|
|
|
|
of information that was requested by the designer of the "Value" class. For
|
|
|
|
more realistic examples, please see existing users of TableGen, such as the X86
|
|
|
|
backend.
|
|
|
|
|
|
|
|
Multiclass definitions and instances
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
While classes with template arguments are a good way to factor commonality
|
|
|
|
between two instances of a definition, multiclasses allow a convenient notation
|
|
|
|
for defining multiple definitions at once (instances of implicitly constructed
|
|
|
|
classes). For example, consider an 3-address instruction set whose instructions
|
|
|
|
come in two forms: "``reg = reg op reg``" and "``reg = reg op imm``"
|
|
|
|
(e.g. SPARC). In this case, you'd like to specify in one place that this
|
|
|
|
commonality exists, then in a separate place indicate what all the ops are.
|
|
|
|
|
|
|
|
Here is an example TableGen fragment that shows this idea:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
def ops;
|
|
|
|
def GPR;
|
|
|
|
def Imm;
|
|
|
|
class inst<int opc, string asmstr, dag operandlist>;
|
|
|
|
|
|
|
|
multiclass ri_inst<int opc, string asmstr> {
|
|
|
|
def _rr : inst<opc, !strconcat(asmstr, " $dst, $src1, $src2"),
|
|
|
|
(ops GPR:$dst, GPR:$src1, GPR:$src2)>;
|
|
|
|
def _ri : inst<opc, !strconcat(asmstr, " $dst, $src1, $src2"),
|
|
|
|
(ops GPR:$dst, GPR:$src1, Imm:$src2)>;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Instantiations of the ri_inst multiclass.
|
|
|
|
defm ADD : ri_inst<0b111, "add">;
|
|
|
|
defm SUB : ri_inst<0b101, "sub">;
|
|
|
|
defm MUL : ri_inst<0b100, "mul">;
|
|
|
|
...
|
|
|
|
|
|
|
|
The name of the resultant definitions has the multidef fragment names appended
|
|
|
|
to them, so this defines ``ADD_rr``, ``ADD_ri``, ``SUB_rr``, etc. A defm may
|
|
|
|
inherit from multiple multiclasses, instantiating definitions from each
|
|
|
|
multiclass. Using a multiclass this way is exactly equivalent to instantiating
|
|
|
|
the classes multiple times yourself, e.g. by writing:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
def ops;
|
|
|
|
def GPR;
|
|
|
|
def Imm;
|
|
|
|
class inst<int opc, string asmstr, dag operandlist>;
|
|
|
|
|
|
|
|
class rrinst<int opc, string asmstr>
|
|
|
|
: inst<opc, !strconcat(asmstr, " $dst, $src1, $src2"),
|
|
|
|
(ops GPR:$dst, GPR:$src1, GPR:$src2)>;
|
|
|
|
|
|
|
|
class riinst<int opc, string asmstr>
|
|
|
|
: inst<opc, !strconcat(asmstr, " $dst, $src1, $src2"),
|
|
|
|
(ops GPR:$dst, GPR:$src1, Imm:$src2)>;
|
|
|
|
|
|
|
|
// Instantiations of the ri_inst multiclass.
|
|
|
|
def ADD_rr : rrinst<0b111, "add">;
|
|
|
|
def ADD_ri : riinst<0b111, "add">;
|
|
|
|
def SUB_rr : rrinst<0b101, "sub">;
|
|
|
|
def SUB_ri : riinst<0b101, "sub">;
|
|
|
|
def MUL_rr : rrinst<0b100, "mul">;
|
|
|
|
def MUL_ri : riinst<0b100, "mul">;
|
|
|
|
...
|
|
|
|
|
|
|
|
A ``defm`` can also be used inside a multiclass providing several levels of
|
|
|
|
multiclass instantiations.
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
class Instruction<bits<4> opc, string Name> {
|
|
|
|
bits<4> opcode = opc;
|
|
|
|
string name = Name;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass basic_r<bits<4> opc> {
|
|
|
|
def rr : Instruction<opc, "rr">;
|
|
|
|
def rm : Instruction<opc, "rm">;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass basic_s<bits<4> opc> {
|
|
|
|
defm SS : basic_r<opc>;
|
|
|
|
defm SD : basic_r<opc>;
|
|
|
|
def X : Instruction<opc, "x">;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass basic_p<bits<4> opc> {
|
|
|
|
defm PS : basic_r<opc>;
|
|
|
|
defm PD : basic_r<opc>;
|
|
|
|
def Y : Instruction<opc, "y">;
|
|
|
|
}
|
|
|
|
|
|
|
|
defm ADD : basic_s<0xf>, basic_p<0xf>;
|
|
|
|
...
|
|
|
|
|
|
|
|
// Results
|
|
|
|
def ADDPDrm { ...
|
|
|
|
def ADDPDrr { ...
|
|
|
|
def ADDPSrm { ...
|
|
|
|
def ADDPSrr { ...
|
|
|
|
def ADDSDrm { ...
|
|
|
|
def ADDSDrr { ...
|
|
|
|
def ADDY { ...
|
|
|
|
def ADDX { ...
|
|
|
|
|
|
|
|
``defm`` declarations can inherit from classes too, the rule to follow is that
|
|
|
|
the class list must start after the last multiclass, and there must be at least
|
|
|
|
one multiclass before them.
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
class XD { bits<4> Prefix = 11; }
|
|
|
|
class XS { bits<4> Prefix = 12; }
|
|
|
|
|
|
|
|
class I<bits<4> op> {
|
|
|
|
bits<4> opcode = op;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass R {
|
|
|
|
def rr : I<4>;
|
|
|
|
def rm : I<2>;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass Y {
|
|
|
|
defm SS : R, XD;
|
|
|
|
defm SD : R, XS;
|
|
|
|
}
|
|
|
|
|
|
|
|
defm Instr : Y;
|
|
|
|
|
|
|
|
// Results
|
|
|
|
def InstrSDrm {
|
|
|
|
bits<4> opcode = { 0, 0, 1, 0 };
|
|
|
|
bits<4> Prefix = { 1, 1, 0, 0 };
|
|
|
|
}
|
|
|
|
...
|
|
|
|
def InstrSSrr {
|
|
|
|
bits<4> opcode = { 0, 1, 0, 0 };
|
|
|
|
bits<4> Prefix = { 1, 0, 1, 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
File scope entities
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
File inclusion
|
|
|
|
^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
TableGen supports the '``include``' token, which textually substitutes the
|
|
|
|
specified file in place of the include directive. The filename should be
|
|
|
|
specified as a double quoted string immediately after the '``include``' keyword.
|
|
|
|
Example:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
include "foo.td"
|
|
|
|
|
|
|
|
'let' expressions
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
"Let" expressions at file scope are similar to `"let" expressions within a
|
|
|
|
record`_, except they can specify a value binding for multiple records at a
|
|
|
|
time, and may be useful in certain other cases. File-scope let expressions are
|
|
|
|
really just another way that TableGen allows the end-user to factor out
|
|
|
|
commonality from the records.
|
|
|
|
|
|
|
|
File-scope "let" expressions take a comma-separated list of bindings to apply,
|
|
|
|
and one or more records to bind the values in. Here are some examples:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
let isTerminator = 1, isReturn = 1, isBarrier = 1, hasCtrlDep = 1 in
|
|
|
|
def RET : I<0xC3, RawFrm, (outs), (ins), "ret", [(X86retflag 0)]>;
|
|
|
|
|
|
|
|
let isCall = 1 in
|
|
|
|
// All calls clobber the non-callee saved registers...
|
|
|
|
let Defs = [EAX, ECX, EDX, FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0,
|
|
|
|
MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
|
|
|
|
XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7, EFLAGS] in {
|
|
|
|
def CALLpcrel32 : Ii32<0xE8, RawFrm, (outs), (ins i32imm:$dst,variable_ops),
|
|
|
|
"call\t${dst:call}", []>;
|
|
|
|
def CALL32r : I<0xFF, MRM2r, (outs), (ins GR32:$dst, variable_ops),
|
|
|
|
"call\t{*}$dst", [(X86call GR32:$dst)]>;
|
|
|
|
def CALL32m : I<0xFF, MRM2m, (outs), (ins i32mem:$dst, variable_ops),
|
|
|
|
"call\t{*}$dst", []>;
|
|
|
|
}
|
|
|
|
|
|
|
|
File-scope "let" expressions are often useful when a couple of definitions need
|
|
|
|
to be added to several records, and the records do not otherwise need to be
|
|
|
|
opened, as in the case with the ``CALL*`` instructions above.
|
|
|
|
|
|
|
|
It's also possible to use "let" expressions inside multiclasses, providing more
|
|
|
|
ways to factor out commonality from the records, specially if using several
|
|
|
|
levels of multiclass instantiations. This also avoids the need of using "let"
|
|
|
|
expressions within subsequent records inside a multiclass.
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
multiclass basic_r<bits<4> opc> {
|
|
|
|
let Predicates = [HasSSE2] in {
|
|
|
|
def rr : Instruction<opc, "rr">;
|
|
|
|
def rm : Instruction<opc, "rm">;
|
|
|
|
}
|
|
|
|
let Predicates = [HasSSE3] in
|
|
|
|
def rx : Instruction<opc, "rx">;
|
|
|
|
}
|
|
|
|
|
|
|
|
multiclass basic_ss<bits<4> opc> {
|
|
|
|
let IsDouble = 0 in
|
|
|
|
defm SS : basic_r<opc>;
|
|
|
|
|
|
|
|
let IsDouble = 1 in
|
|
|
|
defm SD : basic_r<opc>;
|
|
|
|
}
|
|
|
|
|
|
|
|
defm ADD : basic_ss<0xf>;
|
|
|
|
|
|
|
|
Looping
|
|
|
|
^^^^^^^
|
|
|
|
|
|
|
|
TableGen supports the '``foreach``' block, which textually replicates the loop
|
|
|
|
body, substituting iterator values for iterator references in the body.
|
|
|
|
Example:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
foreach i = [0, 1, 2, 3] in {
|
|
|
|
def R#i : Register<...>;
|
|
|
|
def F#i : Register<...>;
|
|
|
|
}
|
|
|
|
|
|
|
|
This will create objects ``R0``, ``R1``, ``R2`` and ``R3``. ``foreach`` blocks
|
|
|
|
may be nested. If there is only one item in the body the braces may be
|
|
|
|
elided:
|
|
|
|
|
[docs] Fixing Sphinx warnings to unclog the buildbot
Lots of blocks had "llvm" or "nasm" syntax types but either weren't following
the syntax, or the syntax has changed (and sphinx hasn't keep up) or the type
doesn't even exist (nasm?).
Other documents had :options: what were invalid. I only removed those that had
warnings, and left the ones that didn't, in order to follow the principle of
least surprise.
This is like this for ages, but the buildbot is now failing on errors. It may
take a while to upgrade the buildbot's sphinx, if that's even possible, but
that shouldn't stop us from getting docs updates (which seem down for quite
a while).
Also, we're not losing any syntax highlight, since when it doesn't parse, it
doesn't colour. Ie. those blocks are not being highlighted anyway.
I'm trying to get all docs in one go, so that it's easy to revert later if we
do fix, or at least easy to know what's to fix.
llvm-svn: 276109
2016-07-20 14:16:38 +02:00
|
|
|
.. code-block:: text
|
2014-04-01 11:51:49 +02:00
|
|
|
|
|
|
|
foreach i = [0, 1, 2, 3] in
|
|
|
|
def R#i : Register<...>;
|
|
|
|
|
|
|
|
Code Generator backend info
|
|
|
|
===========================
|
|
|
|
|
|
|
|
Expressions used by code generator to describe instructions and isel patterns:
|
|
|
|
|
|
|
|
``(implicit a)``
|
|
|
|
an implicitly defined physical register. This tells the dag instruction
|
|
|
|
selection emitter the input pattern's extra definitions matches implicit
|
|
|
|
physical register definitions.
|
|
|
|
|