[llvm-branch-commits] [clang] 04caadc - [Driver] Enable __float128 support on X86 on FreeBSD / NetBSD (#72788)

2023-11-28 Thread Tobias Hieta via llvm-branch-commits
Author: Brad Smith Date: 2023-11-28T09:51:27+01:00 New Revision: 04caadc61fa221002018d32174f945d2904c2fae URL: https://github.com/llvm/llvm-project/commit/04caadc61fa221002018d32174f945d2904c2fae DIFF: https://github.com/llvm/llvm-project/commit/04caadc61fa221002018d32174f945d2904c2fae.diff LO

[llvm-branch-commits] [llvm] 6009708 - Revert "[runtimes] Add missing test dependencies to check-all (#72955)"

2023-11-28 Thread Tobias Hieta via llvm-branch-commits
Author: Tobias Hieta Date: 2023-11-28T09:52:28+01:00 New Revision: 6009708b4367171ccdbf4b5905cb6a803753fe18 URL: https://github.com/llvm/llvm-project/commit/6009708b4367171ccdbf4b5905cb6a803753fe18 DIFF: https://github.com/llvm/llvm-project/commit/6009708b4367171ccdbf4b5905cb6a803753fe18.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] [LivePhysRegs] Add callee-saved regs from MFI in addLiveOutsNoPristines. (PR #73553)

2023-11-28 Thread Florian Hahn via llvm-branch-commits
fhahn 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! Thanks for sharing the additional context and where `IsRestored`

[llvm-branch-commits] [llvm] 21b30e1 - [NFC][TLI] Improve tests for ArmPL and SLEEF Intrinsics.

2023-11-28 Thread Paschalis Mpeis via llvm-branch-commits
Author: Paschalis Mpeis Date: 2023-11-24T16:49:05Z New Revision: 21b30e18814016dc61b1a1ed87609e53454e3553 URL: https://github.com/llvm/llvm-project/commit/21b30e18814016dc61b1a1ed87609e53454e3553 DIFF: https://github.com/llvm/llvm-project/commit/21b30e18814016dc61b1a1ed87609e53454e3553.diff LO

[llvm-branch-commits] [llvm] cace1ec - Add `simplifycfg` pass and `noalias` to ensure tail folding.

2023-11-28 Thread Paschalis Mpeis via llvm-branch-commits
Author: Paschalis Mpeis Date: 2023-11-27T17:40:30Z New Revision: cace1ec7346d3dfee9fcc5d67d79bce989b207d1 URL: https://github.com/llvm/llvm-project/commit/cace1ec7346d3dfee9fcc5d67d79bce989b207d1 DIFF: https://github.com/llvm/llvm-project/commit/cace1ec7346d3dfee9fcc5d67d79bce989b207d1.diff LO

[llvm-branch-commits] [llvm] 6f79792 - [TLI] Pass replace-with-veclib works with Scalable Vectors.

2023-11-28 Thread Paschalis Mpeis via llvm-branch-commits
Author: Paschalis Mpeis Date: 2023-11-28T12:02:12Z New Revision: 6f797921e23fe9a4500222e69ebd75aa7ba53ec1 URL: https://github.com/llvm/llvm-project/commit/6f797921e23fe9a4500222e69ebd75aa7ba53ec1 DIFF: https://github.com/llvm/llvm-project/commit/6f797921e23fe9a4500222e69ebd75aa7ba53ec1.diff LO

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

2023-11-28 Thread Krzysztof Parzyszek via llvm-branch-commits
kparzysz wrote: I think we should get rid of the "restored" flag. The problem is specific to LR, and how LR is handled depends on the calling convention. If the convention expects the caller to preserve its LR, then LR is never live out of the call. If the callee restores the LR to the valu

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

2023-11-28 Thread Florian Hahn via llvm-branch-commits
fhahn wrote: @kparzysz please take a loo at https://gist.github.com/fhahn/67937125b64440a8a414909c4a1b7973, which has much more limited impact. > I haven't looked at the updated testcases in detail, but I see that most of > the changes are in treating LR as live (whereas it was dead before).

[llvm-branch-commits] [llvm] c41b11a - [BPF] lowering target address leaf nodes (tconstpool, tblockaddr, tjumptable)

2023-11-28 Thread Yingchi Long via llvm-branch-commits
Author: Yingchi Long Date: 2023-11-29T00:19:18+08:00 New Revision: c41b11adba30a630832561200d7095be90b1515f URL: https://github.com/llvm/llvm-project/commit/c41b11adba30a630832561200d7095be90b1515f DIFF: https://github.com/llvm/llvm-project/commit/c41b11adba30a630832561200d7095be90b1515f.diff

[llvm-branch-commits] [llvm] [BPF] expand cttz, ctlz for i32, i64 (PR #73668)

2023-11-28 Thread Yingchi Long via llvm-branch-commits
https://github.com/inclyc created https://github.com/llvm/llvm-project/pull/73668 Fixes: https://github.com/llvm/llvm-project/issues/62252 Depends on: #73667 >From bfdbfe517e0928e8dbc9fa736a9137c533cd899c Mon Sep 17 00:00:00 2001 From: Yingchi Long Date: Wed, 29 Nov 2023 00:23:49 +0800 Subje

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

2023-11-28 Thread Krzysztof Parzyszek via llvm-branch-commits
kparzysz wrote: > @kparzysz please take a loo at > https://gist.github.com/fhahn/67937125b64440a8a414909c4a1b7973, which has > much more limited impact. If it's an urgent issue, then it's fine to have a limited-impact fix. I think the root issue still remains though. > If LR isn't marked as

[llvm-branch-commits] [llvm] cd2a197 - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:24:11-08:00 New Revision: cd2a197bc2491d53d222eb67be18b741785c1f12 URL: https://github.com/llvm/llvm-project/commit/cd2a197bc2491d53d222eb67be18b741785c1f12 DIFF: https://github.com/llvm/llvm-project/commit/cd2a197bc2491d53d222eb67be18b741785c1f12.diff L

[llvm-branch-commits] [llvm] 7e4d36f - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:25:29-08:00 New Revision: 7e4d36f8a6babb62d734b125c5910987f352e51e URL: https://github.com/llvm/llvm-project/commit/7e4d36f8a6babb62d734b125c5910987f352e51e DIFF: https://github.com/llvm/llvm-project/commit/7e4d36f8a6babb62d734b125c5910987f352e51e.diff L

[llvm-branch-commits] [llvm] 1c14bde - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:28:21-08:00 New Revision: 1c14bde6e41ac375b2107a97b71b92f12e0bdf00 URL: https://github.com/llvm/llvm-project/commit/1c14bde6e41ac375b2107a97b71b92f12e0bdf00 DIFF: https://github.com/llvm/llvm-project/commit/1c14bde6e41ac375b2107a97b71b92f12e0bdf00.diff L

[llvm-branch-commits] [llvm] 52c44ee - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:31:52-08:00 New Revision: 52c44ee01b2a76062eb332a302c6bacc64e550f5 URL: https://github.com/llvm/llvm-project/commit/52c44ee01b2a76062eb332a302c6bacc64e550f5 DIFF: https://github.com/llvm/llvm-project/commit/52c44ee01b2a76062eb332a302c6bacc64e550f5.diff L

[llvm-branch-commits] [llvm] e132c89 - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:33:10-08:00 New Revision: e132c8909e40c9f61bfdbd90dd8cee30c2dbe074 URL: https://github.com/llvm/llvm-project/commit/e132c8909e40c9f61bfdbd90dd8cee30c2dbe074 DIFF: https://github.com/llvm/llvm-project/commit/e132c8909e40c9f61bfdbd90dd8cee30c2dbe074.diff L

[llvm-branch-commits] [llvm] 461b9b7 - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:34:59-08:00 New Revision: 461b9b7b6723fdb11aafeb410be3d9173538677d URL: https://github.com/llvm/llvm-project/commit/461b9b7b6723fdb11aafeb410be3d9173538677d DIFF: https://github.com/llvm/llvm-project/commit/461b9b7b6723fdb11aafeb410be3d9173538677d.diff L

[llvm-branch-commits] [llvm] 24f8f63 - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:38:32-08:00 New Revision: 24f8f639f9fb654838b78d8f14a06805e4772628 URL: https://github.com/llvm/llvm-project/commit/24f8f639f9fb654838b78d8f14a06805e4772628 DIFF: https://github.com/llvm/llvm-project/commit/24f8f639f9fb654838b78d8f14a06805e4772628.diff L

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs created https://github.com/llvm/llvm-project/pull/73685 None ___ 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] [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] bc15209 - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:39:44-08:00 New Revision: bc152095691b32d1ad8539dfd60f5089df5eed8d URL: https://github.com/llvm/llvm-project/commit/bc152095691b32d1ad8539dfd60f5089df5eed8d DIFF: https://github.com/llvm/llvm-project/commit/bc152095691b32d1ad8539dfd60f5089df5eed8d.diff L

[llvm-branch-commits] [llvm] d4d16df - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:39:49-08:00 New Revision: d4d16df26295dfe69706332e26ae017283c1e36b URL: https://github.com/llvm/llvm-project/commit/d4d16df26295dfe69706332e26ae017283c1e36b DIFF: https://github.com/llvm/llvm-project/commit/d4d16df26295dfe69706332e26ae017283c1e36b.diff L

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs created https://github.com/llvm/llvm-project/pull/73687 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.

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs created https://github.com/llvm/llvm-project/pull/73688 None ___ 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] 60bbb99 - [π˜€π—½π—Ώ] initial version

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T10:39:54-08:00 New Revision: 60bbb996f2e9251b288e2230c671cdcf997720ed URL: https://github.com/llvm/llvm-project/commit/60bbb996f2e9251b288e2230c671cdcf997720ed DIFF: https://github.com/llvm/llvm-project/commit/60bbb996f2e9251b288e2230c671cdcf997720ed.diff L

[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: https://git

[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 (+1

[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] [llvm] [clang] [compiler-rt] [builtins][arm64] Build __init_cpu_features_resolver on Apple platforms (PR #73685)

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
@@ -556,6 +556,8 @@ void X86AsmPrinter::emitGlobalIFunc(Module &M, const GlobalIFunc &GI) { JMP.setOpcode(X86::JMP_4); JMP.addOperand(MCOperand::createExpr(lowerConstant(GI.getResolver(; OutStreamer->emitInstruction(JMP, *Subtarget); + + // FIXME: do the manual .sym

[llvm-branch-commits] [llvm] 8f6755e - git clang-format

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T11:04:43-08:00 New Revision: 8f6755e6b211c9b0206197f65304443e26e244eb URL: https://github.com/llvm/llvm-project/commit/8f6755e6b211c9b0206197f65304443e26e244eb DIFF: https://github.com/llvm/llvm-project/commit/8f6755e6b211c9b0206197f65304443e26e244eb.diff L

[llvm-branch-commits] [llvm] 0d426a9 - [π˜€π—½π—Ώ] changes introduced through rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T11:04:46-08:00 New Revision: 0d426a93450c7bdc9868c6106e01efafa549eb86 URL: https://github.com/llvm/llvm-project/commit/0d426a93450c7bdc9868c6106e01efafa549eb86 DIFF: https://github.com/llvm/llvm-project/commit/0d426a93450c7bdc9868c6106e01efafa549eb86.diff L

[llvm-branch-commits] [llvm] 15d50f3 - rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T11:04:55-08:00 New Revision: 15d50f3463a535112df427ef5213b0d939608e94 URL: https://github.com/llvm/llvm-project/commit/15d50f3463a535112df427ef5213b0d939608e94 DIFF: https://github.com/llvm/llvm-project/commit/15d50f3463a535112df427ef5213b0d939608e94.diff L

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73687 ___ 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 Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73687 ___ 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] 7695f68 - rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T11:05:21-08:00 New Revision: 7695f68612c300a6b539d251f499cf22fdddb8f8 URL: https://github.com/llvm/llvm-project/commit/7695f68612c300a6b539d251f499cf22fdddb8f8 DIFF: https://github.com/llvm/llvm-project/commit/7695f68612c300a6b539d251f499cf22fdddb8f8.diff L

[llvm-branch-commits] [llvm] fac7c3d - [π˜€π—½π—Ώ] changes introduced through rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T11:04:59-08:00 New Revision: fac7c3d46800fc109f257d42341b621d10a9ccb7 URL: https://github.com/llvm/llvm-project/commit/fac7c3d46800fc109f257d42341b621d10a9ccb7 DIFF: https://github.com/llvm/llvm-project/commit/fac7c3d46800fc109f257d42341b621d10a9ccb7.diff L

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73688 ___ 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] Function Multi Versioning supports IFunc lowerings on Darwin platforms (PR #73688)

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73688 ___ 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] de74c62 - [π˜€π—½π—Ώ] changes introduced through rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T11:05:25-08:00 New Revision: de74c62118d9c2c9372a6ba862113f299ac6eb3a URL: https://github.com/llvm/llvm-project/commit/de74c62118d9c2c9372a6ba862113f299ac6eb3a DIFF: https://github.com/llvm/llvm-project/commit/de74c62118d9c2c9372a6ba862113f299ac6eb3a.diff L

[llvm-branch-commits] [llvm] 413e538 - rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T11:05:28-08:00 New Revision: 413e538a113187663f413d20c354e8018cddca30 URL: https://github.com/llvm/llvm-project/commit/413e538a113187663f413d20c354e8018cddca30 DIFF: https://github.com/llvm/llvm-project/commit/413e538a113187663f413d20c354e8018cddca30.diff L

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73685 ___ 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] [compiler-rt] [clang] [builtins][arm64] Build __init_cpu_features_resolver on Apple platforms (PR #73685)

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs edited https://github.com/llvm/llvm-project/pull/73685 ___ 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] [compiler-rt] a03c81b - Fix review comments and squash tests

2023-11-28 Thread AndrΓ©s Villegas via llvm-branch-commits
Author: AndrΓ©s Villegas Date: 2023-11-28T21:17:10Z New Revision: a03c81be070eccb0e064af314d02216e76bab854 URL: https://github.com/llvm/llvm-project/commit/a03c81be070eccb0e064af314d02216e76bab854 DIFF: https://github.com/llvm/llvm-project/commit/a03c81be070eccb0e064af314d02216e76bab854.diff LO

[llvm-branch-commits] [compiler-rt] [mlir] [libc] [clang] [llvm] [clang-tools-extra] [flang] [libcxx] [sanitizer_common tests] Add tests for sanitizer symbolzier markup. (PR #73195)

2023-11-28 Thread Andres Villegas via llvm-branch-commits
https://github.com/avillega closed https://github.com/llvm/llvm-project/pull/73195 ___ 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] [clang-tools-extra] [libcxx] [clang] [mlir] [compiler-rt] [llvm] [flang] [libc] [sanitizer_common tests] Add tests for sanitizer symbolzier markup. (PR #73195)

2023-11-28 Thread Andres Villegas via llvm-branch-commits
avillega wrote: I've squashed this test into the change that introduces the Rendering of Contextual elements #73194 https://github.com/llvm/llvm-project/pull/73195 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.l

[llvm-branch-commits] [compiler-rt] 5331cd8 - run git clang-format

2023-11-28 Thread AndrΓ©s Villegas via llvm-branch-commits
Author: AndrΓ©s Villegas Date: 2023-11-28T21:23:29Z New Revision: 5331cd8d7b873d79b516c2e47272d705d73e695d URL: https://github.com/llvm/llvm-project/commit/5331cd8d7b873d79b516c2e47272d705d73e695d DIFF: https://github.com/llvm/llvm-project/commit/5331cd8d7b873d79b516c2e47272d705d73e695d.diff LO

[llvm-branch-commits] [llvm] dc1fcb4 - avoid writeback stp's

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T14:24:45-08:00 New Revision: dc1fcb464e3d9e8dd37a5bda1aa8894e127654e9 URL: https://github.com/llvm/llvm-project/commit/dc1fcb464e3d9e8dd37a5bda1aa8894e127654e9 DIFF: https://github.com/llvm/llvm-project/commit/dc1fcb464e3d9e8dd37a5bda1aa8894e127654e9.diff L

[llvm-branch-commits] [llvm] 3b44869 - [π˜€π—½π—Ώ] changes introduced through rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T14:24:48-08:00 New Revision: 3b44869576897de5613e65fa85b867cdc21151d0 URL: https://github.com/llvm/llvm-project/commit/3b44869576897de5613e65fa85b867cdc21151d0 DIFF: https://github.com/llvm/llvm-project/commit/3b44869576897de5613e65fa85b867cdc21151d0.diff L

[llvm-branch-commits] [llvm] 8d9c2a2 - rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T14:24:53-08:00 New Revision: 8d9c2a2d30b69f9b4e4411f8bf74117303bea94e URL: https://github.com/llvm/llvm-project/commit/8d9c2a2d30b69f9b4e4411f8bf74117303bea94e DIFF: https://github.com/llvm/llvm-project/commit/8d9c2a2d30b69f9b4e4411f8bf74117303bea94e.diff L

[llvm-branch-commits] [llvm] 27dccd2 - rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T14:24:58-08:00 New Revision: 27dccd2b646ac953d0cf5489324d272db147ac3f URL: https://github.com/llvm/llvm-project/commit/27dccd2b646ac953d0cf5489324d272db147ac3f DIFF: https://github.com/llvm/llvm-project/commit/27dccd2b646ac953d0cf5489324d272db147ac3f.diff L

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73687 ___ 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] [clang] [llvm] [clang] Support __attribute__((ifunc(...))) on Darwin platforms (PR #73687)

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73687 ___ 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] 9375c35 - [π˜€π—½π—Ώ] changes introduced through rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T14:24:56-08:00 New Revision: 9375c350abda40537ca1db27d2bde3fffb067f90 URL: https://github.com/llvm/llvm-project/commit/9375c350abda40537ca1db27d2bde3fffb067f90 DIFF: https://github.com/llvm/llvm-project/commit/9375c350abda40537ca1db27d2bde3fffb067f90.diff L

[llvm-branch-commits] [llvm] 9c8c292 - rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T14:25:02-08:00 New Revision: 9c8c292266cc805a567fa844871e3424429f1bc3 URL: https://github.com/llvm/llvm-project/commit/9c8c292266cc805a567fa844871e3424429f1bc3 DIFF: https://github.com/llvm/llvm-project/commit/9c8c292266cc805a567fa844871e3424429f1bc3.diff L

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73688 ___ 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] Function Multi Versioning supports IFunc lowerings on Darwin platforms (PR #73688)

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73688 ___ 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] [compiler-rt] [clang] [llvm] [builtins][arm64] Build __init_cpu_features_resolver on Apple platforms (PR #73685)

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73685 ___ 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] a34d63c - [π˜€π—½π—Ώ] changes introduced through rebase

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
Author: Jon Roelofs Date: 2023-11-28T14:25:01-08:00 New Revision: a34d63cab61b3d7bd327b6a90ee4b9e3ed568e85 URL: https://github.com/llvm/llvm-project/commit/a34d63cab61b3d7bd327b6a90ee4b9e3ed568e85 DIFF: https://github.com/llvm/llvm-project/commit/a34d63cab61b3d7bd327b6a90ee4b9e3ed568e85.diff L

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

2023-11-28 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/73685 ___ 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] [compiler-rt] [msan] Intercept mallinfo2 (PR #73729)

2023-11-28 Thread Vitaly Buka via llvm-branch-commits
https://github.com/vitalybuka created https://github.com/llvm/llvm-project/pull/73729 None ___ 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] [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) compiler-rt/lib/sanitize

[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 L

[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: https://github.com/llvm/llvm-project/commit/eae1811e4f0431ea6336e68a38318a55f

[llvm-branch-commits] [llvm] 8cd7184 - [gn] port 12bb2910c3e3

2023-11-28 Thread Nico Weber via llvm-branch-commits
Author: Nico Weber Date: 2023-11-28T08:33:41+09:00 New Revision: 8cd7184dc0f1e5e28e39b03c90bc9aeee96d104f URL: https://github.com/llvm/llvm-project/commit/8cd7184dc0f1e5e28e39b03c90bc9aeee96d104f DIFF: https://github.com/llvm/llvm-project/commit/8cd7184dc0f1e5e28e39b03c90bc9aeee96d104f.diff LO

[llvm-branch-commits] [llvm] ed65602 - [gn] add a bunch of missing libc++ headers

2023-11-28 Thread Nico Weber via llvm-branch-commits
Author: Nico Weber Date: 2023-11-28T08:40:19+09:00 New Revision: ed6560240d5b0e2faa993e86d0ded0f5be0c8d19 URL: https://github.com/llvm/llvm-project/commit/ed6560240d5b0e2faa993e86d0ded0f5be0c8d19 DIFF: https://github.com/llvm/llvm-project/commit/ed6560240d5b0e2faa993e86d0ded0f5be0c8d19.diff LO

[llvm-branch-commits] [llvm] be1e8a6 - [gn] port 12bb2910c3e3 more

2023-11-28 Thread Nico Weber via llvm-branch-commits
Author: Nico Weber Date: 2023-11-28T08:43:16+09:00 New Revision: be1e8a659df5003fa74e1f55c40acf3667f3cdb9 URL: https://github.com/llvm/llvm-project/commit/be1e8a659df5003fa74e1f55c40acf3667f3cdb9 DIFF: https://github.com/llvm/llvm-project/commit/be1e8a659df5003fa74e1f55c40acf3667f3cdb9.diff LO

[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] [lldb] a6c62bf - [lldb] try to fix build on linux after fc6b72523f3d7

2023-11-28 Thread Nico Weber via llvm-branch-commits
Author: Nico Weber Date: 2023-11-28T08:53:05+09:00 New Revision: a6c62bf1a4717accc852463b664cd1012237d334 URL: https://github.com/llvm/llvm-project/commit/a6c62bf1a4717accc852463b664cd1012237d334 DIFF: https://github.com/llvm/llvm-project/commit/a6c62bf1a4717accc852463b664cd1012237d334.diff LO

[llvm-branch-commits] [llvm] 5623c44 - [gn build] Port 4e0c48b907f1

2023-11-28 Thread LLVM GN Syncbot via llvm-branch-commits
Author: LLVM GN Syncbot Date: 2023-11-27T23:53:34Z New Revision: 5623c44f08176cf7c1707786c65c55a20c7fa112 URL: https://github.com/llvm/llvm-project/commit/5623c44f08176cf7c1707786c65c55a20c7fa112 DIFF: https://github.com/llvm/llvm-project/commit/5623c44f08176cf7c1707786c65c55a20c7fa112.diff LO

[llvm-branch-commits] [openmp] 77aa79d - [OpenMP][Docs] Cleanup libomptarget README

2023-11-28 Thread Johannes Doerfert via llvm-branch-commits
Author: Johannes Doerfert Date: 2023-11-27T16:02:33-08:00 New Revision: 77aa79d4fb646b9fd28176d3845117a6a2da6745 URL: https://github.com/llvm/llvm-project/commit/77aa79d4fb646b9fd28176d3845117a6a2da6745 DIFF: https://github.com/llvm/llvm-project/commit/77aa79d4fb646b9fd28176d3845117a6a2da6745.d

[llvm-branch-commits] [llvm] 295bd6f - [gn build] Port fc6b72523f3d

2023-11-28 Thread LLVM GN Syncbot via llvm-branch-commits
Author: LLVM GN Syncbot Date: 2023-11-27T23:53:35Z New Revision: 295bd6fc4b91fec9eea5456cafb97c14c45107bb URL: https://github.com/llvm/llvm-project/commit/295bd6fc4b91fec9eea5456cafb97c14c45107bb DIFF: https://github.com/llvm/llvm-project/commit/295bd6fc4b91fec9eea5456cafb97c14c45107bb.diff LO

[llvm-branch-commits] [openmp] 755e108 - [OpenMP][NFC] Remove unused variable

2023-11-28 Thread Johannes Doerfert via llvm-branch-commits
Author: Johannes Doerfert Date: 2023-11-27T16:02:33-08:00 New Revision: 755e1088258b030cdd00cfa1b184c58fe41b4287 URL: https://github.com/llvm/llvm-project/commit/755e1088258b030cdd00cfa1b184c58fe41b4287 DIFF: https://github.com/llvm/llvm-project/commit/755e1088258b030cdd00cfa1b184c58fe41b4287.d

[llvm-branch-commits] [openmp] 30fbe73 - [OpenMP][NFC] Remove else after return

2023-11-28 Thread Johannes Doerfert via llvm-branch-commits
Author: Johannes Doerfert Date: 2023-11-27T16:02:33-08:00 New Revision: 30fbe73ba9c726acbe0658e4ea98f328724482e5 URL: https://github.com/llvm/llvm-project/commit/30fbe73ba9c726acbe0658e4ea98f328724482e5 DIFF: https://github.com/llvm/llvm-project/commit/30fbe73ba9c726acbe0658e4ea98f328724482e5.d

[llvm-branch-commits] [openmp] d2636dc - [OpenMP][NFC] Fix diagnostic warnings

2023-11-28 Thread Johannes Doerfert via llvm-branch-commits
Author: Johannes Doerfert Date: 2023-11-27T16:02:34-08:00 New Revision: d2636dc39043f6adda3a6797fc5b7966bd4cb2f0 URL: https://github.com/llvm/llvm-project/commit/d2636dc39043f6adda3a6797fc5b7966bd4cb2f0 DIFF: https://github.com/llvm/llvm-project/commit/d2636dc39043f6adda3a6797fc5b7966bd4cb2f0.d

[llvm-branch-commits] [openmp] e1f911e - [OpenMP][NFC] Simplify code

2023-11-28 Thread Johannes Doerfert via llvm-branch-commits
Author: Johannes Doerfert Date: 2023-11-27T16:02:34-08:00 New Revision: e1f911e40ce6ad4a7f393ea1b33e65b24940eb84 URL: https://github.com/llvm/llvm-project/commit/e1f911e40ce6ad4a7f393ea1b33e65b24940eb84 DIFF: https://github.com/llvm/llvm-project/commit/e1f911e40ce6ad4a7f393ea1b33e65b24940eb84.d

[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: https://github.com/llvm/llvm-project/commit/93a2be26e7cb54331033aad8f306bdbb5ef4b4c4.dif

[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 LOG:

[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] [llvm] 52b413f - [RISCV] Precommit tests for buildvector lowering with exact VLEN

2023-11-28 Thread Philip Reames via llvm-branch-commits
Author: Philip Reames Date: 2023-11-27T16:48:20-08:00 New Revision: 52b413f25ae79b07df88c0224adec4a6d7dabecc URL: https://github.com/llvm/llvm-project/commit/52b413f25ae79b07df88c0224adec4a6d7dabecc DIFF: https://github.com/llvm/llvm-project/commit/52b413f25ae79b07df88c0224adec4a6d7dabecc.diff