Skip to content
  1. Jan 11, 2015
  2. Jan 10, 2015
  3. Jan 08, 2015
  4. Jan 06, 2015
    • Tom Stellard's avatar
      R600: Handle amdgcn triple · d8e38a32
      Tom Stellard authored
      For now there is no difference between amdgcn and r600.
      
      llvm-svn: 225294
      d8e38a32
    • Saleem Abdulrasool's avatar
      Sema: analyze I,J,K,M,N,O constraints · a2823578
      Saleem Abdulrasool authored
      Add additional constraint checking for target specific behaviour for inline
      assembly constraints.  We would previously silently let all arguments through
      for these constraints.  In cases where the constraints were violated, we could
      end up failing to select instructions and triggering assertions or worse,
      silently ignoring instructions.
      
      llvm-svn: 225244
      a2823578
  5. Dec 27, 2014
  6. Dec 18, 2014
  7. Dec 17, 2014
    • Reid Kleckner's avatar
      Destroy the diagnostic client first in ~DiagnosticEngine · dccbabfa
      Reid Kleckner authored
      Add a comment and a test to ~DiagnosticEngine about the ordering
      requirements on the teardown of DiagnosticConsumer. This could also be
      accomplished by rearranging the fields of ~DiagnosticEngine, but I felt
      that this was a better, more explicit solution.
      
      This fixes PR21911, an issue that occurred after the unique_ptr
      migration in r222193.
      
      llvm-svn: 224454
      dccbabfa
    • Toma Tabacu's avatar
      [mips] Always clobber $1 for MIPS inline asm. · 9941195a
      Toma Tabacu authored
      Summary:
      Because GCC doesn't use $1 for code generation, inline assembly code can use $1 without having to add it to the clobbers list.
      
      LLVM, on the other hand, does not shy away from using $1, and this can cause conflicts with inline assembly which assumes GCC-like code generation.
      
      A solution to this problem is to make Clang automatically clobber $1 for all MIPS inline assembly.
      This is not the optimal solution, but it seems like a necessary compromise, for now.
      
      Reviewers: dsanders
      
      Reviewed By: dsanders
      
      Subscribers: cfe-commits
      
      Differential Revision: http://reviews.llvm.org/D6638
      
      llvm-svn: 224428
      9941195a
  8. Dec 11, 2014
  9. Dec 10, 2014
    • Nico Weber's avatar
      cmake: Make SVNVersion.inc step depend on GetSVN.cmake. · d95699e9
      Nico Weber authored
      This way, the step generating SVNVersion.inc gets rerun every time someone
      changes GetSVN.cmake (which is the file that decides how the contents of
      SVNVersion.inc look). This makes hacking on GetSVN.cmake a bit easier.
      
      llvm-svn: 223861
      d95699e9
  10. Dec 09, 2014
    • Chandler Carruth's avatar
      Re-work the Clang system for classifying Intel x86 CPUs to use their · 04ca0bba
      Chandler Carruth authored
      basic microarchitecture names, and add support (with tests) for parsing
      all of the masic microarchitecture names for CPUs documented to be
      accepted by GCC with -march. I didn't go back through the 32-bit-only
      old microarchitectures, but this at least brings the recent architecture
      names up to speed. This is essentially the follow-up to the LLVM commit
      r223769 which did similar cleanups for the LLVM CPUs.
      
      One particular benefit is that you can now use -march=westmere in Clang
      and get the LLVM westmere processor which is a different ISA variant (!)
      and so quite significant.
      
      Much like with r223769, I would appreciate the Intel folks carefully
      thinking about the macros defined, names used, etc for the atom chips
      and newest primary x86 chips. The current patterns seem quite strange to
      me, especially here in Clang.
      
      Note that I haven't replicated the per-microarchitecture macro defines
      provided by GCC. I'm really opposed to source code using these rather
      than using ISA feature macros.
      
      llvm-svn: 223776
      04ca0bba
  11. Dec 06, 2014
  12. Dec 05, 2014
  13. Dec 03, 2014
    • Reid Kleckner's avatar
      CUDA host device code with two code paths · bbc01785
      Reid Kleckner authored
      Summary:
      Allow CUDA host device functions with two code paths using __CUDA_ARCH__
      to differentiate between code path being compiled.
      
      For example:
        __host__ __device__ void host_device_function(void) {
        #ifdef __CUDA_ARCH__
          device_only_function();
        #else
          host_only_function();
        #endif
        }
      
      Patch by Jacques Pienaar.
      
      Reviewed By: rnk
      
      Differential Revision: http://reviews.llvm.org/D6457
      
      llvm-svn: 223271
      bbc01785
  14. Dec 02, 2014
  15. Dec 01, 2014
  16. Nov 26, 2014
  17. Nov 25, 2014
  18. Nov 20, 2014
    • Jordan Rose's avatar
      [CMake] Use .svn/wc.db as our VC dependency if it's available. · 08b3638b
      Jordan Rose authored
      In order to keep SVNVersion.inc from being regenerated on every build, we need
      to specify as a dependency a file that only changes when the VC state updates.
      I previously just had .svn/entries, but that's only used by Subversion 1.6.
      1.7 uses .svn/wc.db instead; prefer that if it's present.
      
      (Thanks, Nico!)
      
      llvm-svn: 222407
      08b3638b
  19. Nov 19, 2014
  20. Nov 18, 2014
  21. Nov 17, 2014
    • Saleem Abdulrasool's avatar
      Basic: tweak comment · cb29c1ae
      Saleem Abdulrasool authored
      Add a missing surrounding brace for doxygen group.  This messes with pair
      jumping in vim and is annoying.  NFC.
      
      llvm-svn: 222155
      cb29c1ae
  22. Nov 14, 2014
Loading