mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
Fix skipping 0270 code when searching for disasm prefixes
The 0270 code was incorrectly entered as 270 (decimal), which meant that instructions with vex but no .nds got misfiled in the improper opcode tables.
This commit is contained in:
parent
39d6ac6f79
commit
eb9e093840
10
insns.pl
10
insns.pl
@ -406,6 +406,8 @@ sub hexstr(@) {
|
||||
# \1[0123] mean byte plus register value
|
||||
# \330 means byte plus condition code
|
||||
# \0 or \340 mean give up and return empty set
|
||||
# \17[234] skip is4 control byte
|
||||
# \26x \270 skip VEX control bytes
|
||||
sub startseq($) {
|
||||
my ($codestr) = @_;
|
||||
my $word, @range;
|
||||
@ -461,11 +463,11 @@ sub startseq($) {
|
||||
return addprefix($prefix, $c1..($c1+15));
|
||||
} elsif ($c0 == 0 || $c0 == 0340) {
|
||||
return $prefix;
|
||||
} elsif (($c0 & ~3) == 0260 || $c0 == 270) {
|
||||
shift(@codes);
|
||||
shift(@codes);
|
||||
} elsif ($c0 == 0172) {
|
||||
} elsif (($c0 & ~3) == 0260 || $c0 == 0270) {
|
||||
shift(@codes); # Skip VEX control bytes
|
||||
shift(@codes);
|
||||
} elsif ($c0 >= 0172 && $c0 <= 174) {
|
||||
shift(@codes); # Skip is4 control byte
|
||||
} else {
|
||||
# We really need to be able to distinguish "forbidden"
|
||||
# and "ignorable" codes here
|
||||
|
Loading…
x
Reference in New Issue
Block a user