[llvm-branch-commits] [libcxx] release/21.x [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
tru wrote: I have merged everything but the lldb change since it doesn't cherry-pick cleanly into the release branch. https://github.com/llvm/llvm-project/pull/155251 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://list

[llvm-branch-commits] [mlir] MLIR bug fixes for LLVM 21.x release (PR #154587)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
tru wrote: This is merged - I was not able to automatically merge this because I couldn't push to this repo after rebasing. But it's handled in the release branch. https://github.com/llvm/llvm-project/pull/154587 ___ llvm-branch-commits mailing list l

[llvm-branch-commits] [mlir] MLIR bug fixes for LLVM 21.x release (PR #154587)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/154587 ___ 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] [llvm-profgen] Extend llvm-profgen to generate vtable profiles with data access events. (PR #148013)

2025-08-25 Thread Mingming Liu via llvm-branch-commits
@@ -540,6 +540,22 @@ void ProfileGenerator::generateLineNumBasedProfile() { // Fill in boundary sample counts as well as call site samples for calls populateBoundarySamplesForAllFunctions(SC.BranchCounter); + // For each instruction with vtable accesses, get its symbolize

[llvm-branch-commits] [libcxx] release/21.x [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread via llvm-branch-commits
h-vetinari wrote: Presumably this also needs #155218 to be merged first, c.f. #154567 https://github.com/llvm/llvm-project/pull/155251 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listin

[llvm-branch-commits] [llvm] [DirectX] Adding missing descriptor table validations (PR #153276)

2025-08-25 Thread via llvm-branch-commits
@@ -513,6 +515,58 @@ Error MetadataParser::parseRootSignatureElement(mcdxbc::RootSignatureDesc &RSD, llvm_unreachable("Unhandled RootSignatureElementKind enum."); } +Error validateDescriptorTableSamplerMixin(mcdxbc::DescriptorTable Table, +

[llvm-branch-commits] [libcxx] release/21.x: [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155324)

2025-08-25 Thread via llvm-branch-commits
h-vetinari wrote: Ah, I didn't notice that you did #155324 manually, because it wasn't linked in #154686. So this PR can be closed (as there's more discussion in the other one already) https://github.com/llvm/llvm-project/pull/155324 ___ llvm-branch-

[llvm-branch-commits] [libcxx] release/21.x: [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155324)

2025-08-25 Thread via llvm-branch-commits
h-vetinari wrote: @philnik777 can you approve? https://github.com/llvm/llvm-project/pull/155324 ___ 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] [DirectX] Adding missing descriptor table validations (PR #153276)

2025-08-25 Thread Finn Plummer via llvm-branch-commits
@@ -180,6 +180,33 @@ bool verifyBorderColor(uint32_t BorderColor) { bool verifyLOD(float LOD) { return !std::isnan(LOD); } +bool verifyOffsetOverflow(uint32_t Offset, uint64_t Register) { + if (Offset != ~0U) +Register = Offset; + + if (Register > ~0U) +return true;

[llvm-branch-commits] [llvm] [DirectX] Adding missing descriptor table validations (PR #153276)

2025-08-25 Thread Finn Plummer via llvm-branch-commits
@@ -513,6 +515,58 @@ Error MetadataParser::parseRootSignatureElement(mcdxbc::RootSignatureDesc &RSD, llvm_unreachable("Unhandled RootSignatureElementKind enum."); } +Error validateDescriptorTableSamplerMixin(mcdxbc::DescriptorTable Table, +

[llvm-branch-commits] [clang] release/21.x: [PAC] Fix codegen for polymorphic class variables with consteval constructors (#154858) (PR #155319)

2025-08-25 Thread Oliver Hunt via llvm-branch-commits
https://github.com/ojhunt approved this pull request. https://github.com/llvm/llvm-project/pull/155319 ___ 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] release/21.x: [PAC] Fix codegen for polymorphic class variables with consteval constructors (#154858) (PR #155319)

2025-08-25 Thread Oliver Hunt via llvm-branch-commits
ojhunt wrote: > @ojhunt What do you think about merging this PR to the release branch? LGTM https://github.com/llvm/llvm-project/pull/155319 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman

[llvm-branch-commits] [clang] release/21.x: [PAC] Fix codegen for polymorphic class variables with consteval constructors (#154858) (PR #155319)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang-codegen Author: None (llvmbot) Changes Backport e612f37f2c110987ec43f8aa4fe8e86d6f64186f Requested by: @ahatanak --- Full diff: https://github.com/llvm/llvm-project/pull/155319.diff 2 Files Affected: - (modified) clang/lib/CodeGen/CGExprConsta

[llvm-branch-commits] [clang] release/21.x: [PAC] Fix codegen for polymorphic class variables with consteval constructors (#154858) (PR #155319)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @ojhunt What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/155319 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listin

[llvm-branch-commits] [clang] release/21.x: [PAC] Fix codegen for polymorphic class variables with consteval constructors (#154858) (PR #155319)

2025-08-25 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/155319 ___ 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] release/21.x: [PAC] Fix codegen for polymorphic class variables with consteval constructors (#154858) (PR #155319)

2025-08-25 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/155319 Backport e612f37f2c110987ec43f8aa4fe8e86d6f64186f Requested by: @ahatanak >From 2cb47e6d921af280858a1977457362143ccca7e9 Mon Sep 17 00:00:00 2001 From: Akira Hatanaka Date: Mon, 25 Aug 2025 10:17:43 -0700 Subj

[llvm-branch-commits] [llvm] [NFC] Leave a comment in `Local.cpp` about debug info & sample profiling (PR #155296)

2025-08-25 Thread David Blaikie via llvm-branch-commits
https://github.com/dwblaikie approved this pull request. I've still got concerns about this direction/divergence between users and profilers & would love to see some attempt at unification - but a comment that points to the issue at least centralizes the discusison and leaves breadcrumbs towar

[llvm-branch-commits] [llvm] [IR] Add `MD_prof` to the `Keep` list of `dropUBImplyingAttrsAndMetadata` (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
@@ -498,6 +498,7 @@ LLVM_ABI void dropDebugUsers(Instruction &I); /// /// The moved instructions receive the insertion point debug location values /// (DILocations) and their debug intrinsic instructions are removed. +/// Selects and indirect calls keep their MD_prof metadata.

[llvm-branch-commits] [llvm] [NFC] Leave a comment in `Local.cpp` about debug info & sample profiling (PR #155296)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
mtrofin wrote: Found this in a drive-by, worth stamping it with the issue so it's easy to find it later. https://github.com/llvm/llvm-project/pull/155296 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cg

[llvm-branch-commits] [llvm] [NFC] Leave a comment in `Local.cpp` about debug info & sample profiling (PR #155296)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-transforms Author: Mircea Trofin (mtrofin) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/155296.diff 1 Files Affected: - (modified) llvm/lib/Transforms/Utils/Local.cpp (+5-2) ``diff diff --git a/llvm/lib/Transforms

[llvm-branch-commits] [llvm] [NFC] Leave a comment in `Local.cpp` about debug info & sample profiling (PR #155296)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin edited https://github.com/llvm/llvm-project/pull/155296 ___ 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] [NFC] Leave a comment in `Local.cpp` about debug info & sample profiling (PR #155296)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin edited https://github.com/llvm/llvm-project/pull/155296 ___ 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] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154841 >From c2f586622e96180172cd35c36d3de48d2745286b Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Thu, 21 Aug 2025 13:54:49 -0700 Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional store

[llvm-branch-commits] [llvm] [NFC] Leave a comment in `Local.cpp` about debug info & sample profiling (PR #155296)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin ready_for_review https://github.com/llvm/llvm-project/pull/155296 ___ 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] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154841 >From c2f586622e96180172cd35c36d3de48d2745286b Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Thu, 21 Aug 2025 13:54:49 -0700 Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional store

[llvm-branch-commits] [llvm] [NFC] Leave a comment in `Local.cpp` about debug info & sample profiling (PR #155296)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
mtrofin wrote: > [!WARNING] > This pull request is not mergeable via GitHub because a downstack PR is > open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/155296?utm_source=stack-comment-downstack-mergeability-warning";

[llvm-branch-commits] [llvm] [NFC] Leave a comment in `Local.cpp` about debug info & sample profiling (PR #155296)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin created https://github.com/llvm/llvm-project/pull/155296 None >From 8422d7e43ade58187a0c3635640c9d20d2b6f654 Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Mon, 25 Aug 2025 21:04:05 + Subject: [PATCH] [NFC] Leave a comment in `Local.cpp` about debug info & s

[llvm-branch-commits] [llvm] [IR] Add `MD_prof` to the `Keep` list of `dropUBImplyingAttrsAndMetadata` (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin edited https://github.com/llvm/llvm-project/pull/154635 ___ 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] [IR] Add `MD_prof` to the `Keep` list of `dropUBImplyingAttrsAndMetadata (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin edited https://github.com/llvm/llvm-project/pull/154635 ___ 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] [IR] Add `MD_prof` to the `Keep` list of `dropUBImplyingAttrsAndMetadata (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin edited https://github.com/llvm/llvm-project/pull/154635 ___ 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] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154635 >From c25529714d12cdd03208c79eb82615bee75c14b4 Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Wed, 20 Aug 2025 15:04:49 -0700 Subject: [PATCH] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` --- l

[llvm-branch-commits] [llvm] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154841 >From 2495127ea9388484e6abef63b9141155d486707e Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Thu, 21 Aug 2025 13:54:49 -0700 Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional store

[llvm-branch-commits] [llvm] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154841 >From 2495127ea9388484e6abef63b9141155d486707e Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Thu, 21 Aug 2025 13:54:49 -0700 Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional store

[llvm-branch-commits] [llvm] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
@@ -498,6 +498,7 @@ LLVM_ABI void dropDebugUsers(Instruction &I); /// /// The moved instructions receive the insertion point debug location values /// (DILocations) and their debug intrinsic instructions are removed. +/// Selects and indirect calls keep their MD_prof metadata.

[llvm-branch-commits] [llvm] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` (PR #154635)

2025-08-25 Thread Nikita Popov via llvm-branch-commits
@@ -498,6 +498,7 @@ LLVM_ABI void dropDebugUsers(Instruction &I); /// /// The moved instructions receive the insertion point debug location values /// (DILocations) and their debug intrinsic instructions are removed. +/// Selects and indirect calls keep their MD_prof metadata.

[llvm-branch-commits] [llvm] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` (PR #154635)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-transforms Author: Mircea Trofin (mtrofin) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/154635.diff 3 Files Affected: - (modified) llvm/include/llvm/Transforms/Utils/Local.h (+1) - (modified) llvm/lib/Transforms/Utils/Local

[llvm-branch-commits] [llvm] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin ready_for_review https://github.com/llvm/llvm-project/pull/154635 ___ 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] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154635 >From 15b033f3c0542ae3d7cd53f7e9c65b3d3e31290f Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Wed, 20 Aug 2025 15:04:49 -0700 Subject: [PATCH] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` --- l

[llvm-branch-commits] [llvm] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` (PR #154635)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154635 >From 15b033f3c0542ae3d7cd53f7e9c65b3d3e31290f Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Wed, 20 Aug 2025 15:04:49 -0700 Subject: [PATCH] [Local] preserve `MD_prof` in `hoistAllInstructionsInto` --- l

[llvm-branch-commits] [llvm] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-transforms Author: Mircea Trofin (mtrofin) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/154841.diff 3 Files Affected: - (modified) llvm/include/llvm/IR/ProfDataUtils.h (+27) - (modified) llvm/lib/Transforms/Utils/SimplifyCF

[llvm-branch-commits] [llvm] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin ready_for_review https://github.com/llvm/llvm-project/pull/154841 ___ 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] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154841 >From 24507f71fa438e7e799560aa1d6f370a3a8a7c43 Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Thu, 21 Aug 2025 13:54:49 -0700 Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional store

[llvm-branch-commits] [llvm] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/154841 >From 24507f71fa438e7e799560aa1d6f370a3a8a7c43 Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Thu, 21 Aug 2025 13:54:49 -0700 Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional store

[llvm-branch-commits] [llvm] [SimplifyCFG] Set branch weights when merging conditional store to address (PR #154841)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin edited https://github.com/llvm/llvm-project/pull/154841 ___ 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] [DirectX] Adding missing descriptor table validations (PR #153276)

2025-08-25 Thread via llvm-branch-commits
https://github.com/joaosaffran updated https://github.com/llvm/llvm-project/pull/153276 >From 50e78d283fb2915a56cd3844f83d1b97a14bf2b8 Mon Sep 17 00:00:00 2001 From: Joao Saffran <{ID}+{username}@users.noreply.github.com> Date: Tue, 12 Aug 2025 11:21:17 -0700 Subject: [PATCH 01/15] check if tabl

[llvm-branch-commits] [clang] release/21.x: [analyzer] Drop false asserts in handling assume attribures (PR #155284)

2025-08-25 Thread Balazs Benics via llvm-branch-commits
https://github.com/steakhal edited https://github.com/llvm/llvm-project/pull/155284 ___ 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] release/21.x: [analyzer] Add missing expected-warning after #151908 (PR #155284)

2025-08-25 Thread Balazs Benics via llvm-branch-commits
https://github.com/steakhal edited https://github.com/llvm/llvm-project/pull/155284 ___ 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] release/21.x: [analyzer] Add missing expected-warning after #151908 (PR #155284)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: None (llvmbot) Changes Backport 0a1eff2ecedcb11acb3e9d4b75ee1e1bebd69a70 6c9f1ce429809e5a91683ed6cef9a435047bebd1 Requested by: @steakhal --- Full diff: https://github.com/llvm/llvm-project/pull/155284.diff 2 Files Affected: - (modifi

[llvm-branch-commits] [clang] release/21.x: [analyzer] Add missing expected-warning after #151908 (PR #155284)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang-static-analyzer-1 Author: None (llvmbot) Changes Backport 0a1eff2ecedcb11acb3e9d4b75ee1e1bebd69a70 6c9f1ce429809e5a91683ed6cef9a435047bebd1 Requested by: @steakhal --- Full diff: https://github.com/llvm/llvm-project/pull/155284.diff 2 Files Af

[llvm-branch-commits] [clang] release/21.x: [analyzer] Add missing expected-warning after #151908 (PR #155284)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @Xazax-hun @Xazax-hun What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/155284 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin

[llvm-branch-commits] [clang] release/21.x: [analyzer] Add missing expected-warning after #151908 (PR #155284)

2025-08-25 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/155284 ___ 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] release/21.x: [analyzer] Add missing expected-warning after #151908 (PR #155284)

2025-08-25 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/155284 Backport 0a1eff2ecedcb11acb3e9d4b75ee1e1bebd69a70 6c9f1ce429809e5a91683ed6cef9a435047bebd1 Requested by: @steakhal >From 5957089de666805deb1e1d442cf30f4f42d5f51b Mon Sep 17 00:00:00 2001 From: Balazs Benics D

[llvm-branch-commits] [clang] [flang] [llvm] [AMDGPU] More radical feature initialization refactoring (PR #155222)

2025-08-25 Thread Stanislav Mekhanoshin via llvm-branch-commits
https://github.com/rampitec updated https://github.com/llvm/llvm-project/pull/155222 >From eb6c9b54cb493b8cda31abaf6339a5f1c25b0cd9 Mon Sep 17 00:00:00 2001 From: Stanislav Mekhanoshin Date: Mon, 25 Aug 2025 01:17:09 -0700 Subject: [PATCH] [AMDGPU] More radical feature initialization refactorin

[llvm-branch-commits] [clang] [LifetimeSafety] Add support for GSL Pointer types (PR #154009)

2025-08-25 Thread Gábor Horváth via llvm-branch-commits
@@ -433,6 +433,31 @@ class FactGeneratorVisitor : public ConstStmtVisitor { void VisitDeclRefExpr(const DeclRefExpr *DRE) { handleUse(DRE); } + void VisitCXXConstructExpr(const CXXConstructExpr *CCE) { +if (!isGslPointerType(CCE->getType())) + return; + +if (

[llvm-branch-commits] [clang] [LifetimeSafety] Add support for GSL Pointer types (PR #154009)

2025-08-25 Thread Gábor Horváth via llvm-branch-commits
@@ -521,8 +563,75 @@ class FactGeneratorVisitor : public ConstStmtVisitor { } private: + static bool isGslPointerType(QualType QT) { +if (const auto *RD = QT->getAsCXXRecordDecl()) { + // We need to check the template definition for specializations. + if (aut

[llvm-branch-commits] [lldb] 78f9910 - Revert "[lldb] Adopt JSONTransport in the MCP Server (#155034)"

2025-08-25 Thread via llvm-branch-commits
Author: Jonas Devlieghere Date: 2025-08-25T12:33:47-07:00 New Revision: 78f99109489d5eff6aa33a82ad96c4bc3c762213 URL: https://github.com/llvm/llvm-project/commit/78f99109489d5eff6aa33a82ad96c4bc3c762213 DIFF: https://github.com/llvm/llvm-project/commit/78f99109489d5eff6aa33a82ad96c4bc3c762213.d

[llvm-branch-commits] [clang] [clang] NFC: Provide inline definitions for {get, cast}TagDecl and friends (PR #155051)

2025-08-25 Thread Erich Keane via llvm-branch-commits
@@ -2882,22 +2882,22 @@ class alignas(TypeAlignment) Type : public ExtQualsTypeCommonBase { /// Retrieves the CXXRecordDecl that this type refers to, either /// because the type is a RecordType or because it is the injected-class-name /// type of a class template or clas

[llvm-branch-commits] [clang] [clang] NFC: Provide inline definitions for {get, cast}TagDecl and friends (PR #155051)

2025-08-25 Thread Matheus Izvekov via llvm-branch-commits
@@ -2882,22 +2882,22 @@ class alignas(TypeAlignment) Type : public ExtQualsTypeCommonBase { /// Retrieves the CXXRecordDecl that this type refers to, either /// because the type is a RecordType or because it is the injected-class-name /// type of a class template or clas

[llvm-branch-commits] [libcxx] release/21.x [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread Jonas Devlieghere via llvm-branch-commits
JDevlieghere wrote: We should take https://github.com/llvm/llvm-project/pull/155153 for 21.x https://github.com/llvm/llvm-project/pull/155251 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman

[llvm-branch-commits] [flang] release/21.x: [Flang] Fix crash when a derived type with private attribute is specified in extends (#151051) (PR #152687)

2025-08-25 Thread Slava Zakharin via llvm-branch-commits
https://github.com/vzakhari approved this pull request. https://github.com/llvm/llvm-project/pull/152687 ___ 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] [analyzer][docs] CSA release notes for clang-21 (PR #154600)

2025-08-25 Thread Balazs Benics via llvm-branch-commits
steakhal wrote: > Do I understand that this document is primarily intended for the _users_ of > the static analyzer? In that case I think it would be important to use the > user-facing names of the checkers that are mentioned (e.g. write > `unix.BlockInCriticalSection` instead of `BlockInCriti

[llvm-branch-commits] [clang] Move rest of documentation problems that found their way to the SA section (PR #154608)

2025-08-25 Thread Balazs Benics via llvm-branch-commits
steakhal wrote: > Seems like this still have conflicts? do you have time to look at this now > @steakhal ? otherwise I'll make an attempt at resolving it before the final > release tomorrow, but it would be better if you did it since you know what to > expect. There was nothing serious. The d

[llvm-branch-commits] [clang] Move rest of documentation problems that found their way to the SA section (PR #154608)

2025-08-25 Thread Balazs Benics via llvm-branch-commits
https://github.com/steakhal updated https://github.com/llvm/llvm-project/pull/154608 >From c522688652800329bf5beef9c378192826521f0d Mon Sep 17 00:00:00 2001 From: erichkeane Date: Wed, 20 Aug 2025 13:37:33 -0700 Subject: [PATCH 1/2] Move rest of documentation problems that found their way to t

[llvm-branch-commits] [libcxx] release/21.x [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread Nikita Popov via llvm-branch-commits
https://github.com/nikic requested changes to this pull request. We need to also either backport a fix for lldb tests or disable the relevant tests. That needs to happen as part of this PR. https://github.com/llvm/llvm-project/pull/155251 ___ llvm-bra

[llvm-branch-commits] [llvm] [DirectX] Adding missing descriptor table validations (PR #153276)

2025-08-25 Thread Finn Plummer via llvm-branch-commits
@@ -513,6 +515,48 @@ Error MetadataParser::parseRootSignatureElement(mcdxbc::RootSignatureDesc &RSD, llvm_unreachable("Unhandled RootSignatureElementKind enum."); } +Error validateDescriptorTableSamplerMixin(mcdxbc::DescriptorTable Table, +

[llvm-branch-commits] [flang] [llvm] [mlir] [MLIR][OpenMP] Simplify OpenMP device codegen (PR #137201)

2025-08-25 Thread Sergio Afonso via llvm-branch-commits
https://github.com/skatrak updated https://github.com/llvm/llvm-project/pull/137201 >From 9b5e75950a88e68aa49f5341f488eb6f57f58375 Mon Sep 17 00:00:00 2001 From: Sergio Afonso Date: Tue, 22 Apr 2025 12:04:45 +0100 Subject: [PATCH 1/2] [MLIR][OpenMP] Simplify OpenMP device codegen After removin

[llvm-branch-commits] [libcxx] release/21.x [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread Louis Dionne via llvm-branch-commits
https://github.com/ldionne approved this pull request. https://github.com/llvm/llvm-project/pull/155251 ___ 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] [analyzer][docs] CSA release notes for clang-21 (PR #154600)

2025-08-25 Thread Donát Nagy via llvm-branch-commits
NagyDonat wrote: Do I understand that this document is primarily intended for the _users_ of the static analyzer? In that case I think it would be important to use the user-facing names of the checkers that are mentioned (e.g. write `unix.BlockInCriticalSection` instead of `BlockInCriticalSect

[llvm-branch-commits] [libcxx] release/21.x [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread Nikolas Klauser via llvm-branch-commits
https://github.com/philnik777 edited https://github.com/llvm/llvm-project/pull/155251 ___ 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] [libcxx] release/21.x [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-libcxx Author: Nikolas Klauser (philnik777) Changes LLVM 20 contained an ABI break that can result in the size of `std::unordered_{map,set,multimap,multiset}` and `std::deque` changing when used with an allocator type that is empty and contains a base cl

[llvm-branch-commits] [libcxx] release/21.x [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread Nikolas Klauser via llvm-branch-commits
https://github.com/philnik777 edited https://github.com/llvm/llvm-project/pull/155251 ___ 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] [libcxx] [libc++] Fix ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154686) (PR #155251)

2025-08-25 Thread Nikolas Klauser via llvm-branch-commits
https://github.com/philnik777 created https://github.com/llvm/llvm-project/pull/155251 LLVM 20 contained an ABI break that can result in the size of `std::unordered_{map,set,multimap,multiset}` and `std::deque` changing when used with an allocator type that is empty and contains a base class tha

[llvm-branch-commits] [libcxx] release/21.x: [libc++] Add tests for the ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154559) (PR #154945)

2025-08-25 Thread via llvm-branch-commits
github-actions[bot] wrote: @ldionne (or anyone else). If you would like to add a note about this fix in the release notes (completely optional). Please reply to this comment with a one or two sentence description of the fix. When you are done, please add the release:note label to this PR. h

[llvm-branch-commits] [llvm] [profcheck] Exclude test introduced in 3054e06 (PR #155250)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin ready_for_review https://github.com/llvm/llvm-project/pull/155250 ___ 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] [libcxx] release/21.x: [libc++] Add tests for the ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154559) (PR #154945)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
tru wrote: Merged - put up the other PR as soon as you can so I can merge that before the final release. https://github.com/llvm/llvm-project/pull/154945 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/c

[llvm-branch-commits] [llvm] [profcheck] Exclude test introduced in 3054e06 (PR #155250)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
mtrofin wrote: > [!WARNING] > This pull request is not mergeable via GitHub because a downstack PR is > open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/155250?utm_source=stack-comment-downstack-mergeability-warning";

[llvm-branch-commits] [llvm] [profcheck] Exclude test introduced in 3054e06 (PR #155250)

2025-08-25 Thread Mircea Trofin via llvm-branch-commits
https://github.com/mtrofin created https://github.com/llvm/llvm-project/pull/155250 LoopVectorize hasn't yet been addressed, new tests will fail. Issue #147390 >From 8f22ea9789da8c307c2374765ae007815140be59 Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Mon, 25 Aug 2025 14:24:44 + Sub

[llvm-branch-commits] [lld] release/21.x: [LLD][COFF] Set isUsedInRegularObj for target symbols in resolveAlternateNames (#154837) (PR #154928)

2025-08-25 Thread via llvm-branch-commits
github-actions[bot] wrote: @cjacek (or anyone else). If you would like to add a note about this fix in the release notes (completely optional). Please reply to this comment with a one or two sentence description of the fix. When you are done, please add the release:note label to this PR. ht

[llvm-branch-commits] [libcxx] release/21.x: [libc++] Add tests for the ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154559) (PR #154945)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/154945 ___ 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] [libcxx] release/21.x: [libc++] Add tests for the ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154559) (PR #154945)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/154945 >From 5ec7fdf0c4e81c920890d636a7a25539f800c3af Mon Sep 17 00:00:00 2001 From: Nikolas Klauser Date: Fri, 22 Aug 2025 15:25:50 +0200 Subject: [PATCH] [libc++] Add tests for the ABI break introduced by switching to _L

[llvm-branch-commits] [libcxx] 5ec7fdf - [libc++] Add tests for the ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154559)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
Author: Nikolas Klauser Date: 2025-08-25T16:33:44+02:00 New Revision: 5ec7fdf0c4e81c920890d636a7a25539f800c3af URL: https://github.com/llvm/llvm-project/commit/5ec7fdf0c4e81c920890d636a7a25539f800c3af DIFF: https://github.com/llvm/llvm-project/commit/5ec7fdf0c4e81c920890d636a7a25539f800c3af.dif

[llvm-branch-commits] [clang] release/21.x: [Driver] DragonFly does not support C11 threads (#154886) (PR #154897)

2025-08-25 Thread via llvm-branch-commits
github-actions[bot] wrote: @brad0 (or anyone else). If you would like to add a note about this fix in the release notes (completely optional). Please reply to this comment with a one or two sentence description of the fix. When you are done, please add the release:note label to this PR. htt

[llvm-branch-commits] [lld] c1ddc79 - [LLD][COFF] Set isUsedInRegularObj for target symbols in resolveAlternateNames (#154837)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
Author: Jacek Caban Date: 2025-08-25T16:33:17+02:00 New Revision: c1ddc793bf4500756b9f5c8cbd17915a9cd26be0 URL: https://github.com/llvm/llvm-project/commit/c1ddc793bf4500756b9f5c8cbd17915a9cd26be0 DIFF: https://github.com/llvm/llvm-project/commit/c1ddc793bf4500756b9f5c8cbd17915a9cd26be0.diff L

[llvm-branch-commits] [lld] release/21.x: [LLD][COFF] Set isUsedInRegularObj for target symbols in resolveAlternateNames (#154837) (PR #154928)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/154928 ___ 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] [lld] release/21.x: [LLD][COFF] Set isUsedInRegularObj for target symbols in resolveAlternateNames (#154837) (PR #154928)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/154928 >From c1ddc793bf4500756b9f5c8cbd17915a9cd26be0 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Fri, 22 Aug 2025 04:05:19 -0700 Subject: [PATCH] [LLD][COFF] Set isUsedInRegularObj for target symbols in resolveAltern

[llvm-branch-commits] [clang] release/21.x: [Driver] DragonFly does not support C11 threads (#154886) (PR #154897)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/154897 >From b95cfa4014702c49b2cd58cfe22987f22369ce58 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Fri, 22 Aug 2025 02:02:52 -0400 Subject: [PATCH] [Driver] DragonFly does not support C11 threads (#154886) (cherry picke

[llvm-branch-commits] [clang] b95cfa4 - [Driver] DragonFly does not support C11 threads (#154886)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
Author: Brad Smith Date: 2025-08-25T16:32:43+02:00 New Revision: b95cfa4014702c49b2cd58cfe22987f22369ce58 URL: https://github.com/llvm/llvm-project/commit/b95cfa4014702c49b2cd58cfe22987f22369ce58 DIFF: https://github.com/llvm/llvm-project/commit/b95cfa4014702c49b2cd58cfe22987f22369ce58.diff LO

[llvm-branch-commits] [clang] release/21.x: [Driver] DragonFly does not support C11 threads (#154886) (PR #154897)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/154897 ___ 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] Move rest of documentation problems that found their way to the SA section (PR #154608)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
tru wrote: Seems like this still have conflicts? do you have time to look at this now @steakhal ? otherwise I'll make an attempt at resolving it before the final release tomorrow, but it would be better if you did it since you know what to expect. https://github.com/llvm/llvm-project/pull/154

[llvm-branch-commits] [mlir] MLIR bug fixes for LLVM 21.x release (PR #154587)

2025-08-25 Thread Mehdi Amini via llvm-branch-commits
joker-eph wrote: If you look at the diff and fold the MLIR folder, you'll see that there is nothing outside of MLIR in this diff. https://github.com/llvm/llvm-project/pull/154587 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org

[llvm-branch-commits] [llvm] release/21.x: [Hexagon] Add missing operand when disassembling Y4_crswap10 (#153849) (PR #153926)

2025-08-25 Thread via llvm-branch-commits
github-actions[bot] wrote: @androm3da (or anyone else). If you would like to add a note about this fix in the release notes (completely optional). Please reply to this comment with a one or two sentence description of the fix. When you are done, please add the release:note label to this PR.

[llvm-branch-commits] [llvm] 4b40020 - [Hexagon] Add missing operand when disassembling Y4_crswap10 (#153849)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
Author: Sergei Barannikov Date: 2025-08-25T16:29:15+02:00 New Revision: 4b4002045e4430fc6a9557c6323605a3c9e9f020 URL: https://github.com/llvm/llvm-project/commit/4b4002045e4430fc6a9557c6323605a3c9e9f020 DIFF: https://github.com/llvm/llvm-project/commit/4b4002045e4430fc6a9557c6323605a3c9e9f020.d

[llvm-branch-commits] [llvm] release/21.x: [Hexagon] Add missing operand when disassembling Y4_crswap10 (#153849) (PR #153926)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/153926 ___ 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] release/21.x: [Hexagon] Add missing operand when disassembling Y4_crswap10 (#153849) (PR #153926)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/153926 >From 4b4002045e4430fc6a9557c6323605a3c9e9f020 Mon Sep 17 00:00:00 2001 From: Sergei Barannikov Date: Sat, 16 Aug 2025 05:13:43 +0300 Subject: [PATCH] [Hexagon] Add missing operand when disassembling Y4_crswap10 (#1

[llvm-branch-commits] [mlir] MLIR bug fixes for LLVM 21.x release (PR #154587)

2025-08-25 Thread Tobias Hieta via llvm-branch-commits
tru wrote: @joker-eph I am going through them periodically. This is a big set of fixes, hard to review one by one. Anything here touching outside MLIR? https://github.com/llvm/llvm-project/pull/154587 ___ llvm-branch-commits mailing list llvm-branch-c

[llvm-branch-commits] [flang] [flang][OpenMP] move omp end sections validation to semantics (PR #154740)

2025-08-25 Thread Krzysztof Parzyszek via llvm-branch-commits
https://github.com/kparzysz approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/154740 ___ 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] [clang] NFC: Provide inline definitions for {get, cast}TagDecl and friends (PR #155051)

2025-08-25 Thread Erich Keane via llvm-branch-commits
@@ -2882,22 +2882,22 @@ class alignas(TypeAlignment) Type : public ExtQualsTypeCommonBase { /// Retrieves the CXXRecordDecl that this type refers to, either /// because the type is a RecordType or because it is the injected-class-name /// type of a class template or clas

[llvm-branch-commits] [mlir] [mlir][Transforms] Add support for `ConversionPatternRewriter::replaceAllUsesWith` (PR #155244)

2025-08-25 Thread Matthias Springer via llvm-branch-commits
https://github.com/matthias-springer created https://github.com/llvm/llvm-project/pull/155244 Depends on #155242. >From b217bce2ba7ecaf94d1e6364cac7b75f4ffb3f41 Mon Sep 17 00:00:00 2001 From: Matthias Springer Date: Sat, 23 Aug 2025 10:36:37 + Subject: [PATCH] [mlir][Transforms] Add suppo

[llvm-branch-commits] [llvm] [BOLT] Gadget scanner: optionally assume auth traps on failure (PR #139778)

2025-08-25 Thread Anatoly Trosinenko via llvm-branch-commits
https://github.com/atrosinenko updated https://github.com/llvm/llvm-project/pull/139778 >From 1e5aef4e558dd99fa7eb6522c1573b0a6b588a4d Mon Sep 17 00:00:00 2001 From: Anatoly Trosinenko Date: Tue, 13 May 2025 19:50:41 +0300 Subject: [PATCH] [BOLT] Gadget scanner: optionally assume auth traps on

[llvm-branch-commits] [llvm] [BOLT] Gadget scanner: optionally assume auth traps on failure (PR #139778)

2025-08-25 Thread Anatoly Trosinenko via llvm-branch-commits
https://github.com/atrosinenko updated https://github.com/llvm/llvm-project/pull/139778 >From 1e5aef4e558dd99fa7eb6522c1573b0a6b588a4d Mon Sep 17 00:00:00 2001 From: Anatoly Trosinenko Date: Tue, 13 May 2025 19:50:41 +0300 Subject: [PATCH] [BOLT] Gadget scanner: optionally assume auth traps on

  1   2   >