diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-05-19 21:07:08 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-19 21:07:48 -0700 |
commit | 7a4928f484b9c2f1676349c421215cbb8766e030 (patch) | |
tree | 760448fcb0e14740d5a6b6a5b34e66fd44ec1b30 /insns.pl | |
parent | dfa2a842bd3bdff14237d0a2abc9d0a4a3c2e5c9 (diff) | |
download | nasm-7a4928f484b9c2f1676349c421215cbb8766e030.tar.gz nasm-7a4928f484b9c2f1676349c421215cbb8766e030.tar.bz2 nasm-7a4928f484b9c2f1676349c421215cbb8766e030.zip |
Bytecode compiler: add support for is4/imz2 operands
Diffstat (limited to 'insns.pl')
-rw-r--r-- | insns.pl | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -673,6 +673,19 @@ sub byte_code_compile($) { push(@codes, 0250+$oppos{'i'}); } $prefix_ok = 0; + } elsif ($op eq 'is4' || $op eq 'imz2') { + if (!defined($oppos{'i'} || !defined($oppos{'s'}))) { + die "$0: $line: $op without 'i' and 's' operands\n"; + } + push(@codes, 0172, ($oppos{'s'} << 3)+$oppos{'i'}); + } elsif ($op =~ /^is4=([0-9]+)$/) { + if (!defined($oppos{'s'})) { + die "$0: $line: $op without 's' operand\n"; + } + if ($1 < 0 || $1 > 15) { + die "$0: $line: invalid imm4 value for $op\n"; + } + push(@codes, 0173, ($oppos{'s'} << 4) + $1); } elsif ($op =~ /^([0-9a-f]{2})\+s$/) { if (!defined($oppos{'i'})) { die "$0: $op without 'i' operand\n"; |