Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [PM] Introduce CRTP mixin base classes to help define passes and | Chandler Carruth | 2016-02-26 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | | analyses in the new pass manager. These just handle really basic stuff: turning a type name into a string statically that is nice to print in logs, and getting a static unique ID for each analysis. Sadly, the format of passes in anonymous namespaces makes using their names in tests really annoying so I've customized the names of the no-op passes to keep tests sane to read. This is the first of a few simplifying refactorings for the new pass manager that should reduce boilerplate and confusion. llvm-svn: 262004 | ||||
* | [Analysis/CallGraph] Switch dump() definitions over to LLVM_DUMP_METHOD. | Davide Italiano | 2015-11-23 | 1 | -6/+3 |
| | | | | llvm-svn: 253842 | ||||
* | [PM/AA] Remove the last relics of the separate IPA library from LLVM, | Chandler Carruth | 2015-08-18 | 1 | -0/+309 |
folding the code into the main Analysis library. There already wasn't much of a distinction between Analysis and IPA. A number of the passes in Analysis are actually IPA passes, and there doesn't seem to be any advantage to separating them. Moreover, it makes it hard to have interactions between analyses that are both local and interprocedural. In trying to make the Alias Analysis infrastructure work with the new pass manager, it becomes particularly awkward to navigate this split. I've tried to find all the places where we referenced this, but I may have missed some. I have also adjusted the C API to continue to be equivalently functional after this change. Differential Revision: http://reviews.llvm.org/D12075 llvm-svn: 245318 |