- Oct 01, 2021
-
-
Marcelo Juchem authored
LLVM (llvmorg-14-init) under Debian sid using latest gcc (Debian 10.3.0-9) 10.3.0 fails due to ambiguous overload on operators == and !=: /root/src/llvm/src/llvm/tools/obj2yaml/elf2yaml.cpp:212:22: error: ambiguous overload for 'operator!=' (operand types are 'llvm::ELFYAML::ELF_SHF' and 'int') /root/src/llvm/src/llvm/tools/obj2yaml/elf2yaml.cpp:204:32: error: ambiguous overload for 'operator!=' (operand types are 'const llvm::yaml::Hex64' and 'int') /root/src/llvm/src/llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp:629:35: error: ambiguous overload for 'operator==' (operand types are 'const uint64_t' {aka 'const long unsigned int'} and 'llvm::Register') Reviewed by: StephenTozer, jmorse, Higuoxing Differential Revision: https://reviews.llvm.org/D109534
-
Valentin Clement authored
Remove explicit number of inlined elements for SmallVector. This patch is part of the upstreaming effort from fir-dev branch. Co-authored-by:
Jean Perier <jperier@nvidia.com> Co-authored-by:
Eric Schweitz <eschweitz@nvidia.com> Reviewed By: awarzynski Differential Revision: https://reviews.llvm.org/D110912
-
Eric Schweitz authored
Add the fir-char_convert op. This patch is part of the upstreaming effort from fir-dev branch. Reviewed By: kiranchandramohan Differential Revision: https://reviews.llvm.org/D110818 Co-authored-by:
Valentin Clement <clementval@gmail.com>
-
Michał Górny authored
Add a minimal mock server utilizing a pty, and add a client test connecting to that server. Differential Revision: https://reviews.llvm.org/D110878
-
Uday Bondhugula authored
Add support for dynamic shared memory for GPU launch ops: add an optional operand to gpu.launch and gpu.launch_func ops to specify the amount of "dynamic" shared memory to use. Update lowerings to connect this operand to the GPU runtime. Differential Revision: https://reviews.llvm.org/D110800
-
Hans Wennborg authored
-
Alexander Belyaev authored
Differential Revision: https://reviews.llvm.org/D110919
-
Fraser Cormack authored
-
Michał Górny authored
Refactor TerminalState to make the code simpler. Move 'struct termios' to a PImpl-style subclass. Add an RAII interface to automatically store and restore the state. Differential revision: https://reviews.llvm.org/D110721
-
Kadir Cetinkaya authored
References to fields inside anon structs contain an implicit children for the container, which has the same SourceLocation with the field. This was resulting in SelectionTree always picking the anon-struct rather than the field as the selection. This patch prevents that by claiming the range for the field early. https://github.com/clangd/clangd/issues/877. Differential Revision: https://reviews.llvm.org/D110825
-
Florian Hahn authored
This patch additional tests with i64 GEP indices for 32 bit pointers. @mustalias_overflow_in_32_bit_add_mul_gep highlights a case where BasicAA currently incorrectly determines noalias. Modeled in Alive2 for 32 bit pointers: https://alive2.llvm.org/ce/z/HHjQgb Modeled in Alive2 for 64 bit pointers: https://alive2.llvm.org/ce/z/DoWK2c
-
Matthew Devereau authored
Replacing fmul and fadd instrinsics with their binary ops results more succinct AArch64 SVE output, e.g.: 4: 65428041 fmul z1.h, p0/m, z1.h, z2.h 8: 65408020 fadd z0.h, p0/m, z0.h, z1.h -> 4: 65620020 fmla z0.h, p0/m, z1.h, z2.h
-
Kerry McLaughlin authored
D104809 changed `buildTree_rec` to check for extract element instructions with scalable types. However, if the extract is extended or truncated, these changes do not apply and we assert later on in isShuffle(), which attempts to cast the type of the extract to FixedVectorType. Reviewed By: ABataev Differential Revision: https://reviews.llvm.org/D110640
-
Florian Hahn authored
When replacing function calls, skip call instructions where the old function is not the called function, but e.g. the old function is passed as an argument. This fixes a crash due to trying to construct invalid IR for the test case. Reviewed By: aeubanks Differential Revision: https://reviews.llvm.org/D109759
-
David Spickett authored
This reverts commit 9f641c96. The "python" command in gdb uses the python gdb is linked to, not what "python" would give you if you used it directly in the shell.
-
David Spickett authored
This reverts commit e9564c36 due to a report of these tests failing.
-
Krasimir Georgiev authored
It appears to cause stage2 clang build failures, e.g., https://lab.llvm.org/buildbot/#/builders/74/builds/7145. This reverts commit 1fb37334.
-
Balázs Kéri authored
Fix import of ConstructorUsingShadowDecl and add tests. Reviewed By: martong Differential Revision: https://reviews.llvm.org/D110398
-
David Spickett authored
Ubuntu Bionic installs it by default, Focal does not. Differential Revision: https://reviews.llvm.org/D110694
-
Gabor Marton authored
Reviewed By: martong Differential Revision: https://reviews.llvm.org/D110395
-
David Sherwood authored
This patch adds further support for vectorisation of loops that involve selecting an integer value based on a previous comparison. Consider the following C++ loop: int r = a; for (int i = 0; i < n; i++) { if (src[i] > 3) { r = b; } src[i] += 2; } We should be able to vectorise this loop because all we are doing is selecting between two states - 'a' and 'b' - both of which are loop invariant. This just involves building a vector of values that contain either 'a' or 'b', where the final reduced value will be 'b' if any lane contains 'b'. The IR generated by clang typically looks like this: %phi = phi i32 [ %a, %entry ], [ %phi.update, %for.body ] ... %pred = icmp ugt i32 %val, i32 3 %phi.update = select i1 %pred, i32 %b, i32 %phi We already detect min/max patterns, which also involve a select + cmp. However, with the min/max patterns we are selecting loaded values (and hence loop variant) in the loop. In addition we only support certain cmp predicates. This patch adds a new pattern matching function (isSelectCmpPattern) and new RecurKind enums - SelectICmp & SelectFCmp. We only support selecting values that are integer and loop invariant, however we can support any kind of compare - integer or float. Tests have been added here: Transforms/LoopVectorize/AArch64/sve-select-cmp.ll Transforms/LoopVectorize/select-cmp-predicated.ll Transforms/LoopVectorize/select-cmp.ll Differential Revision: https://reviews.llvm.org/D108136
-
Sander de Smalen authored
Some vectors require both widening and promotion for their legalization. This case is not yet handled in getCopyToPartsVector and falls back on scalarizing by default. BBecause scalable vectors can't easily be scalarised, we need to implement this in two separate stages: 1. Widen the vector. 2. Promote the vector. As part of this patch, PromoteIntRes_CONCAT_VECTORS also needed to be made scalable aware. Instead of falling back on scalarizing the vector (fixed-width only), each sub-part of the CONCAT vector is promoted, and the operation is performed on the type with the widest element type, finally truncating the result to the promoted result type. Differential Revision: https://reviews.llvm.org/D110646
-
Valentin Clement authored
Move the big builder out of the td file to the cpp file. This patch is part of the upstreaming effort from fir-dev branch. Reviewed By: kiranchandramohan Differential Revision: https://reviews.llvm.org/D110820
-
Valentin Clement authored
Add descritpion for the attribute added in D110815. Reviewed By: kiranchandramohan Differential Revision: https://reviews.llvm.org/D110877
-
Jean Perier authored
Revert "[flang][NFC] Add debug dump method to evaluate::Expr and semantics::Symbol" This reverts commit b0e35fde. Revert "[flang] Add a wrapper for Fortran main program" This reverts commit 2c1ce075. Revert "[flang][NFC] Fix header comments in some runtime headers" This reverts commit a63f5767.
-
Jean Perier authored
Follow up of https://reviews.llvm.org/D83397. In folding, make pgmath usage conditional to C99 complex support in C++. Disable warning in such case. In lowering, use an empty class type to indicate C99 complex type in runtime interface. Add a unit test enforcing C99 complex can be processed by FIR runtime interface builder. Differential Revision: https://reviews.llvm.org/D110860
-
Jean Perier authored
Helps debugging when working with symbol/expression issue. The dump method is easy to call in the debugger.
-
Jean Perier authored
Add a C wrapper that calls the Fortran runtime initialization and finalization routines as well as the compiled Fortran main program _QQmain. Place it in its own library to satisfy shared library builds since it contains a C main function. - https://github.com/flang-compiler/f18-llvm-project/commit/cc7ac498f916d32a9b197d3ace816f4de5d36aad#diff-fa35a5efa62731fd2845e5e982eca9a2e36439783e11a4e4a463753c2160ec10R53 - was created in flang/test/Examples/main.c in Eric's branch
-
Jean Perier authored
-
Teresa Johnson authored
Allow for the allocations to have migrated cpus, assuming they wouldn't is causing some bot flakiness, e.g.: https://lab.llvm.org/buildbot/#/builders/37/builds/7197
-
Koutheir Attouchi authored
The LLVM C API function is called `LLVMDIBuilderFinalizeSubprogram()`. Reviewed By: CodaFi Differential Revision: https://reviews.llvm.org/D104794
-
Albion Fung authored
The signatures for the PowerPC builtins lharx and lbarx are incorrect, and causes issues when used in a function that requires the return of the builtin to be promoted. This patch fixes these signatures. Differential revision: https://reviews.llvm.org/D110273
-
Vitaly Buka authored
-
Vitaly Buka authored
Before StackDepotReverseMap was used only by ProcessPC.
-
Vitaly Buka authored
-
LLVM GN Syncbot authored
-
Christopher Tetreault authored
While these functions are only used in one location in upstream, it has been reused in multiple downstreams. Restore this file to a globally visibile location (outside of APInt.h) to eliminate donwstream breakage and enable potential future reuse. Additionally, this patch renames types and cleans up clang-tidy issues.
-
ZijunZhao authored
-
Vitaly Buka authored
-
Yonghong Song authored
Latest upstream llvm caused the kernel bpf selftest emitting the following warnings: In file included from progs/profiler3.c:6: progs/profiler.inc.h:489:2: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] for (int i = 0; i < MAX_PATH_DEPTH; i++) { ^ Further bisecting shows this SimplifyCFG patch ([1]) changed the condition on how to fold branch to common dest. This caused some unroll pragma is not honored in selftests/bpf. The patch [1] test getUserCost() as the condition to perform the certain basic block folding transformation. For the above example, before the loop unroll pass, the control flow looks like: cond_block: branch target: body_block, cleanup_block body_block: branch target: cleanup_block, end_block end_block: branch target: cleanup_block, end10_block end10_block: %add.ptr = getelementptr i8, i8* %payload.addr.0, i64 %call2 %inc = add nuw nsw i32 %i.0, 1 branch target: cond_block In the above, %call2 is an unknown scalar. Before patch [1], end10_block will be folded into end_block, forming the code like cond_block: branch target: body_block, cleanup_block body_block: branch target: cleanup_block, end_block end_block: branch target: cleanup_block, cond_block and the compiler is happy to perform unrolling. With patch [1], getUserCost(), which calls getGEPCost(), which calls isLegalAddressingMode() in TargetLoweringBase.cpp, considers IR %add.ptr = getelementptr i8, i8* %payload.addr.0, i64 %call2 is free, so the above basic block folding transformation is not performed and unrolling does not happen. For BPF target, the IR %add.ptr = getelementptr i8, i8* %payload.addr.0, i64 %call2 is not free and we don't have ld/st instruction address with 'r+r' mode. This patch implemented a BPF hook for isLegalAddressingMode(), which is identical to Mips isLegalAddressingMode() implementation where the address pattern like 'r+r', 'r+r+i' or '2*r' are not allowed. With testing kernel bpf selftests, all loop not unrolled warnings are gone and all selftests run successfully. [1] https://reviews.llvm.org/D108837 Differential Revision: https://reviews.llvm.org/D110789
-