Fixed/added namespace ending comments using clang-tidy. NFC
[oota-llvm.git] / include / llvm / IR / PassManager.h
2015-06-19 Alexander KornienkoFixed/added namespace ending comments using clang-tidy...
2015-05-01 Benjamin KramerRemove std::move on return of temporary.
2015-05-01 Benjamin KramerRemove std::move on return when it could prevent copy...
2015-03-23 Benjamin KramerMore missing includes only visible to MSVC.
2015-02-27 Sanjoy DasFix a use-iterator-after-invalidate error
2015-02-15 Aaron BallmanRemoving LLVM_DELETED_FUNCTION, as MSVC 2012 was the...
2015-02-01 Chandler Carruth[PM] Teach the module-to-function adaptor to not run...
2015-02-01 Chandler Carruth[PM] Switch to a ranged based for loop. NFC
2015-01-13 Chandler Carruth[PM] Push the debug option for the new pass manager...
2015-01-13 Chandler Carruth[PM] Sink the convenience typedefs after the class...
2015-01-13 Chandler Carruth[PM] In the PassManager template, remove a pointless...
2015-01-13 Chandler Carruth[PM] Remove the 'AnalysisManagerT' type parameter from...
2015-01-13 Chandler Carruth[PM] Refactor the new pass manager to use a single...
2015-01-13 Chandler Carruth[PM] Fold all three analysis managers into a single...
2015-01-13 Chandler Carruth[PM] Fix another place where I was using an overly...
2015-01-13 Chandler Carruth[PM] Re-clang-format much of this code as the code...
2015-01-12 Chandler Carruth[PM] Sink the reference vs. value decision for IR units...
2015-01-07 Chandler Carruth[PM] Give slightly less horrible names to the utility...
2015-01-07 Chandler Carruth[PM] Fix a pretty nasty bug where the new pass manager...
2015-01-06 Chandler Carruth[PM] Introduce a utility pass that preserves no analyses.
2015-01-06 Chandler Carruth[PM] Add a utility pass template that synthesizes the...
2015-01-06 Chandler Carruth[PM] Add a utility to the new pass manager for generati...
2015-01-05 Chandler Carruth[PM] Don't run the machinery of invalidating all the...
2015-01-05 Chandler Carruth[PM] Add names and debug logging for analysis passes...
2015-01-05 Chandler Carruth[PM] Switch the new pass manager to use a reference...
2015-01-02 Chandler Carruth[PM] Add proper documentation for the ModulePassManager and
2015-01-02 Chandler Carruth[PM] Actually include the correct file name. Sorry...
2015-01-02 Chandler Carruth[PM] Lift the majority of the template boilerplate...
2015-01-02 Chandler Carruth[PM] Fix some formatting where clang-format has improve...
2014-08-24 Craig TopperUse range based for loops to avoid needing to re-mentio...
2014-08-13 Benjamin KramerCanonicalize header guards into a common format.
2014-04-24 Craig Topper[C++] Use 'nullptr'.
2014-04-09 Craig Topper[C++11] More 'nullptr' conversion or in some cases...
2014-03-13 Chandler Carruth[PM] As was pointed out in review, I need to define...
2014-03-13 Chandler Carruth[PM] Stop playing fast and loose with rebinding of...
2014-03-10 Chandler Carruth[PM] Cleanup formatting and namespace commenting. Mostl...
2014-03-10 Chandler Carruth[PM] As Dave noticed in review, I had erroneously copie...
2014-03-10 Chandler Carruth[PM] Add a comment I missed and add the special members...
2014-03-10 Chandler Carruth[PM] Comment on all of the totally pointless definition...
2014-03-10 Chandler Carruth[PM] I have been educated by several folks that MSVC...
2014-03-09 Chandler Carruth[PM] Switch new pass manager from polymorphic_ptr to...
2014-03-08 Craig Topper[C++11] Add 'override' keyword to virtual methods that...
2014-03-05 Craig Topper[C++11] Add 'override' keyword to virtual methods that...
2014-03-02 Chandler Carruth[C++11] Switch all uses of the llvm_move macro to use...
2014-03-01 Chandler Carruth[C++11] Remove the use of LLVM_HAS_RVALUE_REFERENCES...
2014-02-05 Chandler Carruth[PM] Don't require analysis results to be const in...
2014-01-11 Chandler Carruth[PM] Add names to passes under the new pass manager...
2014-01-11 Chandler Carruth[PM] Somehow I missed the header guards on this file...
2014-01-07 Chandler CarruthRe-sort all of the includes with ./utils/sort_includes...
2013-11-26 Chandler Carruth[PM] Fix a stale comment after my last refactoring...
2013-11-26 Chandler Carruth[PM] Remove four extraneous 'typename's that Clang...
2013-11-26 Chandler Carruth[PM] Factor the overwhelming majority of the interface...
2013-11-23 Chandler Carruth[PM] Complete the cross-layer interfaces with a Module...
2013-11-23 Chandler Carruth[PM] Add support to the analysis managers to query...
2013-11-22 Chandler Carruth[PM] Switch the downward invalidation to be incremental...
2013-11-22 Chandler Carruth[PM] Remove a FIXME comment that was fixed by my recent...
2013-11-22 Chandler Carruth[PM] Remove extraneous space that I left in there.
2013-11-22 Chandler Carruth[PM] Teach the analysis managers to pass themselves...
2013-11-22 Chandler Carruth[PM] Reverse the template arguments 'PassT' and 'Analys...
2013-11-22 Chandler Carruth[PM] Remove the IRUnitT typedef requirement for analysi...
2013-11-22 Chandler Carruth[PM] Fix the analysis templates' usage of IRUnitT.
2013-11-22 Chandler Carruth[PM] Simplify how the SFINAE for AnalysisResultModel...
2013-11-22 Chandler Carruth[PM] Switch analysis managers to be threaded through...
2013-11-21 Chandler Carruth[PM] Fix typo and trailing space.
2013-11-21 Chandler Carruth[PM] Widen the interface for invalidate on an analysis...
2013-11-21 Chandler Carruth[PM] Add support for using SFINAE to reflect on an...
2013-11-21 Chandler Carruth[PM] Add a module analysis pass proxy for the function...
2013-11-20 Chandler Carruth[PM] Add the preservation system to the new pass manager.
2013-11-20 Chandler Carruth[PM] Make the function pass manager more regular.
2013-11-20 Chandler Carruth[PM] Split the analysis manager into a function-specifi...
2013-11-17 Chandler Carruth[PM] Completely remove support for explicit 'require...
2013-11-14 Chandler CarruthFix the header comment of the new pass manager stuff...
2013-11-13 Chandler CarruthAdd another (perhaps better) video for Sean's talk...
2013-11-13 Chandler CarruthGive folks a reference to some material on the fundamen...
2013-11-13 Chandler CarruthIntroduce an AnalysisManager which is like a pass manag...
2013-11-09 Chandler Carruth[PM] Start sketching out the new module and function...