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 .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Apr 06, 2022
-
-
Paul Robinson authored
A missing "break" in the initial implementation had us adding a spurious "/usr/include" to the header search list. Later someone introduced LLVM_FALLTHROUGH to prevent a warning. Replace this with the correct "break" and make sure the extra directory isn't added to the PS4 header search list.
-
Shangwu Yao authored
This is required for converting function calls such as get_global_id() into SPIR-V builtins. Differential Revision: https://reviews.llvm.org/D123049
-
Nathan James authored
Extend D120185 to also log the node being matched on in case of a crash. This can help if a matcher is causing a crash or there are not enough interesting nodes bound. Reviewed By: aaron.ballman Differential Revision: https://reviews.llvm.org/D122529 This reverts commit 61d67c8e. This relands commit 6e33e45b. Fixing the build issue on 32bit machines due to not enough free bits in the PointerUnion.
-
Tom Honermann authored
Previously, resolver functions synthesized for target_clones multiversion functions were not emitted as COMDAT. Now fixed.
-
Tom Honermann authored
-
Scott Linder authored
The diagnostic is unreliable, and triggers even for dead uses of hostcall that may exist when linking the device-libs at lower optimization levels. Eliminate the diagnostic, and directly document the limitation for OpenCL before code object V5. Make some NFC changes to clarify the related code in the MetadataStreamer. Add a clang test to tie OCL sources containing printf to the backend IR tests for this situation. Reviewed By: sameerds, arsenm, yaxunl Differential Revision: https://reviews.llvm.org/D121951
-
Corentin Jabot authored
const auto & var = ObjectWithSideEffects(); Fixes https://github.com/llvm/llvm-project/issues/54489 Reviewed By: aaron.ballman Differential Revision: https://reviews.llvm.org/D122661
-
Sam McCall authored
This is both smaller and faster. Differential Revision: https://reviews.llvm.org/D123144
-
David Blaikie authored
Since enumerators may not be available in every translation unit they can't be reliably used to name entities. (this also makes simplified template name roundtripping infeasible - since the expected name could only be rebuilt if the enumeration definition could be found (or only if it couldn't be found, depending on the context of the original name))
-
owenca authored
Fixes #54758
-
- Apr 05, 2022
-
-
Yaxun (Sam) Liu authored
Currently, clang-offload-bundler has -inputs and -outputs options that accept values with comma as the delimiter. This causes issues with file paths containing commas, which are valid file paths on Linux. This add two new options -input and -output, which accept one single file, and allow multiple instances. This allows arbitrary file paths. The old -inputs and -outputs options will be kept for backward compatibility, but are not allowed to be used with -input and -output options for simplicity. In the future, -inputs and -outputs options will be phasing out. RFC: https://discourse.llvm.org/t/rfc-adding-input-and-output-options-to-clang-offload-bundler/60049 Patch by: Siu Chi Chan Reviewed by: Yaxun Liu Differential Revision: https://reviews.llvm.org/D120662
-
Yitzhak Mandelbaum authored
Adds support for implicit casts `CK_IntegralCast` and `CK_IntegralToBoolean`. Differential Revision: https://reviews.llvm.org/D123037
-
Nathan Sidwell authored
We list p1703 as unimplemented, but it is subsumed by p1857. Reviewed By: tbaeder Differential Revision: https://reviews.llvm.org/D123120
-
David Truby authored
Comparison operators on SVE types return a signed integer vector of the same width as the incoming SVE type. This matches the existing behaviour for NEON types. Differential Revision: https://reviews.llvm.org/D122404
-
Zahira Ammarguellat authored
compiler is allowed to use optimizations that allow reassociation and transformations that don’t guaranty accuracy. For example (x+y)+z is transformed into x+(y+z) . Although mathematically equivalent, these two expressions may not lead to the same final result due to errors of summation. Or x/x is transformed into 1.0 but x could be 0.0, INF or NaN. And so this transformation also may not lead to the same final result. Setting the eval method 'ffp-eval-method' or via '#pragma clang fp eval_method' in this mode, doesn’t have any effect. This patch adds code to warn the user of this. Differential Revision: https://reviews.llvm.org/D122155
-
Nikita Popov authored
-
Nikita Popov authored
There doesn't seem to be any particular reason why these tests use the driver interface rather than the cc1 interface, which is typically used in CodeGen tests.
-
Daniel Grumberg authored
This fixes the situation where a undefining a not previously defined macro resulted in a crash. Before trying to remove a definition from PendingMacros we first check to see if the macro did indeed have a previous definition. Differential Revision: https://reviews.llvm.org/D123056
-
Nikita Popov authored
-
Nikita Popov authored
This allows both explicitly enabling and explicitly disabling opaque pointers, in anticipation of the default switching at some point. This also slightly changes the rules by allowing calls if either the opaque pointer mode has not yet been set (explicitly or implicitly) or if the value remains unchanged.
-
Benjamin Kramer authored
This was added in 3ba8548c
-
Nikita Popov authored
With opaque pointers, this is not necessarily a ConstantExpr. And we don't need one here either, just Constant is sufficient.
-
Nikolas Klauser authored
Reviewed By: ldionne, var-const, #libc Spies: libcxx-commits, mgorny Differential Revision: https://reviews.llvm.org/D122173
-
Nikita Popov authored
This adds cc1 options for enabling and disabling opaque pointers on the clang side. This is not super useful now (because -mllvm -opaque-pointers and -Xclang -opaque-pointers have the same visible effect) but will be important once opaque pointers are enabled by default in clang. In that case, it will only be possible to disable them using the cc1 -no-opaque-pointers option. Differential Revision: https://reviews.llvm.org/D123034
-
Brad Smith authored
Generic_GCC::IsIntegratedAssemblerDefault() already takes care of RISCV. Reviewed By: kito-cheng, MaskRay Differential Revision: https://reviews.llvm.org/D123097
-
Volodymyr Sapsai authored
Without the fix ivars with anonymous types can trigger errors like > error: 'TestClass::structIvar' from module 'Target' is not present in definition of 'TestClass' provided earlier > [...] > note: declaration of 'structIvar' does not match It happens because types of ivars from different modules are considered to be different. And it is caused by not merging anonymous `TagDecl` from different modules. To fix that I've changed `serialization::needsAnonymousDeclarationNumber` to handle anonymous `TagDecl` inside `ObjCInterfaceDecl`. But that's not sufficient as C code inside `ObjCInterfaceDecl` doesn't use interface decl as a decl context but switches to its parent (TranslationUnit in most cases). I'm changing that to make `ObjCContainerDecl` the lexical decl context but keeping the semantic decl context intact. Test "check-dup-decls-inside-objc.m" doesn't reflect a change in functionality but captures the existing behavior to prevent regressions. rdar://85563013 Differential Revision: https://reviews.llvm.org/D118525
-
Aaron Ballman authored
This augments 5d900048 which got all of the -verify lines, but accidentally missed all of the -verify= ones.
-
Daniel Grumberg authored
Add struct level documentation for MacroDefinitionRecord. Differential Revision: https://reviews.llvm.org/D122798
-
Aaron Ballman authored
The tests are doing -verify and testing a diagnostic behavior, but that behavior is changing. This ensures the tests continue to run and check the diagnostic. The behavior of the tests is expected to remain identical as before.
-
- Apr 04, 2022
-
-
Priyansh Singh authored
-
Erich Keane authored
@thakis believes the problem was the lack of -n on my llvm-cxxfilt call, so hopefully this is the only problem. Committing to see if this makes all the buildbots happy.
-
Nico Weber authored
-
Erich Keane authored
AND the followups that fixed builds. I attempted to get 'cute' and use llvm-cxxfilt to make the test look nicer, but apparently some of the bots have a version of llvm-cxxfilt that is not the in-tree one, so it fails to properly demangle the stuff. I've disabled this "RUN" line. This reverts commit 50186b63.
-
Yitzhak Mandelbaum authored
This patch adds basic modeling of `__builtin_expect`, just to propagate the (first) argument, making the call transparent. Driveby: adds tests for proper handling of other builtins. Differential Revision: https://reviews.llvm.org/D122908
-
Pavel Samolysov authored
Few times in different methods of the EmitAssemblyHelper class the following code snippet is used to get the TargetTriple and then use it's single method to check some conditions: TargetTriple(TheModule->getTargetTriple()) The parsing of a target triple string is not a trivial operation and it takes time to repeat the parsing many times in different methods of the class and even numerous times in one method just to call a getter (llvm::Triple(TheModule->getTargetTriple()).getVendor()), for example. The patch extracts the TargetTriple member of the EmitAssemblyHelper class to parse the triple only once in the class' constructor. Reviewed By: tejohnson Differential Revision: https://reviews.llvm.org/D122587
-
Nico Weber authored
This reverts commit 4cf98f97. The test fails on mac bots, see comments on https://reviews.llvm.org/D122820 Also reverts follow-ups eb920989 and 861c189d.
-
- Apr 03, 2022
-
-
Iain Sandoe authored
As reported, using "-DTDIR=%t" with a path name of 'C:\Users\...' causes a warning to be emitted about the use of \U without following hex digits. Since the value is only required for the FileCheck cases resolve this by omitting the -D from the compile lines.
-
- Apr 02, 2022
-
-
tyb0807 authored
This is the continuation of https://reviews.llvm.org/D120875. Now aarch64-cpus-[12].c are further splitted and renamed to better reflect the tests. Differential Revision: https://reviews.llvm.org/D121093
-
tyb0807 authored
As discussed in https://reviews.llvm.org/D120111, this patch proposes an alternative implementation to avoid scanning feature list for architecture version over and over again. The insertion position for default extensions is also captured during this single scan of the feature list. Differential Revision: https://reviews.llvm.org/D120864
-
tyb0807 authored
This implements minimum support in clang for default HBC/MOPS features on v8.8-a/v9.3-a or later architectures. Differential Revision: https://reviews.llvm.org/D120111
-