Skip to content
Snippets Groups Projects
  1. Oct 09, 2013
  2. Oct 08, 2013
  3. Sep 22, 2013
  4. Sep 18, 2013
    • Hal Finkel's avatar
      Add the intrinsic __builtin_convertvector · 414a1bdb
      Hal Finkel authored
      LLVM supports applying conversion instructions to vectors of the same number of
      elements (fptrunc, fptosi, etc.) but there had been no way for a Clang user to
      cause such instructions to be generated when using builtin vector types.
      
      C-style casting on vectors is already defined in terms of bitcasts, and so
      cannot be used for these conversions as well (without leading to a very
      confusing set of semantics). As a result, this adds a __builtin_convertvector
      intrinsic (patterned after the OpenCL __builtin_astype intrinsic). This is
      intended to aid the creation of vector intrinsic headers that create generic IR
      instead of target-dependent intrinsics (in other words, this is a generic
      _mm_cvtepi32_ps). As noted in the documentation, the action of
      __builtin_convertvector is defined in terms of the action of a C-style cast on
      each vector element.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@190915 91177308-0d34-0410-b5e6-96231b3b80d8
      414a1bdb
  5. Aug 14, 2013
  6. Aug 12, 2013
  7. Jul 14, 2013
  8. Jul 12, 2013
  9. May 05, 2013
  10. Apr 26, 2013
  11. Apr 03, 2013
  12. Mar 27, 2013
  13. Feb 07, 2013
  14. Feb 01, 2013
  15. Jan 29, 2013
  16. Jan 20, 2013
  17. Jan 12, 2013
  18. Jan 02, 2013
  19. Dec 20, 2012
  20. Dec 18, 2012
  21. Dec 04, 2012
  22. Oct 04, 2012
  23. Sep 26, 2012
  24. Sep 25, 2012
  25. Sep 18, 2012
  26. Sep 11, 2012
  27. Aug 30, 2012
  28. Aug 24, 2012
  29. Aug 23, 2012
  30. Jul 30, 2012
    • Richard Smith's avatar
      Improvements to vexing-parse warnings. Make the no-parameters case more · b9c6261d
      Richard Smith authored
      accurate by asking the parser whether there was an ambiguity rather than trying
      to reverse-engineer it from the DeclSpec. Make the with-parameters case have
      better diagnostics by using semantic information to drive the warning,
      improving the diagnostics and adding a fixit.
      
      Patch by Nikola Smiljanic. Some minor changes by me to suppress diagnostics for
      declarations of the form 'T (*x)(...)', which seem to have a very high false
      positive rate, and to reduce indentation in 'warnAboutAmbiguousFunction'.
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160998 91177308-0d34-0410-b5e6-96231b3b80d8
      b9c6261d
  31. Jun 30, 2012
  32. Jun 23, 2012
  33. Jun 19, 2012
  34. Jun 17, 2012
  35. Jun 15, 2012
Loading