[llvm] [SPIR-V] Add llvm.loop.unroll metadata lowering (PR #132062)
Dmitry Sidorov via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 10:02:53 PDT 2025
================
@@ -611,6 +611,40 @@ class SPIRVStructurizer : public FunctionPass {
auto MergeAddress = BlockAddress::get(Merge->getParent(), Merge);
auto ContinueAddress = BlockAddress::get(Continue->getParent(), Continue);
SmallVector<Value *, 2> Args = {MergeAddress, ContinueAddress};
+ unsigned LC = SPIRV::LoopControl::None;
+ // Currently used only to store PartialCount value. Later when other
+ // LoopControls are added - this map should be sorted before making
+ // them loop_merge operands to satisfy 3.23. Loop Control requirements.
+ std::vector<std::pair<unsigned, unsigned>> MaskToValueMap;
----------------
MrSidims wrote:
Applied, thanks!
https://github.com/llvm/llvm-project/pull/132062
More information about the llvm-commits
mailing list