aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/BasicBlock.cpp
AgeCommit message (Expand)Author
2006-09-23add method, correct commentChris Lattner
2006-08-27s|llvm/Support/Visibility.h|llvm/Support/Compiler.h|Chris Lattner
2006-06-28Use hidden visibility to reduce codesizeChris Lattner
2006-06-14When asked not to delete useless PHIs, really don't delete them, no matter howOwen Anderson
2006-06-08Remove dead code.Vladimir Prus
2006-06-08New method BasicBlock::getFirstNonPHI.Vladimir Prus
2005-08-12Add a helper methodChris Lattner
2005-08-05Fix an iterator invalidation problem when we decide a phi has a constant valueChris Lattner
2005-08-05Now that hasConstantValue is more careful w.r.t. returning values that onlyChris Lattner
2005-08-04Fix a fixme in CondPropagate.cpp by moving a PhiNode optimization intoNate Begeman
2005-04-23Eliminate tabs and trailing spacesJeff Cohen
2005-04-21Remove trailing whitespaceMisha Brukman
2005-04-21Improve doxygen, from part of Evan's patch that didn't apply.Chris Lattner
2005-04-21Improve doxygen documentation, patch contributed by Evan Jones!Chris Lattner
2005-04-12add an argument to allow avoiding deleting phi nodes.Chris Lattner
2005-03-05remove all of the various setName implementations, consolidating them intoChris Lattner
2005-03-05Remove the 2nd argument to Value::setNameChris Lattner
2005-02-24add a new method.Chris Lattner
2005-02-23make this more efficient. Scan up to 16 nodes, not the whole list.Chris Lattner
2005-02-23Reduce the amount of searching this assertion does. On a testcase of mine,Chris Lattner
2005-01-30Improve conformance with the Misha spelling benchmark suiteChris Lattner
2005-01-29Adjust to ilist changes.Chris Lattner
2005-01-29Adjust to changes in User class.Chris Lattner
2004-12-11Check in the file I forgot last night, to solve all of the crashes in everyChris Lattner
2004-10-11Implement remove/eraseFromParent methodsChris Lattner
2004-09-01Changes For Bug 352Reid Spencer
2004-07-29Fix #includes of i*.h files => Instructions.h as per PR403Misha Brukman
2004-07-06Find bugs sooner rather than later. In this case, don't allow the creationChris Lattner
2004-06-05Fix GCC warningsChris Lattner
2004-06-05As much as I dislike doing this, it's the only fix for VC8.0 that I can comeChris Lattner
2004-04-16Fix retriving parent Function.Misha Brukman
2004-04-16Assert if deleting BasicBlock before removing it from Function.Misha Brukman
2004-02-11Remove obsolete methodChris Lattner
2004-02-04Adjust to the new BB ctorChris Lattner
2004-02-04When splitting a basic block, insert the new half immediately after the firstChris Lattner
2004-02-03In BasicBlock::splitBasicBlock, just use islist::splice to move the instructi...Chris Lattner
2003-11-21Minor cleanups and simplificationsChris Lattner
2003-11-20Start using the nicer terminator auto-insertion APIChris Lattner
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-11-05Make code gcc 3.4 cleanChris Lattner
2003-10-20Added LLVM project notice to the top of every C++ source file.John Criswell
2003-09-24Do not use BasicBlock::succ_iteratorChris Lattner
2003-08-24Allow specifying the name for the newly split basic blockChris Lattner
2003-04-25Fix a bug that occurred when removing the last predecessor INTO anChris Lattner
2003-04-23Remove unnecesary &*'sChris Lattner
2002-11-20 - Eliminated the deferred symbol table stuff in Module & Function, it reallyChris Lattner
2002-10-13 - Rename Instruction::First*Op to *OpsBegin, and Num*Ops to *OpsEnd toChris Lattner
2002-10-08Changes to support PHINode::removeIncoming changesChris Lattner
2002-09-26 - Add new ctor to BasicBlock to allow insertion before any BB, not just atChris Lattner
2002-09-08Enable "garbage detection" of LLVM objects. Now users should be obnoxiousChris Lattner