mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-13 17:57:12 +08:00
AVX-512: Add test case for opmask instructions
Added K* instructions test cases in test/avx512f.asm. The previous test case from GNU AS were repeating the same instruction twice, so the repeated half part is removed. Changed the python script (gas2nasm.py) to include opmask instructions. Signed-off-by: Jin Kyu Song <jin.kyu.song@intel.com> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
daafcbae77
commit
088827bc6c
4600
test/avx512f.asm
4600
test/avx512f.asm
File diff suppressed because it is too large
Load Diff
@ -39,7 +39,7 @@ def read(options):
|
||||
l = strr[0].strip()
|
||||
r = strr[2].strip()
|
||||
# Filter out Pseudo-op / vex instructions until those are added in insns.dat
|
||||
if not (re.match('vcmp.+[ps][ds]', r) or re.match('vpcmp[^u]+u?[dq]', r) or r[0] == 'k'):
|
||||
if not (re.match('vcmp.+[ps][ds]', r) or re.match('vpcmp[^u]+u?[dq]', r)):
|
||||
d.append(l)
|
||||
d.append(r)
|
||||
recs.append(d)
|
||||
|
Loading…
x
Reference in New Issue
Block a user