[llvm] [AMDGPU] IGLP: Fixes for VMEM load detection and unsigned int handling (PR #135090)
Robert Imschweiler via llvm-commits
llvm-commits at lists.llvm.org
Sun Apr 27 14:15:33 PDT 2025
================
@@ -80,6 +80,10 @@ enum class SchedGroupMask {
LLVM_MARK_AS_BITMASK_ENUM(/* LargestFlag = */ ALL)
};
+static bool handleAsVMEMInstr(const MachineInstr &MI, const SIInstrInfo *TII) {
+ return TII->isVMEM(MI) || (TII->isFLAT(MI) && !TII->isDS(MI));
----------------
ro-i wrote:
(Created https://github.com/llvm/llvm-project/pull/137148 and https://github.com/llvm/llvm-project/pull/137170)
https://github.com/llvm/llvm-project/pull/135090
More information about the llvm-commits
mailing list