[clang] [compiler-rt] [llvm] [X86][AVX10.2] Support AVX10.2 option and VMPSADBW/VADDP[D,H,S] new instructions (PR #101452)
Shengchen Kan via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 31 23:19:47 PDT 2024
================
@@ -926,7 +951,9 @@ void DisassemblerTables::emitContextTable(raw_ostream &o, unsigned &i) const {
else
o << "IC_VEX";
- if ((index & ATTR_EVEX) && (index & ATTR_EVEXL2))
+ if ((index & ATTR_EVEXB) && (index & ATTR_EVEXU))
+ ; // Ignore ATTR_VEXL and ATTR_EVEXL2 under YMM rounding.
----------------
KanRobert wrote:
Do you mean `L`, `L2` bits are ignored if EVEX.U and EVEX.b are set? If so, should we add decoding test for it?
https://github.com/llvm/llvm-project/pull/101452
More information about the llvm-commits
mailing list