1. 051a950 API changes for class Use size reduction, wave 1. by Gabor Greif · 16 years ago
  2. c669422 Two things. Preserve the unwind_to when splitting a BB. by Nick Lewycky · 16 years ago
  3. fc82fab Add an unwind_to field to basic blocks, making them Users instead of Values. by Nick Lewycky · 16 years ago
  4. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  5. afba8fe Reverting dtor devirtualization patch. by Gordon Henriksen · 17 years ago
  6. ed455c8 Devirtualizing Value destructor (PR889). Patch by Pawel Kunio! by Gordon Henriksen · 17 years ago
  7. 50cdabc Remove meaningless qualifiers from return types, avoiding compiler warnings. by Dan Gohman · 17 years ago
  8. 9adcdf2 DummyInst's member functions don't need to be virtual. by Dan Gohman · 17 years ago
  9. f8dfef7 The (negative) offset from a SymbolTableListTraits-using ilist to its container by Chris Lattner · 17 years ago
  10. 17fcdd5 Refactor SymbolTableListTraits to only have a single pointer in it, instead by Chris Lattner · 17 years ago
  11. dec628e Switch ValueSymbolTable to use StringMap<Value*> instead of std::map<std::string, Value*> by Chris Lattner · 17 years ago
  12. a71965b add method, correct comment by Chris Lattner · 18 years ago
  13. a4f0b3a s|llvm/Support/Visibility.h|llvm/Support/Compiler.h| by Chris Lattner · 18 years ago
  14. 9ef7e06 Use hidden visibility to reduce codesize by Chris Lattner · 18 years ago
  15. 90245d4 When asked not to delete useless PHIs, really don't delete them, no matter how by Owen Anderson · 18 years ago
  16. 28962f3 Remove dead code. by Vladimir Prus · 18 years ago
  17. dd49dbf New method BasicBlock::getFirstNonPHI. by Vladimir Prus · 18 years ago
  18. 6a13aed Add a helper method by Chris Lattner · 19 years ago
  19. 80f4d88 Fix an iterator invalidation problem when we decide a phi has a constant value by Chris Lattner · 19 years ago
  20. 1325b42 Now that hasConstantValue is more careful w.r.t. returning values that only by Chris Lattner · 19 years ago
  21. a83ba0f Fix a fixme in CondPropagate.cpp by moving a PhiNode optimization into by Nate Begeman · 19 years ago
  22. 9d80930 Eliminate tabs and trailing spaces by Jeff Cohen · 19 years ago
  23. fd93908 Remove trailing whitespace by Misha Brukman · 19 years ago
  24. 566f600 Improve doxygen, from part of Evan's patch that didn't apply. by Chris Lattner · 19 years ago
  25. 0f67dd6 Improve doxygen documentation, patch contributed by Evan Jones! by Chris Lattner · 19 years ago
  26. 3464547 add an argument to allow avoiding deleting phi nodes. by Chris Lattner · 19 years ago
  27. 0d1e407 remove all of the various setName implementations, consolidating them into by Chris Lattner · 19 years ago
  28. 18221ed Remove the 2nd argument to Value::setName by Chris Lattner · 19 years ago
  29. ad993cb add a new method. by Chris Lattner · 19 years ago
  30. 1f21ef1 make this more efficient. Scan up to 16 nodes, not the whole list. by Chris Lattner · 19 years ago
  31. 35f0aec Reduce the amount of searching this assertion does. On a testcase of mine, by Chris Lattner · 19 years ago
  32. bca8144 Improve conformance with the Misha spelling benchmark suite by Chris Lattner · 20 years ago
  33. 3cf8e68 Adjust to ilist changes. by Chris Lattner · 20 years ago
  34. 96d83f6 Adjust to changes in User class. by Chris Lattner · 20 years ago
  35. f23586c Check in the file I forgot last night, to solve all of the crashes in every by Chris Lattner · 20 years ago
  36. 4b83380 Implement remove/eraseFromParent methods by Chris Lattner · 20 years ago
  37. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  38. 4433629 Fix #includes of i*.h files => Instructions.h as per PR403 by Misha Brukman · 20 years ago
  39. a9e7781 Find bugs sooner rather than later. In this case, don't allow the creation by Chris Lattner · 20 years ago
  40. 9bf2a92 Fix GCC warnings by Chris Lattner · 20 years ago
  41. f878218 As much as I dislike doing this, it's the only fix for VC8.0 that I can come by Chris Lattner · 20 years ago
  42. ea51deb Fix retriving parent Function. by Misha Brukman · 20 years ago
  43. 98eb626 Assert if deleting BasicBlock before removing it from Function. by Misha Brukman · 20 years ago
  44. b171942 Remove obsolete method by Chris Lattner · 21 years ago
  45. 4f05611 Adjust to the new BB ctor by Chris Lattner · 21 years ago
  46. c6aa017 When splitting a basic block, insert the new half immediately after the first by Chris Lattner · 21 years ago
  47. f2c3106 In BasicBlock::splitBasicBlock, just use islist::splice to move the instructions, by Chris Lattner · 21 years ago
  48. 108e4ab Minor cleanups and simplifications by Chris Lattner · 21 years ago
  49. f8485c6 Start using the nicer terminator auto-insertion API by Chris Lattner · 21 years ago
  50. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 21 years ago
  51. e860e0d Make code gcc 3.4 clean by Chris Lattner · 21 years ago
  52. b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 21 years ago
  53. 1c9ab51 Do not use BasicBlock::succ_iterator by Chris Lattner · 21 years ago
  54. 4bd4aa5 Allow specifying the name for the newly split basic block by Chris Lattner · 21 years ago
  55. 02a78cf Fix a bug that occurred when removing the last predecessor INTO an infinite loop by Chris Lattner · 21 years ago
  56. e408e25 Remove unnecesary &*'s by Chris Lattner · 21 years ago
  57. 6e6026b - Eliminated the deferred symbol table stuff in Module & Function, it really by Chris Lattner · 22 years ago
  58. 0b16ae2 - Rename Instruction::First*Op to *OpsBegin, and Num*Ops to *OpsEnd to by Chris Lattner · 22 years ago
  59. dee430d Changes to support PHINode::removeIncoming changes by Chris Lattner · 22 years ago
  60. 0a1a874 - Add new ctor to BasicBlock to allow insertion before any BB, not just at by Chris Lattner · 22 years ago
  61. d1e693f Enable "garbage detection" of LLVM objects. Now users should be obnoxious by Chris Lattner · 22 years ago
  62. bded132 Move code out of header files into .cpp files to make future changes easier by Chris Lattner · 22 years ago
  63. b2e80a6 Avoid warning: control reaches end of non-void function by Chris Lattner · 22 years ago
  64. 08272fb Moved MachineCodeForBB to be an annotation on BasicBlock. by Vikram S. Adve · 22 years ago
  65. 7e70829 MEGAPATCH checkin. by Chris Lattner · 22 years ago
  66. 89d46b0 Fix bug: test/Regression/Transforms/ADCE/2002-05-23-ZeroArgPHITest.ll by Chris Lattner · 22 years ago
  67. 87a09b1 Fix bug: test/Regression/Transforms/CFGSimplify/2002-05-21-PHIElimination.ll by Chris Lattner · 22 years ago
  68. c6f3ae5 Eliminate duplicate or unneccesary #include's by Chris Lattner · 22 years ago
  69. 31bcdb8 Split ConstantVals.h into Constant.h and Constants.h by Chris Lattner · 22 years ago
  70. b7653df s/Method/Function by Chris Lattner · 22 years ago
  71. 1907aba Move include/llvm/ValueHolderImpl.h to lib/VMCore/ValueHolderImpl.h by Chris Lattner · 22 years ago
  72. e8e320d Fix bug: test/Regression/Other/2002-02-24-InlineBrokePHINodes.ll by Chris Lattner · 22 years ago
  73. 455889a * Pull BasicBlock::pred_* and BasicBlock::succ_* out of BasicBlock.h and into by Chris Lattner · 23 years ago
  74. 697954c Changes to build successfully with GCC 3.02 by Chris Lattner · 23 years ago
  75. e9bb2df Rename ConstPoolVal -> Constant by Chris Lattner · 23 years ago
  76. 7061dc5 Split the PHINode class out from the iOther.h file into the iPHINode.h file by Chris Lattner · 23 years ago
  77. b00c582 Commit more code over to new cast style by Chris Lattner · 23 years ago
  78. 1d87bcf Convert more code to use new style casts Eliminate old style casts from value.h by Chris Lattner · 23 years ago
  79. f0604b8 Pull predecessor and successor iterators out of the CFG*.h files, and plop them into by Chris Lattner · 23 years ago
  80. 6892b12 Support new setName itf by Chris Lattner · 23 years ago
  81. b639339 Added vector of machine instructions for the basic block. by Vikram S. Adve · 23 years ago
  82. a3d3c2b * ValueHolder now takes 3 arguments by Chris Lattner · 23 years ago
  83. b47af25 Add implementation of BasicBlock::removePredecessor code that was factored by Chris Lattner · 23 years ago
  84. 7fc9fe3 Miscellaneous cleanups: by Chris Lattner · 23 years ago
  85. 0095054 Initial revision by Chris Lattner · 23 years ago