<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/docs/TableGenFundamentals.html, branch master</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/docs/TableGenFundamentals.html?h=master</id>
<link rel='self' href='https://git.amat.us/llvm/atom/docs/TableGenFundamentals.html?h=master'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2012-06-21T06:58:24Z</updated>
<entry>
<title>Sphinxify the tablegen document.</title>
<updated>2012-06-21T06:58:24Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2012-06-21T06:58:24Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=bd96e0de3fb68b7c8587fed84b4233fc5aeb177a'/>
<id>urn:sha1:bd96e0de3fb68b7c8587fed84b4233fc5aeb177a</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158903 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add support for range expressions in TableGen foreach loops.</title>
<updated>2012-05-24T22:17:39Z</updated>
<author>
<name>Jakob Stoklund Olesen</name>
<email>stoklund@2pi.dk</email>
</author>
<published>2012-05-24T22:17:39Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fae8b1de47c004fefaa6c2683ae193d465b9d93f'/>
<id>urn:sha1:fae8b1de47c004fefaa6c2683ae193d465b9d93f</id>
<content type='text'>
Like this:

  foreach i = 0-127 in ...

Use braces for composite ranges:

  foreach i = {0-3,9-7} in ...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157432 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Reflect that tblgen is now llvm-tblgen</title>
<updated>2012-05-24T04:38:50Z</updated>
<author>
<name>Joel Jones</name>
<email>joel_k_jones@apple.com</email>
</author>
<published>2012-05-24T04:38:50Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=175e6f75fbf87b1c7ec489fc4140d8143b285755'/>
<id>urn:sha1:175e6f75fbf87b1c7ec489fc4140d8143b285755</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157371 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[docs] Update HTML pages to refer to CSS in a way that works locally and with Sphinx.</title>
<updated>2012-04-19T20:20:34Z</updated>
<author>
<name>Daniel Dunbar</name>
<email>daniel@zuster.org</email>
</author>
<published>2012-04-19T20:20:34Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=adea497673dab74b08fa2546e69619f1abe55662'/>
<id>urn:sha1:adea497673dab74b08fa2546e69619f1abe55662</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155153 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>llvm/docs/*.html: Fix markups.</title>
<updated>2012-03-27T11:25:16Z</updated>
<author>
<name>NAKAMURA Takumi</name>
<email>geek4civic@gmail.com</email>
</author>
<published>2012-03-27T11:25:16Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=9c55f5965ba337469466fafec364b0ea6eca459f'/>
<id>urn:sha1:9c55f5965ba337469466fafec364b0ea6eca459f</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153508 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add Foreach Loop</title>
<updated>2012-02-22T16:09:41Z</updated>
<author>
<name>David Greene</name>
<email>greened@obbligato.org</email>
</author>
<published>2012-02-22T16:09:41Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=cebb4ee93a0064e4a2cb1fd1da7455b01e5655cb'/>
<id>urn:sha1:cebb4ee93a0064e4a2cb1fd1da7455b01e5655cb</id>
<content type='text'>
Add some data structures to represent for loops.  These will be
referenced during object processing to do any needed iteration and
instantiation.

Add foreach keyword support to the lexer.

Add a mode to indicate that we're parsing a foreach loop.  This allows
the value parser to early-out when processing the foreach value list.

Add a routine to parse foreach iteration declarations.  This is
separate from ParseDeclaration because the type of the named value
(the iterator) doesn't match the type of the initializer value (the
value list).  It also needs to add two values to the foreach record:
the iterator and the value list.

Add parsing support for foreach.

Add the code to process foreach loops and create defs based
on iterator values.

Allow foreach loops to be matched at the top level.

When parsing an IDValue check if it is a foreach loop iterator for one
of the active loops.  If so, return a VarInit for it.

Add Emacs keyword support for foreach.

Add VIM keyword support for foreach.

Add tests to check foreach operation.

Add TableGen documentation for foreach.

Support foreach with multiple objects.

Support non-braced foreach body with one object.

Do not require types for the foreach declaration.  Assume the iterator
type from the iteration list element type.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151164 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>docs/*.html: Appease W3C Checker to add "charset=utf-8".</title>
<updated>2011-10-31T11:21:59Z</updated>
<author>
<name>NAKAMURA Takumi</name>
<email>geek4civic@gmail.com</email>
</author>
<published>2011-10-31T11:21:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=5c6e4df71323e3c3b6eb23bfd4b1d908ab5b149a'/>
<id>urn:sha1:5c6e4df71323e3c3b6eb23bfd4b1d908ab5b149a</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143348 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Document Paste</title>
<updated>2011-10-19T13:04:59Z</updated>
<author>
<name>David Greene</name>
<email>greened@obbligato.org</email>
</author>
<published>2011-10-19T13:04:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=40230c4c06e0ad1afbef217229363cab077368b3'/>
<id>urn:sha1:40230c4c06e0ad1afbef217229363cab077368b3</id>
<content type='text'>
Document paste as a shorthand for !strconcat.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142528 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Document NAME</title>
<updated>2011-10-19T13:04:56Z</updated>
<author>
<name>David Greene</name>
<email>greened@obbligato.org</email>
</author>
<published>2011-10-19T13:04:56Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=dc5287c7388d0d57b139eafe7cf451bca9e47718'/>
<id>urn:sha1:dc5287c7388d0d57b139eafe7cf451bca9e47718</id>
<content type='text'>
Document NAME as a special member of def records that should
not be defined anywhere else.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142527 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Remove Multidefs</title>
<updated>2011-10-07T18:25:05Z</updated>
<author>
<name>David Greene</name>
<email>greened@obbligato.org</email>
</author>
<published>2011-10-07T18:25:05Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=a1b1b79be15c4b79a4282f148085ebad1cf877ca'/>
<id>urn:sha1:a1b1b79be15c4b79a4282f148085ebad1cf877ca</id>
<content type='text'>
Multidefs are a bit unwieldy and incomplete.  Remove them in favor of
another mechanism, probably for loops.

Revert "Make Test More Thorough"
Revert "Fix a typo."
Revert "Vim Support for Multidefs"
Revert "Emacs Support for Multidefs"
Revert "Document Multidefs"
Revert "Add a Multidef Test"
Revert "Update Test for Multidefs"
Revert "Process Multidefs"
Revert "Parser Multidef Support"
Revert "Lexer Support for Multidefs"
Revert "Add Multidef Data Structures"

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141378 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
