1. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  2. 43ad6b3 Change the PointerType api for creating pointer types. The old functionality of PointerType::get() has become PointerType::getUnqual(), which returns a pointer in the generic address space. The new prototype of PointerType::get() requires both a type and an address space. by Christopher Lamb · 17 years ago
  3. 7b71432 Move Split<...>() into DomTreeBase. This should make the #include's of DominatorInternals.h by Owen Anderson · 17 years ago
  4. 469b7a4 Fixed linker errors (unresolved externals: split<>(...)) when compiling with VC++. Please review. by Hartmut Kaiser · 17 years ago
  5. b8f7479 by David Greene · 17 years ago
  6. 52eec54 by David Greene · 17 years ago
  7. 0e7f728 Move code to update dominator information after basic block is split by Devang Patel · 17 years ago
  8. 4b90e3a Do not use ETForest as well as DomiantorTree. DominatorTree is sufficient. by Devang Patel · 17 years ago
  9. 83beaee s/DominatorTree::createNewNode/DominatorTree::addNewBlock/g by Devang Patel · 17 years ago
  10. 26a6908 Add basic block level interface to change immediate dominator by Devang Patel · 17 years ago
  11. ee6dcaf Use new ETForest accessor. by Owen Anderson · 17 years ago
  12. bed2946 Removed tabs everywhere except autogenerated & external files. Add make by Anton Korobeynikov · 17 years ago
  13. c6fcf29 Expunge DomSet from CodeExtractor. This is part of the continuing work by Owen Anderson · 17 years ago
  14. ecb7a77 Change uses of Function::front to Function::getEntryBlock for readability. by Dan Gohman · 17 years ago
  15. 93e985f Eliminate use of ctors that take vectors. by Chris Lattner · 18 years ago
  16. 9133fe2 Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in by Reid Spencer · 18 years ago
  17. 20066f9 eliminate temporary vectors by Chris Lattner · 18 years ago
  18. 579dca1 Implement review feedback for the ConstantBool->ConstantInt merge. Chris by Reid Spencer · 18 years ago
  19. 4fe16d6 Rename BoolTy as Int1Ty. Patch by Sheng Zhou. by Reid Spencer · 18 years ago
  20. 6b6b6ef For PR1043: by Zhou Sheng · 18 years ago
  21. c5b206b For PR950: by Reid Spencer · 18 years ago
  22. e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 18 years ago
  23. 0d45a09 Remove #include <iostream> and use llvm_* streams instead. by Bill Wendling · 18 years ago
  24. b83eb64 For PR950: by Reid Spencer · 18 years ago
  25. 40d31ec simplify code by Chris Lattner · 18 years ago
  26. 86a5484 Add explicit #includes of <iostream> by Chris Lattner · 19 years ago
  27. fd93908 Remove trailing whitespace by Misha Brukman · 19 years ago
  28. e4d5c44 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 19 years ago
  29. 3788059 switchinst ctor now takes a hint for the number of cases that it will have. by Chris Lattner · 20 years ago
  30. e74c73c Allow constructor parameter to override aggregating args; fix spacing by Misha Brukman · 20 years ago
  31. 9ecc046 Fix: CodeExtractor/2004-11-12-InvokeExtract.ll by Chris Lattner · 20 years ago
  32. 68c311a Fix a bug where the code extractor would get a bit confused handling invoke by Chris Lattner · 20 years ago
  33. 2da5c3d Convert code to compile with vc7.1. by Reid Spencer · 20 years ago
  34. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  35. a670c68 If we are extracting a block that has multiple successors that are the same by Chris Lattner · 20 years ago
  36. 3377728 When we code extract some stuff, leave the codeRepl block in the place where by Chris Lattner · 20 years ago
  37. b519efb Fix code extraction of unwind blocks. This fixed bugs that bugpoint can by Chris Lattner · 20 years ago
  38. 7848e68 These files don't need to include <iostream> since they include "Support/Debug.h". by Brian Gaeke · 20 years ago
  39. 30b4344 Progress on PR341 by Chris Lattner · 20 years ago
  40. 954da37 Add #include <iostream> since Value.h does not #include it any more. by Reid Spencer · 20 years ago
  41. fe3a093 Do not pass a null pointer if this instruction is not prepended or by Alkis Evlogimenos · 20 years ago
  42. 5879927 Do not pass in the same argument to the extracted function more than once, and by Chris Lattner · 20 years ago
  43. d99e1d3 Implement support for code extracting basic blocks that have a return by Chris Lattner · 20 years ago
  44. e746ad5 Implement splitting of PHI nodes, allowing block extraction of BB's that have by Chris Lattner · 20 years ago
  45. bf74936 * Pull some code out into the definedInRegion/definedInCaller methods by Chris Lattner · 20 years ago
  46. 346be7f Generate substantially better code when there are a limited number of exits by Chris Lattner · 20 years ago
  47. 5b01e29 Two minor improvements: by Chris Lattner · 20 years ago
  48. 22108fa * Allow aggregating extracted function arguments (controlled by flag) by Misha Brukman · 20 years ago
  49. aa7ab53 Fix bug: CodeExtractor/2004-03-17-MissedLiveIns.ll by Chris Lattner · 20 years ago
  50. d07f899 Fix CodeExtractor/2004-03-17-UpdatePHIsOutsideRegion.ll by Chris Lattner · 20 years ago
  51. 5cc8ca6 Seriously simplify and correct the PHI node handling code. by Chris Lattner · 20 years ago
  52. 04229c1 Fix CodeExtractor/2004-03-17-OutputMismatch.ll by Chris Lattner · 20 years ago
  53. b5c1dbf Fix several bugs in the extractor: by Chris Lattner · 20 years ago
  54. 33e197b Prune #includes, moving the module interface to the front. Note that this by Chris Lattner · 20 years ago
  55. 15d443b Mostly cosmetic improvements. Do fix the bug where a global value was considered an input. by Chris Lattner · 20 years ago
  56. 0de632b Assert that input blocks meet the invariants we expect by Chris Lattner · 20 years ago
  57. 65826bf No correctness fixes here, just minor qoi fixes: by Chris Lattner · 20 years ago
  58. 12f390e Simplify code a bit, and fix bug CodeExtractor/2004-03-14-NoSwitchSupport.ll by Chris Lattner · 20 years ago
  59. 0e06674 Simplify the code a bit by making the collection of basic blocks to extract by Chris Lattner · 20 years ago
  60. bb41156 Minor random cleanups by Chris Lattner · 20 years ago
  61. ffada93 Verify functions as they are produced if -debug is specified. Reduce by Chris Lattner · 20 years ago
  62. 0256e4b Implement ExtractCodeRegion() by Misha Brukman · 20 years ago
  63. b97fce5 * Add implementation of ExtractBasicBlock() * Add comments to ExtractLoop() by Misha Brukman · 20 years ago
  64. e633603 A generic code extractor: given a list of BasicBlocks, it will rip them out into by Misha Brukman · 20 years ago