diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-05-18 22:14:45 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-05-18 22:14:45 +0000 |
commit | a7185b21d8afc50539a5623112a9a6b4ba4b0f54 (patch) | |
tree | 69e4ecd636796a425086b82037d9f815a9fbf1e5 /docs/TableGenFundamentals.html | |
parent | 6679ee4e805f606264ed4e03449b957c9212cfb6 (diff) |
Add short descriptions of 'implicit' and 'parallel'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72050 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TableGenFundamentals.html')
-rw-r--r-- | docs/TableGenFundamentals.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/TableGenFundamentals.html b/docs/TableGenFundamentals.html index 08838caf46..bd427116a1 100644 --- a/docs/TableGenFundamentals.html +++ b/docs/TableGenFundamentals.html @@ -395,6 +395,13 @@ supported include:</p> <dd>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 `<tt>dag</tt>' values.</dd> +<dt><tt>(implicit a)</tt></dt> + <dd>an implicitly defined physical register. This tells the dag instruction + selection emitter the input pattern's extra definitions matches implicit + physical register definitions.</dd> +<dt><tt>(parallel (a), (b))</tt></dt> + <dd>a list of dags specifying parallel operations which map to the same + instruction.</dd> <dt><tt>!strconcat(a, b)</tt></dt> <dd>A string value that is the result of concatenating the 'a' and 'b' strings.</dd> |