1. 6d116bc Revert (52748 and friends): by Anton Korobeynikov · 17 years ago
  2. 28a2b54 Start refactoring of asmprinters: provide a TAI hook, which will select a 'section kind' for a global. by Anton Korobeynikov · 17 years ago
  3. 4d58065 Unbreak by Anton Korobeynikov · 17 years ago
  4. f0302cd Temporary rever invalid commit by Anton Korobeynikov · 17 years ago
  5. e51ab44 Move printing of module-level GVs into dedicated helper by Anton Korobeynikov · 17 years ago
  6. 31f9815 Use common naming convention by Anton Korobeynikov · 17 years ago
  7. 1ecf0ee Factor out stuff into helper function by Anton Korobeynikov · 17 years ago
  8. 36a5701 Cleanup by Anton Korobeynikov · 17 years ago
  9. 75b6882 Remove X86SharedAsmPrinter by Anton Korobeynikov · 17 years ago
  10. 9136438 whitespace cleanup by Anton Korobeynikov · 17 years ago
  11. 1c4b5ea Make intel asmprinter child of generic asmprinter, not x86 shared asm printer. This leads to some code duplication, which will be resolved later. by Anton Korobeynikov · 17 years ago
  12. 271329a Cleanup by Anton Korobeynikov · 17 years ago
  13. b131b44 Whitespace cleanup by Anton Korobeynikov · 17 years ago
  14. 03a5707 Really fix the bootstrap failure. by Chris Lattner · 17 years ago
  15. b746b82 Add back the capability to include nul characters in strings with by Chris Lattner · 17 years ago
  16. 3284d42 Tighten up checking. by Chris Lattner · 17 years ago
  17. 7745561 When folding a bitcast into a load or store, preserve the alignment by Dan Gohman · 17 years ago
  18. fd6437f Fix GetMainExecutable. Patch by Sam Bishop. by Seo Sanghyeon · 17 years ago
  19. 01b2e23 Looks like this condition is inverted. by Evan Cheng · 17 years ago
  20. d98a45d Add a NextPowerOf2 function to calculate the next power of two greater than a given integer. by Owen Anderson · 17 years ago
  21. 9738846 implement some fixme's by making "autorenaming" in the value symbol table not by Chris Lattner · 17 years ago
  22. 48cd712 simplify some code to avoid string thrashing. by Chris Lattner · 17 years ago
  23. 8573986 Use StringSet instead of std::set<std::string> by Anton Korobeynikov · 17 years ago
  24. d0ebbff add a helper. by Chris Lattner · 17 years ago
  25. bb0e248 Add a new version of Module::getFunction that takes a const char* instead by Chris Lattner · 17 years ago
  26. 25b825b Tweak IRBuilder to explicitly call the setName(const char*) method on Value by Chris Lattner · 17 years ago
  27. 5e95062 Add an include file needed for VS. by Cedric Venet · 17 years ago
  28. 42af887 Add dominator info printer pass. by Devang Patel · 17 years ago
  29. b2931f2 Provide correct encoding for PPC LWARX instructions. Patch by Gary Benson! by Anton Korobeynikov · 17 years ago
  30. ca29dff Since we are using GCC to assemble the program, make sure the assembly syntax is AT&T. by Argyrios Kyrtzidis · 17 years ago
  31. 3921266 Regression test for PR2443. by Duncan Sands · 17 years ago
  32. accdef2 Use the c modifier to tell llvm-ar not to issue a by Duncan Sands · 17 years ago
  33. f0e9c56 Reduce number of times .size() is called on a vector. Rename some variables to by Bill Wendling · 17 years ago
  34. bffdf66 Use a SmallSet when we can to reduce memory allocations. by Owen Anderson · 17 years ago
  35. 1360b7d Cache subregister relationships in a set in TargetRegisterInfo to allow faster lookups. by Owen Anderson · 17 years ago
  36. 3648f9f fix the regressions from Eric's patch by making GetConstantStringInfo by Chris Lattner · 17 years ago
  37. 07c68f9 simplify this check, GetConstantStringInfo validates that a by Chris Lattner · 17 years ago
  38. bd2acd7 test doesn't need eh info by Chris Lattner · 17 years ago
  39. a534b0f when linking globals, make sure to preserve the address space of the global. by Chris Lattner · 17 years ago
  40. 83b2889 More cruft from revert... by Bill Wendling · 17 years ago
  41. 0ac1b6d Cruft left from patch revert...sorry. :-( by Bill Wendling · 17 years ago
  42. 914c970 Reverting broken patch r52803. by Bill Wendling · 17 years ago
  43. b827c26 Don't perform expensive queries checking for super and sub registers when we know that there aren't any. by Owen Anderson · 17 years ago
  44. e6b6bae - Remove a use of std::vector. by Bill Wendling · 17 years ago
  45. 305635a Refactor the DebugInfoDesc stuff out of the MachineModuleInfo file. Clean up by Bill Wendling · 17 years ago
  46. 72efde2 Add a note for Thunderbird users to the Developer Policy. by Gordon Henriksen · 17 years ago
  47. af0a7e8 allow updating the MPM, so that you can use one FunctionPAssManager with by Chris Lattner · 17 years ago
  48. a7e4cc9 XFAIL for now. by Evan Cheng · 17 years ago
  49. 8032020 Remove warnings about shadowed and unused variables. by Bill Wendling · 17 years ago
  50. 8e7de8f Update VS project files. The clang executable now depends on the LLVM Analysis library. by Ted Kremenek · 17 years ago
  51. 8001524 Use a DenseMap instead of an std::map for mangled name lookup. This is by Owen Anderson · 17 years ago
  52. f77e46b duncan points out that isOperationLegal includes a check for by Chris Lattner · 17 years ago
  53. 8342cff Don't create a whole new string just to copy the elements into it. by Owen Anderson · 17 years ago
  54. 3987f8e Use the -enable-pre flag so this test doesn't fail. by Owen Anderson · 17 years ago
  55. f512281 Make LLVM compile on DragonFly BSD (PR2499). by Matthijs Kooijman · 17 years ago
  56. 65c9216 Add missing semicolumn in my last commit. by Matthijs Kooijman · 17 years ago
  57. b0ed11f Improve comments wrt createInternalize. by Matthijs Kooijman · 17 years ago
  58. fc1fd54 Cleanup for unitialized types. Patch by Jean-Daniel Dupas! by Bill Wendling · 17 years ago
  59. 6521549 "An improved Mach-O file type detection for sys::IdentifyFileType() by Chris Lattner · 17 years ago
  60. aefacb5 Reserve the size we'll need in advance. by Owen Anderson · 17 years ago
  61. 4e97790 Allow for rounding up of stack frame. by Dale Johannesen · 17 years ago
  62. b5dae00 Fixes the last x86-64 test failure in compat.exp: by Dale Johannesen · 17 years ago
  63. 872a738 Remove unused function. by Eric Christopher · 17 years ago
  64. 0d2b0ab Move GetConstantStringInfo to lib/Analysis. Remove by Eric Christopher · 17 years ago
  65. cda8875 when we know the signbit of an input to uint_to_fp is zero, by Chris Lattner · 17 years ago
  66. 6b098de Remember which MachineOperand we were processing, so we don't have to scan the list to find it again later. by Owen Anderson · 17 years ago
  67. 48b0b88 Fix the text in an assert string. by Dan Gohman · 17 years ago
  68. ab26227 - Fix a x86 vector isel bug: illegal transformation of a vector_shuffle into a by Evan Cheng · 17 years ago
  69. 041cde2 Add support for expanding PPC 128 bit floats. by Duncan Sands · 17 years ago
  70. 18e0459 Implement JIT support for global aliases, patch by David Chisnall! by Chris Lattner · 17 years ago
  71. 890aaa8 Restore DeadArgElim back to 52570. It's breaking 447.dealII. by Evan Cheng · 17 years ago
  72. bc52cad Switch the PPC backend and target-independent JIT to use the libsystem by Chris Lattner · 17 years ago
  73. 95f3900 fix compilation errors in my previous patch by Chris Lattner · 17 years ago
  74. 93bb4aa Add a new InvalidateInstructionCache method to sys::Memory. by Chris Lattner · 17 years ago
  75. c4ab7ac jump threading can introduce allocas, make sure we promote by Chris Lattner · 17 years ago
  76. 6c31e87 run mem2reg after the second jump threading pass in llvm-ld. by Chris Lattner · 17 years ago
  77. 552e22f remove a bunch of dead options that never did anything. by Chris Lattner · 17 years ago
  78. 8e336eb remove some dead options. by Chris Lattner · 17 years ago
  79. 44030ce SimpleInstructionSelector is here no more. by Dan Gohman · 17 years ago
  80. 11ac797 Add/complete support for integer and float by Duncan Sands · 17 years ago
  81. b58d211 Pacify gcc-4.3. by Duncan Sands · 17 years ago
  82. fd4418f Remove the OrigVT member from AtomicSDNode, as it is redundant with by Dan Gohman · 17 years ago
  83. 21b9d28 simplify shell syntax to work better on solaris, patch by Nathan Keynes! by Chris Lattner · 17 years ago
  84. 2887310 Added MemOperands to Atomic operations since Atomics touches memory. by Mon P Wang · 17 years ago
  85. ea9e516 Fix a (false) warning on darwin. by Matthijs Kooijman · 17 years ago
  86. 177058b Fix some cosmetics in comments. by Matthijs Kooijman · 17 years ago
  87. e5334ea - Use O(1) check of basic block size limit. by Evan Cheng · 17 years ago
  88. aa0bf52 Fix PR2488, a case where we deleted stack restores too aggressively. by Chris Lattner · 17 years ago
  89. 601ca4b Enable two-address remat by default. by Evan Cheng · 17 years ago
  90. e4f6ee5 Use push_back rather than operator[], which is incorrect in this cases. Unfortunately, this slow the testcase down a little bit, by Owen Anderson · 17 years ago
  91. d41720a Use present tense when talking about User layout. It is implemented now. by Gabor Greif · 17 years ago
  92. 153d28a Append to the ActiveTimers std::vector before looking at the timer instead by Dan Gohman · 17 years ago
  93. 4a103e6 v2f32 is now a valid (MMX) type which breaks this by Dale Johannesen · 17 years ago
  94. a68f901 Add v2f32 (MMX) type to X86. Support is primitive: by Dale Johannesen · 17 years ago
  95. 45e3958 In ConstantArray::getAsString(), we know the size of the resultant string in advance so we can pre-allocate it and just fill in by Owen Anderson · 17 years ago
  96. 873e1b5 Use SmallVector instead of std::vector for a minor compile time improvement. by Owen Anderson · 17 years ago
  97. 8dbe7f8 Revert 52645, the loop unroller changes. It caused a regression in 252.eon. by Dan Gohman · 17 years ago
  98. 2864ce6 Fix a typo in a comment. by Dan Gohman · 17 years ago
  99. f4dc289 Make Allocate<T>() return a T* instead of a void*. And use by Dan Gohman · 17 years ago
  100. b70e452 Regenerate configure. by Tanya Lattner · 17 years ago