Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Pass /bigobj when building lib/ASTMatchers/Dynamic/Registry.cpp | Reid Kleckner | 2016-02-09 | 1 | -0/+9 |
| | | | | | | | | | This is the third time it has crossed the 2^16 section limit. We've already spent time optimizing this file to reduce template instantiations, and it's not clear that there is anymore low hanging fruit. llvm-svn: 260267 | ||||
* | [CMake] Use LINK_LIBS instead of target_link_libraries(). | NAKAMURA Takumi | 2014-02-26 | 1 | -2/+1 |
| | | | | llvm-svn: 202238 | ||||
* | clang/lib/ASTMatchers/Dynamic/CMakeLists.txt: redundant | NAKAMURA Takumi | 2014-02-02 | 1 | -4/+0 |
| | | | | llvm-svn: 200642 | ||||
* | [CMake] clang/lib: Satisfy dependencies to add *actually used* libraries on ↵ | NAKAMURA Takumi | 2013-12-09 | 1 | -0/+2 |
| | | | | | | | | target_link_libraries() and LLVM_LINK_COMPONENTS. I will prune redundant dependencies later. llvm-svn: 196800 | ||||
* | Link dynamic ast matchers with the ast matchers library. Unbreaks shared ↵ | Benjamin Kramer | 2013-05-14 | 1 | -0/+4 |
| | | | | | | cmake build. llvm-svn: 181783 | ||||
* | First revision of the dynamic ASTMatcher library. | Manuel Klimek | 2013-05-14 | 1 | -0/+12 |
This library supports all the features of the compile-time based ASTMatcher library, but allows the user to specify and construct the matchers at runtime. It contains the following modules: - A variant type, to be used by the matcher factory. - A registry, where the matchers are indexed by name and have a factory method with a generic signature. - A simple matcher expression parser, that can be used to convert a matcher expression string into actual matchers that can be used with the AST at runtime. Many features where omitted from this first revision to simplify this code review. The main ideas are still represented in this change and it already has support working use cases. Things that are missing: - Support for polymorphic matchers. These requires supporting code in the registry, the marshallers and the variant type. - Support for numbers, char and bool arguments to the matchers. This requires supporting code in the parser and the variant type. - A command line program putting everything together and providing an already functional tool. Patch by Samuel Benzaquen. llvm-svn: 181768 |