1. e205fef New test. by Devang Patel · 17 years ago
  2. 40743b8 Don't dump the function! by Chris Lattner · 17 years ago
  3. d087480 getUnderlyingObject can return null, handle this. by Chris Lattner · 17 years ago
  4. cadf873 Added additional overloaded operators for APSInt to match the operators of by Ted Kremenek · 17 years ago
  5. fd68750 Teach basicaa that 'byval' arguments define a new memory location that by Chris Lattner · 17 years ago
  6. de6fa5f Add hasByValAttr() and hasNoAliasAttr() methods to the Argument class. by Chris Lattner · 17 years ago
  7. 23e202d clarify a comment, thanks Duncan. by Chris Lattner · 17 years ago
  8. d43d00c Significantly simplify and improve handling of FP function results on x86-32. by Chris Lattner · 17 years ago
  9. 125991a Fix this buggy transformation. Two observations: by Chris Lattner · 17 years ago
  10. 20e3d86 The dag combiner is missing revisiting nodes that it really should, and thus leaving by Chris Lattner · 17 years ago
  11. 0aa5e6f fold fp_round(fp_round(x)) -> fp_round(x). by Chris Lattner · 17 years ago
  12. 7323999 take these with a pr # by Chris Lattner · 17 years ago
  13. bcb265e Fixing the stack walker. by Gordon Henriksen · 17 years ago
  14. 58ea52a Fix potential buffer overflow by Anton Korobeynikov · 17 years ago
  15. b487e72 Move some functionality for adding flags to MachineInstr's into methods on MachineInstr rather than LiveVariables. by Owen Anderson · 17 years ago
  16. 3ae0543 Forgot these. by Evan Cheng · 17 years ago
  17. 2928650 Let each target decide byval alignment. For X86, it's 4-byte unless the aggregare contains SSE vector(s). For x86-64, it's max of 8 or alignment of the type. by Evan Cheng · 17 years ago
  18. f02e26a Added special escape sequences "\{", "\}", and "\|" when processing by Ted Kremenek · 17 years ago
  19. f9c98e6 The last pieces needed for loading arbitrary by Duncan Sands · 17 years ago
  20. 1eed950 Added "getRoot()" to ImmutableSet. by Ted Kremenek · 17 years ago
  21. 25edeb3 Honor explicit section information on Darwin. by Dale Johannesen · 17 years ago
  22. 97ca75e Fix an iterator invalidation issue. by Owen Anderson · 17 years ago
  23. 2cbdd27 SSE varargs arguments are passed in memory. by Evan Cheng · 17 years ago
  24. 8e1f7ac Simplify SelectionDAG::getNode so that a big switch stmt is not #ifndef by Chris Lattner · 17 years ago
  25. 70c8650 Silence a warning. Should we turn this into configure-time check? by Anton Korobeynikov · 17 years ago
  26. 7674b9d Add interator interface to DAGInit also by Anton Korobeynikov · 17 years ago
  27. 7e85720 The final piece needed for storing arbitrary precision by Duncan Sands · 17 years ago
  28. 6410510 Enable the fix I just checked in, silly me. by Nick Lewycky · 17 years ago
  29. 3b8ea6e update this test to pass with duncan's change. by Chris Lattner · 17 years ago
  30. 05a3e8a One too many )'s breaks 'make clean' with certain versions of make. by Chris Lattner · 17 years ago
  31. e6b0c00 Multiply can be evaluated in a different type, so long as the target type has by Nick Lewycky · 17 years ago
  32. 18bef16 Trivial patch to fix two warnings, please pull into llvm 2.2 by Chris Lattner · 17 years ago
  33. 3387060 Fixed buggy caching of the hash value of an ImutAVLTree node. by Ted Kremenek · 17 years ago
  34. 8893b0d Moved method call within a conditional branch because its effects will by Ted Kremenek · 17 years ago
  35. c4125a3 Adjusted ImutAVLTree::ComputeHash to compute a hash value that is based on a by Ted Kremenek · 17 years ago
  36. c899b33 Added "clear" method to FoldingSetNodeID to allow a FoldingSetNodeID object by Ted Kremenek · 17 years ago
  37. 6518f5f Replaced (FoldingSet) profiling of ImutAVLTree with a hashing based scheme. The by Ted Kremenek · 17 years ago
  38. 82137bd Provide iterator access to ListInit contents by Anton Korobeynikov · 17 years ago
  39. c2f191c Fix the failures in the PPC JIT by marking relocation entries for by Chris Lattner · 17 years ago
  40. 5768c96 New test. by Devang Patel · 17 years ago
  41. a6b1926 Clarify a deviation from the original algorithm. by Owen Anderson · 17 years ago
  42. 3b48952 Improve a few comments. by Owen Anderson · 17 years ago
  43. 03531a4 It turns out that in C++ it is legal to declare functions by Duncan Sands · 17 years ago
  44. e5d53f5 New test. by Devang Patel · 17 years ago
  45. 333e8be Check that sret is only used on pointers to types with a size, like byval. by Duncan Sands · 17 years ago
  46. 53d4afc Be consistent with other attribute methods, and by Duncan Sands · 17 years ago
  47. da9bb35 Move DAG-changing code out of #ifndef NDEBUG. by Dale Johannesen · 17 years ago
  48. e003813 Make sure the caller doesn't use freed memory. Fixes PR1935. by Duncan Sands · 17 years ago
  49. ea74c7e Honour ByVal parameter attribute for name decoration by Anton Korobeynikov · 17 years ago
  50. 99e635c Remove Darwin'ism by Anton Korobeynikov · 17 years ago
  51. 49964d6 Enable PIC codegen on x86-64/linux by Anton Korobeynikov · 17 years ago
  52. 02ec6e5 Initializing an unsigned with ~0UL causes the compiler by Duncan Sands · 17 years ago
  53. 713ed3f Do not generate a FP_ROUND of f64 to f64. by Dale Johannesen · 17 years ago
  54. 1877849 Changed argument name for 'Profile' method to potentially fix a name conflict by Ted Kremenek · 17 years ago
  55. 4bdad51 Need to handle any 'nest' parameter before integer by Duncan Sands · 17 years ago
  56. 3cf8bec Modified ImmutableSet/ImmutableMap to use FoldingSet profiling using by Ted Kremenek · 17 years ago
  57. 4048a08 Added FoldingSet style 'profiling' support for APSInt. by Ted Kremenek · 17 years ago
  58. e420deb Added FoldingSet style 'profiling' support for APInt. by Ted Kremenek · 17 years ago
  59. 0a3feca Made 'FoldingSetNodeID' a proper class instead of a nested class in by Ted Kremenek · 17 years ago
  60. a753f70 Made 'profiling' of objects in a FoldingSet trait-based using FoldingSetTrait by Ted Kremenek · 17 years ago
  61. b4eae99 Fix makefiles to enable Apply style debug build. by Evan Cheng · 17 years ago
  62. 5c5eb80 Implement flt_rounds for PowerPC. by Dale Johannesen · 17 years ago
  63. 994d6cf remove extraneous &&'s from tests, as Scott is apparently not going to. by Chris Lattner · 17 years ago
  64. 9929207 Test is correct again for the moment. by Dale Johannesen · 17 years ago
  65. c9133f9 remove extraneous &'s. by Chris Lattner · 17 years ago
  66. 4569553 don't form an std::string with a null pointer, it aborts. by Chris Lattner · 17 years ago
  67. ef97c67 get symbolic information for ppc ldbl nodes. by Chris Lattner · 17 years ago
  68. 561e8c8 remove magic numbers. by Chris Lattner · 17 years ago
  69. a7a02fb Fix a latent bug exposed by my truncstore patch. We compiled stfiwx-2.ll to: by Chris Lattner · 17 years ago
  70. 3d66185 make a method public by Chris Lattner · 17 years ago
  71. e827753 Reverted implementation of ImmutableMap::find() to return a TreeTy* instead of by Ted Kremenek · 17 years ago
  72. 25a0195 Revert the part of 45849 that treated weak globals by Dale Johannesen · 17 years ago
  73. d15d086 Revert the part of 45848 that treated weak globals by Dale Johannesen · 17 years ago
  74. 58c5818 Forward progress: crtbegin.c now compiles successfully! by Scott Michel · 17 years ago
  75. ddf8956 This commit changes: by Chris Lattner · 17 years ago
  76. 41c5a39 new testcase. by Chris Lattner · 17 years ago
  77. e509e7a Implemented "FIXME" in ImutAVLTree: isEqual() now also compares the *data* value by Ted Kremenek · 17 years ago
  78. 39354cb add some helper methods. by Chris Lattner · 17 years ago
  79. e6d5c77 Test case for varargs parameter attribute issue I just fixed. by Evan Cheng · 17 years ago
  80. 4626b25 code cleanups, no functionality change. by Chris Lattner · 17 years ago
  81. 0bd4893 * Introduce a new SelectionDAG::getIntPtrConstant method by Chris Lattner · 17 years ago
  82. f51a9d4 add testcase that has been sitting in my tree for awhile. by Chris Lattner · 17 years ago
  83. 1d4a8b7 Update license for current year. by Tanya Lattner · 17 years ago
  84. cf06767 Update version to 2.3svn Regenerate configure with 2.60. by Tanya Lattner · 17 years ago
  85. b2fc2a3 DAE bug fix. Don't lose parameter attributes on vararg arguments. by Evan Cheng · 17 years ago
  86. 3de01e1 Enable CBE by Devang Patel · 17 years ago
  87. 839b759 When a live virtual register is being clobbered by an implicit def, it is spilled by Evan Cheng · 17 years ago
  88. ab04e13 Fix arg promotion to propagate the correct attrs on the calls to by Chris Lattner · 17 years ago
  89. 644340a Replace std::vector<bool> with BitVector. by Evan Cheng · 17 years ago
  90. 02c4285 Fixes a nasty dag combiner bug that causes a bunch of tests to fail at -O0. by Evan Cheng · 17 years ago
  91. 339e14f Trampoline support for x86-64. This looks like by Duncan Sands · 17 years ago
  92. 1e9aa71 Handle attribute(used) global variables that are i8. by Chris Lattner · 17 years ago
  93. 48ae02f Do not mark EH tables no-dead-strip unless the associated function is so marked. by Dale Johannesen · 17 years ago
  94. b8b9221 add testcase for regression by Chris Lattner · 17 years ago
  95. 7e2e033 Fix a ppc long double regression I introduced yesterday due to a by Chris Lattner · 17 years ago
  96. a66bb39 merge a few pieces of code that do the store/load to stack by Chris Lattner · 17 years ago
  97. 1401d15 rename ExpandBIT_CONVERT to EmitStackConvert, generalizing by Chris Lattner · 17 years ago
  98. 23594d4 simplify a bunch of code by using SelectionDAG::CreateStackTemporary by Chris Lattner · 17 years ago
  99. f2670a8 Change legalizeop of FP_ROUND and FP_EXTEND to not fall through by Chris Lattner · 17 years ago
  100. f763288 make sure to use a cpu that has sse. by Chris Lattner · 17 years ago