summaryrefslogtreecommitdiffstats
path: root/clang/utils/TableGen/ClangASTNodesEmitter.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add the ability to use property-based serialization for "cased" types.John McCall2019-12-161-1/+1
| | | | | | This patch doesn't actually use this serialization for anything, but follow-ups will move the current handling of various standard types over to this.
* Introduce some types and functions to make it easier to work withJohn McCall2019-12-141-41/+41
| | | | | | | | | | | | the tblgen AST node hierarchies. Not totally NFC because both of the emitters now emit in a different order. The type-nodes emitter now visits nodes in hierarchy order, which means we could use range checks in classof if we had any types that would benefit from that; currently we do not. The AST-nodes emitter now uses a multimap keyed by the name of the record; previously it was using `Record*`, which of couse isn't stable across processes and may have led to non-reproducible builds in some circumstances.
* [NFC] Rename ClangASTEmitters.h -> ASTTableGen.hJohn McCall2019-12-141-1/+1
|
* [NFC] Add a tablegen node for the root of the AST node hierarchies.John McCall2019-10-251-50/+69
| | | | | This is useful for the property databases we want to add for abstract serialization, since root classes can have interesting properties.
* Use scope qualifiers in Clang's tblgen backends to get usefulJohn McCall2019-10-011-5/+5
| | | | | | redeclaration checking. NFC. llvm-svn: 373406
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
| | | | | | | | | | | | | | | | | to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
* TableGen: Adapt to llvm r288612Matthias Braun2016-12-041-1/+1
| | | | llvm-svn: 288614
* [C++11] Use 'nullptr'.Craig Topper2014-05-071-1/+1
| | | | llvm-svn: 208163
* TableGen backends: use emitSourceFileHeader() to emit the warning aboutDmitri Gribenko2013-01-301-0/+4
| | | | | | file contents being autogenerated llvm-svn: 173979
* Make clang-tblgen backends functions instead of TableGenBackends.Jakob Stoklund Olesen2012-06-131-2/+59
| | | | | | | | Get rid of a bunch of header files. TableGen output should be unaffected. Patch by Sean Silva! llvm-svn: 158388
* Add the Clang tblgen backends to Clang, and flip the switch to causePeter Collingbourne2011-10-061-0/+168
the build systems to use clang-tblgen. llvm-svn: 141291
OpenPOWER on IntegriCloud