aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasSetTracker.cpp
AgeCommit message (Expand)Author
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-05-22Free and vaarg are not really volatile.Chris Lattner
2008-05-20Fix PR2346 by marking vaarg as volatile so that licm doesn't try toChris Lattner
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-04-21Fix the way AliasSet::print prints "may alias".Dan Gohman
2008-04-14Teach AliasSetTracker about VAArgInst.Dan Gohman
2008-03-20Restore isCFGOnly property of various analysis passes.Devang Patel
2008-03-19PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel
2008-03-19Do not use virtual function to identify an analysis pass.Devang Patel
2008-03-18Identify Analysis pass.Devang Patel
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-01Integrate the readonly/readnone logic more deeplyDuncan Sands
2007-11-01Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands
2007-10-03Use empty() member functions when that's what's being tested for insteadDan Gohman
2007-05-23when merging two alias sets together, be sure to propagate the volatility ofChris Lattner
2007-05-06Fix typo in comment.Nick Lewycky
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-02-05Make classes in anonymous namespaces use VISIBILITY_HIDDEN to help reduceReid Spencer
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling
2006-11-28Removed some of the iostream #includes. Moved towards converting to usingBill Wendling
2006-09-17Explain change with a comment.Nick Lewycky
2006-09-17Fix PR912. The input to erase() must not be a reference to the dataNick Lewycky
2006-08-27eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner
2006-06-27Handle alias sets that have been unified, and thus can have other referencesChris Lattner
2006-06-27Don't implement AliasSetTracker::remove in terms of deleteValue. deleteValueChris Lattner
2006-06-26Fix a stale pointer issue that caused 300.twolf to fail to build on zionChris Lattner
2006-01-03Make the -print-alias-sets pass work for printing out something other thanChris Lattner
2005-04-21Remove trailing whitespaceMisha Brukman
2005-03-25Treat free operations as volatile, since they cannot be moved. This fixesChris Lattner
2005-03-17Fix the missing symbols problem Bill was hitting. Patch contributed byChris Lattner
2004-12-15Adjust to new alias analysis interfacesChris Lattner
2004-12-07For PR387:\Reid Spencer
2004-11-27When merging to alias sets, if they are both must alias, the result is notChris Lattner
2004-11-26Add a new interfaceChris Lattner
2004-11-05Remove dead varChris Lattner
2004-09-15Add some assertionsChris Lattner
2004-09-14Implement an AliasSetTracker::copyValue methodChris Lattner
2004-07-29Fix #includes of i*.h => Instructions.h as per PR403.Misha Brukman
2004-07-27Remove a bogus assertionChris Lattner
2004-07-27Use context-sensitive alias analysis to avoid pessimization in clients ofChris Lattner
2004-07-26Add some new methodsChris Lattner
2004-07-25Fix a latent bug in the AliasSetTracker that was exposed by the FreeInst addi...Chris Lattner
2004-07-25Add support for free instructionsChris Lattner
2004-07-22Clean up reference counting to stop "leaking" alias setsChris Lattner
2004-07-21Add capability to remove aliasing aliassets from an ASTChris Lattner
2004-07-21Make the AST interface a bit richer by returning whether an insertion causedChris Lattner
2004-07-04Add #include <iostream> since Value.h does not #include it any more.Reid Spencer
2004-05-23Rename a methodChris Lattner