[llvm] [CodeGen][NFC] Add laneBitmask as new MachineOperand Type (PR #151944)
Vikash Gupta via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 5 23:31:15 PDT 2025
================
@@ -2870,6 +2871,32 @@ bool MIParser::parseCustomRegisterMaskOperand(MachineOperand &Dest) {
return false;
}
+bool MIParser::parseLaneMaskOperand(MachineOperand &Dest) {
+ assert(Token.is(MIToken::kw_lanemask));
+
+ lex();
----------------
vg0204 wrote:
It would be a normal COPY, with additional machineOperand as lanemask. Any other specs I need to know about it?
https://github.com/llvm/llvm-project/pull/151944
More information about the llvm-commits
mailing list