[PM/AA] Run clang-format over this code to establish a clean baseline
[oota-llvm.git] / include / llvm / Analysis / LazyCallGraph.h
2015-07-22 Hans WennborgFix -Wextra-semi warnings.
2015-06-23 Alexander KornienkoRevert r240137 (Fixed/added namespace ending comments...
2015-06-19 Alexander KornienkoFixed/added namespace ending comments using clang-tidy...
2015-01-14 Chandler CarruthRevert r225854: [PM] Move the LazyCallGraph printing...
2015-01-13 Chandler Carruth[PM] Move the LazyCallGraph printing functionality...
2015-01-13 Chandler Carruth[PM] Fold all three analysis managers into a single...
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...
2014-08-29 Robin MorissetFix typos in comments, NFC
2014-08-13 Benjamin KramerCanonicalize header guards into a common format.
2014-05-15 Alp TokerFix typos
2014-05-04 Chandler Carruth[LCG] Add the last (and most complex) of the edge inser...
2014-05-01 Chandler Carruth[LCG] Add the other simple edge insertion API to the...
2014-05-01 Chandler Carruth[LCG] Add some basic methods for querying the parent...
2014-05-01 Chandler Carruth[LCG] Fix a bad bug in the new fancy iterator scheme...
2014-04-30 Chandler Carruth[LCG] Add the really, *really* boring edge insertion...
2014-04-30 Chandler Carruth[LCG] Actually test the *basic* edge removal bits ...
2014-04-29 Chandler Carruth[ADT] Make the iterator adaptor utility a touch more...
2014-04-28 Chandler Carruth[LCG] Add the most basic of edge insertion to the lazy...
2014-04-27 Chandler Carruth[LCG] Re-organize the methods for mutating a call graph...
2014-04-26 Chandler Carruth[LCG] Eliminate more boiler plate by using the iterator...
2014-04-26 Chandler Carruth[LCG] Switch the node iterator to use the new fancy...
2014-04-26 Chandler Carruth[LCG] Rather than removing nodes from the SCC entry...
2014-04-26 Chandler Carruth[LCG] Hoist the main DFS loop out of the edge removal...
2014-04-26 Chandler Carruth[LCG] In the incremental SCC re-formation, lift the...
2014-04-26 Chandler Carruth[LCG] Refactor the duplicated code I added in my last...
2014-04-24 Chandler Carruth[LCG] Incorporate the core trick of improvements on...
2014-04-24 Chandler Carruth[LCG] Switch the parent SCC tracking from a SmallSetVec...
2014-04-24 Chandler Carruth[LCG] We don't actually need a set in each SCC to track...
2014-04-24 Chandler Carruth[LCG] Switch the SCC's parent iterators to be value...
2014-04-23 Chandler Carruth[LCG] Normalize the post-order SCC iterator to just...
2014-04-23 Chandler Carruth[LCG] Remove two unused typedefs from the iterators.
2014-04-23 Chandler Carruth[LCG] Switch the primary node iterator to be a *much...
2014-04-23 Chandler Carruth[LCG] Make the insertion and query paths into the LCG...
2014-04-23 Chandler Carruth[LCG] Switch the SCC lookup to be in terms of call...
2014-04-23 Chandler Carruth[LCG] Add the first round of mutation support to the...
2014-04-23 Chandler Carruth[LCG] Implement Tarjan's algorithm correctly this time...
2014-04-23 Chandler Carruth[LCG] Add some accessor methods to the SCC to allow...
2014-04-23 Chandler Carruth[LCG] Add a unittest for the LazyCallGraph. I had a...
2014-04-23 Chandler Carruth[LCG] Hoist the logic for forming a new SCC from the...
2014-04-23 Chandler Carruth[LCG] Switch the Callee sets to be DenseMaps pointing...
2014-04-18 Chandler Carruth[LCG] Remove all of the complexity stemming from suppor...
2014-04-18 Chandler Carruth[LCG] Add support for building persistent and connected...
2014-04-17 Chandler Carruth[LCG] Remove a dead declaration. This stopped being...
2014-04-17 Chandler Carruth[LCG] Move the call graph node class into the graph...
2014-04-17 Chandler Carruth[LCG] Just move the allocator (now that we can) when...
2014-04-17 Chandler Carruth[LCG] Remove the Module reference member which we weren...
2014-04-16 Chandler Carruth[LCG] Stop playing fast and loose with reference member...
2014-03-10 Chandler Carruth[LCG] Make this call graph a fully regular type by...
2014-03-10 Chandler Carruth[LCG] Make the iterator move constructable (and thus...
2014-03-10 Chandler Carruth[LCG] One more formatting fix that I failed to get...
2014-03-04 Chandler Carruth[cleanup] Re-sort all the includes with utils/sort_incl...
2014-03-01 Chandler Carruth[C++11] Remove the use of LLVM_HAS_RVALUE_REFERENCES...
2014-02-06 Chandler Carruth[PM] Fix horrible typos that somehow didn't cause a...
2014-02-06 Chandler Carruth[PM] Add a new "lazy" call graph analysis pass for...