Skip to content
  1. Oct 05, 2009
  2. Sep 16, 2009
  3. Sep 11, 2009
  4. Sep 04, 2009
    • Dan Gohman's avatar
      Revert 80959. It isn't sufficient to solve the full problem. And it · e4ca02da
      Dan Gohman authored
      introduced regressions in the Ocaml bindings tests.
      
      llvm-svn: 80969
      e4ca02da
    • Dan Gohman's avatar
      Remove the API for creating ConstantExprs with the nsw, nuw, inbounds, · 2a53b30f
      Dan Gohman authored
      and exact flags. Because ConstantExprs are uniqued, creating an
      expression with this flag causes all expressions with the same operands
      to have the same flag, which may not be safe. Add, sub, mul, and sdiv
      ConstantExprs are usually folded anyway, so the main interesting flag
      here is inbounds, and the constant folder already knows how to set the
      inbounds flag automatically in most cases, so there isn't an urgent need
      for the API support.
      
      This can be reconsidered in the future, but for now just removing these
      API bits eliminates a source of potential trouble with little downside.
      
      llvm-svn: 80959
      2a53b30f
  5. Sep 02, 2009
  6. Aug 21, 2009
  7. Aug 20, 2009
  8. Aug 19, 2009
  9. Aug 13, 2009
  10. Jul 31, 2009
  11. Jul 30, 2009
  12. Jul 29, 2009
  13. Jul 28, 2009
  14. Jul 27, 2009
  15. Jul 26, 2009
  16. Jul 25, 2009
  17. Jul 22, 2009
  18. Jul 14, 2009
  19. Jul 11, 2009
    • Torok Edwin's avatar
      assert(0) -> LLVM_UNREACHABLE. · 56d06597
      Torok Edwin authored
      Make llvm_unreachable take an optional string, thus moving the cerr<< out of
      line.
      LLVM_UNREACHABLE is now a simple wrapper that makes the message go away for
      NDEBUG builds.
      
      llvm-svn: 75379
      56d06597
  20. Jul 08, 2009
  21. Jul 07, 2009
  22. Jul 06, 2009
  23. Jun 16, 2009
    • Dan Gohman's avatar
      Support vector casts in more places, fixing a variety of assertion · 7ccc52f1
      Dan Gohman authored
      failures.
      
      To support this, add some utility functions to Type to help support
      vector/scalar-independent code. Change ConstantInt::get and
      ConstantFP::get to support vector types, and add an overload to
      ConstantInt::get that uses a static IntegerType type, for
      convenience.
      
      Introduce a new getConstant method for ScalarEvolution, to simplify
      common use cases.
      
      llvm-svn: 73431
      7ccc52f1
  24. Jun 02, 2009
    • Dan Gohman's avatar
      Change ConstantFoldConstantExpression to accept a null · 136bd719
      Dan Gohman authored
      TargetData pointer. The only thing it's used for are
      calls to ConstantFoldCompareInstOperands and
      ConstantFoldInstOperands, which both already accept a
      null TargetData pointer. This makes
      ConstantFoldConstantExpression easier to use in clients
      where TargetData is optional.
      
      llvm-svn: 72741
      136bd719
  25. May 21, 2009
  26. May 09, 2009
  27. May 07, 2009
    • Dan Gohman's avatar
      Revert 71165. It did more than just revert 71158 and it introduced · 4bb6fa23
      Dan Gohman authored
      several regressions. The problem due to 71158 is now fixed.
      
      llvm-svn: 71176
      4bb6fa23
    • Bill Wendling's avatar
      Temporarily revert r71158. It was causing a failure during a full bootstrap: · 17f0f654
      Bill Wendling authored
      checking for bcopy... no
      checking for getc_unlocked... Assertion failed: (0 && "Unknown SCEV kind!"), function operator(), file /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvmCore.roots/llvmCore~obj/src/lib/Analysis/ScalarEvolution.cpp, line 511.
      /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvmgcc42.roots/llvmgcc42~obj/src/libdecnumber/decUtility.c:360: internal compiler error: Abort trap
      Please submit a full bug report,
      with preprocessed source if appropriate.
      See <URL:http://developer.apple.com/bugreporter> for instructions.
      make[4]: *** [decUtility.o] Error 1
      make[4]: *** Waiting for unfinished jobs....
      Assertion failed: (0 && "Unknown SCEV kind!"), function operator(), file /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvmCore.roots/llvmCore~obj/src/lib/Analysis/ScalarEvolution.cpp, line 511.
      /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvmgcc42.roots/llvmgcc42~obj/src/libdecnumber/decNumber.c:5591: internal compiler error: Abort trap
      Please submit a full bug report,
      with preprocessed source if appropriate.
      See <URL:http://developer.apple.com/bugreporter> for instructions.
      make[4]: *** [decNumber.o] Error 1
      make[3]: *** [all-stage2-libdecnumber] Error 2
      make[3]: *** Waiting for unfinished jobs....
      
      llvm-svn: 71165
      17f0f654
    • Dan Gohman's avatar
      Constant-fold ptrtoint+add+inttoptr to gep when the pointer is an · e5d2a04a
      Dan Gohman authored
      array and the add is within range. This helps simplify expressions
      expanded by ScalarEvolutionExpander.
      
      llvm-svn: 71158
      e5d2a04a
  28. Apr 03, 2009
  29. Jan 12, 2009
  30. Dec 15, 2008
  31. Nov 20, 2008
  32. Oct 24, 2008
  33. Aug 13, 2008
Loading