Skip to content
  1. Jun 30, 2015
  2. Jun 29, 2015
  3. Jun 26, 2015
    • Nemanja Ivanovic's avatar
      Add missing builtins to altivec.h for ABI compliance (vol. 1) · 2f1f926e
      Nemanja Ivanovic authored
      This patch corresponds to review:
      http://reviews.llvm.org/D10637
      
      This is the first round of additions of missing builtins listed in the ABI document. More to come (this builds onto what seurer already addes). This patch adds:
      vector signed long long vec_abs(vector signed long long)
      vector double vec_abs(vector double)
      vector signed long long vec_add(vector signed long long, vector signed long long)
      vector unsigned long long vec_add(vector unsigned long long, vector unsigned long long)
      vector double vec_add(vector double, vector double)
      vector double vec_and(vector bool long long, vector double)
      vector double vec_and(vector double, vector bool long long)
      vector double vec_and(vector double, vector double)
      vector signed long long vec_and(vector signed long long, vector signed long long)
      vector double vec_andc(vector bool long long, vector double)
      vector double vec_andc(vector double, vector bool long long)
      vector double vec_andc(vector double, vector double)
      vector signed long long vec_andc(vector signed long long, vector signed long long)
      vector double vec_ceil(vector double)
      vector bool long long vec_cmpeq(vector double, vector double)
      vector bool long long vec_cmpge(vector double, vector double)
      vector bool long long vec_cmpge(vector signed long long, vector signed long long)
      vector bool long long vec_cmpge(vector unsigned long long, vector unsigned long long)
      vector bool long long vec_cmpgt(vector double, vector double)
      vector bool long long vec_cmple(vector double, vector double)
      vector bool long long vec_cmple(vector signed long long, vector signed long long)
      vector bool long long vec_cmple(vector unsigned long long, vector unsigned long long)
      vector bool long long vec_cmplt(vector double, vector double)
      vector bool long long vec_cmplt(vector signed long long, vector signed long long)
      vector bool long long vec_cmplt(vector unsigned long long, vector unsigned long long)
      
      llvm-svn: 240821
      2f1f926e
    • Nico Weber's avatar
      Add new file from r240741 to CMakeLists.txt. · ac64b977
      Nico Weber authored
      llvm-svn: 240743
      ac64b977
    • Nico Weber's avatar
      Add an inttypes.h wrapper that fixes up some macros in Microsoft mode. · 2ca46867
      Nico Weber authored
      Before MSVS2015, MSVS's headers disagree about int32_t and PRIx32 and so on.
      Provide a wrapper header to fix this, so that -Wformat can still be used.
      Fixes PR23412.
      
      llvm-svn: 240741
      2ca46867
    • Sean Silva's avatar
      Remove `requires` for x86 CPU features. · d0de76a3
      Sean Silva authored
      Ever since the target attributes change, we don't need to guard these
      headers with `requires`. Actually it's a bit worse, because if we do
      then they are included textually under the covers, causing declarations
      to appear in submodules they aren't supposed to be in.
      
      llvm-svn: 240720
      d0de76a3
  4. Jun 17, 2015
  5. Jun 16, 2015
  6. Jun 15, 2015
  7. Jun 11, 2015
  8. Jun 09, 2015
  9. Jun 05, 2015
  10. Jun 04, 2015
  11. May 28, 2015
  12. May 27, 2015
  13. May 25, 2015
  14. May 20, 2015
  15. May 19, 2015
  16. May 16, 2015
    • Bill Schmidt's avatar
      [PPC64] Add vector pack/unpack support from ISA 2.07 · 41e14c4d
      Bill Schmidt authored
      This patch adds support for the following new instructions in the
      Power ISA 2.07:
      
        vpksdss
        vpksdus
        vpkudus
        vpkudum
        vupkhsw
        vupklsw
      
      These instructions are available through the vec_packs, vec_packsu,
      vec_unpackh, and vec_unpackl built-in interfaces.  These are
      lane-sensitive instructions, so the built-ins have different
      implementations for big- and little-endian, and the instructions must
      be marked as killing the vector swap optimization for now.
      
      The first three instructions perform saturating pack operations.  The
      fourth performs a modulo pack operation, which means it can be
      represented with a vector shuffle, and conversely the appropriate
      vector shuffles may cause this instruction to be generated.  The other
      instructions are only generated via built-in support for now.
      
      I noticed during patch preparation that the macro __VSX__ was not
      previously predefined when the power8-vector or direct-move features
      are requested.  This is an error, and I've corrected that here as
      well.
      
      Appropriate tests have been added.
      
      There is a companion patch to llvm for the rest of this support.
      
      llvm-svn: 237500
      41e14c4d
  17. May 14, 2015
    • Richard Smith's avatar
      [modules] Fix a #include cycle when building a module for our builtin headers. · 23d8d033
      Richard Smith authored
      xmmintrin.h includes emmintrin.h and vice versa if SSE2 is enabled. We break
      this cycle for a modules build, and instead make the xmmintrin.h module
      re-export the immintrin.h module. Also included is a fix for an assert in the
      serialization code if a module exports another module that was declared later
      in the same module map.
      
      llvm-svn: 237321
      23d8d033
  18. May 07, 2015
  19. Apr 30, 2015
  20. Apr 28, 2015
  21. Apr 22, 2015
    • Artem Belevich's avatar
      [cuda] Added support for CUDA built-in variables. · 4e192df7
      Artem Belevich authored
      Added cuda_builtin_vars.h which implements built-in CUDA variables
      using __declattr(property).
      
      Fields of built-in variables (except for warpSize) are implemented
      using __declattr(property) which replaces read/write of a member field
      with a call to a getter/setter member function, in this case with
      appropriate NVPTX builtin.
      
      Added a test case to check diagnostics on attempt to construct or
      improperly access a built-in variable.
      
      Differential Revision: http://reviews.llvm.org/D9064
      
      llvm-svn: 235448
      4e192df7
  22. Apr 21, 2015
  23. Apr 10, 2015
  24. Apr 01, 2015
    • Ulrich Weigand's avatar
      [SystemZ] Add header files to Makefile / module.modulemap · cc67344a
      Ulrich Weigand authored
      This should fix build-bot failures after r233804.
      
      The patch also adds a "systemz" feature, and renames the
      "transactional-execution" feature to "htm", since it turns
      out "-" is not a legal character in module feature names.
      
      llvm-svn: 233807
      cc67344a
    • Ulrich Weigand's avatar
      [SystemZ] Support transactional execution on zEC12 · 3a610ebf
      Ulrich Weigand authored
      The zEC12 provides the transactional-execution facility.  This is exposed
      to users via a set of builtin routines on other compilers.  This patch
      adds clang support to enable those builtins.  In partciular, the patch:
      
      - enables the transactional-execution feature by default on zEC12
      - allows to override presence of that feature via the -mhtm/-mno-htm options
      - adds a predefined macro __HTM__ if the feature is enabled
      - adds support for the transactional-execution GCC builtins
      - adds Sema checking to verify the __builtin_tabort abort code
      - adds the s390intrin.h header file (for GCC compatibility)
      - adds s390 sections to the htmintrin.h and htmxlintrin.h header files
      
      Since this is first use of target-specific intrinsics on the platform,
      the patch creates the include/clang/Basic/BuiltinsSystemZ.def file and
      hooks it up in TargetBuiltins.h and lib/Basic/Targets.cpp.
      
      An associated LLVM patch adds the required LLVM IR intrinsics.
      
      For reference, the transactional-execution instructions are documented
      in the z/Architecture Principles of Operation for the zEC12:
      http://publibfp.boulder.ibm.com/cgi-bin/bookmgr/download/DZ9ZR009.pdf
      The associated builtins are documented in the GCC manual:
      http://gcc.gnu.org/onlinedocs/gcc/S_002f390-System-z-Built-in-Functions.html
      The htmxlintrin.h intrinsics provided for compatibility with the IBM XL
      compiler are documented in the "z/OS XL C/C++ Programming Guide".
      
      llvm-svn: 233804
      3a610ebf
    • Elena Demikhovsky's avatar
      AVX-512: added clang intrinsics for logical and, or xor for 512 bits · 29da2fba
      Elena Demikhovsky authored
      by Asaf Badouh (asaf.badouh@intel.com)
      
      llvm-svn: 233794
      29da2fba
  25. Mar 25, 2015
    • Kit Barton's avatar
      Add Hardware Transactional Memory (HTM) Support · 8246f282
      Kit Barton authored
      This patch adds Hardware Transaction Memory (HTM) support supported by ISA 2.07
      (POWER8). The intrinsic support is based on GCC one [1], with both 'PowerPC HTM
      Low Level Built-in Functions' and 'PowerPC HTM High Level Inline Functions'
      implemented.
      
      Along with builtins a new driver switch is added to enable/disable HTM
      instruction support (-mhtm) and a header with common definitions (mostly to
      parse the TFHAR register value). The HTM switch also sets a preprocessor builtin
      HTM.
      
      The HTM usage requires a recently newer kernel with PPC HTM enabled. Tested on
      powerpc64 and powerpc64le.
      
      This is send along a llvm patch to enabled the builtins and option switch.
      
      [1]
      https://gcc.gnu.org/onlinedocs/gcc/PowerPC-Hardware-Transactional-Memory-Built-in-Functions.html
      
      Phabricator Review: http://reviews.llvm.org/D8248
      
      llvm-svn: 233205
      8246f282
Loading