Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / lib / Analysis / LazyCallGraph.cpp
2015-12-28 Chandler Carruth[lcg] Fix a few more formatting goofs found by clang...
2015-01-14 Chandler CarruthRevert r225854: [PM] Move the LazyCallGraph printing...
2015-01-13 Chandler Carruth[PM] Move the LazyCallGraph printing functionality...
2015-01-05 Chandler Carruth[PM] Switch the new pass manager to use a reference...
2014-11-19 David BlaikieUpdate SetVector to rely on the underlying set's insert...
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] Don't lookup the child SCC twice. Spotted this...
2014-05-01 Chandler Carruth[LCG] Add some basic methods for querying the parent...
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-28 Chandler Carruth[LCG] Add the most basic of edge insertion to the lazy...
2014-04-28 Chandler Carruth[LCG] Make the return of the IntraSCC removal method...
2014-04-27 Chandler Carruth[LCG] Re-organize the methods for mutating a call graph...
2014-04-26 Chandler Carruth[LCG] Rather than removing nodes from the SCC entry...
2014-04-26 Chandler Carruth[LCG] Rotate the full SCC finding algorithm to avoid...
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] Special case the removal of self edges. These...
2014-04-26 Chandler Carruth[LCG] Refactor the duplicated code I added in my last...
2014-04-25 Chandler Carruth[LCG] During the incremental update of an SCC, switch...
2014-04-25 Chandler Carruth[LCG] During the incremental re-build of an SCC after...
2014-04-25 Chandler Carruth[LCG] Rather than doing a linear time SmallSetVector...
2014-04-25 Chandler Carruth[LCG] Remove a completely unnecessary loop. It wasn...
2014-04-25 Chandler Carruth[LCG] Now that the loop structure of the core SCC findi...
2014-04-24 Chandler Carruth[LCG] Switch a weird do/while loop that actually couldn...
2014-04-24 Chandler Carruth[LCG] Incorporate the core trick of improvements on...
2014-04-24 Chandler Carruth[LCG] Rotate logic applied to the top of the DFSStack...
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-23 Chandler Carruth[LCG] Normalize the post-order SCC iterator to just...
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] Switch the primary SCC building code to use the...
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 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-22 Chandler Carruth[Modules] Fix potential ODR violations by sinking the...
2014-04-21 Chandler Carruth[LCG] Add some basic debug output to the LCG pass.
2014-04-18 Chandler Carruth[LCG] Fix the bugs that Ben pointed out in code review...
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] Just move the allocator (now that we can) when...
2014-04-17 Chandler Carruth[LCG] Remove the Module reference member which we weren...
2014-03-10 Chandler Carruth[LCG] Ran clang-format over this too and it pointed...
2014-03-09 Chandler Carruth[LCG] Simplify a bunch of the LCG code with range for...
2014-03-06 Chandler Carruth[Layering] Move InstVisitor.h into the IR library as...
2014-03-04 Chandler Carruth[Modules] Move CallSite into the IR library where it...
2014-03-04 Chandler Carruth[cleanup] Re-sort all the includes with utils/sort_incl...
2014-03-03 Chandler Carruth[C++11] Add two range adaptor views to User: operands and
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...