Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/llvm/llvm-project.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Mar 28, 2022
  2. Mar 26, 2022
    • Sam McCall's avatar
      [cmake] Provide CURRENT_TOOLS_DIR centrally, replacing CLANG_TOOLS_DIR · 57ee624d
      Sam McCall authored
      CLANG_TOOLS_DIR holds the the current bin/ directory, maybe with a %(build_mode)
      placeholder. It is used to add the just-built binaries to $PATH for lit tests.
      In most cases it equals LLVM_TOOLS_DIR, which is used for the same purpose.
      But for a standalone build of clang, CLANG_TOOLS_DIR points at the build tree
      and LLVM_TOOLS_DIR points at the provided LLVM binaries.
      
      Currently CLANG_TOOLS_DIR is set in clang/test/, clang-tools-extra/test/, and
      other things always built with clang. This is a few cryptic lines of CMake in
      each place. Meanwhile LLVM_TOOLS_DIR is provided by configure_site_lit_cfg().
      
      This patch moves CLANG_TOOLS_DIR to configure_site_lit_cfg() and renames it:
       - there's nothing clang-specific about the value
       - it will also replace LLD_TOOLS_DIR, LLDB_TOOLS_DIR etc (not in this patch)
      
      It also defines CURRENT_LIBS_DIR. While I removed the last usage of
      CLANG_LIBS_DIR in e4cab4e2, there are LLD_LIBS_DIR usages etc that
      may be live, and I'd like to mechanically update them in a followup patch.
      
      Differential Revision: https://reviews.llvm.org/D121763
      57ee624d
  3. Mar 24, 2022
  4. Mar 23, 2022
  5. Mar 22, 2022
  6. Mar 21, 2022
    • Sven van Haastregt's avatar
      [OpenCL] Guard write_only image3d_t with TypeExtension · 73e1888e
      Sven van Haastregt authored
      Ensure that the TypeExtension of an `ImageType` is also taken into
      account when generating `OpenCLBuiltins.inc`.
      
      This aligns the handling of the `write_only image3d_t` type for
      `-fdeclare-opencl-builtins` with opencl-c.h with respect to the
      `cl_khr_3d_image_writes` extension.
      
      Since the `write_only image3d_t` type is not available when the
      extension is disabled, this commit does not add a test to
      `SemaOpenCL/fdeclare-opencl-builtins.cl`.
      73e1888e
  7. Mar 18, 2022
  8. Mar 16, 2022
  9. Mar 12, 2022
  10. Mar 06, 2022
  11. Mar 04, 2022
  12. Feb 24, 2022
    • Sven van Haastregt's avatar
      [OpenCL] Handle TypeExtensions in OpenCLBuiltinFileEmitter · 28cdcf8e
      Sven van Haastregt authored
      Until now, any types that had TypeExtensions attached to them were not
      guarded with those extensions.  Extend the OpenCLBuiltinFileEmitter
      such that all required extensions are emitted for the types of a
      builtin function.
      
      The `clang-tblgen -gen-clang-opencl-builtin-tests` emitter will now
      produce e.g.:
      
        #if defined(cl_khr_fp16) && defined(cl_khr_fp64)
        half8 test11802_convert_half8_rtp(double8 arg1) {
          return convert_half8_rtp(arg1);
        }
        #endif // TypeExtension
      
      Differential Revision: https://reviews.llvm.org/D120262
      28cdcf8e
  13. Feb 18, 2022
  14. Feb 17, 2022
    • Sven van Haastregt's avatar
      [OpenCL] Guard 64-bit atomic types · 9798b33d
      Sven van Haastregt authored
      Until now, overloads with a 64-bit atomic type argument were always
      made available with `-fdeclare-opencl-builtins`.  Ensure these
      overloads are only available when both the `cl_khr_int64_base_atomics`
      and `cl_khr_int64_extended_atomics` extensions have been enabled, as
      required by the OpenCL specification.
      
      Differential Revision: https://reviews.llvm.org/D119858
      9798b33d
    • Nikita Popov's avatar
      [CodeGen] Rename deprecated Address constructor · 50650766
      Nikita Popov authored
      To make uses of the deprecated constructor easier to spot, and to
      ensure that no new uses are introduced, rename it to
      Address::deprecated().
      
      While doing the rename, I've filled in element types in cases
      where it was relatively obvious, but we're still left with 135
      calls to the deprecated constructor.
      50650766
  15. Feb 16, 2022
    • Zakk Chen's avatar
      [RISCV] Add the passthru operand for RVV nomask binary intrinsics. · b7847199
      Zakk Chen authored
      The goal is support tail and mask policy in RVV builtins.
      We focus on IR part first.
      If the passthru operand is undef, we use tail agnostic, otherwise
      use tail undisturbed.
      
      Add passthru operand for VSLIDE1UP_VL and VSLIDE1DOWN_VL to support
      i64 scalar in rv32.
      
      The masked VSLIDE1 would only emit mask undisturbed policy regardless
      of giving mask agnostic policy until InsertVSETVLI supports mask agnostic.
      
      Reviewed by: craig.topper, rogfer01
      
      Differential Revision: https://reviews.llvm.org/D117989
      b7847199
  16. Feb 14, 2022
  17. Feb 09, 2022
    • Steffen Larsen's avatar
      Allow parameter pack expansions and initializer lists in annotate attribute · ead1690d
      Steffen Larsen authored
      These changes make the Clang parser recognize expression parameter pack
      expansion and initializer lists in attribute arguments. Because
      expression parameter pack expansion requires additional handling while
      creating and instantiating templates, the support for them must be
      explicitly supported through the AcceptsExprPack flag.
      
      Handling expression pack expansions may require a delay to when the
      arguments of an attribute are correctly populated. To this end,
      attributes that are set to accept these - through setting the
      AcceptsExprPack flag - will automatically have an additional variadic
      expression argument member named DelayedArgs. This member is not
      exposed the same way other arguments are but is set through the new
      CreateWithDelayedArgs creator function generated for applicable
      attributes.
      
      To illustrate how to implement support for expression pack expansion
      support, clang::annotate is made to support pack expansions. This is
      done by making handleAnnotationAttr delay setting the actual attribute
      arguments until after template instantiation if it was unable to
      populate the arguments due to dependencies in the parsed expressions.
      ead1690d
  18. Feb 04, 2022
  19. Jan 26, 2022
    • eopXD's avatar
      [Clang][RISCV] Guard vmulh, vsmul correctly · 970a1912
      eopXD authored
      According to v-spec 1.0, `vmulh`, `vmulhu`, `vmulhsu` and `vsmul` are
      NOT supported for EEW=64 in Zve64*.
      
      This patch tries to guard it correctly.
      
      Authored by: Craig Topper <craig.topper@sifive.com> @craig.topper
      Co-Authored by: Eop Chen <eop.chen@sifive.com> @eopXD
      
      Reviewed By: craig.topper
      
      Differential Revision: https://reviews.llvm.org/D117913
      970a1912
  20. Jan 25, 2022
  21. Jan 24, 2022
    • jacquesguan's avatar
      [RISCV] Decouple Zve* extensions and the V extension. · ba16e3c3
      jacquesguan authored
      According to the spec, there are some difference between V and Zve64d. For example, the vmulh integer multiply variants that return the high word of the product (vmulh.vv, vmulh.vx, vmulhu.vv, vmulhu.vx, vmulhsu.vv, vmulhsu.vx) are not included for EEW=64 in Zve64*, but V extension does support these instructions. So we should decouple Zve* extensions and the V extension.
      
      Differential Revision: https://reviews.llvm.org/D117854
      ba16e3c3
  22. Jan 23, 2022
  23. Jan 22, 2022
  24. Jan 21, 2022
  25. Jan 20, 2022
  26. Jan 16, 2022
    • John Ericson's avatar
      Revert "[cmake] Use `GNUInstallDirs` to support custom installation dirs." · da77db58
      John Ericson authored
      https://lab.llvm.org/buildbot/#/builders/46/builds/21146 Still have
      this odd error, not sure how to reproduce, so I will just try breaking
      up my patch.
      
      This reverts commit 4a678f80.
      da77db58
    • John Ericson's avatar
      [cmake] Use `GNUInstallDirs` to support custom installation dirs. · 4a678f80
      John Ericson authored
      This is the original patch in my GNUInstallDirs series, now last to merge as the final piece!
      
      It arose as a new draft of D28234. I initially did the unorthodox thing of pushing to that when I wasn't the original author, but since I ended up
      
       - Using `GNUInstallDirs`, rather than mimicking it, as the original author was hesitant to do but others requested.
      
       - Converting all the packages, not just LLVM, effecting many more projects than LLVM itself.
      
      I figured it was time to make a new revision.
      
      I have used this patch series (and many back-ports) as the basis of https://github.com/NixOS/nixpkgs/pull/111487 for my distro (NixOS), which was merged last spring (2021). It looked like people were generally on board in D28234, but I make note of this here in case extra motivation is useful.
      
      ---
      
      As pointed out in the original issue, a central tension is that LLVM already has some partial support for these sorts of things. Variables like `COMPILER_RT_INSTALL_PATH` have already been dealt with. Variables like `LLVM_LIBDIR_SUFFIX` however, will require further work, so that we may use `CMAKE_INSTALL_LIBDIR`.
      
      These remaining items will be addressed in further patches. What is here is now rote and so we should get it out of the way before dealing more intricately with the remainder.
      
      Reviewed By: #libunwind, #libc, #libc_abi, compnerd
      
      Differential Revision: https://reviews.llvm.org/D99484
      4a678f80
  27. Jan 15, 2022
    • John Ericson's avatar
      Revert "[cmake] Use `GNUInstallDirs` to support custom installation dirs." · 6e52bfe0
      John Ericson authored
      Sorry for the disruption, I will try again later.
      
      This reverts commit efeb5019.
      6e52bfe0
    • John Ericson's avatar
      [cmake] Use `GNUInstallDirs` to support custom installation dirs. · efeb5019
      John Ericson authored
      This is the original patch in my GNUInstallDirs series, now last to merge as the final piece!
      
      It arose as a new draft of D28234. I initially did the unorthodox thing of pushing to that when I wasn't the original author, but since I ended up
      
       - Using `GNUInstallDirs`, rather than mimicking it, as the original author was hesitant to do but others requested.
      
       - Converting all the packages, not just LLVM, effecting many more projects than LLVM itself.
      
      I figured it was time to make a new revision.
      
      I have used this patch series (and many back-ports) as the basis of https://github.com/NixOS/nixpkgs/pull/111487 for my distro (NixOS), which was merged last spring (2021). It looked like people were generally on board in D28234, but I make note of this here in case extra motivation is useful.
      
      ---
      
      As pointed out in the original issue, a central tension is that LLVM already has some partial support for these sorts of things. Variables like `COMPILER_RT_INSTALL_PATH` have already been dealt with. Variables like `LLVM_LIBDIR_SUFFIX` however, will require further work, so that we may use `CMAKE_INSTALL_LIBDIR`.
      
      These remaining items will be addressed in further patches. What is here is now rote and so we should get it out of the way before dealing more intricately with the remainder.
      
      Reviewed By: #libunwind, #libc, #libc_abi, compnerd
      
      Differential Revision: https://reviews.llvm.org/D99484
      efeb5019
  28. Jan 13, 2022
  29. Jan 12, 2022
    • Carlos Galvez's avatar
      [clang] Introduce support for disabling warnings in system macros · c4db521c
      Carlos Galvez authored
      Often we run into situations where we want to ignore
      warnings from system headers, but Clang will still
      give warnings about the contents of a macro defined
      in a system header used in user-code.
      
      Introduce a ShowInSystemMacro option to be able to
      specify which warnings we do want to keep raising
      warnings for. The current behavior is kept in this patch
      (i.e. warnings from system macros are enabled by default).
      The decision as to whether this should be an opt-in or opt-out
      feature can be made in a separate patch.
      
      To put the feature to test, replace duplicated code for
      Wshadow and Wold-style-cast with the SuppressInSystemMacro tag.
      Also disable the warning for C++20 designators, fixing #52944.
      
      Differential Revision: https://reviews.llvm.org/D116833
      c4db521c
  30. Jan 11, 2022
  31. Jan 10, 2022
  32. Jan 09, 2022
Loading