1. 83eaae1 Remove a duplicative binding. Patch by Mahadevan R. by Gordon Henriksen · 16 years ago
  2. 1d6e409 Teach GVN to not assert on vector comparisons by Nate Begeman · 16 years ago
  3. f44085a Fix a backwards check in the JIT symbol table code by Nate Begeman · 16 years ago
  4. 47c9909 Fix PR2339 by Chris Lattner · 16 years ago
  5. 08de1e4 Revert constant-folding change that will miscompile in some cases. by Nick Lewycky · 16 years ago
  6. b578310 trip count computation deficiency by Chris Lattner · 16 years ago
  7. 6cccce3 Unbreak the build. by Nick Lewycky · 16 years ago
  8. d24ae87 Constant fold inttoptr and ptrtoint. by Nick Lewycky · 16 years ago
  9. fc1efbb Move isTrueWhenEqual to ICmpInst. by Nick Lewycky · 16 years ago
  10. 1f7580c Less conservative verison of previous patch, suggested by Duncan. by Dale Johannesen · 16 years ago
  11. 6796629 Weak functions not declared non-throwing might be by Dale Johannesen · 16 years ago
  12. 0bf7b41 Add functions to enable adding a single attribute to a function and by Eric Christopher · 16 years ago
  13. ea7dd40 Record weak external linkage in a case where we were by Dale Johannesen · 16 years ago
  14. 7cbd8a3 API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legacy interfaces will be in place for some time. (Merge from use-diet branch.) by Gabor Greif · 16 years ago
  15. 446efdd If the result of a BIT_CONVERT is a v1* vector, it doesn't mean its source is a v1* vector. by Evan Cheng · 16 years ago
  16. 1a2d667 Bill pointed out that system headers should be included after local headers. by Duncan Sands · 16 years ago
  17. 419cafb Silence the compiler warning differently. The by Duncan Sands · 16 years ago
  18. 66ae104 Do not dup malloc, vector instructions, etc. Throttle the default theshold way down. by Evan Cheng · 16 years ago
  19. 62849be Remove ADCE's ability to delete loops. This ability is now implemented in a by Owen Anderson · 16 years ago
  20. 0db198d Clean ups for loop deletion based on Chris' feedback. by Owen Anderson · 16 years ago
  21. b2ae9e3 implement PR2328. by Chris Lattner · 16 years ago
  22. f88c81e Treat common as distinct from weak global on Darwin x86. by Dale Johannesen · 16 years ago
  23. eedff31 Revert the change from r51157 in by Dan Gohman · 16 years ago
  24. f20d70d Fix a bug in LoopStrengthReduce that caused it to emit IR with by Dan Gohman · 16 years ago
  25. 0ef8de3 Fix typos and comments. by Evan Cheng · 16 years ago
  26. 6667646 Allow an extra bit for CommonLinkage. by Dale Johannesen · 16 years ago
  27. b434513 Actually scalarize the operand to BIT_CONVERT instead of asking someone to do by Nate Begeman · 16 years ago
  28. 041e2eb IR support for extractvalue and insertvalue instructions. Also, begin by Dan Gohman · 16 years ago
  29. d208a80 Use static and anonymous namespaces consistently with other passes. by Dan Gohman · 16 years ago
  30. 8dbd9ad Remove useless check. Patch by Matthijs Kooijman. by Devang Patel · 16 years ago
  31. bdb6ca1 Disable JIT symbol table for now. by Evan Cheng · 16 years ago
  32. 9c0d50e Use of UINT_MAX requires climits, at least when compiling with gcc 4.3. by Duncan Sands · 16 years ago
  33. b1dbcd8 Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile targets to find these better. by Gabor Greif · 16 years ago
  34. f0df031 Make use of vector load and store operations to implement memcpy, memmove, and memset. Currently only X86 target is taking advantage of these. by Evan Cheng · 16 years ago
  35. ff155f03 Move the operator new and operator delete out of line. This fixes an issue with by Nate Begeman · 16 years ago
  36. 386f3e9 Don't assume underlying APInt type is limited to 64 bits. by Dale Johannesen · 16 years ago
  37. a6c3112 Situations can arise when you have a function called that returns a 'void', but by Bill Wendling · 16 years ago
  38. 6a33cc1 Remove undefined behavior in hex string->APFloat by Dale Johannesen · 16 years ago
  39. 97e60d9 Use a better idiom to silence compiler warnings. by Evan Cheng · 16 years ago
  40. 4186ad5 rename SimplifyCFG.cpp -> SimplifyCFGPass.cpp by Chris Lattner · 16 years ago
  41. bb60674 Silence warnings. by Evan Cheng · 16 years ago
  42. 3521334 Really silence compiler warnings. by Evan Cheng · 16 years ago
  43. b203114 Really silence compiler warnings. by Evan Cheng · 16 years ago
  44. 40e829f CommonLinkage (missed a file) by Dale Johannesen · 16 years ago
  45. c7071cc Generated files for CommonLinkage. by Dale Johannesen · 16 years ago
  46. aafce77 Add CommonLinkage; currently tentative definitions by Dale Johannesen · 16 years ago
  47. 5087124 Silence some compiler warnings. by Evan Cheng · 16 years ago
  48. ef3682a Simplify internalize pass. Add test case. Patch by Matthijs Kooijman! by Devang Patel · 16 years ago
  49. d64a78c When bit-twiddling CondCode values for integer comparisons produces by Dan Gohman · 16 years ago
  50. 2010b3e Detabification. Fixed indentation and spacing. by Sanjiv Gupta · 16 years ago
  51. 9474ede Fix typo in ParameterAttribute fields usage. Add an include by Nicolas Geoffray · 16 years ago
  52. 2d4e7f7 Fixed the file description header at the top to remove the developer name. by Sanjiv Gupta · 16 years ago
  53. 6bf8770 Doh. Alignment is in bytes, not in bits. by Evan Cheng · 16 years ago
  54. c9f5f3f Change target-specific classes to use more precise static types. by Dan Gohman · 16 years ago
  55. 9c78a39 Whitespace cleanups. by Dan Gohman · 16 years ago
  56. 4d9dd6b Make PreVerifyID, IntSigsEnd, and KillSigsEnd const. by Dan Gohman · 16 years ago
  57. 45b3197 Split the loop unroll mechanism logic out into a utility function. by Dan Gohman · 16 years ago
  58. c4f406e Fix Analysis/BasicAA/pure-const-dce.ll. This turned out to be a correctness by Owen Anderson · 16 years ago
  59. 94fb68b Merge of r51073-51074 from use-diet branch. by Gabor Greif · 16 years ago
  60. 2527e88 Dominance Frontier is cfg only pass. by Devang Patel · 16 years ago
  61. ff5a535 Fix memdep's handling of invokes when finding the dependency of another call by Owen Anderson · 16 years ago
  62. 72997fe Fix for PR 2323, infinite loop in tail dup. by Dale Johannesen · 16 years ago
  63. 3b34e1e add a note by Chris Lattner · 16 years ago
  64. b656443 - Fix the pasto in the fix for a previous pasto. by Evan Cheng · 16 years ago
  65. 7171c83 add a note by Chris Lattner · 16 years ago
  66. 32097bd Fix one more encoding bug. by Nate Begeman · 16 years ago
  67. 11b6793 - Don't treat anyext 16-bit load as a 32-bit load if it's volatile. by Evan Cheng · 16 years ago
  68. 16db1f7 Make the non-local CSE safety checks slightly more thorough. by Owen Anderson · 16 years ago
  69. 0e68771 Adding files for Microchip's PIC16 target. by Sanjiv Gupta · 16 years ago
  70. 77f0b7a Instead of a vector load, shuffle and then extract an element. Load the element from address with an offset. by Evan Cheng · 16 years ago
  71. 3b3f58c Add support for non-local CSE of read-only calls. by Owen Anderson · 16 years ago
  72. d6a2218 Derive GetResultInst from UnaryInstruction, this simplifies code and removes a FIXME. by Gabor Greif · 16 years ago
  73. 6ddba2b Change class' public PassInfo variables to by initialized with the by Dan Gohman · 16 years ago
  74. a72acf9 80 col / tabs fixes by Nate Begeman · 16 years ago
  75. c9bdb00 Fix and encoding error in the psrad xmm, imm8 instruction. by Nate Begeman · 16 years ago
  76. fa7fd33 On x86, it's safe to treat i32 load anyext as a normal i32 load. Ditto for i8 anyext load to i16. by Evan Cheng · 16 years ago
  77. 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 16 years ago
  78. 0d1704b Teach Legalize how to scalarize VSETCC by Nate Begeman · 16 years ago
  79. 9bfa03c Xform bitconvert(build_pair(load a, load b)) to a single load if the load locations are at the right offset from each other. by Evan Cheng · 16 years ago
  80. 30562b7 Be more aggressive about tail-merging small blocks by Dale Johannesen · 16 years ago
  81. ae94dda Constify isSourceDefinedByImplicitDef function. Otherwise, just formatting by Bill Wendling · 16 years ago
  82. 9f8fea3 Constify the machine instruction passed into the by Bill Wendling · 16 years ago
  83. c2616e4 Initial X86 codegen support for VSETCC. by Nate Begeman · 16 years ago
  84. 51b2b9e Further rework of tail merge algorithm. Not quite by Dale Johannesen · 16 years ago
  85. baa64eb Simplify some checks by Nate Begeman · 16 years ago
  86. 9499b71 Fix a copy+paste bug; pseudo-instructions shouldn't have encoding information. by Dan Gohman · 16 years ago
  87. 51d2ed1 Pointer comparisons should use icmp, not vicmp by Nate Begeman · 16 years ago
  88. a472c4a Go back to passing the analyses around as parameters. by Owen Anderson · 16 years ago
  89. c83ad0d Pointer comparisons should be handled by icmp, not vicmp :) by Nate Begeman · 16 years ago
  90. 18e4e85 Hard code CmpInst back to i1 for now while I go track down what in the bitcode reader/writer is assuming i1 by Nate Begeman · 16 years ago
  91. ad4196b Refactor isConsecutiveLoad from X86 to TargetLowering so DAG combiner can make use of it. by Evan Cheng · 16 years ago
  92. c1b7f52 Revert the previous commit. Go ahead and hoist rematerializable instructions. by Bill Wendling · 16 years ago
  93. b43e9c1 Add support for vicmp/vfcmp codegen, more legalize support coming. by Nate Begeman · 16 years ago
  94. e4fc1cc One real change - don't hoist something that's trivially rematerializable. It's by Bill Wendling · 16 years ago
  95. 6fd90ce Fix build breakage by Nate Begeman · 16 years ago
  96. ac80ade Add two new instructions to the llvm IR, vicmp and vfcmp. see updated LangRef by Nate Begeman · 16 years ago
  97. 7c2e4f2 Make firstEightPowers const. by Dan Gohman · 16 years ago
  98. 9b38d7d Update comments. by Dan Gohman · 16 years ago
  99. 2ce3898 Fix a compile error on compilers that still want a return value by Dan Gohman · 16 years ago
  100. 9ab9ee8 Fix a missing break in the ISD::FLT_ROUNDS_ handling. Patch by giuma! by Dan Gohman · 16 years ago