1. 55f1c09 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
  2. b292b8c Move more code back to 2.5 APIs. by Owen Anderson · 16 years ago
  3. 4056ca9 Move types back to the 2.5 API. by Owen Anderson · 16 years ago
  4. 47db941 Get rid of the Pass+Context magic. by Owen Anderson · 16 years ago
  5. 1e5f00e This started as a small change, I swear. Unfortunately, lots of things call the [I|F]CmpInst constructors. Who knew!? by Owen Anderson · 16 years ago
  6. 38264b1 "LLVMContext* " --> "LLVMContext *" by Owen Anderson · 16 years ago
  7. 39f00cc Thread LLVMContext through the constant folding APIs, which touches a lot of files. by Owen Anderson · 16 years ago
  8. e70b637 More LLVMContext-ification. by Owen Anderson · 16 years ago
  9. 046bf62 While inlining, clone llvm.dbg.func.start intrinsic and adjust by Devang Patel · 17 years ago
  10. 1f15ca7 Factorize out a concept - no functionality change. by Duncan Sands · 17 years ago
  11. a09e0afe Don't load values out of global constants with weak by Duncan Sands · 17 years ago
  12. 900aaa3 Don't consider debug intrinsics when checking by Dale Johannesen · 17 years ago
  13. 4bed356 Do not clone llvm.dbg.func.start and corresponding llvm.dbg.region.end during inlining. by Devang Patel · 17 years ago
  14. 5aa1cc4 Correctly set attributes when removing args during cloning. Fixes PR2765 by Andrew Lenharth · 17 years ago
  15. dd7daee Factor code to copy global value attributes like by Duncan Sands · 17 years ago
  16. ca270ad Feedback from chris by Nate Begeman · 18 years ago
  17. 4d43d3c Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989 by Nick Lewycky · 18 years ago
  18. 6fed3b2 Teach the PruningFunctionCloner how to look through loads with by Nate Begeman · 18 years ago
  19. e9ecc68 API changes for class Use size reduction, wave 1. by Gabor Greif · 18 years ago
  20. d38b3fb Preserve calling convention during function cloning by Anton Korobeynikov · 18 years ago
  21. fb2c1a9 Turn unwind_to into "unwinds to". by Nick Lewycky · 18 years ago
  22. 11fc6f8 Update the block cloner which fixes bugpoint on code using unwind_to (phew!) by Nick Lewycky · 18 years ago
  23. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  24. d2265b4 Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp. by Chris Lattner · 18 years ago
  25. ad0ea2d Fix PR1146: parameter attributes are longer part of by Duncan Sands · 18 years ago
  26. 98638ae Forget to commit users part of value mapper interface by Anton Korobeynikov · 18 years ago
  27. dcb291f Change uses of Function::front to Function::getEntryBlock for readability. by Dan Gohman · 19 years ago
  28. 4bd8cda switch the inliner from being recursive to being iterative. by Chris Lattner · 19 years ago
  29. 557ab15 Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in by Reid Spencer · 19 years ago
  30. 1bfc7ab Switch inliner over to use DenseMap instead of std::map for ValueMap. This by Chris Lattner · 19 years ago
  31. ce49422 Fix bugs in the inliner having to do with single-entry phi nodes and valuemap by Chris Lattner · 19 years ago
  32. 024f4ab Adjust #includes to match movement of constant folding code from transformutils to libanalysis. by Chris Lattner · 19 years ago
  33. ad84a73 The inliner/cloner can now optionally take TargetData info, which can be by Chris Lattner · 19 years ago
  34. 2c4610e Change constant folding APIs to take an optional TargetData, and change by Chris Lattner · 19 years ago
  35. cddc9df Implement review feedback for the ConstantBool->ConstantInt merge. Chris by Reid Spencer · 19 years ago
  36. 75b871f For PR1043: by Zhou Sheng · 19 years ago
  37. 266e42b For PR950: by Reid Spencer · 19 years ago
  38. 7d6f3db Unbreak VC++ build. by Jeff Cohen · 19 years ago
  39. de46e48 For PR786: by Reid Spencer · 19 years ago
  40. 237ccf2 Second half of the fix for Transforms/Inline/inline_cleanup.ll by Chris Lattner · 19 years ago
  41. cdf2b1f Remove dead #include by Chris Lattner · 19 years ago
  42. cc340c0 Make the "pruning cloner" smarter. As it propagates constants through the by Chris Lattner · 19 years ago
  43. 67c424e Fix some regression from the inliner patch I committed last night. This fixes by Chris Lattner · 19 years ago
  44. 3df13f4 Implement a new method, CloneAndPruneFunctionInto, as documented. by Chris Lattner · 19 years ago
  45. edad128 Allow the code cloning interfaces to capture some important info about the by Chris Lattner · 20 years ago
  46. b1c9317 Remove trailing whitespace by Misha Brukman · 21 years ago
  47. 531f9e9 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 21 years ago
  48. 63b38bd Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 21 years ago
  49. 6182acf Move RemapInstruction() to ValueMapper, so that it can be shared with by Brian Gaeke · 21 years ago
  50. 39ad6f2 Minor speedup, don't query ValueMap each time through the loop by Chris Lattner · 22 years ago
  51. a6578ef3 Give CloneBasicBlock an optional function argument to specify which function by Chris Lattner · 22 years ago
  52. df3c342 Finegrainify namespacification by Chris Lattner · 22 years ago
  53. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  54. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  55. e9f4232 Refactor CloneFunction to expose the new CloneBasicBlock function by Chris Lattner · 23 years ago
  56. 379a8d2 Add new linkage types to support a real frontend by Chris Lattner · 23 years ago
  57. e4dbb1a Initial checkin of Module cloning support stuff by Chris Lattner · 23 years ago
  58. 7c6d9d9e Fix minor bugs by Chris Lattner · 23 years ago
  59. 84dd0f4 Remove unneccesary #include by Chris Lattner · 23 years ago
  60. fb311d2 Implement the CloneFunction function by Chris Lattner · 23 years ago
  61. c362618 Minor changes to cloning interface by Chris Lattner · 23 years ago
  62. 8bce988 Fix two fixmes: integrate with inlining, and document by Chris Lattner · 23 years ago
  63. b112005 Rework inline pass to use cloning infrastructure to do the dirty work by Chris Lattner · 23 years ago
  64. 1666751 Start using the new function cloning header by Chris Lattner · 23 years ago
  65. 33422fe *** empty log message *** by Chris Lattner · 23 years ago
  66. 2ac04a0 changes to make it compatible with 64bit gcc by Anand Shukla · 23 years ago
  67. fda72b1 *** empty log message *** by Chris Lattner · 23 years ago
  68. 7608a46 Updates to move some header files out of include/llvm/Transforms into by Chris Lattner · 24 years ago
  69. f998685 s/Method/Function by Chris Lattner · 24 years ago
  70. 16bfdb5 New clone function routine by Chris Lattner · 24 years ago