[llvm] AMDGPU/GlobalISel: add RegBankLegalize rules for bitfield extract (PR #132381)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 07:49:17 PDT 2025
================
@@ -127,6 +131,117 @@ void RegBankLegalizeHelper::widenLoad(MachineInstr &MI, LLT WideTy,
MI.eraseFromParent();
}
+bool isSignedBFE(MachineInstr &MI) {
+ unsigned Opc =
+ isa<GIntrinsic>(MI) ? MI.getOperand(1).getIntrinsicID() : MI.getOpcode();
----------------
arsenm wrote:
I'd rather just handle these as two separate cases instead of incorrectly merge 2 separate enum spaces
https://github.com/llvm/llvm-project/pull/132381
More information about the llvm-commits
mailing list