1. 675d562 assert(0) -> LLVM_UNREACHABLE. by Edwin Török · 16 years ago
  2. 8f5253b Remove the vicmp and vfcmp instructions. Because we never had a release with by Nick Lewycky · 16 years ago
  3. 5349f05 "LLVMContext* " --> "LLVMContext *" by Owen Anderson · 16 years ago
  4. d4d90a0 Thread LLVMContext through the constant folding APIs, which touches a lot of files. by Owen Anderson · 16 years ago
  5. 8fd520a Support vector casts in more places, fixing a variety of assertion failures. by Dan Gohman · 16 years ago
  6. ebe2d00 Change ConstantFoldConstantExpression to accept a null by Dan Gohman · 16 years ago
  7. 2d9b3cb Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 16 years ago
  8. ec4f97d Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  9. d46dc02 Revert 71165. It did more than just revert 71158 and it introduced by Dan Gohman · 16 years ago
  10. d32c972 Temporarily revert r71158. It was causing a failure during a full bootstrap: by Bill Wendling · 16 years ago
  11. c19cb77 Constant-fold ptrtoint+add+inttoptr to gep when the pointer is an by Dan Gohman · 16 years ago
  12. ae15af6 use higher level APIs. by Chris Lattner · 16 years ago
  13. d68f13b Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  14. 238c5b2 Fix whitespace in comment. by Nick Lewycky · 17 years ago
  15. 67de0c2 undef beats zero. Fix this missed optimization opportunity. Patch by Matt Elder! by Nick Lewycky · 17 years ago
  16. 2a890b4 Don't try to create a mask when we don't need one. Fixes a crash. by Nick Lewycky · 17 years ago
  17. abe3913 Teach constant folding that an inttoptr of a by Duncan Sands · 17 years ago
  18. 623a2c5 Fix minor issues with VICmp/VFCmp constant expressions by Nate Begeman · 17 years ago
  19. adb6792 "ret (constexpr)" can't be folded into a Constant. Add a method to by Nick Lewycky · 17 years ago
  20. f3a502a transform more loops to iterator form, detabify by Gabor Greif · 17 years ago
  21. ece177d Rewrite operand loops to use iterators. This shrinks .o file (at gcc4.0.1 -O3 x86) substantially (>500 bytes). Reason still unknown. by Gabor Greif · 17 years ago
  22. 04a115e suppress gcc3.4.6's <no value returned> warnings by Gabor Greif · 17 years ago
  23. f40dd00 Remove dead return. Thanks to Bill for the review! by Chris Lattner · 17 years ago
  24. 3c89452 Add support for constant folding the 'offsetof' pattern even if the by Chris Lattner · 17 years ago
  25. 5e0610f Switch to using Simplified ConstantFP::get API. by Chris Lattner · 17 years ago
  26. 6192ce0 minor code cleanups, allow constant folding sinf/cosf. by Chris Lattner · 17 years ago
  27. e6e001f Avoid unnecessarily casting away const, fixing a FIXME. by Dan Gohman · 18 years ago
  28. 081ce94 Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  29. 334f8b5 Fix a bug in my previous patch, thanks to Jay Foad for by Chris Lattner · 18 years ago
  30. 09d481b Implement constant folding if vector<->vector bitcasts where the number by Chris Lattner · 18 years ago
  31. d6e5691 Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp. by Chris Lattner · 18 years ago
  32. 93ffe72 splice some lines together, no functionality change. by Chris Lattner · 18 years ago
  33. f99fdc6 Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. by Duncan Sands · 18 years ago
  34. c339d8e Rewrite sqrt and powi to use anyfloat. By popular demand. by Dale Johannesen · 18 years ago
  35. 0c81a52 Add sqrt and powi intrinsics for long double. by Dale Johannesen · 18 years ago
  36. b9de9f0 Next round of APFloat changes. by Dale Johannesen · 18 years ago
  37. 21a9865 constant fold ptrtoint(inttoptr) with target data when available. This allows by Chris Lattner · 18 years ago
  38. 499c9b2 Handle functions with no name better. by Chris Lattner · 18 years ago
  39. eb8fdd3 significantly speed up constant folding of calls (and thus all clients that use by Chris Lattner · 18 years ago
  40. a228e39 This is the patch to provide clean intrinsic function overloading support in LLVM. It cleans up the intrinsic definitions and generally smooths the process for more complicated intrinsic writing. It will be used by the upcoming atomic intrinsics as well as vector and float intrinsics in the future. by Chandler Carruth · 18 years ago
  41. f17a25c It's not necessary to do rounding for alloca operations when the requested by Dan Gohman · 18 years ago