OSDN Git Service

[BPF] add new intrinsics preserve_{array,union,struct}_access_index
[android-x86/external-llvm.git] / docs / MIRLangRef.rst
1 ========================================
2 Machine IR (MIR) Format Reference Manual
3 ========================================
4
5 .. contents::
6    :local:
7
8 .. warning::
9   This is a work in progress.
10
11 Introduction
12 ============
13
14 This document is a reference manual for the Machine IR (MIR) serialization
15 format. MIR is a human readable serialization format that is used to represent
16 LLVM's :ref:`machine specific intermediate representation
17 <machine code representation>`.
18
19 The MIR serialization format is designed to be used for testing the code
20 generation passes in LLVM.
21
22 Overview
23 ========
24
25 The MIR serialization format uses a YAML container. YAML is a standard
26 data serialization language, and the full YAML language spec can be read at
27 `yaml.org
28 <http://www.yaml.org/spec/1.2/spec.html#Introduction>`_.
29
30 A MIR file is split up into a series of `YAML documents`_. The first document
31 can contain an optional embedded LLVM IR module, and the rest of the documents
32 contain the serialized machine functions.
33
34 .. _YAML documents: http://www.yaml.org/spec/1.2/spec.html#id2800132
35
36 MIR Testing Guide
37 =================
38
39 You can use the MIR format for testing in two different ways:
40
41 - You can write MIR tests that invoke a single code generation pass using the
42   ``-run-pass`` option in llc.
43
44 - You can use llc's ``-stop-after`` option with existing or new LLVM assembly
45   tests and check the MIR output of a specific code generation pass.
46
47 Testing Individual Code Generation Passes
48 -----------------------------------------
49
50 The ``-run-pass`` option in llc allows you to create MIR tests that invoke just
51 a single code generation pass. When this option is used, llc will parse an
52 input MIR file, run the specified code generation pass(es), and output the
53 resulting MIR code.
54
55 You can generate an input MIR file for the test by using the ``-stop-after`` or
56 ``-stop-before`` option in llc. For example, if you would like to write a test
57 for the post register allocation pseudo instruction expansion pass, you can
58 specify the machine copy propagation pass in the ``-stop-after`` option, as it
59 runs just before the pass that we are trying to test:
60
61    ``llc -stop-after=machine-cp bug-trigger.ll > test.mir``
62
63 If the same pass is run multiple times, a run index can be included
64 after the name with a comma.
65
66    ``llc -stop-after=dead-mi-elimination,1 bug-trigger.ll > test.mir``
67
68 After generating the input MIR file, you'll have to add a run line that uses
69 the ``-run-pass`` option to it. In order to test the post register allocation
70 pseudo instruction expansion pass on X86-64, a run line like the one shown
71 below can be used:
72
73     ``# RUN: llc -o - %s -mtriple=x86_64-- -run-pass=postrapseudos | FileCheck %s``
74
75 The MIR files are target dependent, so they have to be placed in the target
76 specific test directories (``lib/CodeGen/TARGETNAME``). They also need to
77 specify a target triple or a target architecture either in the run line or in
78 the embedded LLVM IR module.
79
80 Simplifying MIR files
81 ^^^^^^^^^^^^^^^^^^^^^
82
83 The MIR code coming out of ``-stop-after``/``-stop-before`` is very verbose;
84 Tests are more accessible and future proof when simplified:
85
86 - Use the ``-simplify-mir`` option with llc.
87
88 - Machine function attributes often have default values or the test works just
89   as well with default values. Typical candidates for this are: `alignment:`,
90   `exposesReturnsTwice`, `legalized`, `regBankSelected`, `selected`.
91   The whole `frameInfo` section is often unnecessary if there is no special
92   frame usage in the function. `tracksRegLiveness` on the other hand is often
93   necessary for some passes that care about block livein lists.
94
95 - The (global) `liveins:` list is typically only interesting for early
96   instruction selection passes and can be removed when testing later passes.
97   The per-block `liveins:` on the other hand are necessary if
98   `tracksRegLiveness` is true.
99
100 - Branch probability data in block `successors:` lists can be dropped if the
101   test doesn't depend on it. Example:
102   `successors: %bb.1(0x40000000), %bb.2(0x40000000)` can be replaced with
103   `successors: %bb.1, %bb.2`.
104
105 - MIR code contains a whole IR module. This is necessary because there are
106   no equivalents in MIR for global variables, references to external functions,
107   function attributes, metadata, debug info. Instead some MIR data references
108   the IR constructs. You can often remove them if the test doesn't depend on
109   them.
110
111 - Alias Analysis is performed on IR values. These are referenced by memory
112   operands in MIR. Example: `:: (load 8 from %ir.foobar, !alias.scope !9)`.
113   If the test doesn't depend on (good) alias analysis the references can be
114   dropped: `:: (load 8)`
115
116 - MIR blocks can reference IR blocks for debug printing, profile information
117   or debug locations. Example: `bb.42.myblock` in MIR references the IR block
118   `myblock`. It is usually possible to drop the `.myblock` reference and simply
119   use `bb.42`.
120
121 - If there are no memory operands or blocks referencing the IR then the
122   IR function can be replaced by a parameterless dummy function like
123   `define @func() { ret void }`.
124
125 - It is possible to drop the whole IR section of the MIR file if it only
126   contains dummy functions (see above). The .mir loader will create the
127   IR functions automatically in this case.
128
129 .. _limitations:
130
131 Limitations
132 -----------
133
134 Currently the MIR format has several limitations in terms of which state it
135 can serialize:
136
137 - The target-specific state in the target-specific ``MachineFunctionInfo``
138   subclasses isn't serialized at the moment.
139
140 - The target-specific ``MachineConstantPoolValue`` subclasses (in the ARM and
141   SystemZ backends) aren't serialized at the moment.
142
143 - The ``MCSymbol`` machine operands don't support temporary or local symbols.
144
145 - A lot of the state in ``MachineModuleInfo`` isn't serialized - only the CFI
146   instructions and the variable debug information from MMI is serialized right
147   now.
148
149 These limitations impose restrictions on what you can test with the MIR format.
150 For now, tests that would like to test some behaviour that depends on the state
151 of temporary or local ``MCSymbol``  operands or the exception handling state in
152 MMI, can't use the MIR format. As well as that, tests that test some behaviour
153 that depends on the state of the target specific ``MachineFunctionInfo`` or
154 ``MachineConstantPoolValue`` subclasses can't use the MIR format at the moment.
155
156 High Level Structure
157 ====================
158
159 .. _embedded-module:
160
161 Embedded Module
162 ---------------
163
164 When the first YAML document contains a `YAML block literal string`_, the MIR
165 parser will treat this string as an LLVM assembly language string that
166 represents an embedded LLVM IR module.
167 Here is an example of a YAML document that contains an LLVM module:
168
169 .. code-block:: llvm
170
171        define i32 @inc(i32* %x) {
172        entry:
173          %0 = load i32, i32* %x
174          %1 = add i32 %0, 1
175          store i32 %1, i32* %x
176          ret i32 %1
177        }
178
179 .. _YAML block literal string: http://www.yaml.org/spec/1.2/spec.html#id2795688
180
181 Machine Functions
182 -----------------
183
184 The remaining YAML documents contain the machine functions. This is an example
185 of such YAML document:
186
187 .. code-block:: text
188
189      ---
190      name:            inc
191      tracksRegLiveness: true
192      liveins:
193        - { reg: '$rdi' }
194      callSites:
195        - { bb: 0, offset: 3, fwdArgRegs:
196            - { arg: 0, reg: '$edi' } }
197      body: |
198        bb.0.entry:
199          liveins: $rdi
200
201          $eax = MOV32rm $rdi, 1, _, 0, _
202          $eax = INC32r killed $eax, implicit-def dead $eflags
203          MOV32mr killed $rdi, 1, _, 0, _, $eax
204          CALL64pcrel32 @foo <regmask...>
205          RETQ $eax
206      ...
207
208 The document above consists of attributes that represent the various
209 properties and data structures in a machine function.
210
211 The attribute ``name`` is required, and its value should be identical to the
212 name of a function that this machine function is based on.
213
214 The attribute ``body`` is a `YAML block literal string`_. Its value represents
215 the function's machine basic blocks and their machine instructions.
216
217 The attribute ``callSites`` is a representation of call site information which
218 keeps track of call instructions and registers used to transfer call arguments.
219
220 Machine Instructions Format Reference
221 =====================================
222
223 The machine basic blocks and their instructions are represented using a custom,
224 human readable serialization language. This language is used in the
225 `YAML block literal string`_ that corresponds to the machine function's body.
226
227 A source string that uses this language contains a list of machine basic
228 blocks, which are described in the section below.
229
230 Machine Basic Blocks
231 --------------------
232
233 A machine basic block is defined in a single block definition source construct
234 that contains the block's ID.
235 The example below defines two blocks that have an ID of zero and one:
236
237 .. code-block:: text
238
239     bb.0:
240       <instructions>
241     bb.1:
242       <instructions>
243
244 A machine basic block can also have a name. It should be specified after the ID
245 in the block's definition:
246
247 .. code-block:: text
248
249     bb.0.entry:       ; This block's name is "entry"
250        <instructions>
251
252 The block's name should be identical to the name of the IR block that this
253 machine block is based on.
254
255 .. _block-references:
256
257 Block References
258 ^^^^^^^^^^^^^^^^
259
260 The machine basic blocks are identified by their ID numbers. Individual
261 blocks are referenced using the following syntax:
262
263 .. code-block:: text
264
265     %bb.<id>
266
267 Example:
268
269 .. code-block:: llvm
270
271     %bb.0
272
273 The following syntax is also supported, but the former syntax is preferred for
274 block references:
275
276 .. code-block:: text
277
278     %bb.<id>[.<name>]
279
280 Example:
281
282 .. code-block:: llvm
283
284     %bb.1.then
285
286 Successors
287 ^^^^^^^^^^
288
289 The machine basic block's successors have to be specified before any of the
290 instructions:
291
292 .. code-block:: text
293
294     bb.0.entry:
295       successors: %bb.1.then, %bb.2.else
296       <instructions>
297     bb.1.then:
298       <instructions>
299     bb.2.else:
300       <instructions>
301
302 The branch weights can be specified in brackets after the successor blocks.
303 The example below defines a block that has two successors with branch weights
304 of 32 and 16:
305
306 .. code-block:: text
307
308     bb.0.entry:
309       successors: %bb.1.then(32), %bb.2.else(16)
310
311 .. _bb-liveins:
312
313 Live In Registers
314 ^^^^^^^^^^^^^^^^^
315
316 The machine basic block's live in registers have to be specified before any of
317 the instructions:
318
319 .. code-block:: text
320
321     bb.0.entry:
322       liveins: $edi, $esi
323
324 The list of live in registers and successors can be empty. The language also
325 allows multiple live in register and successor lists - they are combined into
326 one list by the parser.
327
328 Miscellaneous Attributes
329 ^^^^^^^^^^^^^^^^^^^^^^^^
330
331 The attributes ``IsAddressTaken``, ``IsLandingPad`` and ``Alignment`` can be
332 specified in brackets after the block's definition:
333
334 .. code-block:: text
335
336     bb.0.entry (address-taken):
337       <instructions>
338     bb.2.else (align 4):
339       <instructions>
340     bb.3(landing-pad, align 4):
341       <instructions>
342
343 .. TODO: Describe the way the reference to an unnamed LLVM IR block can be
344    preserved.
345
346 Machine Instructions
347 --------------------
348
349 A machine instruction is composed of a name,
350 :ref:`machine operands <machine-operands>`,
351 :ref:`instruction flags <instruction-flags>`, and machine memory operands.
352
353 The instruction's name is usually specified before the operands. The example
354 below shows an instance of the X86 ``RETQ`` instruction with a single machine
355 operand:
356
357 .. code-block:: text
358
359     RETQ $eax
360
361 However, if the machine instruction has one or more explicitly defined register
362 operands, the instruction's name has to be specified after them. The example
363 below shows an instance of the AArch64 ``LDPXpost`` instruction with three
364 defined register operands:
365
366 .. code-block:: text
367
368     $sp, $fp, $lr = LDPXpost $sp, 2
369
370 The instruction names are serialized using the exact definitions from the
371 target's ``*InstrInfo.td`` files, and they are case sensitive. This means that
372 similar instruction names like ``TSTri`` and ``tSTRi`` represent different
373 machine instructions.
374
375 .. _instruction-flags:
376
377 Instruction Flags
378 ^^^^^^^^^^^^^^^^^
379
380 The flag ``frame-setup`` or ``frame-destroy`` can be specified before the
381 instruction's name:
382
383 .. code-block:: text
384
385     $fp = frame-setup ADDXri $sp, 0, 0
386
387 .. code-block:: text
388
389     $x21, $x20 = frame-destroy LDPXi $sp
390
391 .. _registers:
392
393 Bundled Instructions
394 ^^^^^^^^^^^^^^^^^^^^
395
396 The syntax for bundled instructions is the following:
397
398 .. code-block:: text
399
400     BUNDLE implicit-def $r0, implicit-def $r1, implicit $r2 {
401       $r0 = SOME_OP $r2
402       $r1 = ANOTHER_OP internal $r0
403     }
404
405 The first instruction is often a bundle header. The instructions between ``{``
406 and ``}`` are bundled with the first instruction.
407
408 Registers
409 ---------
410
411 Registers are one of the key primitives in the machine instructions
412 serialization language. They are primarily used in the
413 :ref:`register machine operands <register-operands>`,
414 but they can also be used in a number of other places, like the
415 :ref:`basic block's live in list <bb-liveins>`.
416
417 The physical registers are identified by their name and by the '$' prefix sigil.
418 They use the following syntax:
419
420 .. code-block:: text
421
422     $<name>
423
424 The example below shows three X86 physical registers:
425
426 .. code-block:: text
427
428     $eax
429     $r15
430     $eflags
431
432 The virtual registers are identified by their ID number and by the '%' sigil.
433 They use the following syntax:
434
435 .. code-block:: text
436
437     %<id>
438
439 Example:
440
441 .. code-block:: text
442
443     %0
444
445 The null registers are represented using an underscore ('``_``'). They can also be
446 represented using a '``$noreg``' named register, although the former syntax
447 is preferred.
448
449 .. _machine-operands:
450
451 Machine Operands
452 ----------------
453
454 There are seventeen different kinds of machine operands, and all of them can be
455 serialized.
456
457 Immediate Operands
458 ^^^^^^^^^^^^^^^^^^
459
460 The immediate machine operands are untyped, 64-bit signed integers. The
461 example below shows an instance of the X86 ``MOV32ri`` instruction that has an
462 immediate machine operand ``-42``:
463
464 .. code-block:: text
465
466     $eax = MOV32ri -42
467
468 An immediate operand is also used to represent a subregister index when the
469 machine instruction has one of the following opcodes:
470
471 - ``EXTRACT_SUBREG``
472
473 - ``INSERT_SUBREG``
474
475 - ``REG_SEQUENCE``
476
477 - ``SUBREG_TO_REG``
478
479 In case this is true, the Machine Operand is printed according to the target.
480
481 For example:
482
483 In AArch64RegisterInfo.td:
484
485 .. code-block:: text
486
487   def sub_32 : SubRegIndex<32>;
488
489 If the third operand is an immediate with the value ``15`` (target-dependent
490 value), based on the instruction's opcode and the operand's index the operand
491 will be printed as ``%subreg.sub_32``:
492
493 .. code-block:: text
494
495     %1:gpr64 = SUBREG_TO_REG 0, %0, %subreg.sub_32
496
497 For integers > 64bit, we use a special machine operand, ``MO_CImmediate``,
498 which stores the immediate in a ``ConstantInt`` using an ``APInt`` (LLVM's
499 arbitrary precision integers).
500
501 .. TODO: Describe the FPIMM immediate operands.
502
503 .. _register-operands:
504
505 Register Operands
506 ^^^^^^^^^^^^^^^^^
507
508 The :ref:`register <registers>` primitive is used to represent the register
509 machine operands. The register operands can also have optional
510 :ref:`register flags <register-flags>`,
511 :ref:`a subregister index <subregister-indices>`,
512 and a reference to the tied register operand.
513 The full syntax of a register operand is shown below:
514
515 .. code-block:: text
516
517     [<flags>] <register> [ :<subregister-idx-name> ] [ (tied-def <tied-op>) ]
518
519 This example shows an instance of the X86 ``XOR32rr`` instruction that has
520 5 register operands with different register flags:
521
522 .. code-block:: text
523
524   dead $eax = XOR32rr undef $eax, undef $eax, implicit-def dead $eflags, implicit-def $al
525
526 .. _register-flags:
527
528 Register Flags
529 ~~~~~~~~~~~~~~
530
531 The table below shows all of the possible register flags along with the
532 corresponding internal ``llvm::RegState`` representation:
533
534 .. list-table::
535    :header-rows: 1
536
537    * - Flag
538      - Internal Value
539
540    * - ``implicit``
541      - ``RegState::Implicit``
542
543    * - ``implicit-def``
544      - ``RegState::ImplicitDefine``
545
546    * - ``def``
547      - ``RegState::Define``
548
549    * - ``dead``
550      - ``RegState::Dead``
551
552    * - ``killed``
553      - ``RegState::Kill``
554
555    * - ``undef``
556      - ``RegState::Undef``
557
558    * - ``internal``
559      - ``RegState::InternalRead``
560
561    * - ``early-clobber``
562      - ``RegState::EarlyClobber``
563
564    * - ``debug-use``
565      - ``RegState::Debug``
566
567    * - ``renamable``
568      - ``RegState::Renamable``
569
570 .. _subregister-indices:
571
572 Subregister Indices
573 ~~~~~~~~~~~~~~~~~~~
574
575 The register machine operands can reference a portion of a register by using
576 the subregister indices. The example below shows an instance of the ``COPY``
577 pseudo instruction that uses the X86 ``sub_8bit`` subregister index to copy 8
578 lower bits from the 32-bit virtual register 0 to the 8-bit virtual register 1:
579
580 .. code-block:: text
581
582     %1 = COPY %0:sub_8bit
583
584 The names of the subregister indices are target specific, and are typically
585 defined in the target's ``*RegisterInfo.td`` file.
586
587 Constant Pool Indices
588 ^^^^^^^^^^^^^^^^^^^^^
589
590 A constant pool index (CPI) operand is printed using its index in the
591 function's ``MachineConstantPool`` and an offset.
592
593 For example, a CPI with the index 1 and offset 8:
594
595 .. code-block:: text
596
597     %1:gr64 = MOV64ri %const.1 + 8
598
599 For a CPI with the index 0 and offset -12:
600
601 .. code-block:: text
602
603     %1:gr64 = MOV64ri %const.0 - 12
604
605 A constant pool entry is bound to a LLVM IR ``Constant`` or a target-specific
606 ``MachineConstantPoolValue``. When serializing all the function's constants the
607 following format is used:
608
609 .. code-block:: text
610
611     constants:
612       - id:               <index>
613         value:            <value>
614         alignment:        <alignment>
615         isTargetSpecific: <target-specific>
616
617 where ``<index>`` is a 32-bit unsigned integer, ``<value>`` is a `LLVM IR Constant
618 <https://www.llvm.org/docs/LangRef.html#constants>`_, alignment is a 32-bit
619 unsigned integer, and ``<target-specific>`` is either true or false.
620
621 Example:
622
623 .. code-block:: text
624
625     constants:
626       - id:               0
627         value:            'double 3.250000e+00'
628         alignment:        8
629       - id:               1
630         value:            'g-(LPC0+8)'
631         alignment:        4
632         isTargetSpecific: true
633
634 Global Value Operands
635 ^^^^^^^^^^^^^^^^^^^^^
636
637 The global value machine operands reference the global values from the
638 :ref:`embedded LLVM IR module <embedded-module>`.
639 The example below shows an instance of the X86 ``MOV64rm`` instruction that has
640 a global value operand named ``G``:
641
642 .. code-block:: text
643
644     $rax = MOV64rm $rip, 1, _, @G, _
645
646 The named global values are represented using an identifier with the '@' prefix.
647 If the identifier doesn't match the regular expression
648 `[-a-zA-Z$._][-a-zA-Z$._0-9]*`, then this identifier must be quoted.
649
650 The unnamed global values are represented using an unsigned numeric value with
651 the '@' prefix, like in the following examples: ``@0``, ``@989``.
652
653 Target-dependent Index Operands
654 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
655
656 A target index operand is a target-specific index and an offset. The
657 target-specific index is printed using target-specific names and a positive or
658 negative offset.
659
660 For example, the ``amdgpu-constdata-start`` is associated with the index ``0``
661 in the AMDGPU backend. So if we have a target index operand with the index 0
662 and the offset 8:
663
664 .. code-block:: text
665
666     $sgpr2 = S_ADD_U32 _, target-index(amdgpu-constdata-start) + 8, implicit-def _, implicit-def _
667
668 Jump-table Index Operands
669 ^^^^^^^^^^^^^^^^^^^^^^^^^
670
671 A jump-table index operand with the index 0 is printed as following:
672
673 .. code-block:: text
674
675     tBR_JTr killed $r0, %jump-table.0
676
677 A machine jump-table entry contains a list of ``MachineBasicBlocks``. When serializing all the function's jump-table entries, the following format is used:
678
679 .. code-block:: text
680
681     jumpTable:
682       kind:             <kind>
683       entries:
684         - id:             <index>
685           blocks:         [ <bbreference>, <bbreference>, ... ]
686
687 where ``<kind>`` is describing how the jump table is represented and emitted (plain address, relocations, PIC, etc.), and each ``<index>`` is a 32-bit unsigned integer and ``blocks`` contains a list of :ref:`machine basic block references <block-references>`.
688
689 Example:
690
691 .. code-block:: text
692
693     jumpTable:
694       kind:             inline
695       entries:
696         - id:             0
697           blocks:         [ '%bb.3', '%bb.9', '%bb.4.d3' ]
698         - id:             1
699           blocks:         [ '%bb.7', '%bb.7', '%bb.4.d3', '%bb.5' ]
700
701 External Symbol Operands
702 ^^^^^^^^^^^^^^^^^^^^^^^^^
703
704 An external symbol operand is represented using an identifier with the ``&``
705 prefix. The identifier is surrounded with ""'s and escaped if it has any
706 special non-printable characters in it.
707
708 Example:
709
710 .. code-block:: text
711
712     CALL64pcrel32 &__stack_chk_fail, csr_64, implicit $rsp, implicit-def $rsp
713
714 MCSymbol Operands
715 ^^^^^^^^^^^^^^^^^
716
717 A MCSymbol operand is holding a pointer to a ``MCSymbol``. For the limitations
718 of this operand in MIR, see :ref:`limitations <limitations>`.
719
720 The syntax is:
721
722 .. code-block:: text
723
724     EH_LABEL <mcsymbol Ltmp1>
725
726 CFIIndex Operands
727 ^^^^^^^^^^^^^^^^^
728
729 A CFI Index operand is holding an index into a per-function side-table,
730 ``MachineFunction::getFrameInstructions()``, which references all the frame
731 instructions in a ``MachineFunction``. A ``CFI_INSTRUCTION`` may look like it
732 contains multiple operands, but the only operand it contains is the CFI Index.
733 The other operands are tracked by the ``MCCFIInstruction`` object.
734
735 The syntax is:
736
737 .. code-block:: text
738
739     CFI_INSTRUCTION offset $w30, -16
740
741 which may be emitted later in the MC layer as:
742
743 .. code-block:: text
744
745     .cfi_offset w30, -16
746
747 IntrinsicID Operands
748 ^^^^^^^^^^^^^^^^^^^^
749
750 An Intrinsic ID operand contains a generic intrinsic ID or a target-specific ID.
751
752 The syntax for the ``returnaddress`` intrinsic is:
753
754 .. code-block:: text
755
756    $x0 = COPY intrinsic(@llvm.returnaddress)
757
758 Predicate Operands
759 ^^^^^^^^^^^^^^^^^^
760
761 A Predicate operand contains an IR predicate from ``CmpInst::Predicate``, like
762 ``ICMP_EQ``, etc.
763
764 For an int eq predicate ``ICMP_EQ``, the syntax is:
765
766 .. code-block:: text
767
768    %2:gpr(s32) = G_ICMP intpred(eq), %0, %1
769
770 .. TODO: Describe the parsers default behaviour when optional YAML attributes
771    are missing.
772 .. TODO: Describe the syntax for virtual register YAML definitions.
773 .. TODO: Describe the machine function's YAML flag attributes.
774 .. TODO: Describe the syntax for the register mask machine operands.
775 .. TODO: Describe the frame information YAML mapping.
776 .. TODO: Describe the syntax of the stack object machine operands and their
777    YAML definitions.
778 .. TODO: Describe the syntax of the block address machine operands.
779 .. TODO: Describe the syntax of the metadata machine operands, and the
780    instructions debug location attribute.
781 .. TODO: Describe the syntax of the register live out machine operands.
782 .. TODO: Describe the syntax of the machine memory operands.