1. ee40a16 Don't use 'else ifdef', I guess this is a 3.81 feature? by Daniel Dunbar · 14 years ago
  2. e7fd7c6 Remove this debug output. The MachineFunction will be printed once all of by Dan Gohman · 14 years ago
  3. 8387d7d The local register allocator has to spill dirty callee saved registers before a by Jakob Stoklund Olesen · 14 years ago
  4. 3f5e915 Update BitVectorTest.cpp to stay in sync with SmallBitVectorTest.cpp, by Dan Gohman · 14 years ago
  5. 8fcd418 Fix TOOLALIAS to not make dependency against $(PROJ_bindir), this is unnecessary by Daniel Dunbar · 14 years ago
  6. 0aa885d Preserve debug info attached with call instruction while eliminating dead argument. by Devang Patel · 14 years ago
  7. 3335a22 Make this code less confusing. Instead of reassigning BB, just operate by Dan Gohman · 14 years ago
  8. 24d9d97 Add new NO_INSTALL_ARCHIVES make variable, to suppress install of .a files. by Daniel Dunbar · 14 years ago
  9. db3f957 Add an install-clang-c top-level target, which does a Clang C API install. by Daniel Dunbar · 14 years ago
  10. 95dbda7 New test. by Devang Patel · 14 years ago
  11. ccff812 Attach AT_APPLE_optimized attribute to optimized function's debug info. by Devang Patel · 14 years ago
  12. 891ff8f EmitDbgValue doesn't need its EdgeMapping argument. by Dan Gohman · 14 years ago
  13. 27195a5 Fixed @ctor / @dtor the wrong way around in last commit. by David Chisnall · 14 years ago
  14. e31e996 Added a brief explanation of @llvm.global_{c,d}tors. by David Chisnall · 14 years ago
  15. 8833c32 Set isSigned to true when creating an all-ones integer constant, even by Dan Gohman · 14 years ago
  16. b6fd0b4 Silence compiler warnings. by Dan Gohman · 14 years ago
  17. 5b61b38 Add lint checks for invalid uses of memory. by Dan Gohman · 14 years ago
  18. 5cc6f9b Add some comments. by Dan Gohman · 14 years ago
  19. 71edb24 Remove the -disable-16bit command-line option, which is now obsolete. by Dan Gohman · 14 years ago
  20. 132dace Don't use floating point in SimpleRegisterCoalescing. by Jakob Stoklund Olesen · 14 years ago
  21. 5b296e3 Properly escape edge source and destination labels. by Dan Gohman · 14 years ago
  22. 01baea3 Add -o /dev/null to some tests which don't care about their output. by Dan Gohman · 14 years ago
  23. 3ce89f4 Apply a patch from Jan Sjodin to fix a compiler abort on vector by Dan Gohman · 14 years ago
  24. f913878 Regenerate. by Daniel Dunbar · 14 years ago
  25. 753b43c Default OPTIMIZE_OPTION to -O2 on FreeBSD, at the request of the Clang/FreeBSD by Daniel Dunbar · 14 years ago
  26. 6340722 SmallBitVector: Rework find_first/find_next and tweak test to test them (at least on 64 bit platforms). by Benjamin Kramer · 14 years ago
  27. b252fbd Implement a read/write operator[] for SmallBitVector with a proxy class. by Benjamin Kramer · 14 years ago
  28. 1e44aa0 Make sure SmallBitVector actually uses the small case and fix latent bugs. by Benjamin Kramer · 14 years ago
  29. f2d36d9 Fix test. by Evan Cheng · 14 years ago
  30. 1361796 Another sibcall bug. If caller and callee calling conventions differ, then it's only safe to do a tail call if the results are returned in the same way. by Evan Cheng · 14 years ago
  31. 71cee76 Temporarily disable SelectionDAG kill flags, which are causing trouble. by Dan Gohman · 14 years ago
  32. 8c818fc Fix the OProfileJITEventListener build after r101844 removed by Jeffrey Yasskin · 14 years ago
  33. 47bd03b Set register kill flags on the SelectionDAG path, at least in the easy cases. by Dan Gohman · 14 years ago
  34. f07fc97 Reject really weird coalescer case when trying to merge identical subregisters by Jakob Stoklund Olesen · 14 years ago
  35. 8d0e1bc The llc -f flag was removed. by Nick Lewycky · 14 years ago
  36. ffce6f1 Don't leave Base.FrameIndex uninitialized, so that it doesn't by Dan Gohman · 14 years ago
  37. c799c55 add some more (void)'s to prototypes for PR6961 by Chris Lattner · 14 years ago
  38. a555ac9 Fix typos in assertion strings. by Dan Gohman · 14 years ago
  39. 02104df Slightly verboser debug spew from coalescer by Jakob Stoklund Olesen · 14 years ago
  40. 22070e8 Missed earlier. This is part of previous check-in. (r102661 - refactor.) by Devang Patel · 14 years ago
  41. 719f6a9 Refactor. by Devang Patel · 14 years ago
  42. 8c5358c Make naked functions work on PPC. by Dale Johannesen · 14 years ago
  43. 67a444c Print variable scope name in DEBUG_VALUE comment. Useful in some cases. e.g. by Devang Patel · 14 years ago
  44. bd6cb4b Remove DBG_VALUE which reference dead stack slots. by Evan Cheng · 14 years ago
  45. a83ce98 DO not push DBG_VALUE machine instructions for inlined fuction arguments in entry block. by Devang Patel · 14 years ago
  46. 3e6fe5e Add DenseMapInfo for int. by Evan Cheng · 14 years ago
  47. 281ead4 llc no longer requires the -f option to overwrite files. by Dan Gohman · 14 years ago
  48. 619d03f Don't remove libLTO.dylib if it's not being installed in Developer/usr/lib; by Bob Wilson · 14 years ago
  49. 5768ea9 Elaborate on a comment. by Dan Gohman · 14 years ago
  50. 8ae93e7 Remove dead option. by Daniel Dunbar · 14 years ago
  51. e704d9d Verify metadata harder. In particular, check that module by Duncan Sands · 14 years ago
  52. e57f048 Fix comment typo. by Duncan Sands · 14 years ago
  53. 8fed761 Add comment. by Evan Cheng · 14 years ago
  54. e8ab3bd Fix PR6910. by Torok Edwin · 14 years ago
  55. a36acad Re-enable 102565 with fixes. by Evan Cheng · 14 years ago
  56. 28edeb7 Fix typo. by Nick Lewycky · 14 years ago
  57. 3f54c64 Load folding tail call should not use ebp / rbp after it's popped. PEI by Evan Cheng · 14 years ago
  58. b9a01bc Add support for assemblers that don't support periods in a name by Mon P Wang · 14 years ago
  59. 16e4ace Temporarily disable my changes to unbreak the build. by Evan Cheng · 14 years ago
  60. 9e8a2b9 Do not generate duplicate dbg_value instructions for function arguments. by Evan Cheng · 14 years ago
  61. c924556 Fix missing #include. by Dan Gohman · 14 years ago
  62. ee1d91a Avoid emitting a dbg_value machineinstr that's not going to be inserted into entry block. by Evan Cheng · 14 years ago
  63. 8601a3d Frame index can be negative. by Evan Cheng · 14 years ago
  64. 1deef27 Check Reg against zero. by Evan Cheng · 14 years ago
  65. 6691a89 - Really preserve dbg_value instructions when the register is spilled. by Evan Cheng · 14 years ago
  66. f38c6c8 tidy up. by Devang Patel · 14 years ago
  67. 9ac7282 Fixed the word sized Bit Scan Forward/Reverse instructions, they needed the by Kevin Enderby · 14 years ago
  68. 2ad0fcf Replace r102368 with code that's less fragile. This creates DBG_VALUE instructions for function arguments early and insert them after instruction selection is done. by Evan Cheng · 14 years ago
  69. c1c4595 fix this to work with objdir != srcdir by Chris Lattner · 14 years ago
  70. de5996e Fix comment. by Dale Johannesen · 14 years ago
  71. 21a9bd9 Test for llvm-gcc checkin 102543. by Dale Johannesen · 14 years ago
  72. b8485d6 Add an option to the Apple-style build to control whether libLTO.dylib should by Bob Wilson · 14 years ago
  73. d100755 by Jim Grosbach · 14 years ago
  74. 518e21a Update tests. Now DBG_VALUE instruction is created only if alloca corresponding to llvm.dbg.declare is missing. by Devang Patel · 14 years ago
  75. ff33d83 declare targets with (void) instead of () since this is a C header. by Chris Lattner · 14 years ago
  76. f3f325b fix PR6112 - When globalopt (or any other pass) does RAUW(@G, %G), by Chris Lattner · 14 years ago
  77. 59b3655 Pretty print DBG_VALUE machine instructions. by Evan Cheng · 14 years ago
  78. e87f7bb Rework global alignment computation again. Now we do round up by Chris Lattner · 14 years ago
  79. 54fc4d6 While lowering dbg_declare, emit DBG_VALUE machine instruction if alloca matching llvm.dbg.declare intrinsic is missing. by Devang Patel · 14 years ago
  80. 0fd1099 Recompute kill flags from live intervals after coalescing instead of trying to by Jakob Stoklund Olesen · 14 years ago
  81. 7261fb2 Teach X86FloatingPoint that a register can be killed multiple times by the same by Jakob Stoklund Olesen · 14 years ago
  82. 598f4ab Undo most of my previous whitespace fix. I think I like it better this way by Bob Wilson · 14 years ago
  83. d79f0ed Fix inconsistent use of HOSTS and TARGETS variables. by Bob Wilson · 14 years ago
  84. 2f6da3d Fix whitespace. by Bob Wilson · 14 years ago
  85. 2bce5f4b Enable i16 to i32 promotion by default. by Evan Cheng · 14 years ago
  86. b3a3d5e Try operation promotion only if regular dag combine and target-specific ones failed to do anything. by Evan Cheng · 14 years ago
  87. 39cfeec Unbreak the build. Only form shld / shrd after legalization. by Evan Cheng · 14 years ago
  88. da3a8a6 Update tests. by Evan Cheng · 14 years ago
  89. 28ff35d Emit debug info for byval parameters. by Devang Patel · 14 years ago
  90. 8b1190a Rather than having a ton of patterns for double shift instructions, e.g. SHLD16rrCL, just perform custom dag combine to form x86 specific dag so they match to the same pattern. This also makes sure later dag combine do not cause isel to miss them (e.g. promoting i16 to i32). by Evan Cheng · 14 years ago
  91. a7b611c further simplify EmitAlignment by eliminating the by Chris Lattner · 14 years ago
  92. 7558247 remove a dead argument to EmitAlignment. by Chris Lattner · 14 years ago
  93. 059ea13 remove some default arguments to EmitAlignment. by Chris Lattner · 14 years ago
  94. a43098d Refactor. by Devang Patel · 14 years ago
  95. 34b3d99 Rewrite the section on trap values to contain a generic description by Dan Gohman · 14 years ago
  96. 1c70c00 Fix spelling errors. by Dan Gohman · 14 years ago
  97. 5a6a65b Tweak x86 INC/DEC generation to look for CopyToReg or SETCC. Radar 7866163. by Stuart Hastings · 14 years ago
  98. 2d4b8ee further clarify alignment of globals, fix instcombine by Chris Lattner · 14 years ago
  99. ce99fa9 improve the global variable alignment description. by Chris Lattner · 14 years ago
  100. a00adba Use MachineOperand::is* predicates. by Devang Patel · 14 years ago