aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasSetTracker.cpp
AgeCommit message (Expand)Author
2009-12-23Change dbgs() back to errs() as Chris requested.David Greene
2009-12-23Convert debug messages to use dbgs(). Generally this meansDavid Greene
2009-11-22Remove the AliasAnalysis::getMustAliases method, which is dead.Chris Lattner
2009-11-03remove unneeded checks of isFreeCallChris Lattner
2009-10-27Rename MallocFreeHelper as MemoryBuiltinsVictor Hernandez
2009-10-26Rename MallocHelper as MallocFreeHelper, since it now also identifies calls t...Victor Hernandez
2009-10-26Remove FreeInst.Victor Hernandez
2009-10-25Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky
2009-08-23eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner
2009-07-31Fix some problems with ASTCallbackVH in its use as a DenseMap key.Dan Gohman
2009-07-30Use CallbackVH in AliasSetTracker to avoid getting stuck withDan Gohman
2009-07-25Make AliasAnalysis and related classes useDan Gohman
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-03-30getEntryFor() may invalidate DenseMap iterator.Devang Patel
2009-03-09reimplement AliasSetTracker in terms of DenseMap instead of hash_map,Chris Lattner
2009-03-03Ignore the debug info intrinsics when adding instructions into alias sets.Zhou Sheng
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