[llvm-branch-commits] [openmp] 09a3a18 - Revert "[OpenMP] Fix two usm tests for amdgpus."

2024-01-12 Thread via llvm-branch-commits
Author: carlobertolli Date: 2024-01-12T15:01:30-06:00 New Revision: 09a3a18b2d9a83c1f0399f60fe7673af40edcee4 URL: https://github.com/llvm/llvm-project/commit/09a3a18b2d9a83c1f0399f60fe7673af40edcee4 DIFF: https://github.com/llvm/llvm-project/commit/09a3a18b2d9a83c1f0399f60fe7673af40edcee4.diff

[llvm-branch-commits] [flang] [Flang][OpenMP] Push genEval calls to individual operations, NFC (PR #77758)

2024-01-11 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-fir-hlfir Author: Krzysztof Parzyszek (kparzysz) Changes Introduce `genNestedEvaluations` that will lower all evaluations nested in the given, accouting for a potential COLLAPSE directive. Recursive lowering [2/5] --- Full diff:

[llvm-branch-commits] [flang] [Flang][OpenMP] Restructure recursive lowering in `createBodyOfOp` (PR #77761)

2024-01-11 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-openmp @llvm/pr-subscribers-flang-fir-hlfir Author: Krzysztof Parzyszek (kparzysz) Changes This brings `createBodyOfOp` to its final intended form. First, input privatization is performed, then the recursive lowering takes place, and finally the

[llvm-branch-commits] [flang] [Flang][OpenMP] Push genEval closer to leaf lowering functions (PR #77760)

2024-01-11 Thread via llvm-branch-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff a503d366249dd2c549abbdb614ac4a84a7be3af1 0205beb4b6c6c828fb654866ed4e97c0485e00c4 --

[llvm-branch-commits] [flang] [Flang][OpenMP] Push genEval closer to leaf lowering functions (PR #77760)

2024-01-11 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-fir-hlfir @llvm/pr-subscribers-flang-openmp Author: Krzysztof Parzyszek (kparzysz) Changes Recursive lowering [4/5] --- Patch is 24.49 KiB, truncated to 20.00 KiB below, full version: https://github.com/llvm/llvm-project/pull/77760.diff 1

[llvm-branch-commits] [flang] [Flang][OpenMP] Handle SECTION construct from within SECTIONS (PR #77759)

2024-01-11 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-fir-hlfir Author: Krzysztof Parzyszek (kparzysz) Changes Introduce `createSectionOp`, invoke it from the SECTIONS construct for each nested SECTION construct. This makes it unnecessary to embed OpenMPSectionConstruct inside of

[llvm-branch-commits] [llvm] adf3135 - Revert "[InstCombine] Fold `icmp pred (inttoptr X), (inttoptr Y) -> icmp pred X, Y`"

2024-01-13 Thread via llvm-branch-commits
Author: Vitaly Buka Date: 2024-01-13T00:46:37-08:00 New Revision: adf313575882898bc2cda09f891b80aa1a2786f2 URL: https://github.com/llvm/llvm-project/commit/adf313575882898bc2cda09f891b80aa1a2786f2 DIFF: https://github.com/llvm/llvm-project/commit/adf313575882898bc2cda09f891b80aa1a2786f2.diff

[llvm-branch-commits] [llvm] [JumpThreading] Remove LVI printer flag (PR #73426)

2023-11-25 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-analysis Author: Aiden Grossman (boomanaiden154) Changes This patch removes the -print-lvi-after-jump-threading flag now that we can print everything in the LVI cache using the printlazy-value-info pass. --- Full diff:

[llvm-branch-commits] [llvm] [LivePhysRegs] Add callee-saved regs from MFI in addLiveOutsNoPristines. (PR #73553)

2023-11-28 Thread via llvm-branch-commits
qcolombet wrote: I haven't looked closely to the patch, but I share @MatzeB's concerns here. Essentially this patch is reverting https://reviews.llvm.org/D36160, which was fixing a modeling issue with LR on ARM to begin with! https://github.com/llvm/llvm-project/pull/73553

[llvm-branch-commits] [llvm] Fill 17.x/ReleaseNotes with my works (PR #73461)

2023-11-26 Thread via llvm-branch-commits
github-actions[bot] wrote: This repository does not accept pull requests. Please follow http://llvm.org/docs/Contributing.html#how-to-submit-a-patch for contribution to LLVM. https://github.com/llvm/llvm-project/pull/73461 ___ llvm-branch-commits

[llvm-branch-commits] [llvm] Fill 17.x/ReleaseNotes with my works (PR #73461)

2023-11-26 Thread via llvm-branch-commits
https://github.com/github-actions[bot] closed https://github.com/llvm/llvm-project/pull/73461 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] Fill 17.x/ReleaseNotes with my works (PR #73461)

2023-11-26 Thread via llvm-branch-commits
https://github.com/github-actions[bot] locked https://github.com/llvm/llvm-project/pull/73461 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] [clang] [clang] Support __attribute__((ifunc(...))) on Darwin platforms (PR #73687)

2023-11-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Jon Roelofs (jroelofs) Changes Unlike ELF targets, MachO does not support the same kind of dynamic symbol resolution at load time. Instead, the corresponding MachO feature resolves symbols lazily on first call. --- Full diff:

[llvm-branch-commits] [llvm] [clang] [clang] Function Multi Versioning supports IFunc lowerings on Darwin platforms (PR #73688)

2023-11-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Jon Roelofs (jroelofs) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/73688.diff 2 Files Affected: - (modified) clang/include/clang/Basic/TargetInfo.h (+2) - (modified) clang/test/CodeGen/attr-target-mv-va-args.c

[llvm-branch-commits] [llvm] [clang] [compiler-rt] [builtins][arm64] Build __init_cpu_features_resolver on Apple platforms (PR #73685)

2023-11-28 Thread via llvm-branch-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff 802e1c6b0b6e343d97a2549d05e0cb33dec09363 24f8f639f9fb654838b78d8f14a06805e4772628 --

[llvm-branch-commits] [compiler-rt] [llvm] [clang] [builtins][arm64] Build __init_cpu_features_resolver on Apple platforms (PR #73685)

2023-11-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-x86 Author: Jon Roelofs (jroelofs) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/73685.diff 2 Files Affected: - (modified) compiler-rt/lib/builtins/cpu_model.c (+76-6) - (modified) llvm/lib/Target/X86/X86AsmPrinter.cpp

[llvm-branch-commits] [llvm] b4cf014 - [RISCV][GISel] Select trap and debugtrap. (#73171)

2023-11-28 Thread via llvm-branch-commits
Author: Craig Topper Date: 2023-11-27T15:52:15-08:00 New Revision: b4cf014991bfa144306a1069ca5c1eabbb456ddd URL: https://github.com/llvm/llvm-project/commit/b4cf014991bfa144306a1069ca5c1eabbb456ddd DIFF: https://github.com/llvm/llvm-project/commit/b4cf014991bfa144306a1069ca5c1eabbb456ddd.diff

[llvm-branch-commits] [llvm] eae1811 - [docs] Fix issues in SourceLevelDebugging (#73528)

2023-11-28 Thread via llvm-branch-commits
Author: Felipe de Azevedo Piovezan Date: 2023-11-27T15:27:58-08:00 New Revision: eae1811e4f0431ea6336e68a38318a55f7529ef6 URL: https://github.com/llvm/llvm-project/commit/eae1811e4f0431ea6336e68a38318a55f7529ef6 DIFF:

[llvm-branch-commits] [mlir] 79ce123 - Revert "[mlir] Re-Add mlirTranslateModuleToLLVMIR to MLIR-C (#73627)"

2023-11-28 Thread via llvm-branch-commits
Author: Vitaly Buka Date: 2023-11-28T21:01:09-08:00 New Revision: 79ce1233af3eeac04e1e7f683da267a7005b37aa URL: https://github.com/llvm/llvm-project/commit/79ce1233af3eeac04e1e7f683da267a7005b37aa DIFF: https://github.com/llvm/llvm-project/commit/79ce1233af3eeac04e1e7f683da267a7005b37aa.diff

[llvm-branch-commits] [mlir] b823f84 - [mlir] Add support for `memref.alloca` sub-byte emulation (#73138)

2023-11-28 Thread via llvm-branch-commits
Author: Max191 Date: 2023-11-27T16:28:22-08:00 New Revision: b823f8469b5364411cde31a215c9bcbe0d3c08f7 URL: https://github.com/llvm/llvm-project/commit/b823f8469b5364411cde31a215c9bcbe0d3c08f7 DIFF: https://github.com/llvm/llvm-project/commit/b823f8469b5364411cde31a215c9bcbe0d3c08f7.diff LOG:

[llvm-branch-commits] [mlir] 9a7f4bd - [mlir][arith] doc updates for ub semantics, and int representations (#72932)

2023-11-28 Thread via llvm-branch-commits
Author: Jacob Yu Date: 2023-11-27T19:48:06-05:00 New Revision: 9a7f4bde2489f6529d336998e2c3fe902a1d864a URL: https://github.com/llvm/llvm-project/commit/9a7f4bde2489f6529d336998e2c3fe902a1d864a DIFF: https://github.com/llvm/llvm-project/commit/9a7f4bde2489f6529d336998e2c3fe902a1d864a.diff

[llvm-branch-commits] [llvm] 93e1568 - [DAG] Fix a miscompile in insert_subvector undef (insert_subvector undef, ..), idx combine (#73587)

2023-11-28 Thread via llvm-branch-commits
Author: Philip Reames Date: 2023-11-27T16:45:29-08:00 New Revision: 93e156833bfadfbabfa5be2afad4f002c019257f URL: https://github.com/llvm/llvm-project/commit/93e156833bfadfbabfa5be2afad4f002c019257f DIFF: https://github.com/llvm/llvm-project/commit/93e156833bfadfbabfa5be2afad4f002c019257f.diff

[llvm-branch-commits] [compiler-rt] 93a2be2 - [NFC sanitizer_symbolizer] Move Fuchsia specific code.

2023-11-28 Thread via llvm-branch-commits
Author: Andres Villegas Date: 2023-11-27T16:32:23-08:00 New Revision: 93a2be26e7cb54331033aad8f306bdbb5ef4b4c4 URL: https://github.com/llvm/llvm-project/commit/93a2be26e7cb54331033aad8f306bdbb5ef4b4c4 DIFF:

[llvm-branch-commits] [compiler-rt] [msan] Intercept mallinfo2 (PR #73729)

2023-11-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-compiler-rt-sanitizer Author: Vitaly Buka (vitalybuka) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/73729.diff 3 Files Affected: - (modified) compiler-rt/lib/msan/msan_interceptors.cpp (+10) - (modified)

[llvm-branch-commits] [libc] 4fdb933 - Revert "[libc][NFC] Remove __support/bit.h and use __support/CPP/bit.h instead (#73939)"

2023-12-05 Thread via llvm-branch-commits
Author: Guillaume Chatelet Date: 2023-12-05T11:24:38+01:00 New Revision: 4fdb9338fbe534521d9e79035561d9ca9db399c6 URL: https://github.com/llvm/llvm-project/commit/4fdb9338fbe534521d9e79035561d9ca9db399c6 DIFF:

[llvm-branch-commits] [NFC][asan] Change asan_init and asan_init_is_running; add setters/getters (PR #74085)

2023-12-01 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-compiler-rt-sanitizer Author: Zack Johnson (zacklj89) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/74085.diff 3 Files Affected: - (modified) compiler-rt/lib/asan/asan_interceptors.cpp (+13-13) - (modified)

[llvm-branch-commits] [flang] d72d2e5 - Revert "[flang][Driver] Let the linker fail on multiple definitions of main() (#73124)"

2023-12-01 Thread via llvm-branch-commits
Author: Tom Eccles Date: 2023-12-01T17:56:20Z New Revision: d72d2e5320e33b558c258eeb872d53e550d70147 URL: https://github.com/llvm/llvm-project/commit/d72d2e5320e33b558c258eeb872d53e550d70147 DIFF: https://github.com/llvm/llvm-project/commit/d72d2e5320e33b558c258eeb872d53e550d70147.diff LOG:

[llvm-branch-commits] [libcxx] e0cbb42 - Remove stray comments.

2023-11-22 Thread via llvm-branch-commits
Author: Louis Dionne Date: 2023-11-22T14:09:22-05:00 New Revision: e0cbb421fc9ecab0077614bf053339dfb57d0012 URL: https://github.com/llvm/llvm-project/commit/e0cbb421fc9ecab0077614bf053339dfb57d0012 DIFF: https://github.com/llvm/llvm-project/commit/e0cbb421fc9ecab0077614bf053339dfb57d0012.diff

[llvm-branch-commits] [mlir] 8e0d4ed - Revert "[mlir] Fix `TileUsingForOp` attr-dict printing/parsing (#72745)"

2023-11-22 Thread via llvm-branch-commits
Author: Felix Schneider Date: 2023-11-22T23:03:27+01:00 New Revision: 8e0d4edb287215cf3b1affca819660a2f440eedf URL: https://github.com/llvm/llvm-project/commit/8e0d4edb287215cf3b1affca819660a2f440eedf DIFF:

[llvm-branch-commits] [compiler-rt] [sanitizer_common tests] Add tests for sanitizer symbolzier markup. (PR #73195)

2023-11-22 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-compiler-rt-sanitizer Author: Andres Villegas (avillega) Changes This is part of a stack of PRs to add support for symbolizer markup in linux. Add __sanitizer_print_stack_trace test for sanitizer symbolizer markup. --- Full diff:

[llvm-branch-commits] [compiler-rt] [sanitizer_symbolizer] RenderContextual elements for symbolizer markup. (PR #73194)

2023-11-22 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-compiler-rt-sanitizer Author: Andres Villegas (avillega) Changes This is part of a stack of PRs to add support for symbolizer markup in linux. Render contextual symbolizer markup elements. For Fuchsia it is not neccesarry to emit any context given that

[llvm-branch-commits] [compiler-rt] [sanitizer_symbolizer] Add initial symbolizer markup support for linux. (PR #73193)

2023-11-22 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-compiler-rt-sanitizer Author: Andres Villegas (avillega) Changes This is part of a stack of PRs to add support for symbolizer markup in linux. You can check the symbolizer markup specification at: https://llvm.org/docs/SymbolizerMarkupFormat.html ---

[llvm-branch-commits] [llvm] [llvm-exegesis] Minor changes for downstream consumers (PR #74211)

2023-12-02 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-tools-llvm-exegesis Author: Aiden Grossman (boomanaiden154) Changes This patch adjust the runConfiguration function to allow passing a parameter to force returning SnippetCrashes as errors rather than serializing them as strings in the returned

[llvm-branch-commits] [libcxx] 4e2216e - [libc++][test] `ADDITIONAL_COMPILE_FLAGS` should be a space-separated list (#73541)

2023-12-02 Thread via llvm-branch-commits
Author: Stephan T. Lavavej Date: 2023-11-30T13:54:52-08:00 New Revision: 4e2216e184a2ba4b9e7e40b3cfa11e0c516a6ed6 URL: https://github.com/llvm/llvm-project/commit/4e2216e184a2ba4b9e7e40b3cfa11e0c516a6ed6 DIFF:

[llvm-branch-commits] [openmp] b80b5f1 - [OpenMP] Replace copy and paste code with instantiation (#73991)

2023-12-02 Thread via llvm-branch-commits
Author: Johannes Doerfert Date: 2023-11-30T14:16:34-08:00 New Revision: b80b5f180ba64c2d6d9753ce8b310f1759eb2884 URL: https://github.com/llvm/llvm-project/commit/b80b5f180ba64c2d6d9753ce8b310f1759eb2884 DIFF:

[llvm-branch-commits] [mlir] 6fb7c2d - [mlir][sparse] bug fix on all-dense lex insertion (#73987)

2023-12-02 Thread via llvm-branch-commits
Author: Aart Bik Date: 2023-11-30T14:19:02-08:00 New Revision: 6fb7c2d713587a061cd281eda917746750559380 URL: https://github.com/llvm/llvm-project/commit/6fb7c2d713587a061cd281eda917746750559380 DIFF: https://github.com/llvm/llvm-project/commit/6fb7c2d713587a061cd281eda917746750559380.diff

[llvm-branch-commits] [flang] a9a5af8 - [flang][openacc] Support early return in acc.loop (#73841)

2023-12-02 Thread via llvm-branch-commits
Author: Valentin Clement (バレンタイン クレメン) Date: 2023-11-30T14:25:03-08:00 New Revision: a9a5af82704d772509ccef87991384f47b65884d URL: https://github.com/llvm/llvm-project/commit/a9a5af82704d772509ccef87991384f47b65884d DIFF:

[llvm-branch-commits] [libc] e1395c7 - [libc] Explicitly pin memory for the client symbol lookup (#73988)

2023-12-02 Thread via llvm-branch-commits
Author: Joseph Huber Date: 2023-11-30T15:35:33-06:00 New Revision: e1395c7bdbe74b632ba7fbd90e2be2b4d82ee09e URL: https://github.com/llvm/llvm-project/commit/e1395c7bdbe74b632ba7fbd90e2be2b4d82ee09e DIFF: https://github.com/llvm/llvm-project/commit/e1395c7bdbe74b632ba7fbd90e2be2b4d82ee09e.diff

[llvm-branch-commits] [llvm] 83aa725 - [MemProf][NFC] Simplify test case (#73979)

2023-12-02 Thread via llvm-branch-commits
Author: Teresa Johnson Date: 2023-11-30T13:36:14-08:00 New Revision: 83aa7250fbc6cc5fe253f4bb7ae7b8561adeff5a URL: https://github.com/llvm/llvm-project/commit/83aa7250fbc6cc5fe253f4bb7ae7b8561adeff5a DIFF:

[llvm-branch-commits] [llvm] 1b02f59 - [AMDGPU] Rework dot4 signedness checks (#68757)

2023-12-02 Thread via llvm-branch-commits
Author: Jeffrey Byrnes Date: 2023-11-30T13:38:05-08:00 New Revision: 1b02f594b337618e2e5808a33620eeac19d10e06 URL: https://github.com/llvm/llvm-project/commit/1b02f594b337618e2e5808a33620eeac19d10e06 DIFF:

[llvm-branch-commits] [flang] a4745ff - [flang] Detect more misparsed statement functions (same name as funct… (#73852)

2023-12-02 Thread via llvm-branch-commits
Author: Peter Klausler Date: 2023-11-30T13:35:07-08:00 New Revision: a4745ff99bec927efdc726fa902e30d589e70761 URL: https://github.com/llvm/llvm-project/commit/a4745ff99bec927efdc726fa902e30d589e70761 DIFF:

[llvm-branch-commits] [openmp] fce4c0a - [OpenMP] Start organizing PluginManager, PluginAdaptors (#73875)

2023-12-02 Thread via llvm-branch-commits
Author: Johannes Doerfert Date: 2023-11-30T13:47:47-08:00 New Revision: fce4c0acd6db4bd8598db7eb471ccca60dc05406 URL: https://github.com/llvm/llvm-project/commit/fce4c0acd6db4bd8598db7eb471ccca60dc05406 DIFF:

[llvm-branch-commits] [openmp] 0ec4b82 - [Libomptarget] Output the DeviceRTL alongside the other libraries (#73705)

2023-12-02 Thread via llvm-branch-commits
Author: Joseph Huber Date: 2023-11-30T15:48:39-06:00 New Revision: 0ec4b82cfddbe0c7c7eb4b3486f55139f56d5f16 URL: https://github.com/llvm/llvm-project/commit/0ec4b82cfddbe0c7c7eb4b3486f55139f56d5f16 DIFF: https://github.com/llvm/llvm-project/commit/0ec4b82cfddbe0c7c7eb4b3486f55139f56d5f16.diff

[llvm-branch-commits] [llvm] 5bc391a - [SelectionDAG] Use getVectorElementPointer in DAGCombiner::replaceStoreOfInsertLoad. (#74249)

2023-12-04 Thread via llvm-branch-commits
Author: Craig Topper Date: 2023-12-04T11:11:37-08:00 New Revision: 5bc391a7c96a58929794ec1dc664b966c0a03d09 URL: https://github.com/llvm/llvm-project/commit/5bc391a7c96a58929794ec1dc664b966c0a03d09 DIFF: https://github.com/llvm/llvm-project/commit/5bc391a7c96a58929794ec1dc664b966c0a03d09.diff

[llvm-branch-commits] [clang] 8e476a4 - Revert "[clang][dataflow] Retrieve members from accessors called using member… (#73978)"

2023-12-04 Thread via llvm-branch-commits
Author: martinboehme Date: 2023-12-04T11:27:14+01:00 New Revision: 8e476a4944f7ff27b289620740b1d23aa9c57c88 URL: https://github.com/llvm/llvm-project/commit/8e476a4944f7ff27b289620740b1d23aa9c57c88 DIFF: https://github.com/llvm/llvm-project/commit/8e476a4944f7ff27b289620740b1d23aa9c57c88.diff

[llvm-branch-commits] [llvm] b1806e6 - [AArch64] Stack probing for dynamic allocas in SelectionDAG (#66525)

2023-12-04 Thread via llvm-branch-commits
Author: Momchil Velikov Date: 2023-12-02T10:09:41Z New Revision: b1806e6a1f0589acc88499419531c4eb82488f1a URL: https://github.com/llvm/llvm-project/commit/b1806e6a1f0589acc88499419531c4eb82488f1a DIFF: https://github.com/llvm/llvm-project/commit/b1806e6a1f0589acc88499419531c4eb82488f1a.diff

[llvm-branch-commits] [llvm] 07cec73 - [LoongArch] Support CTLZ with lsx/lasx

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:13:36+08:00 New Revision: 07cec73dcd095035257eec1f213d273b10988130 URL: https://github.com/llvm/llvm-project/commit/07cec73dcd095035257eec1f213d273b10988130 DIFF: https://github.com/llvm/llvm-project/commit/07cec73dcd095035257eec1f213d273b10988130.diff LOG:

[llvm-branch-commits] [llvm] 66a3e4f - [LoongArch] Override TargetLowering::isShuffleMaskLegal

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T14:25:17+08:00 New Revision: 66a3e4fafb6eae19764f8a192ca3a116c0554211 URL: https://github.com/llvm/llvm-project/commit/66a3e4fafb6eae19764f8a192ca3a116c0554211 DIFF: https://github.com/llvm/llvm-project/commit/66a3e4fafb6eae19764f8a192ca3a116c0554211.diff LOG:

[llvm-branch-commits] [llvm] 07cec73 - [LoongArch] Support CTLZ with lsx/lasx

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:13:36+08:00 New Revision: 07cec73dcd095035257eec1f213d273b10988130 URL: https://github.com/llvm/llvm-project/commit/07cec73dcd095035257eec1f213d273b10988130 DIFF: https://github.com/llvm/llvm-project/commit/07cec73dcd095035257eec1f213d273b10988130.diff LOG:

[llvm-branch-commits] [mlir] 19e068b - [MLIR][SCF] Handle more cases in pipelining transform (#74007)

2023-12-04 Thread via llvm-branch-commits
Author: Thomas Raoux Date: 2023-12-01T21:28:21-08:00 New Revision: 19e068b048591feb8fa66b164669c753090dfd3a URL: https://github.com/llvm/llvm-project/commit/19e068b048591feb8fa66b164669c753090dfd3a DIFF: https://github.com/llvm/llvm-project/commit/19e068b048591feb8fa66b164669c753090dfd3a.diff

[llvm-branch-commits] [llvm] 66a3e4f - [LoongArch] Override TargetLowering::isShuffleMaskLegal

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T14:25:17+08:00 New Revision: 66a3e4fafb6eae19764f8a192ca3a116c0554211 URL: https://github.com/llvm/llvm-project/commit/66a3e4fafb6eae19764f8a192ca3a116c0554211 DIFF: https://github.com/llvm/llvm-project/commit/66a3e4fafb6eae19764f8a192ca3a116c0554211.diff LOG:

[llvm-branch-commits] [llvm] 63e6bba - Revert "[LoongArch] Support CTLZ with lsx/lasx"

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:17:48+08:00 New Revision: 63e6bba0c322b6c07a4c66f09e6fd84e786248e6 URL: https://github.com/llvm/llvm-project/commit/63e6bba0c322b6c07a4c66f09e6fd84e786248e6 DIFF: https://github.com/llvm/llvm-project/commit/63e6bba0c322b6c07a4c66f09e6fd84e786248e6.diff LOG:

[llvm-branch-commits] [llvm] 63e6bba - Revert "[LoongArch] Support CTLZ with lsx/lasx"

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:17:48+08:00 New Revision: 63e6bba0c322b6c07a4c66f09e6fd84e786248e6 URL: https://github.com/llvm/llvm-project/commit/63e6bba0c322b6c07a4c66f09e6fd84e786248e6 DIFF: https://github.com/llvm/llvm-project/commit/63e6bba0c322b6c07a4c66f09e6fd84e786248e6.diff LOG:

[llvm-branch-commits] [llvm] 07cec73 - [LoongArch] Support CTLZ with lsx/lasx

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:13:36+08:00 New Revision: 07cec73dcd095035257eec1f213d273b10988130 URL: https://github.com/llvm/llvm-project/commit/07cec73dcd095035257eec1f213d273b10988130 DIFF: https://github.com/llvm/llvm-project/commit/07cec73dcd095035257eec1f213d273b10988130.diff LOG:

[llvm-branch-commits] [llvm] a60a542 - Reland "[LoongArch] Support CTLZ with lsx/lasx"

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:22:40+08:00 New Revision: a60a5421b60be1bce0272385fa16846ada5eed5e URL: https://github.com/llvm/llvm-project/commit/a60a5421b60be1bce0272385fa16846ada5eed5e DIFF: https://github.com/llvm/llvm-project/commit/a60a5421b60be1bce0272385fa16846ada5eed5e.diff LOG:

[llvm-branch-commits] [clang] 37da4e3 - [clang-fuzzer] Remove GCC 4.x pre GCC 4.9 workaround to silence warning (#73974)

2023-12-04 Thread via llvm-branch-commits
Author: Brad Smith Date: 2023-12-02T05:15:30-05:00 New Revision: 37da4e3d80d7136121e74e2b8d23afb14ae7ab69 URL: https://github.com/llvm/llvm-project/commit/37da4e3d80d7136121e74e2b8d23afb14ae7ab69 DIFF: https://github.com/llvm/llvm-project/commit/37da4e3d80d7136121e74e2b8d23afb14ae7ab69.diff

[llvm-branch-commits] [lld] 7081585 - [lld][COFF][NFC] Store pdata range as ChunkRange. (#74024)

2023-12-04 Thread via llvm-branch-commits
Author: Jacek Caban Date: 2023-12-02T13:09:51+01:00 New Revision: 708158529b82007a34d623ba6f52d641c43b3416 URL: https://github.com/llvm/llvm-project/commit/708158529b82007a34d623ba6f52d641c43b3416 DIFF: https://github.com/llvm/llvm-project/commit/708158529b82007a34d623ba6f52d641c43b3416.diff

[llvm-branch-commits] [mlir] 293c21d - [mlir][tosa] Improve lowering of tosa.conv2d (#74143)

2023-12-04 Thread via llvm-branch-commits
Author: Spenser Bauman Date: 2023-12-02T12:29:10Z New Revision: 293c21db9381fde27cda46e5c3ff8bf8578e5399 URL: https://github.com/llvm/llvm-project/commit/293c21db9381fde27cda46e5c3ff8bf8578e5399 DIFF: https://github.com/llvm/llvm-project/commit/293c21db9381fde27cda46e5c3ff8bf8578e5399.diff

[llvm-branch-commits] [llvm] a60a542 - Reland "[LoongArch] Support CTLZ with lsx/lasx"

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:22:40+08:00 New Revision: a60a5421b60be1bce0272385fa16846ada5eed5e URL: https://github.com/llvm/llvm-project/commit/a60a5421b60be1bce0272385fa16846ada5eed5e DIFF: https://github.com/llvm/llvm-project/commit/a60a5421b60be1bce0272385fa16846ada5eed5e.diff LOG:

[llvm-branch-commits] [mlir] 19e068b - [MLIR][SCF] Handle more cases in pipelining transform (#74007)

2023-12-04 Thread via llvm-branch-commits
Author: Thomas Raoux Date: 2023-12-01T21:28:21-08:00 New Revision: 19e068b048591feb8fa66b164669c753090dfd3a URL: https://github.com/llvm/llvm-project/commit/19e068b048591feb8fa66b164669c753090dfd3a DIFF: https://github.com/llvm/llvm-project/commit/19e068b048591feb8fa66b164669c753090dfd3a.diff

[llvm-branch-commits] [llvm] 66a3e4f - [LoongArch] Override TargetLowering::isShuffleMaskLegal

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T14:25:17+08:00 New Revision: 66a3e4fafb6eae19764f8a192ca3a116c0554211 URL: https://github.com/llvm/llvm-project/commit/66a3e4fafb6eae19764f8a192ca3a116c0554211 DIFF: https://github.com/llvm/llvm-project/commit/66a3e4fafb6eae19764f8a192ca3a116c0554211.diff LOG:

[llvm-branch-commits] [llvm] 63e6bba - Revert "[LoongArch] Support CTLZ with lsx/lasx"

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:17:48+08:00 New Revision: 63e6bba0c322b6c07a4c66f09e6fd84e786248e6 URL: https://github.com/llvm/llvm-project/commit/63e6bba0c322b6c07a4c66f09e6fd84e786248e6 DIFF: https://github.com/llvm/llvm-project/commit/63e6bba0c322b6c07a4c66f09e6fd84e786248e6.diff LOG:

[llvm-branch-commits] [llvm] b1806e6 - [AArch64] Stack probing for dynamic allocas in SelectionDAG (#66525)

2023-12-04 Thread via llvm-branch-commits
Author: Momchil Velikov Date: 2023-12-02T10:09:41Z New Revision: b1806e6a1f0589acc88499419531c4eb82488f1a URL: https://github.com/llvm/llvm-project/commit/b1806e6a1f0589acc88499419531c4eb82488f1a DIFF: https://github.com/llvm/llvm-project/commit/b1806e6a1f0589acc88499419531c4eb82488f1a.diff

[llvm-branch-commits] [llvm] 68d6fe5 - [X86][CodeGen] Prefer KMOVkk_EVEX than KMOVkk when EGPR is supported (#74048)

2023-12-04 Thread via llvm-branch-commits
Author: Shengchen Kan Date: 2023-12-02T22:43:02+08:00 New Revision: 68d6fe508ce1fb2a70220975036d267f564fe54d URL: https://github.com/llvm/llvm-project/commit/68d6fe508ce1fb2a70220975036d267f564fe54d DIFF: https://github.com/llvm/llvm-project/commit/68d6fe508ce1fb2a70220975036d267f564fe54d.diff

[llvm-branch-commits] [llvm] 07cec73 - [LoongArch] Support CTLZ with lsx/lasx

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:13:36+08:00 New Revision: 07cec73dcd095035257eec1f213d273b10988130 URL: https://github.com/llvm/llvm-project/commit/07cec73dcd095035257eec1f213d273b10988130 DIFF: https://github.com/llvm/llvm-project/commit/07cec73dcd095035257eec1f213d273b10988130.diff LOG:

[llvm-branch-commits] [compiler-rt] 5aa2f8c - [NFC][ASAN] Replace AsanInitIsRunning with TryAsanInitFromRtl

2023-12-04 Thread via llvm-branch-commits
Author: Vitaly Buka Date: 2023-12-04T11:10:18-08:00 New Revision: 5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6 URL: https://github.com/llvm/llvm-project/commit/5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6 DIFF: https://github.com/llvm/llvm-project/commit/5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6.diff

[llvm-branch-commits] [libc] c33e5d5 - [libc] Add the missing math_extras.h include (#74259)

2023-12-04 Thread via llvm-branch-commits
Author: Petr Hosek Date: 2023-12-04T11:02:03-08:00 New Revision: c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694 URL: https://github.com/llvm/llvm-project/commit/c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694 DIFF: https://github.com/llvm/llvm-project/commit/c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694.diff

[llvm-branch-commits] [libc] 6066530 - [libc] build with -Werror (#73966)

2023-12-04 Thread via llvm-branch-commits
Author: Nick Desaulniers Date: 2023-12-04T11:08:59-08:00 New Revision: 606653091d1a66d1a83a1bfdea2883cc8d46687e URL: https://github.com/llvm/llvm-project/commit/606653091d1a66d1a83a1bfdea2883cc8d46687e DIFF:

[llvm-branch-commits] [compiler-rt] 5aa2f8c - [NFC][ASAN] Replace AsanInitIsRunning with TryAsanInitFromRtl

2023-12-04 Thread via llvm-branch-commits
Author: Vitaly Buka Date: 2023-12-04T11:10:18-08:00 New Revision: 5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6 URL: https://github.com/llvm/llvm-project/commit/5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6 DIFF: https://github.com/llvm/llvm-project/commit/5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6.diff

[llvm-branch-commits] [llvm] 5bc391a - [SelectionDAG] Use getVectorElementPointer in DAGCombiner::replaceStoreOfInsertLoad. (#74249)

2023-12-04 Thread via llvm-branch-commits
Author: Craig Topper Date: 2023-12-04T11:11:37-08:00 New Revision: 5bc391a7c96a58929794ec1dc664b966c0a03d09 URL: https://github.com/llvm/llvm-project/commit/5bc391a7c96a58929794ec1dc664b966c0a03d09 DIFF: https://github.com/llvm/llvm-project/commit/5bc391a7c96a58929794ec1dc664b966c0a03d09.diff

[llvm-branch-commits] [libc] c33e5d5 - [libc] Add the missing math_extras.h include (#74259)

2023-12-04 Thread via llvm-branch-commits
Author: Petr Hosek Date: 2023-12-04T11:02:03-08:00 New Revision: c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694 URL: https://github.com/llvm/llvm-project/commit/c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694 DIFF: https://github.com/llvm/llvm-project/commit/c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694.diff

[llvm-branch-commits] [libc] 6066530 - [libc] build with -Werror (#73966)

2023-12-04 Thread via llvm-branch-commits
Author: Nick Desaulniers Date: 2023-12-04T11:08:59-08:00 New Revision: 606653091d1a66d1a83a1bfdea2883cc8d46687e URL: https://github.com/llvm/llvm-project/commit/606653091d1a66d1a83a1bfdea2883cc8d46687e DIFF:

[llvm-branch-commits] [clang] 37da4e3 - [clang-fuzzer] Remove GCC 4.x pre GCC 4.9 workaround to silence warning (#73974)

2023-12-04 Thread via llvm-branch-commits
Author: Brad Smith Date: 2023-12-02T05:15:30-05:00 New Revision: 37da4e3d80d7136121e74e2b8d23afb14ae7ab69 URL: https://github.com/llvm/llvm-project/commit/37da4e3d80d7136121e74e2b8d23afb14ae7ab69 DIFF: https://github.com/llvm/llvm-project/commit/37da4e3d80d7136121e74e2b8d23afb14ae7ab69.diff

[llvm-branch-commits] [llvm] a60a542 - Reland "[LoongArch] Support CTLZ with lsx/lasx"

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:22:40+08:00 New Revision: a60a5421b60be1bce0272385fa16846ada5eed5e URL: https://github.com/llvm/llvm-project/commit/a60a5421b60be1bce0272385fa16846ada5eed5e DIFF: https://github.com/llvm/llvm-project/commit/a60a5421b60be1bce0272385fa16846ada5eed5e.diff LOG:

[llvm-branch-commits] [llvm] 63e6bba - Revert "[LoongArch] Support CTLZ with lsx/lasx"

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:17:48+08:00 New Revision: 63e6bba0c322b6c07a4c66f09e6fd84e786248e6 URL: https://github.com/llvm/llvm-project/commit/63e6bba0c322b6c07a4c66f09e6fd84e786248e6 DIFF: https://github.com/llvm/llvm-project/commit/63e6bba0c322b6c07a4c66f09e6fd84e786248e6.diff LOG:

[llvm-branch-commits] [llvm] b1806e6 - [AArch64] Stack probing for dynamic allocas in SelectionDAG (#66525)

2023-12-04 Thread via llvm-branch-commits
Author: Momchil Velikov Date: 2023-12-02T10:09:41Z New Revision: b1806e6a1f0589acc88499419531c4eb82488f1a URL: https://github.com/llvm/llvm-project/commit/b1806e6a1f0589acc88499419531c4eb82488f1a DIFF: https://github.com/llvm/llvm-project/commit/b1806e6a1f0589acc88499419531c4eb82488f1a.diff

[llvm-branch-commits] [llvm] b1806e6 - [AArch64] Stack probing for dynamic allocas in SelectionDAG (#66525)

2023-12-04 Thread via llvm-branch-commits
Author: Momchil Velikov Date: 2023-12-02T10:09:41Z New Revision: b1806e6a1f0589acc88499419531c4eb82488f1a URL: https://github.com/llvm/llvm-project/commit/b1806e6a1f0589acc88499419531c4eb82488f1a DIFF: https://github.com/llvm/llvm-project/commit/b1806e6a1f0589acc88499419531c4eb82488f1a.diff

[llvm-branch-commits] [clang] 37da4e3 - [clang-fuzzer] Remove GCC 4.x pre GCC 4.9 workaround to silence warning (#73974)

2023-12-04 Thread via llvm-branch-commits
Author: Brad Smith Date: 2023-12-02T05:15:30-05:00 New Revision: 37da4e3d80d7136121e74e2b8d23afb14ae7ab69 URL: https://github.com/llvm/llvm-project/commit/37da4e3d80d7136121e74e2b8d23afb14ae7ab69 DIFF: https://github.com/llvm/llvm-project/commit/37da4e3d80d7136121e74e2b8d23afb14ae7ab69.diff

[llvm-branch-commits] [llvm] a60a542 - Reland "[LoongArch] Support CTLZ with lsx/lasx"

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T17:22:40+08:00 New Revision: a60a5421b60be1bce0272385fa16846ada5eed5e URL: https://github.com/llvm/llvm-project/commit/a60a5421b60be1bce0272385fa16846ada5eed5e DIFF: https://github.com/llvm/llvm-project/commit/a60a5421b60be1bce0272385fa16846ada5eed5e.diff LOG:

[llvm-branch-commits] [libc] 6066530 - [libc] build with -Werror (#73966)

2023-12-04 Thread via llvm-branch-commits
Author: Nick Desaulniers Date: 2023-12-04T11:08:59-08:00 New Revision: 606653091d1a66d1a83a1bfdea2883cc8d46687e URL: https://github.com/llvm/llvm-project/commit/606653091d1a66d1a83a1bfdea2883cc8d46687e DIFF:

[llvm-branch-commits] [libc] c33e5d5 - [libc] Add the missing math_extras.h include (#74259)

2023-12-04 Thread via llvm-branch-commits
Author: Petr Hosek Date: 2023-12-04T11:02:03-08:00 New Revision: c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694 URL: https://github.com/llvm/llvm-project/commit/c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694 DIFF: https://github.com/llvm/llvm-project/commit/c33e5d59e5dd4f54c3f4cc00d1bedaf644fdb694.diff

[llvm-branch-commits] [compiler-rt] 5aa2f8c - [NFC][ASAN] Replace AsanInitIsRunning with TryAsanInitFromRtl

2023-12-04 Thread via llvm-branch-commits
Author: Vitaly Buka Date: 2023-12-04T11:10:18-08:00 New Revision: 5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6 URL: https://github.com/llvm/llvm-project/commit/5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6 DIFF: https://github.com/llvm/llvm-project/commit/5aa2f8c98cd7b05e4cb8b6c74db08cf417c2a1a6.diff

[llvm-branch-commits] [mlir] 19e068b - [MLIR][SCF] Handle more cases in pipelining transform (#74007)

2023-12-04 Thread via llvm-branch-commits
Author: Thomas Raoux Date: 2023-12-01T21:28:21-08:00 New Revision: 19e068b048591feb8fa66b164669c753090dfd3a URL: https://github.com/llvm/llvm-project/commit/19e068b048591feb8fa66b164669c753090dfd3a DIFF: https://github.com/llvm/llvm-project/commit/19e068b048591feb8fa66b164669c753090dfd3a.diff

[llvm-branch-commits] [llvm] 66a3e4f - [LoongArch] Override TargetLowering::isShuffleMaskLegal

2023-12-04 Thread via llvm-branch-commits
Author: wanglei Date: 2023-12-02T14:25:17+08:00 New Revision: 66a3e4fafb6eae19764f8a192ca3a116c0554211 URL: https://github.com/llvm/llvm-project/commit/66a3e4fafb6eae19764f8a192ca3a116c0554211 DIFF: https://github.com/llvm/llvm-project/commit/66a3e4fafb6eae19764f8a192ca3a116c0554211.diff LOG:

[llvm-branch-commits] [mlir] 19e068b - [MLIR][SCF] Handle more cases in pipelining transform (#74007)

2023-12-04 Thread via llvm-branch-commits
Author: Thomas Raoux Date: 2023-12-01T21:28:21-08:00 New Revision: 19e068b048591feb8fa66b164669c753090dfd3a URL: https://github.com/llvm/llvm-project/commit/19e068b048591feb8fa66b164669c753090dfd3a DIFF: https://github.com/llvm/llvm-project/commit/19e068b048591feb8fa66b164669c753090dfd3a.diff

[llvm-branch-commits] [llvm] [VPlan] Initial modeling of runtime VF * UF as VPValue. (PR #74761)

2023-12-07 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-risc-v Author: Florian Hahn (fhahn) Changes This patch starts initial modeling of runtime VF * UF in VPlan. Initially, introduce a dedicated RuntimeVFxUF VPValue, which is then populated during VPlan::prepareToExecute. Initially, the runtime VF

[llvm-branch-commits] [llvm] [VPlan] Initial modeling of runtime VF * UF as VPValue. (PR #74761)

2023-12-07 Thread via llvm-branch-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff f7aef976460187cf1c851e359f3fe46ab0ba6527 9421037da2ec22ec345216e5b8f3c3108926adbe --

[llvm-branch-commits] [llvm] a801fd3 - Revert "[llvm-readobj][AArch64][ELF][PAC] Support ELF AUTH constants (#72713)"

2023-12-08 Thread via llvm-branch-commits
Author: Daniil Kovalev Date: 2023-12-08T11:32:25+03:00 New Revision: a801fd32e4a3fac6dd648e6ea5084cdae68bc5b2 URL: https://github.com/llvm/llvm-project/commit/a801fd32e4a3fac6dd648e6ea5084cdae68bc5b2 DIFF:

[llvm-branch-commits] [openmp] 0e0ab31 - Revert "[OpenMP][Fix] Fix test array initialization. (#74799)"

2023-12-07 Thread via llvm-branch-commits
Author: Gheorghe-Teodor Bercea Date: 2023-12-07T22:12:18-05:00 New Revision: 0e0ab31f0ab8b3cda2cd8005bdb54be931463405 URL: https://github.com/llvm/llvm-project/commit/0e0ab31f0ab8b3cda2cd8005bdb54be931463405 DIFF:

[llvm-branch-commits] [llvm] [VPlan] Initial modeling of runtime VF * UF as VPValue. (PR #74761)

2023-12-07 Thread via llvm-branch-commits
@@ -2624,6 +2644,9 @@ class VPlan { /// The vector trip count. VPValue () { return VectorTripCount; } + /// Returns runtime VF * UF for the vector loop region. ayalz wrote: ```suggestion /// Returns the VF * UF of the vector loop region. ```

[llvm-branch-commits] [llvm] [VPlan] Initial modeling of runtime VF * UF as VPValue. (PR #74761)

2023-12-07 Thread via llvm-branch-commits
https://github.com/ayalz approved this pull request. LGTM, couple of minor nits. https://github.com/llvm/llvm-project/pull/74761 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org

[llvm-branch-commits] [llvm] [VPlan] Initial modeling of runtime VF * UF as VPValue. (PR #74761)

2023-12-07 Thread via llvm-branch-commits
@@ -1168,13 +1166,26 @@ class VPInstruction : public VPRecipeWithIRFlags, public VPValue { return false; case VPInstruction::ActiveLaneMask: case VPInstruction::CalculateTripCountMinusVF: -case VPInstruction::CanonicalIVIncrement: case

[llvm-branch-commits] [llvm] [VPlan] Initial modeling of runtime VF * UF as VPValue. (PR #74761)

2023-12-07 Thread via llvm-branch-commits
https://github.com/ayalz edited https://github.com/llvm/llvm-project/pull/74761 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [libc] 943c9e1 - Revert "[libc] Make BigInt bit_cast-able to compatible types (#74837)"

2023-12-08 Thread via llvm-branch-commits
Author: Guillaume Chatelet Date: 2023-12-08T17:14:28+01:00 New Revision: 943c9e11c275d9a14be468cd03790c0a9a24981d URL: https://github.com/llvm/llvm-project/commit/943c9e11c275d9a14be468cd03790c0a9a24981d DIFF:

[llvm-branch-commits] [flang] [flang] Move OpenMP-related code from `FirConverter` to `OpenMPMixin` (PR #74866)

2023-12-08 Thread via llvm-branch-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff 9447dddba61ad3a5441d9b0b397bde9b5876b37d e754d86e1c35d4417dfae8d270de7dee318f783e --

[llvm-branch-commits] [flang] [flang] Move OpenMP-related code from `FirConverter` to `OpenMPMixin` (PR #74866)

2023-12-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-fir-hlfir Author: Krzysztof Parzyszek (kparzysz) Changes This improves the separation of the generic Fortran lowering and the lowering of OpenMP constructs. The mixin is intended to be derived from via CRTP: ``` class FirConverter : public

[llvm-branch-commits] [libc] [flang] [compiler-rt] [clang] [llvm] [clang-tools-extra] [OptTable] Make new lines in help text respect indentation (PR #74880)

2023-12-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-support Author: Andres Villegas (avillega) Changes With this changes, new lines in the HelpText defined in OptTable have the same indentation as the first line. Before, the help output will look something like: ``` --color=value Whether to

[llvm-branch-commits] [lldb] d4cddc1 - Revert "[LLDB] Add more helper functions to CompilerType class. (#73467)"

2023-11-26 Thread via llvm-branch-commits
Author: cmtice Date: 2023-11-26T16:37:50-08:00 New Revision: d4cddc1a596b60c128996c8f96f63af6fb21506a URL: https://github.com/llvm/llvm-project/commit/d4cddc1a596b60c128996c8f96f63af6fb21506a DIFF: https://github.com/llvm/llvm-project/commit/d4cddc1a596b60c128996c8f96f63af6fb21506a.diff LOG:

[llvm-branch-commits] [llvm] 7414c0d - [LoongArch] Precommit a test for smul with overflow (NFC) (#73212)

2023-11-27 Thread via llvm-branch-commits
Author: hev Date: 2023-11-23T15:15:26+08:00 New Revision: 7414c0db962f8a5029fd44c3e0bc93d9ce20be71 URL: https://github.com/llvm/llvm-project/commit/7414c0db962f8a5029fd44c3e0bc93d9ce20be71 DIFF: https://github.com/llvm/llvm-project/commit/7414c0db962f8a5029fd44c3e0bc93d9ce20be71.diff LOG:

[llvm-branch-commits] [llvm] d76d8e5 - [AMDGPU][NFC] Update GISel memory-legalizer-atomic-fence test (#72829)

2023-11-27 Thread via llvm-branch-commits
Author: Pierre van Houtryve Date: 2023-11-23T09:09:05+01:00 New Revision: d76d8e541dab6d65b2490957707341352eac8320 URL: https://github.com/llvm/llvm-project/commit/d76d8e541dab6d65b2490957707341352eac8320 DIFF:

<    5   6   7   8   9   10   11   12   13   14   >