aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-03-19[X86] Add missing subvector_subreg_lowering for BF16 (#83720)llvmorg-18.1.2Phoebe Wang3-1/+25
2024-03-19[C++20] [Moduls] Avoid computing odr hash for functions from comparing ↵Chuanqi Xu9-18/+93
constraint expression Previously we disabled to compute ODR hash for declarations from the global module fragment. However, we missed the case that the functions lives in the concept requiments (see the attached the test files for example). And the mismatch causes the potential crashment. Due to we will set the function body as lazy after we deserialize it and we will only take its body when needed. However, we don't allow to take the body during deserializing. So it is actually potentially problematic if we set the body as lazy first and computing the hash value of the function, which requires to deserialize its body. So we will meet a crash here. This patch tries to solve the issue by not taking the body of the function from GMF. Note that we can't skip comparing the constraint expression from the GMF directly since it is an key part of the function selecting and it may be the reason why we can't return 0 directly for `FunctionDecl::getODRHash()` from the GMF.
2024-03-19[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending ↵Luke Lau2-16/+16
indices (#82506) This fixes the miscompile reported in #82430 by telling isSimpleVIDSequence to sign extend to XLen instead of the width of the indices, since the "sequence" of indices generated by a strided load will be at XLen. This was the simplest way I could think of getting isSimpleVIDSequence to treat the indexes as if they were zero extended to XLenVT. Another way we could do this is by refactoring out the "get constant integers" part from isSimpleVIDSequence and handle them as APInts so we can separately zero extend it. Fixes #82430 (cherry picked from commit 815644b4dd882ade2e5649d4f97c3dd6f7aea200)
2024-03-19[RISCV] Adjust test case to show wrong stride. NFCLuke Lau1-9/+9
See https://github.com/llvm/llvm-project/pull/82506#discussion_r1498080785 (cherry picked from commit 11d115d0569b212dfeb7fe6485be48070e068e19)
2024-03-19[RISCV] Add test case for miscompile in gather -> strided load combine. NFCLuke Lau1-0/+47
This shows the issue in #82430, but triggers it via the widening SEW combine rather than a GEP that RISCVGatherScatterLowering doesn't detect. (cherry picked from commit 2cd59bdc891ab59a1abfe5205feb45791a530a47)
2024-03-19[TSan] Fix atomicrmw xchg with pointer and floats (#85228)Nikita Popov2-4/+25
atomicrmw xchg also accepts pointer and floating-point values. To handle those, insert necessary casts to and from integer. This is what we do for cmpxchg as well. Fixes https://github.com/llvm/llvm-project/issues/85226. (cherry picked from commit ff2fb2a1d78585944dcdb9061c8487fe1476dfa4)
2024-03-19[AVR] Remove earlyclobber from LDDRdPtrQ (#85277)Patryk Wychowaniec2-1/+164
LDDRdPtrQ was marked as `earlyclobber`, which doesn't play well with GreedyRA (which can generate this instruction through `loadRegFromStackSlot()`). This seems to be the same case as: https://github.com/llvm/llvm-project/blob/a99b912c9b74f6ef91786b4dfbc25160c27d3b41/llvm/lib/Target/AVR/AVRInstrInfo.td#L1421 Closes https://github.com/llvm/llvm-project/issues/81911.
2024-03-19Revert "release/18.x: [openmp] __kmp_x86_cpuid fix for i386/PIC builds. ↵David CARLIER1-10/+0
(#846…" This reverts commit 9b3edb592debc00a5c3fbf7a71f63e07d6af44be.
2024-03-19[PowerPC] Update chain uses when emitting lxsizx (#84892)Qiu Chaofan3-0/+117
(cherry picked from commit e5b20c83e5ba25e6e0650df30352ce54c2f6ea2f)
2024-03-19[llvm-shlib] Fix the version naming style of libLLVM for Windows (#85710)Martin Storsjö1-3/+7
This reverts the changes from 91a384621e5b762d9c173ffd247cfeadd5f436a2 for Windows targets. The changes in that commit don't work as expected for Windows targets (those parts of llvm_add_library don't quite behave the same for Windows), while the previous status quo (producing a library named "libLLVM-<major>.dll") is the defacto standard way of doing versioned library names there, contrary to on Unix. After that commit, the library always ended up named "libLLVM.dll", executables linking against it would reference "libLLVM.dll", and "libLLVM-<major>.dll" was provided as a symlink. Thus revert this bit back to as it were, so that executables actually link against a versioned libLLVM, and no separate symlink is needed. The only thing that might be improved compared to the status quo as it was before these changes, is that the import library is named "lib/libLLVM-<major>.dll.a", while the common style would be to name it plainly "lib/libLLVM.dll.a" (even while it produces references to "libLLVM-<major>.dll", but none of these had that effect for Windows targets. (As a side note, the llvm-shlib library can be built for MinGW, but not currently in MSVC configurations.) (cherry picked from commit cb2ca23345d3d9bde027a18d301949e8bdf606a6)
2024-03-19[llvm-shlib] Fix libLLVM-18 symlink on mingw (#85554)Tom Stellard1-1/+1
The TARGET_SONAME_FILE_NAME generator expression is not available on dll target platforms. (cherry picked from commit f84980570d3f85bdf5c9432647c05bae04a735a0)
2024-03-19llvm-shlib: Fix libLLVM-${MAJOR}.so symlink on MacOS (#85163)Tom Stellard2-5/+4
This is a partial revert of 10c48a772742b7afe665a815b7eba2047f17dc4b with a fix for the symlink target name on MacOS See #84637 (cherry picked from commit ec2b7522dbee1cb91111d6ade6e1768462247dcf)
2024-03-19[WebAssembly] Change the default linker for `wasm32-wasip2` (#84569)Alex Crichton3-3/+50
This commit changes the default linker in the WebAssembly toolchain for the `wasm32-wasip2` target. This target is being added to the WebAssembly/wasi-sdk and WebAssembly/wasi-libc projects to target the Component Model by default, in contrast with the preexisting `wasm32-wasi` target (in the process of being renamed to `wasm32-wasip1`) which outputs a core WebAssembly module by default. The `wasm-component-ld` project currently lives in my GitHub account at https://github.com/alexcrichton/wasm-component-ld and isn't necessarily "official" yet, but it's expected to continue to evolve as the `wasm32-wasip2` target continues to shape up and evolve. (cherry picked from commit d66121d74a458e098511b9de920d815440acaa1b)
2024-03-19workflows: Fix baseline version for llvm abi checks (#85166)Tom Stellard1-2/+10
The baseline version calculations was assuming the minor release would always be 0. (cherry picked from commit d93363a0e803a9fb2889ff03237f4e93aacf0108)
2024-03-17[InstCombine] Drop UB-implying attrs/metadata after speculating an ↵Yingwei Zheng2-0/+41
instruction (#85542) When speculating an instruction in `InstCombinerImpl::FoldOpIntoSelect`, the call may result in undefined behavior. This patch drops all UB-implying attrs/metadata to fix this. Fixes #85536. (cherry picked from commit 252d01952c087cf0d141f7f281cf60efeb98be41)
2024-03-16[lld][LoongArch] Fix handleUleb128Weining Lu1-2/+3
(cherry picked from commit a41bcb3930534ef1525b4fc30e53e818b39e2b60)
2024-03-16[lld][test] Fix sanitizer buildbot failureWeining Lu1-1/+1
Buildbot failure: https://lab.llvm.org/buildbot/#/builders/5/builds/41530/steps/9/logs/stdio (cherry picked from commit d9b435c24ddddcc8148fd97b42f6bb1124e52307)
2024-03-16Remove support for EXPORTAS in def files to maintain ABI compatibility for ↵Daniel Paoliello5-206/+1
COFFShortExport
2024-03-16[Arm64EC] Copy import descriptors to the EC Map (#84834)Daniel Paoliello4-6/+27
As noted in <https://github.com/llvm/llvm-project/pull/78537>, MSVC places import descriptors in both the EC and regular map - that PR moved the descriptors to ONLY the regular map, however this causes linking errors when linking as Arm64EC: ``` bcryptprimitives.lib(bcryptprimitives.dll) : error LNK2001: unresolved external symbol __IMPORT_DESCRIPTOR_bcryptprimitives (EC Symbol) ``` This change copies import descriptors from the regular map to the EC map, which fixes this linking error.
2024-03-16[llvm-lib][Object] Add support for EC importlib symbols. (#81059)Jacek Caban7-32/+225
ARM64EC import libraries expose two additional symbols: mangled thunk symbol (like `#func`) and auxiliary import symbol (like`__imp_aux_func`). The main functional change with this patch is that those symbols are properly added to static library ECSYMBOLS.
2024-03-16[llvm-lib][llvm-dlltool][Object] Add support for EXPORTAS name types. (#78772)Jacek Caban6-23/+162
EXPORTAS is a new name type in import libraries. It's used by default on ARM64EC, but it's allowed on other platforms as well.
2024-03-16[llvm-readobj][Object][COFF] Print COFF import library symbol export name. ↵Jacek Caban12-0/+64
(#78769) getExportName implementation is based on lld-link. In its current form, it's mostly about convenience, but it will be more useful for EXPORTAS support, for which export name is not possible to deduce from other printed properties.
2024-03-16[libc++] Use clang-tidy version that matches the compiler we use in the CI ↵Louis Dionne1-1/+1
(#85305) This works around ODR violations in the clang-tidy plugin we use to perform the modules tests. Fixes #85242
2024-03-16[clangd] [HeuristicResolver] Protect against infinite recursion on ↵Nathan Ridge3-69/+165
DependentNameTypes (#83542) When resolving names inside templates that implement recursive compile-time functions (e.g. waldo<N>::type is defined in terms of waldo<N-1>::type), HeuristicResolver could get into an infinite recursion, specifically one where resolveDependentNameType() can be called recursively with the same DependentNameType*. To guard against this, HeuristicResolver tracks, for each external call into a HeuristicResolver function, the set of DependentNameTypes that it has seen, and bails if it sees the same DependentNameType again. To implement this, a helper class HeuristicResolverImpl is introduced to store state that persists for the duration of an external call into HeuristicResolver (but does not persist between such calls). Fixes https://github.com/clangd/clangd/issues/1951 (cherry picked from commit e6e53ca8470d719882539359ebe3ad8b442a8cb0)
2024-03-15[clang][modules] giving the __stddef_ headers their own modules can cause ↵Ian Anderson13-41/+80
redeclaration errors with -fbuiltin-headers-in-system-modules (#84127) On Apple platforms, some of the stddef.h types are also declared in system headers. In particular NULL has a conflicting declaration in <sys/_types/_null.h>. When that's in a different module from <__stddef_null.h>, redeclaration errors can occur. Make the \_\_stddef_ headers be non-modular in -fbuiltin-headers-in-system-modules and restore them back to not respecting their header guards. Still define the header guards though. __stddef_max_align_t.h was in _Builtin_stddef_max_align_t prior to the addition of _Builtin_stddef, and it needs to stay in a module because struct's can't be type merged. __stddef_wint_t.h didn't used to have a module, but leave it in it current module since it doesn't really belong to stddef.h. (cherry picked from commit f50d3582b4844b86ad86372028e44b52c560ec7d)
2024-03-15workflows: Add workaround for lld failures on MacOS (#85021) (#85110)Tom Stellard1-0/+5
See #81967 (cherry picked from commit 175b533720956017bb18d1280362f6890ee15b05)
2024-03-14release/18.x: [openmp] __kmp_x86_cpuid fix for i386/PIC builds. (#84626) ↵David CARLIER1-0/+10
(#85053)
2024-03-14[clangd] Add clangd 18 release notes (#84436)Nathan Ridge1-7/+36
2024-03-14[runtimes] Prefer -fvisibility-global-new-delete=force-hidden (#84917)Martin Storsjö3-3/+12
27ce26b06655cfece3d54b30e442ef93d3e78ac7 added the new option -fvisibility-global-new-delete=, where -fvisibility-global-new-delete=force-hidden is equivalent to the old option -fvisibility-global-new-delete-hidden. At the same time, the old option was deprecated. Test for and use the new option form first; if unsupported, try using the old form. This avoids warnings in the MinGW builds, if built with Clang 18 or newer. (cherry picked from commit 1f973efd335f34c75fcba1ccbe288fd5ece15a64)
2024-03-14[ELF] Eliminate symbols demoted due to /DISCARD/ discarded sections (#85167)Fangrui Song2-9/+19
#69295 demoted Defined symbols relative to discarded sections. If such a symbol is unreferenced, the desired behavior is to eliminate it from .symtab just like --gc-sections discarded definitions. Linux kernel's CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y configuration expects that the unreferenced `unused` is not emitted to .symtab (https://github.com/ClangBuiltLinux/linux/issues/2006). For relocations referencing demoted symbols, the symbol index restores to 0 like older lld (`R_X86_64_64 0` in `discard-section.s`). Fix #85048 (cherry picked from commit 8fe3e70e810b409dce36f6d415e86f0f9b1cf22d)
2024-03-13SystemZ release notes for 18.x. (#84560)Jonas Paulsson4-0/+23
2024-03-13[X86][Inline] Skip inline asm in inlining target feature check (#83820)Nikita Popov2-11/+10
When inlining across functions with different target features, we perform roughly two checks: 1. The caller features must be a superset of the callee features. 2. Calls in the callee cannot use types where the target features would change the call ABI (e.g. by changing whether something is passed in a zmm or two ymm registers). The latter check is very crude right now. The latter check currently also catches inline asm "calls". I believe that inline asm should be excluded from this check, as it is independent from the usual call ABI, and instead governed by the inline asm constraint string. Fixes https://github.com/llvm/llvm-project/issues/67054. (cherry picked from commit e84182af919d136d74b75ded4d599b38fb47dfb0)
2024-03-13[Inline] Add test for #67054 (NFC)Nikita Popov1-0/+31
(cherry picked from commit cad6ad2759a782c48193f83886488dacc9f330e3)
2024-03-13[ValueTracking] Treat phi as underlying obj when not decomposing further ↵Florian Hahn2-1/+8
(#84339) At the moment, getUnderlyingObjects simply continues for phis that do not refer to the same underlying object in loops, without adding them to the list of underlying objects, effectively ignoring those phis. Instead of ignoring those phis, add them to the list of underlying objects. This fixes a miscompile where LoopAccessAnalysis fails to identify a memory dependence, because no underlying objects can be found for a set of memory accesses. Fixes https://github.com/llvm/llvm-project/issues/82665. PR: https://github.com/llvm/llvm-project/pull/84339 (cherry picked from commit b274b23665dec30f3ae4fb83ccca8b77e6d3ada3)
2024-03-13[LAA] Add test case for #82665.Florian Hahn1-0/+175
Test case for https://github.com/llvm/llvm-project/issues/82665. (cherry picked from commit 4cfd4a7896b5fd50274ec8573c259d7ad41741de)
2024-03-13[Release] Install compiler-rt builtins during Phase 1 on AIX (#81485)azhan921-2/+2
The current test-release.sh script does not install the necessary compiler-rt builtin's during Phase 1 on AIX, resulting on a non-functional Phase 1 clang. Futhermore, the installation is also necessary for Phase 2 on AIX. Co-authored-by: Alison Zhang <alisonzhang@ibm.com> (cherry picked from commit 3af5c98200e0b1268f755c3f289be4f73aac4214)
2024-03-13[ArgPromotion] Remove incorrect TranspBlocks set for loads. (#84835)Florian Hahn2-12/+8
The TranspBlocks set was used to cache aliasing decision for all processed loads in the parent loop. This is incorrect, because each load can access a different location, which means one load not being modified in a block doesn't translate to another load not being modified in the same block. All loads access the same underlying object, so we could perhaps use a location without size for all loads and retain the cache, but that would mean we loose precision. For now, just drop the cache. Fixes https://github.com/llvm/llvm-project/issues/84807 PR: https://github.com/llvm/llvm-project/pull/84835 (cherry picked from commit bba4a1daff6ee09941f1369a4e56b4af95efdc5c)
2024-03-13[ArgPromotion] Add test case for #84807.Florian Hahn1-0/+100
Test case for https://github.com/llvm/llvm-project/issues/84807, showing a mis-compile in ArgPromotion. (cherry picked from commit 31ffdb56b4df9b772d763dccabbfde542545d695)
2024-03-13[LLD] [COFF] Set the right alignment for DelayDirectoryChunk (#84697)Martin Storsjö2-7/+20
This makes a difference when linking executables with delay loaded libraries for arm32; the delay loader implementation can load data from the registry with instructions that assume alignment. This issue does not show up when linking in MinGW mode, because a PseudoRelocTableChunk gets injected, which also sets alignment, even if the chunk itself is empty. (cherry picked from commit c93c76b562784926b22a69d3f82a5032dcb4a274)
2024-03-12[X86] combineAndShuffleNot - ensure the type is legal before create ↵Simon Pilgrim2-2/+28
X86ISD::ANDNP target nodes Fixes #84660 (cherry picked from commit 862c7e0218f27b55a5b75ae59a4f73cd4610448d)
2024-03-12[DSE] Remove malloc from EarliestEscapeInfo before removing. (#84157)Florian Hahn2-2/+304
Not removing the malloc from earliest escape info leaves stale entries in the cache. Fixes https://github.com/llvm/llvm-project/issues/84051. PR: https://github.com/llvm/llvm-project/pull/84157 (cherry picked from commit eb8f379567e8d014194faefe02ce92813e237afc)
2024-03-12[InstCombine] Fix miscompilation in PR83947 (#83993)Yingwei Zheng5-6/+110
https://github.com/llvm/llvm-project/blob/762f762504967efbe159db5c737154b989afc9bb/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp#L394-L407 Comment from @topperc: > This transforms assumes the mask is a non-zero splat. We only know its a splat and not provably all 0s. The mask is a constexpr that includes the address of the global variable. We can't resolve the constant expression to an exact value. Fixes #83947.
2024-03-12[Clang][LoongArch] Fix wrong return value type of __iocsrrd_h (#84100)wanglei3-9/+9
relate: https://gcc.gnu.org/pipermail/gcc-patches/2024-February/645016.html (cherry picked from commit 2f479b811274fede36535e34ecb545ac22e399c3)
2024-03-12[Clang][LoongArch] Precommit test for fix wrong return value type of ↵wanglei2-10/+40
__iocsrrd_h. NFC (cherry picked from commit aeda1a6e800e0dd6c91c0332b4db95094ad5b301)
2024-03-12[LoongArch] Make sure that the LoongArchISD::BSTRINS node uses the correct ↵wanglei2-1/+16
`MSB` value (#84454) The `MSB` must not be greater than `GRLen`. Without this patch, newly added test cases will crash with LoongArch32, resulting in a 'cannot select' error. (cherry picked from commit edd4c6c6dca4c556de22b2ab73d5bfc02d28e59b)
2024-03-12[analyzer] Fix crash on dereference invalid return value of ↵Exile2-1/+12
getAdjustedParameterIndex() (#83585) Fixes #78810 Thanks for Snape3058 's comment --------- Co-authored-by: miaozhiyuan <miaozhiyuan@feysh.com> (cherry picked from commit d4687fe7d1639ea5d16190c89a54de1f2c6e2a9a)
2024-03-12[libc++] Enable availability based on the compiler instead of ↵Louis Dionne2-4/+25
__has_extension (#84065) __has_extension(...) doesn't work as intended when -pedantic-errors is used with Clang. With that flag, __has_extension(...) is equivalent to __has_feature(...), which means that checks like __has_extension(pragma_clang_attribute_external_declaration) will return 0. In turn, this has the effect of disabling availability markup in libc++, which is undesirable. rdar://124078119 (cherry picked from commit 292a28df6c55679fad0589dea35278a8c66b2ae1)
2024-03-12[InstCombine] Handle scalable splat in ↵Yingwei Zheng4-2/+24
`getFlippedStrictnessPredicateAndConstant` (cherry picked from commit d51fcd4ed86ac6075c8a25b053c2b66051feaf62)
2024-03-12[lld][LoongArch] Support the R_LARCH_{ADD,SUB}_ULEB128 relocation types (#81133)Jinyang He2-0/+121
For a label difference like `.uleb128 A-B`, MC generates a pair of R_LARCH_{ADD,SUB}_ULEB128 if A-B cannot be folded as a constant. GNU assembler generates a pair of relocations in more cases (when A or B is in a code section with linker relaxation). It is similar to RISCV. R_LARCH_{ADD,SUB}_ULEB128 relocations are created by Clang and GCC in `.gcc_except_table` and other debug sections with linker relaxation enabled. On LoongArch, first read the buf and count the available space. Then add or sub the value. Finally truncate the expected value and fill it into the available space. (cherry picked from commit eaa9ef678c63bf392ec2d5b736605db7ea7e7338)
2024-03-12[Clang] [Sema] Handle placeholders in '.*' expressions (#83103)Sirraide3-5/+40
When analysing whether we should handle a binary expression as an overloaded operator call or a builtin operator, we were calling `checkPlaceholderForOverload()`, which takes care of any placeholders that are not overload sets—which would usually make sense since those need to be handled as part of overload resolution. Unfortunately, we were also doing that for `.*`, which is not overloadable, and then proceeding to create a builtin operator anyway, which would crash if the RHS happened to be an unresolved overload set (due hitting an assertion in `CreateBuiltinBinOp()`—specifically, in one of its callees—in the `.*` case that makes sure its arguments aren’t placeholders). This pr instead makes it so we check for *all* placeholders early if the operator is `.*`. It’s worth noting that, 1. In the `.*` case, we now additionally also check for *any* placeholders (not just non-overload-sets) in the LHS; this shouldn’t make a difference, however—at least I couldn’t think of a way to trigger the assertion with an overload set as the LHS of `.*`; it is worth noting that the assertion in question would also complain if the LHS happened to be of placeholder type, though. 2. There is another case in which we also don’t perform overload resolution—namely `=` if the LHS is not of class or enumeration type after handling non-overload-set placeholders—as in the `.*` case, but similarly to 1., I first couldn’t think of a way of getting this case to crash, and secondly, `CreateBuiltinBinOp()` doesn’t seem to care about placeholders in the LHS or RHS in the `=` case (from what I can tell, it, or rather one of its callees, only checks that the LHS is not a pseudo-object type, but those will have already been handled by the call to `checkPlaceholderForOverload()` by the time we get to this function), so I don’t think this case suffers from the same problem. This fixes #53815. --------- Co-authored-by: Aaron Ballman <aaron@aaronballman.com>