[llvm] [X86][MC] Support Enc/Dec for EGPR for promoted MOVDIR instruction (PR #74713)
Shengchen Kan via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 7 05:10:30 PST 2023
================
@@ -265,8 +265,12 @@ InstructionContext RecognizableInstr::insnContext() const {
}
}
// No L, no W
- else if (OpPrefix == X86Local::PD)
- insnContext = EVEX_KB(IC_EVEX_OPSIZE);
+ else if (OpPrefix == X86Local::PD) {
+ if(AdSize == X86Local::AdSize32)
+ insnContext = IC_EVEX_OPSIZE_ADSIZE;
+ else
+ insnContext = EVEX_KB(IC_EVEX_OPSIZE);
----------------
KanRobert wrote:
It seems you should extend the macro `EVEX_KB`?
https://github.com/llvm/llvm-project/pull/74713
More information about the llvm-commits
mailing list