1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2017 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * ----------------------------------------------------------------------- */
35 * assemble.c code generation for the Netwide Assembler
37 * Bytecode specification
38 * ----------------------
41 * Codes Mnemonic Explanation
43 * \0 terminates the code. (Unless it's a literal of course.)
44 * \1..\4 that many literal bytes follow in the code stream
45 * \5 add 4 to the primary operand number (b, low octdigit)
46 * \6 add 4 to the secondary operand number (a, middle octdigit)
47 * \7 add 4 to both the primary and the secondary operand number
48 * \10..\13 a literal byte follows in the code stream, to be added
49 * to the register value of operand 0..3
50 * \14..\17 the position of index register operand in MIB (BND insns)
51 * \20..\23 ib a byte immediate operand, from operand 0..3
52 * \24..\27 ib,u a zero-extended byte immediate operand, from operand 0..3
53 * \30..\33 iw a word immediate operand, from operand 0..3
54 * \34..\37 iwd select between \3[0-3] and \4[0-3] depending on 16/32 bit
55 * assembly mode or the operand-size override on the operand
56 * \40..\43 id a long immediate operand, from operand 0..3
57 * \44..\47 iwdq select between \3[0-3], \4[0-3] and \5[4-7]
58 * depending on the address size of the instruction.
59 * \50..\53 rel8 a byte relative operand, from operand 0..3
60 * \54..\57 iq a qword immediate operand, from operand 0..3
61 * \60..\63 rel16 a word relative operand, from operand 0..3
62 * \64..\67 rel select between \6[0-3] and \7[0-3] depending on 16/32 bit
63 * assembly mode or the operand-size override on the operand
64 * \70..\73 rel32 a long relative operand, from operand 0..3
65 * \74..\77 seg a word constant, from the _segment_ part of operand 0..3
66 * \1ab a ModRM, calculated on EA in operand a, with the spare
67 * field the register value of operand b.
68 * \172\ab the register number from operand a in bits 7..4, with
69 * the 4-bit immediate from operand b in bits 3..0.
70 * \173\xab the register number from operand a in bits 7..4, with
71 * the value b in bits 3..0.
72 * \174..\177 the register number from operand 0..3 in bits 7..4, and
73 * an arbitrary value in bits 3..0 (assembled as zero.)
74 * \2ab a ModRM, calculated on EA in operand a, with the spare
75 * field equal to digit b.
77 * \240..\243 this instruction uses EVEX rather than REX or VEX/XOP, with the
78 * V field taken from operand 0..3.
79 * \250 this instruction uses EVEX rather than REX or VEX/XOP, with the
80 * V field set to 1111b.
82 * EVEX prefixes are followed by the sequence:
83 * \cm\wlp\tup where cm is:
85 * c = 2 for EVEX and mmmm is the M field (EVEX.P0[3:0])
88 * [l0] ll = 0 (.128, .lz)
91 * [lig] ll = 3 for EVEX.L'L don't care (always assembled as 0)
93 * [w0] ww = 0 for W = 0
94 * [w1] ww = 1 for W = 1
95 * [wig] ww = 2 for W don't care (always assembled as 0)
96 * [ww] ww = 3 for W used as REX.W
98 * [p0] pp = 0 for no prefix
99 * [60] pp = 1 for legacy prefix 60
103 * tup is tuple type for Disp8*N from %tuple_codes in insns.pl
104 * (compressed displacement encoding)
106 * \254..\257 id,s a signed 32-bit operand to be extended to 64 bits.
107 * \260..\263 this instruction uses VEX/XOP rather than REX, with the
108 * V field taken from operand 0..3.
109 * \270 this instruction uses VEX/XOP rather than REX, with the
110 * V field set to 1111b.
112 * VEX/XOP prefixes are followed by the sequence:
113 * \tmm\wlp where mm is the M field; and wlp is:
115 * [l0] ll = 0 for L = 0 (.128, .lz)
116 * [l1] ll = 1 for L = 1 (.256)
117 * [lig] ll = 2 for L don't care (always assembled as 0)
119 * [w0] ww = 0 for W = 0
120 * [w1 ] ww = 1 for W = 1
121 * [wig] ww = 2 for W don't care (always assembled as 0)
122 * [ww] ww = 3 for W used as REX.W
124 * t = 0 for VEX (C4/C5), t = 1 for XOP (8F).
126 * \271 hlexr instruction takes XRELEASE (F3) with or without lock
127 * \272 hlenl instruction takes XACQUIRE/XRELEASE with or without lock
128 * \273 hle instruction takes XACQUIRE/XRELEASE with lock only
129 * \274..\277 ib,s a byte immediate operand, from operand 0..3, sign-extended
130 * to the operand size (if o16/o32/o64 present) or the bit size
131 * \310 a16 indicates fixed 16-bit address size, i.e. optional 0x67.
132 * \311 a32 indicates fixed 32-bit address size, i.e. optional 0x67.
133 * \312 adf (disassembler only) invalid with non-default address size.
134 * \313 a64 indicates fixed 64-bit address size, 0x67 invalid.
135 * \314 norexb (disassembler only) invalid with REX.B
136 * \315 norexx (disassembler only) invalid with REX.X
137 * \316 norexr (disassembler only) invalid with REX.R
138 * \317 norexw (disassembler only) invalid with REX.W
139 * \320 o16 indicates fixed 16-bit operand size, i.e. optional 0x66.
140 * \321 o32 indicates fixed 32-bit operand size, i.e. optional 0x66.
141 * \322 odf indicates that this instruction is only valid when the
142 * operand size is the default (instruction to disassembler,
143 * generates no code in the assembler)
144 * \323 o64nw indicates fixed 64-bit operand size, REX on extensions only.
145 * \324 o64 indicates 64-bit operand size requiring REX prefix.
146 * \325 nohi instruction which always uses spl/bpl/sil/dil
147 * \326 nof3 instruction not valid with 0xF3 REP prefix. Hint for
148 disassembler only; for SSE instructions.
149 * \330 a literal byte follows in the code stream, to be added
150 * to the condition code value of the instruction.
151 * \331 norep instruction not valid with REP prefix. Hint for
152 * disassembler only; for SSE instructions.
153 * \332 f2i REP prefix (0xF2 byte) used as opcode extension.
154 * \333 f3i REP prefix (0xF3 byte) used as opcode extension.
155 * \334 rex.l LOCK prefix used as REX.R (used in non-64-bit mode)
156 * \335 repe disassemble a rep (0xF3 byte) prefix as repe not rep.
157 * \336 mustrep force a REP(E) prefix (0xF3) even if not specified.
158 * \337 mustrepne force a REPNE prefix (0xF2) even if not specified.
159 * \336-\337 are still listed as prefixes in the disassembler.
160 * \340 resb reserve <operand 0> bytes of uninitialized storage.
161 * Operand 0 had better be a segmentless constant.
162 * \341 wait this instruction needs a WAIT "prefix"
163 * \360 np no SSE prefix (== \364\331)
164 * \361 66 SSE prefix (== \366\331)
165 * \364 !osp operand-size prefix (0x66) not permitted
166 * \365 !asp address-size prefix (0x67) not permitted
167 * \366 operand-size prefix (0x66) used as opcode extension
168 * \367 address-size prefix (0x67) used as opcode extension
169 * \370,\371 jcc8 match only if operand 0 meets byte jump criteria.
170 * jmp8 370 is used for Jcc, 371 is used for JMP.
171 * \373 jlen assemble 0x03 if bits==16, 0x05 if bits==32;
172 * used for conditional jump over longer jump
173 * \374 vsibx|vm32x|vm64x this instruction takes an XMM VSIB memory EA
174 * \375 vsiby|vm32y|vm64y this instruction takes an YMM VSIB memory EA
175 * \376 vsibz|vm32z|vm64z this instruction takes an ZMM VSIB memory EA
178 #include "compiler.h"
187 #include "assemble.h"
195 * Matching errors. These should be sorted so that more specific
196 * errors come later in the sequence.
209 * Matching success; the conditional ones first
211 MOK_JUMP
, /* Matching OK but needs jmp_match() */
212 MOK_GOOD
/* Matching unconditionally OK */
216 enum ea_type type
; /* what kind of EA is this? */
217 int sib_present
; /* is a SIB byte necessary? */
218 int bytes
; /* # of bytes of offset needed */
219 int size
; /* lazy - this is sib+bytes+1 */
220 uint8_t modrm
, sib
, rex
, rip
; /* the bytes themselves */
221 int8_t disp8
; /* compressed displacement for EVEX */
224 #define GEN_SIB(scale, index, base) \
225 (((scale) << 6) | ((index) << 3) | ((base)))
227 #define GEN_MODRM(mod, reg, rm) \
228 (((mod) << 6) | (((reg) & 7) << 3) | ((rm) & 7))
230 static int64_t calcsize(int32_t, int64_t, int, insn
*,
231 const struct itemplate
*);
232 static int emit_prefix(struct out_data
*data
, const int bits
, insn
*ins
);
233 static void gencode(struct out_data
*data
, insn
*ins
);
234 static enum match_result
find_match(const struct itemplate
**tempp
,
236 int32_t segment
, int64_t offset
, int bits
);
237 static enum match_result
matches(const struct itemplate
*, insn
*, int bits
);
238 static opflags_t
regflag(const operand
*);
239 static int32_t regval(const operand
*);
240 static int rexflags(int, opflags_t
, int);
241 static int op_rexflags(const operand
*, int);
242 static int op_evexflags(const operand
*, int, uint8_t);
243 static void add_asp(insn
*, int);
245 static enum ea_type
process_ea(operand
*, ea
*, int, int, opflags_t
, insn
*);
247 static inline bool absolute_op(const struct operand
*o
)
249 return o
->segment
== NO_SEG
&& o
->wrt
== NO_SEG
&&
250 !(o
->opflags
& OPFLAG_RELATIVE
);
253 static int has_prefix(insn
* ins
, enum prefix_pos pos
, int prefix
)
255 return ins
->prefixes
[pos
] == prefix
;
258 static void assert_no_prefix(insn
* ins
, enum prefix_pos pos
)
260 if (ins
->prefixes
[pos
])
261 nasm_error(ERR_NONFATAL
, "invalid %s prefix",
262 prefix_name(ins
->prefixes
[pos
]));
265 static const char *size_name(int size
)
289 static void warn_overflow(int size
)
291 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
292 "%s data exceeds bounds", size_name(size
));
295 static void warn_overflow_const(int64_t data
, int size
)
297 if (overflow_general(data
, size
))
301 static void warn_overflow_opd(const struct operand
*o
, int size
)
303 if (absolute_op(o
)) {
304 if (overflow_general(o
->offset
, size
))
309 static void warn_overflow_out(int64_t data
, int size
, enum out_sign sign
)
315 err
= overflow_general(data
, size
);
318 err
= overflow_signed(data
, size
);
321 err
= overflow_unsigned(data
, size
);
333 * This routine wrappers the real output format's output routine,
334 * in order to pass a copy of the data off to the listing file
335 * generator at the same time, flatten unnecessary relocations,
336 * and verify backend compatibility.
338 static void out(struct out_data
*data
)
340 static int32_t lineno
= 0; /* static!!! */
341 static const char *lnfname
= NULL
;
343 const int amax
= ofmt
->maxbits
>> 3; /* Maximum address size in bytes */
348 uint64_t size
= data
->size
;
350 int32_t fixseg
; /* Segment for which to produce fixed data */
353 return; /* Nothing to do */
356 * Convert addresses to RAWDATA if possible
357 * XXX: not all backends want this for global symbols!!!!
359 switch (data
->type
) {
361 addrval
= data
->toffset
;
362 fixseg
= NO_SEG
; /* Absolute address is fixed data */
366 addrval
= data
->toffset
- data
->relbase
;
367 fixseg
= data
->segment
; /* Our own segment is fixed data */
372 nasm_assert(asize
<= 8);
373 if (data
->tsegment
== fixseg
&& data
->twrt
== NO_SEG
) {
374 uint8_t *q
= xdata
.b
;
376 warn_overflow_out(addrval
, asize
, data
->sign
);
378 WRITEADDR(q
, addrval
, asize
);
379 data
->data
= xdata
.b
;
380 data
->type
= OUT_RAWDATA
;
381 asize
= 0; /* No longer an address */
386 asize
= 0; /* Not an address */
393 * this call to src_get determines when we call the
394 * debug-format-specific "linenum" function
395 * it updates lineno and lnfname to the current values
396 * returning 0 if "same as last time", -2 if lnfname
397 * changed, and the amount by which lineno changed,
398 * if it did. thus, these variables must be static
401 if (src_get(&lineno
, &lnfname
))
402 dfmt
->linenum(lnfname
, lineno
, data
->segment
);
404 if (asize
&& asize
> amax
) {
405 if (data
->type
!= OUT_ADDRESS
|| data
->sign
== OUT_SIGNED
) {
406 nasm_error(ERR_NONFATAL
,
407 "%d-bit signed relocation unsupported by output format %s\n",
408 asize
<< 3, ofmt
->shortname
);
410 nasm_error(ERR_WARNING
| ERR_WARN_ZEXTRELOC
,
411 "%d-bit unsigned relocation zero-extended from %d bits\n",
412 asize
<< 3, ofmt
->maxbits
);
415 data
->insoffs
+= amax
;
416 data
->offset
+= amax
;
417 data
->size
= size
= asize
- amax
;
419 data
->data
= zero_buffer
;
420 data
->type
= OUT_RAWDATA
;
424 data
->offset
+= size
;
425 data
->insoffs
+= size
;
428 static inline void out_rawdata(struct out_data
*data
, const void *rawdata
,
431 data
->type
= OUT_RAWDATA
;
432 data
->data
= rawdata
;
437 static void out_rawbyte(struct out_data
*data
, uint8_t byte
)
439 data
->type
= OUT_RAWDATA
;
445 static inline void out_reserve(struct out_data
*data
, uint64_t size
)
447 data
->type
= OUT_RESERVE
;
452 static inline void out_imm(struct out_data
*data
, const struct operand
*opx
,
453 int size
, enum out_sign sign
)
456 (opx
->opflags
& OPFLAG_RELATIVE
) ? OUT_RELADDR
: OUT_ADDRESS
;
459 data
->toffset
= opx
->offset
;
460 data
->tsegment
= opx
->segment
;
461 data
->twrt
= opx
->wrt
;
463 * XXX: improve this if at some point in the future we can
464 * distinguish the subtrahend in expressions like [foo - bar]
465 * where bar is a symbol in the current segment. However, at the
466 * current point, if OPFLAG_RELATIVE is set that subtraction has
473 static void out_reladdr(struct out_data
*data
, const struct operand
*opx
,
476 if (opx
->opflags
& OPFLAG_RELATIVE
)
477 nasm_error(ERR_NONFATAL
, "invalid use of self-relative expression");
479 data
->type
= OUT_RELADDR
;
480 data
->sign
= OUT_SIGNED
;
482 data
->toffset
= opx
->offset
;
483 data
->tsegment
= opx
->segment
;
484 data
->twrt
= opx
->wrt
;
485 data
->relbase
= data
->offset
+ (data
->inslen
- data
->insoffs
);
489 static inline void out_segment(struct out_data
*data
,
490 const struct operand
*opx
)
492 data
->type
= OUT_SEGMENT
;
493 data
->sign
= OUT_UNSIGNED
;
495 data
->toffset
= opx
->offset
;
496 data
->tsegment
= ofmt
->segbase(opx
->segment
+ 1);
497 data
->twrt
= opx
->wrt
;
501 static bool jmp_match(int32_t segment
, int64_t offset
, int bits
,
502 insn
* ins
, const struct itemplate
*temp
)
505 const uint8_t *code
= temp
->code
;
509 if (((c
& ~1) != 0370) || (ins
->oprs
[0].type
& STRICT
))
513 if (optimizing
< 0 && c
== 0371)
516 isize
= calcsize(segment
, offset
, bits
, ins
, temp
);
518 if (ins
->oprs
[0].opflags
& OPFLAG_UNKNOWN
)
519 /* Be optimistic in pass 1 */
522 if (ins
->oprs
[0].segment
!= segment
)
525 isize
= ins
->oprs
[0].offset
- offset
- isize
; /* isize is delta */
526 is_byte
= (isize
>= -128 && isize
<= 127); /* is it byte size? */
528 if (is_byte
&& c
== 0371 && ins
->prefixes
[PPS_REP
] == P_BND
) {
529 /* jmp short (opcode eb) cannot be used with bnd prefix. */
530 ins
->prefixes
[PPS_REP
] = P_none
;
531 nasm_error(ERR_WARNING
| ERR_WARN_BND
| ERR_PASS2
,
532 "jmp short does not init bnd regs - bnd prefix dropped.");
538 /* This is totally just a wild guess what is reasonable... */
539 #define INCBIN_MAX_BUF (ZERO_BUF_SIZE * 16)
541 int64_t assemble(int32_t segment
, int64_t start
, int bits
, insn
*instruction
)
543 struct out_data data
;
544 const struct itemplate
*temp
;
547 int64_t wsize
; /* size for DB etc. */
551 data
.segment
= segment
;
553 data
.sign
= OUT_WRAP
;
556 wsize
= idata_bytes(instruction
->opcode
);
562 int32_t t
= instruction
->times
;
564 nasm_panic(0, "instruction->times < 0 (%"PRId32
") in assemble()", t
);
566 while (t
--) { /* repeat TIMES times */
567 list_for_each(e
, instruction
->eops
) {
568 if (e
->type
== EOT_DB_NUMBER
) {
570 nasm_error(ERR_NONFATAL
,
571 "integer supplied to a DT, DO or DY"
575 data
.type
= e
->relative
? OUT_RELADDR
: OUT_ADDRESS
;
576 data
.inslen
= data
.size
= wsize
;
577 data
.toffset
= e
->offset
;
578 data
.tsegment
= e
->segment
;
583 } else if (e
->type
== EOT_DB_STRING
||
584 e
->type
== EOT_DB_STRING_FREE
) {
585 int align
= e
->stringlen
% wsize
;
587 align
= wsize
- align
;
590 data
.inslen
= e
->stringlen
+ align
;
592 out_rawdata(&data
, e
->stringval
, e
->stringlen
);
593 out_rawdata(&data
, zero_buffer
, align
);
596 if (t
> 0 && t
== instruction
->times
- 1) {
597 lfmt
->set_offset(data
.offset
);
598 lfmt
->uplevel(LIST_TIMES
);
601 if (instruction
->times
> 1)
602 lfmt
->downlevel(LIST_TIMES
);
603 } else if (instruction
->opcode
== I_INCBIN
) {
604 const char *fname
= instruction
->eops
->stringval
;
606 size_t t
= instruction
->times
;
609 const void *map
= NULL
;
611 size_t blk
= 0; /* Buffered I/O block size */
612 size_t m
= 0; /* Bytes last read */
614 fp
= nasm_open_read(fname
, NF_BINARY
|NF_FORMAP
);
616 nasm_error(ERR_NONFATAL
, "`incbin': unable to open file `%s'",
621 len
= nasm_file_size(fp
);
623 if (len
== (off_t
)-1) {
624 nasm_error(ERR_NONFATAL
, "`incbin': unable to get length of file `%s'",
629 if (instruction
->eops
->next
) {
630 base
= instruction
->eops
->next
->offset
;
635 if (instruction
->eops
->next
->next
&&
636 len
> (off_t
)instruction
->eops
->next
->next
->offset
)
637 len
= (off_t
)instruction
->eops
->next
->next
->offset
;
641 lfmt
->set_offset(data
.offset
);
642 lfmt
->uplevel(LIST_INCBIN
);
647 /* Try to map file data */
648 map
= nasm_map_file(fp
, base
, len
);
650 blk
= len
< (off_t
)INCBIN_MAX_BUF
? (size_t)len
: INCBIN_MAX_BUF
;
651 buf
= nasm_malloc(blk
);
656 * Consider these irrelevant for INCBIN, since it is fully
657 * possible that these might be (way) bigger than an int
658 * can hold; there is, however, no reason to widen these
659 * types just for INCBIN. data.inslen == 0 signals to the
660 * backend that these fields are meaningless, if at all
667 out_rawdata(&data
, map
, len
);
668 } else if ((off_t
)m
== len
) {
669 out_rawdata(&data
, buf
, len
);
673 if (fseeko(fp
, base
, SEEK_SET
) < 0 || ferror(fp
)) {
674 nasm_error(ERR_NONFATAL
,
675 "`incbin': unable to seek on file `%s'",
680 m
= fread(buf
, 1, l
< (off_t
)blk
? (size_t)l
: blk
, fp
);
681 if (!m
|| feof(fp
)) {
683 * This shouldn't happen unless the file
684 * actually changes while we are reading
687 nasm_error(ERR_NONFATAL
,
688 "`incbin': unexpected EOF while"
689 " reading file `%s'", fname
);
692 out_rawdata(&data
, buf
, m
);
698 lfmt
->downlevel(LIST_INCBIN
);
699 if (instruction
->times
> 1) {
700 lfmt
->set_offset(data
.offset
);
701 lfmt
->uplevel(LIST_TIMES
);
702 lfmt
->downlevel(LIST_TIMES
);
705 nasm_error(ERR_NONFATAL
,
706 "`incbin': error while"
707 " reading file `%s'", fname
);
713 nasm_unmap_file(map
, len
);
718 /* "Real" instruction */
720 /* Check to see if we need an address-size prefix */
721 add_asp(instruction
, bits
);
723 m
= find_match(&temp
, instruction
, data
.segment
, data
.offset
, bits
);
727 int64_t insn_size
= calcsize(data
.segment
, data
.offset
,
728 bits
, instruction
, temp
);
729 itimes
= instruction
->times
;
730 if (insn_size
< 0) /* shouldn't be, on pass two */
731 nasm_panic(0, "errors made it through from pass one");
738 data
.inslen
= insn_size
;
740 gencode(&data
, instruction
);
741 nasm_assert(data
.insoffs
== insn_size
);
743 if (itimes
> 0 && itimes
== instruction
->times
- 1) {
744 lfmt
->set_offset(data
.offset
);
745 lfmt
->uplevel(LIST_TIMES
);
748 if (instruction
->times
> 1)
749 lfmt
->downlevel(LIST_TIMES
);
753 case MERR_OPSIZEMISSING
:
754 nasm_error(ERR_NONFATAL
, "operation size not specified");
756 case MERR_OPSIZEMISMATCH
:
757 nasm_error(ERR_NONFATAL
, "mismatch in operand sizes");
759 case MERR_BRNUMMISMATCH
:
760 nasm_error(ERR_NONFATAL
,
761 "mismatch in the number of broadcasting elements");
764 nasm_error(ERR_NONFATAL
, "no instruction for this cpu level");
767 nasm_error(ERR_NONFATAL
, "instruction not supported in %d-bit mode",
770 case MERR_ENCMISMATCH
:
771 nasm_error(ERR_NONFATAL
, "specific encoding scheme not available");
774 nasm_error(ERR_NONFATAL
, "bnd prefix is not allowed");
777 nasm_error(ERR_NONFATAL
, "%s prefix is not allowed",
778 (has_prefix(instruction
, PPS_REP
, P_REPNE
) ?
782 nasm_error(ERR_NONFATAL
,
783 "invalid combination of opcode and operands");
788 return data
.offset
- start
;
791 int64_t insn_size(int32_t segment
, int64_t offset
, int bits
, insn
*instruction
)
793 const struct itemplate
*temp
;
796 if (instruction
->opcode
== I_none
)
799 if (instruction
->opcode
== I_DB
|| instruction
->opcode
== I_DW
||
800 instruction
->opcode
== I_DD
|| instruction
->opcode
== I_DQ
||
801 instruction
->opcode
== I_DT
|| instruction
->opcode
== I_DO
||
802 instruction
->opcode
== I_DY
) {
804 int32_t isize
, osize
, wsize
;
807 wsize
= idata_bytes(instruction
->opcode
);
809 list_for_each(e
, instruction
->eops
) {
813 if (e
->type
== EOT_DB_NUMBER
) {
815 warn_overflow_const(e
->offset
, wsize
);
816 } else if (e
->type
== EOT_DB_STRING
||
817 e
->type
== EOT_DB_STRING_FREE
)
818 osize
= e
->stringlen
;
820 align
= (-osize
) % wsize
;
823 isize
+= osize
+ align
;
828 if (instruction
->opcode
== I_INCBIN
) {
829 const char *fname
= instruction
->eops
->stringval
;
832 len
= nasm_file_size_by_path(fname
);
833 if (len
== (off_t
)-1) {
834 nasm_error(ERR_NONFATAL
, "`incbin': unable to get length of file `%s'",
839 if (instruction
->eops
->next
) {
840 if (len
<= (off_t
)instruction
->eops
->next
->offset
) {
843 len
-= instruction
->eops
->next
->offset
;
844 if (instruction
->eops
->next
->next
&&
845 len
> (off_t
)instruction
->eops
->next
->next
->offset
) {
846 len
= (off_t
)instruction
->eops
->next
->next
->offset
;
854 /* Check to see if we need an address-size prefix */
855 add_asp(instruction
, bits
);
857 m
= find_match(&temp
, instruction
, segment
, offset
, bits
);
859 /* we've matched an instruction. */
860 return calcsize(segment
, offset
, bits
, instruction
, temp
);
862 return -1; /* didn't match any instruction */
866 static void bad_hle_warn(const insn
* ins
, uint8_t hleok
)
868 enum prefixes rep_pfx
= ins
->prefixes
[PPS_REP
];
869 enum whatwarn
{ w_none
, w_lock
, w_inval
} ww
;
870 static const enum whatwarn warn
[2][4] =
872 { w_inval
, w_inval
, w_none
, w_lock
}, /* XACQUIRE */
873 { w_inval
, w_none
, w_none
, w_lock
}, /* XRELEASE */
877 n
= (unsigned int)rep_pfx
- P_XACQUIRE
;
879 return; /* Not XACQUIRE/XRELEASE */
882 if (!is_class(MEMORY
, ins
->oprs
[0].type
))
883 ww
= w_inval
; /* HLE requires operand 0 to be memory */
890 if (ins
->prefixes
[PPS_LOCK
] != P_LOCK
) {
891 nasm_error(ERR_WARNING
| ERR_WARN_HLE
| ERR_PASS2
,
892 "%s with this instruction requires lock",
893 prefix_name(rep_pfx
));
898 nasm_error(ERR_WARNING
| ERR_WARN_HLE
| ERR_PASS2
,
899 "%s invalid with this instruction",
900 prefix_name(rep_pfx
));
905 /* Common construct */
906 #define case3(x) case (x): case (x)+1: case (x)+2
907 #define case4(x) case3(x): case (x)+3
909 static int64_t calcsize(int32_t segment
, int64_t offset
, int bits
,
910 insn
* ins
, const struct itemplate
*temp
)
912 const uint8_t *codes
= temp
->code
;
921 bool lockcheck
= true;
922 enum reg_enum mib_index
= R_none
; /* For a separate index MIB reg form */
924 ins
->rex
= 0; /* Ensure REX is reset */
925 eat
= EA_SCALAR
; /* Expect a scalar EA */
926 memset(ins
->evex_p
, 0, 3); /* Ensure EVEX is reset */
928 if (ins
->prefixes
[PPS_OSIZE
] == P_O64
)
931 (void)segment
; /* Don't warn that this parameter is unused */
932 (void)offset
; /* Don't warn that this parameter is unused */
936 op1
= (c
& 3) + ((opex
& 1) << 2);
937 op2
= ((c
>> 3) & 3) + ((opex
& 2) << 1);
938 opx
= &ins
->oprs
[op1
];
939 opex
= 0; /* For the next iteration */
943 codes
+= c
, length
+= c
;
952 op_rexflags(opx
, REX_B
|REX_H
|REX_P
|REX_W
);
957 /* this is an index reg of MIB operand */
958 mib_index
= opx
->basereg
;
971 if (opx
->type
& (BITS16
| BITS32
| BITS64
))
972 length
+= (opx
->type
& BITS16
) ? 2 : 4;
974 length
+= (bits
== 16) ? 2 : 4;
982 length
+= ins
->addr_size
>> 3;
990 length
+= 8; /* MOV reg64/imm */
998 if (opx
->type
& (BITS16
| BITS32
| BITS64
))
999 length
+= (opx
->type
& BITS16
) ? 2 : 4;
1001 length
+= (bits
== 16) ? 2 : 4;
1024 ins
->vexreg
= regval(opx
);
1025 ins
->evex_p
[2] |= op_evexflags(opx
, EVEX_P2VP
, 2); /* High-16 NDS */
1026 ins
->vex_cm
= *codes
++;
1027 ins
->vex_wlp
= *codes
++;
1028 ins
->evex_tuple
= (*codes
++ - 0300);
1034 ins
->vex_cm
= *codes
++;
1035 ins
->vex_wlp
= *codes
++;
1036 ins
->evex_tuple
= (*codes
++ - 0300);
1045 ins
->vexreg
= regval(opx
);
1046 ins
->vex_cm
= *codes
++;
1047 ins
->vex_wlp
= *codes
++;
1053 ins
->vex_cm
= *codes
++;
1054 ins
->vex_wlp
= *codes
++;
1071 length
+= (bits
!= 16) && !has_prefix(ins
, PPS_ASIZE
, P_A16
);
1075 length
+= (bits
!= 32) && !has_prefix(ins
, PPS_ASIZE
, P_A32
);
1082 if (bits
!= 64 || has_prefix(ins
, PPS_ASIZE
, P_A16
) ||
1083 has_prefix(ins
, PPS_ASIZE
, P_A32
))
1092 enum prefixes pfx
= ins
->prefixes
[PPS_OSIZE
];
1096 nasm_error(ERR_WARNING
| ERR_PASS2
, "invalid operand size prefix");
1098 ins
->prefixes
[PPS_OSIZE
] = P_O16
;
1104 enum prefixes pfx
= ins
->prefixes
[PPS_OSIZE
];
1108 nasm_error(ERR_WARNING
| ERR_PASS2
, "invalid operand size prefix");
1110 ins
->prefixes
[PPS_OSIZE
] = P_O32
;
1152 if (!ins
->prefixes
[PPS_REP
])
1153 ins
->prefixes
[PPS_REP
] = P_REP
;
1157 if (!ins
->prefixes
[PPS_REP
])
1158 ins
->prefixes
[PPS_REP
] = P_REPNE
;
1162 if (!absolute_op(&ins
->oprs
[0]))
1163 nasm_error(ERR_NONFATAL
, "attempt to reserve non-constant"
1164 " quantity of BSS space");
1165 else if (ins
->oprs
[0].opflags
& OPFLAG_FORWARD
)
1166 nasm_error(ERR_WARNING
| ERR_PASS1
,
1167 "forward reference in RESx can have unpredictable results");
1169 length
+= ins
->oprs
[0].offset
;
1173 if (!ins
->prefixes
[PPS_WAIT
])
1174 ins
->prefixes
[PPS_WAIT
] = P_WAIT
;
1229 struct operand
*opy
= &ins
->oprs
[op2
];
1230 struct operand
*op_er_sae
;
1232 ea_data
.rex
= 0; /* Ensure ea.REX is initially 0 */
1235 /* pick rfield from operand b (opx) */
1236 rflags
= regflag(opx
);
1237 rfield
= nasm_regvals
[opx
->basereg
];
1243 /* EVEX.b1 : evex_brerop contains the operand position */
1244 op_er_sae
= (ins
->evex_brerop
>= 0 ?
1245 &ins
->oprs
[ins
->evex_brerop
] : NULL
);
1247 if (op_er_sae
&& (op_er_sae
->decoflags
& (ER
| SAE
))) {
1249 ins
->evex_p
[2] |= EVEX_P2B
;
1250 if (op_er_sae
->decoflags
& ER
) {
1251 /* set EVEX.RC (rounding control) */
1252 ins
->evex_p
[2] |= ((ins
->evex_rm
- BRC_RN
) << 5)
1256 /* set EVEX.L'L (vector length) */
1257 ins
->evex_p
[2] |= ((ins
->vex_wlp
<< (5 - 2)) & EVEX_P2LL
);
1258 ins
->evex_p
[1] |= ((ins
->vex_wlp
<< (7 - 4)) & EVEX_P1W
);
1259 if (opy
->decoflags
& BRDCAST_MASK
) {
1261 ins
->evex_p
[2] |= EVEX_P2B
;
1265 if (itemp_has(temp
, IF_MIB
)) {
1266 opy
->eaflags
|= EAF_MIB
;
1268 * if a separate form of MIB (ICC style) is used,
1269 * the index reg info is merged into mem operand
1271 if (mib_index
!= R_none
) {
1272 opy
->indexreg
= mib_index
;
1274 opy
->hintbase
= mib_index
;
1275 opy
->hinttype
= EAH_NOTBASE
;
1279 if (process_ea(opy
, &ea_data
, bits
,
1280 rfield
, rflags
, ins
) != eat
) {
1281 nasm_error(ERR_NONFATAL
, "invalid effective address");
1284 ins
->rex
|= ea_data
.rex
;
1285 length
+= ea_data
.size
;
1291 nasm_panic(0, "internal instruction table corrupt"
1292 ": instruction code \\%o (0x%02X) given", c
, c
);
1297 ins
->rex
&= rex_mask
;
1299 if (ins
->rex
& REX_NH
) {
1300 if (ins
->rex
& REX_H
) {
1301 nasm_error(ERR_NONFATAL
, "instruction cannot use high registers");
1304 ins
->rex
&= ~REX_P
; /* Don't force REX prefix due to high reg */
1307 switch (ins
->prefixes
[PPS_VEX
]) {
1309 if (!(ins
->rex
& REX_EV
))
1314 if (!(ins
->rex
& REX_V
))
1321 if (ins
->rex
& (REX_V
| REX_EV
)) {
1322 int bad32
= REX_R
|REX_W
|REX_X
|REX_B
;
1324 if (ins
->rex
& REX_H
) {
1325 nasm_error(ERR_NONFATAL
, "cannot use high register in AVX instruction");
1328 switch (ins
->vex_wlp
& 060) {
1342 if (bits
!= 64 && ((ins
->rex
& bad32
) || ins
->vexreg
> 7)) {
1343 nasm_error(ERR_NONFATAL
, "invalid operands in non-64-bit mode");
1345 } else if (!(ins
->rex
& REX_EV
) &&
1346 ((ins
->vexreg
> 15) || (ins
->evex_p
[0] & 0xf0))) {
1347 nasm_error(ERR_NONFATAL
, "invalid high-16 register in non-AVX-512");
1350 if (ins
->rex
& REX_EV
)
1352 else if (ins
->vex_cm
!= 1 || (ins
->rex
& (REX_W
|REX_X
|REX_B
)) ||
1353 ins
->prefixes
[PPS_VEX
] == P_VEX3
)
1357 } else if (ins
->rex
& REX_MASK
) {
1358 if (ins
->rex
& REX_H
) {
1359 nasm_error(ERR_NONFATAL
, "cannot use high register in rex instruction");
1361 } else if (bits
== 64) {
1363 } else if ((ins
->rex
& REX_L
) &&
1364 !(ins
->rex
& (REX_P
|REX_W
|REX_X
|REX_B
)) &&
1365 iflag_ffs(&cpu
) >= IF_X86_64
) {
1367 assert_no_prefix(ins
, PPS_LOCK
);
1368 lockcheck
= false; /* Already errored, no need for warning */
1371 nasm_error(ERR_NONFATAL
, "invalid operands in non-64-bit mode");
1376 if (has_prefix(ins
, PPS_LOCK
, P_LOCK
) && lockcheck
&&
1377 (!itemp_has(temp
,IF_LOCK
) || !is_class(MEMORY
, ins
->oprs
[0].type
))) {
1378 nasm_error(ERR_WARNING
| ERR_WARN_LOCK
| ERR_PASS2
,
1379 "instruction is not lockable");
1382 bad_hle_warn(ins
, hleok
);
1385 * when BND prefix is set by DEFAULT directive,
1386 * BND prefix is added to every appropriate instruction line
1387 * unless it is overridden by NOBND prefix.
1390 (itemp_has(temp
, IF_BND
) && !has_prefix(ins
, PPS_REP
, P_NOBND
)))
1391 ins
->prefixes
[PPS_REP
] = P_BND
;
1394 * Add length of legacy prefixes
1396 length
+= emit_prefix(NULL
, bits
, ins
);
1401 static inline void emit_rex(struct out_data
*data
, insn
*ins
)
1403 if (data
->bits
== 64) {
1404 if ((ins
->rex
& REX_MASK
) &&
1405 !(ins
->rex
& (REX_V
| REX_EV
)) &&
1407 uint8_t rex
= (ins
->rex
& REX_MASK
) | REX_P
;
1408 out_rawbyte(data
, rex
);
1409 ins
->rex_done
= true;
1414 static int emit_prefix(struct out_data
*data
, const int bits
, insn
*ins
)
1419 for (j
= 0; j
< MAXPREFIX
; j
++) {
1421 switch (ins
->prefixes
[j
]) {
1442 nasm_error(ERR_WARNING
| ERR_PASS2
,
1443 "cs segment base generated, but will be ignored in 64-bit mode");
1449 nasm_error(ERR_WARNING
| ERR_PASS2
,
1450 "ds segment base generated, but will be ignored in 64-bit mode");
1456 nasm_error(ERR_WARNING
| ERR_PASS2
,
1457 "es segment base generated, but will be ignored in 64-bit mode");
1469 nasm_error(ERR_WARNING
| ERR_PASS2
,
1470 "ss segment base generated, but will be ignored in 64-bit mode");
1476 nasm_error(ERR_NONFATAL
,
1477 "segr6 and segr7 cannot be used as prefixes");
1481 nasm_error(ERR_NONFATAL
,
1482 "16-bit addressing is not supported "
1484 } else if (bits
!= 16)
1493 nasm_error(ERR_NONFATAL
,
1494 "64-bit addressing is only supported "
1522 nasm_panic(0, "invalid instruction prefix");
1526 out_rawbyte(data
, c
);
1533 static void gencode(struct out_data
*data
, insn
*ins
)
1539 struct operand
*opx
;
1540 const uint8_t *codes
= data
->itemp
->code
;
1542 enum ea_type eat
= EA_SCALAR
;
1544 const int bits
= data
->bits
;
1546 ins
->rex_done
= false;
1548 emit_prefix(data
, bits
, ins
);
1552 op1
= (c
& 3) + ((opex
& 1) << 2);
1553 op2
= ((c
>> 3) & 3) + ((opex
& 2) << 1);
1554 opx
= &ins
->oprs
[op1
];
1555 opex
= 0; /* For the next iteration */
1563 emit_rex(data
, ins
);
1564 out_rawdata(data
, codes
, c
);
1575 emit_rex(data
, ins
);
1576 out_rawbyte(data
, *codes
++ + (regval(opx
) & 7));
1583 if (opx
->offset
< -256 || opx
->offset
> 255)
1584 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1585 "byte value exceeds bounds");
1586 out_imm(data
, opx
, 1, OUT_WRAP
);
1590 if (opx
->offset
< 0 || opx
->offset
> 255)
1591 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1592 "unsigned byte value exceeds bounds");
1593 out_imm(data
, opx
, 1, OUT_UNSIGNED
);
1597 warn_overflow_opd(opx
, 2);
1598 out_imm(data
, opx
, 2, OUT_WRAP
);
1602 if (opx
->type
& (BITS16
| BITS32
))
1603 size
= (opx
->type
& BITS16
) ? 2 : 4;
1605 size
= (bits
== 16) ? 2 : 4;
1606 warn_overflow_opd(opx
, size
);
1607 out_imm(data
, opx
, size
, OUT_WRAP
);
1611 warn_overflow_opd(opx
, 4);
1612 out_imm(data
, opx
, 4, OUT_WRAP
);
1616 size
= ins
->addr_size
>> 3;
1617 warn_overflow_opd(opx
, size
);
1618 out_imm(data
, opx
, size
, OUT_WRAP
);
1622 if (opx
->segment
== data
->segment
) {
1623 int64_t delta
= opx
->offset
- data
->offset
1624 - (data
->inslen
- data
->insoffs
);
1625 if (delta
> 127 || delta
< -128)
1626 nasm_error(ERR_NONFATAL
, "short jump is out of range");
1628 out_reladdr(data
, opx
, 1);
1632 out_imm(data
, opx
, 8, OUT_WRAP
);
1636 out_reladdr(data
, opx
, 2);
1640 if (opx
->type
& (BITS16
| BITS32
| BITS64
))
1641 size
= (opx
->type
& BITS16
) ? 2 : 4;
1643 size
= (bits
== 16) ? 2 : 4;
1645 out_reladdr(data
, opx
, size
);
1649 out_reladdr(data
, opx
, 4);
1653 if (opx
->segment
== NO_SEG
)
1654 nasm_error(ERR_NONFATAL
, "value referenced by FAR is not"
1656 out_segment(data
, opx
);
1661 int mask
= ins
->prefixes
[PPS_VEX
] == P_EVEX
? 7 : 15;
1662 const struct operand
*opy
;
1665 opx
= &ins
->oprs
[c
>> 3];
1666 opy
= &ins
->oprs
[c
& 7];
1667 if (!absolute_op(opy
)) {
1668 nasm_error(ERR_NONFATAL
,
1669 "non-absolute expression not permitted as argument %d",
1671 } else if (opy
->offset
& ~mask
) {
1672 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1673 "is4 argument exceeds bounds");
1675 c
= opy
->offset
& mask
;
1681 opx
= &ins
->oprs
[c
>> 4];
1688 r
= nasm_regvals
[opx
->basereg
];
1689 out_rawbyte(data
, (r
<< 4) | ((r
& 0x10) >> 1) | c
);
1693 if (absolute_op(opx
) &&
1694 (int32_t)opx
->offset
!= (int64_t)opx
->offset
) {
1695 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1696 "signed dword immediate exceeds bounds");
1698 out_imm(data
, opx
, 4, OUT_SIGNED
);
1704 ins
->evex_p
[2] |= op_evexflags(&ins
->oprs
[0],
1705 EVEX_P2Z
| EVEX_P2AAA
, 2);
1706 ins
->evex_p
[2] ^= EVEX_P2VP
; /* 1's complement */
1708 /* EVEX.X can be set by either REX or EVEX for different reasons */
1709 bytes
[1] = ((((ins
->rex
& 7) << 5) |
1710 (ins
->evex_p
[0] & (EVEX_P0X
| EVEX_P0RP
))) ^ 0xf0) |
1711 (ins
->vex_cm
& EVEX_P0MM
);
1712 bytes
[2] = ((ins
->rex
& REX_W
) << (7 - 3)) |
1713 ((~ins
->vexreg
& 15) << 3) |
1714 (1 << 2) | (ins
->vex_wlp
& 3);
1715 bytes
[3] = ins
->evex_p
[2];
1716 out_rawdata(data
, bytes
, 4);
1722 if (ins
->vex_cm
!= 1 || (ins
->rex
& (REX_W
|REX_X
|REX_B
)) ||
1723 ins
->prefixes
[PPS_VEX
] == P_VEX3
) {
1724 bytes
[0] = (ins
->vex_cm
>> 6) ? 0x8f : 0xc4;
1725 bytes
[1] = (ins
->vex_cm
& 31) | ((~ins
->rex
& 7) << 5);
1726 bytes
[2] = ((ins
->rex
& REX_W
) << (7-3)) |
1727 ((~ins
->vexreg
& 15)<< 3) | (ins
->vex_wlp
& 07);
1728 out_rawdata(data
, bytes
, 3);
1731 bytes
[1] = ((~ins
->rex
& REX_R
) << (7-2)) |
1732 ((~ins
->vexreg
& 15) << 3) | (ins
->vex_wlp
& 07);
1733 out_rawdata(data
, bytes
, 2);
1747 if (absolute_op(opx
)) {
1748 if (ins
->rex
& REX_W
)
1750 else if (ins
->prefixes
[PPS_OSIZE
] == P_O16
)
1752 else if (ins
->prefixes
[PPS_OSIZE
] == P_O32
)
1757 um
= (uint64_t)2 << (s
-1);
1760 if (uv
> 127 && uv
< (uint64_t)-128 &&
1761 (uv
< um
-128 || uv
> um
-1)) {
1762 /* If this wasn't explicitly byte-sized, warn as though we
1763 * had fallen through to the imm16/32/64 case.
1765 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1766 "%s value exceeds bounds",
1767 (opx
->type
& BITS8
) ? "signed byte" :
1773 /* Output as a raw byte to avoid byte overflow check */
1774 out_rawbyte(data
, (uint8_t)uv
);
1776 out_imm(data
, opx
, 1, OUT_WRAP
); /* XXX: OUT_SIGNED? */
1785 if (bits
== 32 && !has_prefix(ins
, PPS_ASIZE
, P_A16
))
1786 out_rawbyte(data
, 0x67);
1790 if (bits
!= 32 && !has_prefix(ins
, PPS_ASIZE
, P_A32
))
1791 out_rawbyte(data
, 0x67);
1823 out_rawbyte(data
, *codes
++ ^ get_cond_opcode(ins
->condition
));
1831 out_rawbyte(data
, c
- 0332 + 0xF2);
1835 if (ins
->rex
& REX_R
)
1836 out_rawbyte(data
, 0xF0);
1837 ins
->rex
&= ~(REX_L
|REX_R
);
1848 if (ins
->oprs
[0].segment
!= NO_SEG
)
1849 nasm_panic(0, "non-constant BSS size in pass two");
1851 out_reserve(data
, ins
->oprs
[0].offset
);
1861 out_rawbyte(data
, 0x66);
1870 out_rawbyte(data
, c
- 0366 + 0x66);
1877 out_rawbyte(data
, bits
== 16 ? 3 : 5);
1909 struct operand
*opy
= &ins
->oprs
[op2
];
1912 /* pick rfield from operand b (opx) */
1913 rflags
= regflag(opx
);
1914 rfield
= nasm_regvals
[opx
->basereg
];
1916 /* rfield is constant */
1921 if (process_ea(opy
, &ea_data
, bits
,
1922 rfield
, rflags
, ins
) != eat
)
1923 nasm_error(ERR_NONFATAL
, "invalid effective address");
1926 *p
++ = ea_data
.modrm
;
1927 if (ea_data
.sib_present
)
1929 out_rawdata(data
, bytes
, p
- bytes
);
1932 * Make sure the address gets the right offset in case
1933 * the line breaks in the .lst file (BR 1197827)
1936 if (ea_data
.bytes
) {
1937 /* use compressed displacement, if available */
1938 if (ea_data
.disp8
) {
1939 out_rawbyte(data
, ea_data
.disp8
);
1940 } else if (ea_data
.rip
) {
1941 out_reladdr(data
, opy
, ea_data
.bytes
);
1943 int asize
= ins
->addr_size
>> 3;
1945 if (overflow_general(opy
->offset
, asize
) ||
1946 signed_bits(opy
->offset
, ins
->addr_size
) !=
1947 signed_bits(opy
->offset
, ea_data
.bytes
<< 3))
1948 warn_overflow(ea_data
.bytes
);
1950 out_imm(data
, opy
, ea_data
.bytes
,
1951 (asize
> ea_data
.bytes
) ? OUT_SIGNED
: OUT_UNSIGNED
);
1958 nasm_panic(0, "internal instruction table corrupt"
1959 ": instruction code \\%o (0x%02X) given", c
, c
);
1965 static opflags_t
regflag(const operand
* o
)
1967 if (!is_register(o
->basereg
))
1968 nasm_panic(0, "invalid operand passed to regflag()");
1969 return nasm_reg_flags
[o
->basereg
];
1972 static int32_t regval(const operand
* o
)
1974 if (!is_register(o
->basereg
))
1975 nasm_panic(0, "invalid operand passed to regval()");
1976 return nasm_regvals
[o
->basereg
];
1979 static int op_rexflags(const operand
* o
, int mask
)
1984 if (!is_register(o
->basereg
))
1985 nasm_panic(0, "invalid operand passed to op_rexflags()");
1987 flags
= nasm_reg_flags
[o
->basereg
];
1988 val
= nasm_regvals
[o
->basereg
];
1990 return rexflags(val
, flags
, mask
);
1993 static int rexflags(int val
, opflags_t flags
, int mask
)
1997 if (val
>= 0 && (val
& 8))
1998 rex
|= REX_B
|REX_X
|REX_R
;
2001 if (!(REG_HIGH
& ~flags
)) /* AH, CH, DH, BH */
2003 else if (!(REG8
& ~flags
) && val
>= 4) /* SPL, BPL, SIL, DIL */
2009 static int evexflags(int val
, decoflags_t deco
,
2010 int mask
, uint8_t byte
)
2016 if (val
>= 0 && (val
& 16))
2017 evex
|= (EVEX_P0RP
| EVEX_P0X
);
2020 if (val
>= 0 && (val
& 16))
2024 if (deco
& OPMASK_MASK
)
2025 evex
|= deco
& EVEX_P2AAA
;
2031 static int op_evexflags(const operand
* o
, int mask
, uint8_t byte
)
2035 val
= nasm_regvals
[o
->basereg
];
2037 return evexflags(val
, o
->decoflags
, mask
, byte
);
2040 static enum match_result
find_match(const struct itemplate
**tempp
,
2042 int32_t segment
, int64_t offset
, int bits
)
2044 const struct itemplate
*temp
;
2045 enum match_result m
, merr
;
2046 opflags_t xsizeflags
[MAX_OPERANDS
];
2047 bool opsizemissing
= false;
2048 int8_t broadcast
= instruction
->evex_brerop
;
2051 /* broadcasting uses a different data element size */
2052 for (i
= 0; i
< instruction
->operands
; i
++)
2054 xsizeflags
[i
] = instruction
->oprs
[i
].decoflags
& BRSIZE_MASK
;
2056 xsizeflags
[i
] = instruction
->oprs
[i
].type
& SIZE_MASK
;
2058 merr
= MERR_INVALOP
;
2060 for (temp
= nasm_instructions
[instruction
->opcode
];
2061 temp
->opcode
!= I_none
; temp
++) {
2062 m
= matches(temp
, instruction
, bits
);
2063 if (m
== MOK_JUMP
) {
2064 if (jmp_match(segment
, offset
, bits
, instruction
, temp
))
2068 } else if (m
== MERR_OPSIZEMISSING
&& !itemp_has(temp
, IF_SX
)) {
2070 * Missing operand size and a candidate for fuzzy matching...
2072 for (i
= 0; i
< temp
->operands
; i
++)
2074 xsizeflags
[i
] |= temp
->deco
[i
] & BRSIZE_MASK
;
2076 xsizeflags
[i
] |= temp
->opd
[i
] & SIZE_MASK
;
2077 opsizemissing
= true;
2081 if (merr
== MOK_GOOD
)
2085 /* No match, but see if we can get a fuzzy operand size match... */
2089 for (i
= 0; i
< instruction
->operands
; i
++) {
2091 * We ignore extrinsic operand sizes on registers, so we should
2092 * never try to fuzzy-match on them. This also resolves the case
2093 * when we have e.g. "xmmrm128" in two different positions.
2095 if (is_class(REGISTER
, instruction
->oprs
[i
].type
))
2098 /* This tests if xsizeflags[i] has more than one bit set */
2099 if ((xsizeflags
[i
] & (xsizeflags
[i
]-1)))
2100 goto done
; /* No luck */
2102 if (i
== broadcast
) {
2103 instruction
->oprs
[i
].decoflags
|= xsizeflags
[i
];
2104 instruction
->oprs
[i
].type
|= (xsizeflags
[i
] == BR_BITS32
?
2107 instruction
->oprs
[i
].type
|= xsizeflags
[i
]; /* Set the size */
2111 /* Try matching again... */
2112 for (temp
= nasm_instructions
[instruction
->opcode
];
2113 temp
->opcode
!= I_none
; temp
++) {
2114 m
= matches(temp
, instruction
, bits
);
2115 if (m
== MOK_JUMP
) {
2116 if (jmp_match(segment
, offset
, bits
, instruction
, temp
))
2123 if (merr
== MOK_GOOD
)
2132 static uint8_t get_broadcast_num(opflags_t opflags
, opflags_t brsize
)
2134 unsigned int opsize
= (opflags
& SIZE_MASK
) >> SIZE_SHIFT
;
2137 if (brsize
> BITS64
)
2138 nasm_error(ERR_FATAL
,
2139 "size of broadcasting element is greater than 64 bits");
2142 * The shift term is to take care of the extra BITS80 inserted
2143 * between BITS64 and BITS128.
2145 brcast_num
= ((opsize
/ (BITS64
>> SIZE_SHIFT
)) * (BITS64
/ brsize
))
2146 >> (opsize
> (BITS64
>> SIZE_SHIFT
));
2151 static enum match_result
matches(const struct itemplate
*itemp
,
2152 insn
*instruction
, int bits
)
2154 opflags_t size
[MAX_OPERANDS
], asize
;
2155 bool opsizemissing
= false;
2161 if (itemp
->opcode
!= instruction
->opcode
)
2162 return MERR_INVALOP
;
2165 * Count the operands
2167 if (itemp
->operands
!= instruction
->operands
)
2168 return MERR_INVALOP
;
2173 if (!(optimizing
> 0) && itemp_has(itemp
, IF_OPT
))
2174 return MERR_INVALOP
;
2179 switch (instruction
->prefixes
[PPS_VEX
]) {
2181 if (!itemp_has(itemp
, IF_EVEX
))
2182 return MERR_ENCMISMATCH
;
2186 if (!itemp_has(itemp
, IF_VEX
))
2187 return MERR_ENCMISMATCH
;
2194 * Check that no spurious colons or TOs are present
2196 for (i
= 0; i
< itemp
->operands
; i
++)
2197 if (instruction
->oprs
[i
].type
& ~itemp
->opd
[i
] & (COLON
| TO
))
2198 return MERR_INVALOP
;
2201 * Process size flags
2203 switch (itemp_smask(itemp
)) {
2204 case IF_GENBIT(IF_SB
):
2207 case IF_GENBIT(IF_SW
):
2210 case IF_GENBIT(IF_SD
):
2213 case IF_GENBIT(IF_SQ
):
2216 case IF_GENBIT(IF_SO
):
2219 case IF_GENBIT(IF_SY
):
2222 case IF_GENBIT(IF_SZ
):
2225 case IF_GENBIT(IF_SIZE
):
2246 if (itemp_armask(itemp
)) {
2247 /* S- flags only apply to a specific operand */
2248 i
= itemp_arg(itemp
);
2249 memset(size
, 0, sizeof size
);
2252 /* S- flags apply to all operands */
2253 for (i
= 0; i
< MAX_OPERANDS
; i
++)
2258 * Check that the operand flags all match up,
2259 * it's a bit tricky so lets be verbose:
2261 * 1) Find out the size of operand. If instruction
2262 * doesn't have one specified -- we're trying to
2263 * guess it either from template (IF_S* flag) or
2266 * 2) If template operand do not match the instruction OR
2267 * template has an operand size specified AND this size differ
2268 * from which instruction has (perhaps we got it from code bits)
2270 * a) Check that only size of instruction and operand is differ
2271 * other characteristics do match
2272 * b) Perhaps it's a register specified in instruction so
2273 * for such a case we just mark that operand as "size
2274 * missing" and this will turn on fuzzy operand size
2275 * logic facility (handled by a caller)
2277 for (i
= 0; i
< itemp
->operands
; i
++) {
2278 opflags_t type
= instruction
->oprs
[i
].type
;
2279 decoflags_t deco
= instruction
->oprs
[i
].decoflags
;
2280 bool is_broadcast
= deco
& BRDCAST_MASK
;
2281 uint8_t brcast_num
= 0;
2282 opflags_t template_opsize
, insn_opsize
;
2284 if (!(type
& SIZE_MASK
))
2287 insn_opsize
= type
& SIZE_MASK
;
2288 if (!is_broadcast
) {
2289 template_opsize
= itemp
->opd
[i
] & SIZE_MASK
;
2291 decoflags_t deco_brsize
= itemp
->deco
[i
] & BRSIZE_MASK
;
2293 * when broadcasting, the element size depends on
2294 * the instruction type. decorator flag should match.
2298 template_opsize
= (deco_brsize
== BR_BITS32
? BITS32
: BITS64
);
2299 /* calculate the proper number : {1to<brcast_num>} */
2300 brcast_num
= get_broadcast_num(itemp
->opd
[i
], template_opsize
);
2302 template_opsize
= 0;
2306 if ((itemp
->opd
[i
] & ~type
& ~SIZE_MASK
) ||
2307 (deco
& ~itemp
->deco
[i
] & ~BRNUM_MASK
)) {
2308 return MERR_INVALOP
;
2309 } else if (template_opsize
) {
2310 if (template_opsize
!= insn_opsize
) {
2312 return MERR_INVALOP
;
2313 } else if (!is_class(REGISTER
, type
)) {
2315 * Note: we don't honor extrinsic operand sizes for registers,
2316 * so "missing operand size" for a register should be
2317 * considered a wildcard match rather than an error.
2319 opsizemissing
= true;
2321 } else if (is_broadcast
&&
2323 (2U << ((deco
& BRNUM_MASK
) >> BRNUM_SHIFT
)))) {
2325 * broadcasting opsize matches but the number of repeated memory
2326 * element does not match.
2327 * if 64b double precision float is broadcasted to ymm (256b),
2328 * broadcasting decorator must be {1to4}.
2330 return MERR_BRNUMMISMATCH
;
2336 return MERR_OPSIZEMISSING
;
2339 * Check operand sizes
2341 if (itemp_has(itemp
, IF_SM
) || itemp_has(itemp
, IF_SM2
)) {
2342 oprs
= (itemp_has(itemp
, IF_SM2
) ? 2 : itemp
->operands
);
2343 for (i
= 0; i
< oprs
; i
++) {
2344 asize
= itemp
->opd
[i
] & SIZE_MASK
;
2346 for (i
= 0; i
< oprs
; i
++)
2352 oprs
= itemp
->operands
;
2355 for (i
= 0; i
< itemp
->operands
; i
++) {
2356 if (!(itemp
->opd
[i
] & SIZE_MASK
) &&
2357 (instruction
->oprs
[i
].type
& SIZE_MASK
& ~size
[i
]))
2358 return MERR_OPSIZEMISMATCH
;
2362 * Check template is okay at the set cpu level
2364 if (iflag_cmp_cpu_level(&insns_flags
[itemp
->iflag_idx
], &cpu
) > 0)
2368 * Verify the appropriate long mode flag.
2370 if (itemp_has(itemp
, (bits
== 64 ? IF_NOLONG
: IF_LONG
)))
2371 return MERR_BADMODE
;
2374 * If we have a HLE prefix, look for the NOHLE flag
2376 if (itemp_has(itemp
, IF_NOHLE
) &&
2377 (has_prefix(instruction
, PPS_REP
, P_XACQUIRE
) ||
2378 has_prefix(instruction
, PPS_REP
, P_XRELEASE
)))
2382 * Check if special handling needed for Jumps
2384 if ((itemp
->code
[0] & ~1) == 0370)
2388 * Check if BND prefix is allowed.
2389 * Other 0xF2 (REPNE/REPNZ) prefix is prohibited.
2391 if (!itemp_has(itemp
, IF_BND
) &&
2392 (has_prefix(instruction
, PPS_REP
, P_BND
) ||
2393 has_prefix(instruction
, PPS_REP
, P_NOBND
)))
2395 else if (itemp_has(itemp
, IF_BND
) &&
2396 (has_prefix(instruction
, PPS_REP
, P_REPNE
) ||
2397 has_prefix(instruction
, PPS_REP
, P_REPNZ
)))
2398 return MERR_BADREPNE
;
2404 * Check if ModR/M.mod should/can be 01.
2405 * - EAF_BYTEOFFS is set
2406 * - offset can fit in a byte when EVEX is not used
2407 * - offset can be compressed when EVEX is used
2409 #define IS_MOD_01() (input->eaflags & EAF_BYTEOFFS || \
2410 (o >= -128 && o <= 127 && \
2411 seg == NO_SEG && !forw_ref && \
2412 !(input->eaflags & EAF_WORDOFFS) && \
2413 !(ins->rex & REX_EV)) || \
2414 (ins->rex & REX_EV && \
2415 is_disp8n(input, ins, &output->disp8)))
2417 static enum ea_type
process_ea(operand
*input
, ea
*output
, int bits
,
2418 int rfield
, opflags_t rflags
, insn
*ins
)
2420 bool forw_ref
= !!(input
->opflags
& OPFLAG_UNKNOWN
);
2421 int addrbits
= ins
->addr_size
;
2422 int eaflags
= input
->eaflags
;
2424 output
->type
= EA_SCALAR
;
2425 output
->rip
= false;
2428 /* REX flags for the rfield operand */
2429 output
->rex
|= rexflags(rfield
, rflags
, REX_R
| REX_P
| REX_W
| REX_H
);
2430 /* EVEX.R' flag for the REG operand */
2431 ins
->evex_p
[0] |= evexflags(rfield
, 0, EVEX_P0RP
, 0);
2433 if (is_class(REGISTER
, input
->type
)) {
2435 * It's a direct register.
2437 if (!is_register(input
->basereg
))
2440 if (!is_reg_class(REG_EA
, input
->basereg
))
2443 /* broadcasting is not available with a direct register operand. */
2444 if (input
->decoflags
& BRDCAST_MASK
) {
2445 nasm_error(ERR_NONFATAL
, "Broadcasting not allowed from a register");
2449 output
->rex
|= op_rexflags(input
, REX_B
| REX_P
| REX_W
| REX_H
);
2450 ins
->evex_p
[0] |= op_evexflags(input
, EVEX_P0X
, 0);
2451 output
->sib_present
= false; /* no SIB necessary */
2452 output
->bytes
= 0; /* no offset necessary either */
2453 output
->modrm
= GEN_MODRM(3, rfield
, nasm_regvals
[input
->basereg
]);
2456 * It's a memory reference.
2459 /* Embedded rounding or SAE is not available with a mem ref operand. */
2460 if (input
->decoflags
& (ER
| SAE
)) {
2461 nasm_error(ERR_NONFATAL
,
2462 "Embedded rounding is available only with reg-reg op.");
2466 if (input
->basereg
== -1 &&
2467 (input
->indexreg
== -1 || input
->scale
== 0)) {
2469 * It's a pure offset.
2471 if (bits
== 64 && ((input
->type
& IP_REL
) == IP_REL
)) {
2472 if (input
->segment
== NO_SEG
|| (input
->opflags
& OPFLAG_RELATIVE
)) {
2473 nasm_error(ERR_WARNING
| ERR_PASS2
, "absolute address can not be RIP-relative");
2474 input
->type
&= ~IP_REL
;
2475 input
->type
|= MEMORY
;
2480 !(IP_REL
& ~input
->type
) && (eaflags
& EAF_MIB
)) {
2481 nasm_error(ERR_NONFATAL
, "RIP-relative addressing is prohibited for mib.");
2485 if (eaflags
& EAF_BYTEOFFS
||
2486 (eaflags
& EAF_WORDOFFS
&&
2487 input
->disp_size
!= (addrbits
!= 16 ? 32 : 16))) {
2488 nasm_error(ERR_WARNING
| ERR_PASS1
, "displacement size ignored on absolute address");
2491 if (bits
== 64 && (~input
->type
& IP_REL
)) {
2492 output
->sib_present
= true;
2493 output
->sib
= GEN_SIB(0, 4, 5);
2495 output
->modrm
= GEN_MODRM(0, rfield
, 4);
2496 output
->rip
= false;
2498 output
->sib_present
= false;
2499 output
->bytes
= (addrbits
!= 16 ? 4 : 2);
2500 output
->modrm
= GEN_MODRM(0, rfield
, (addrbits
!= 16 ? 5 : 6));
2501 output
->rip
= bits
== 64;
2505 * It's an indirection.
2507 int i
= input
->indexreg
, b
= input
->basereg
, s
= input
->scale
;
2508 int32_t seg
= input
->segment
;
2509 int hb
= input
->hintbase
, ht
= input
->hinttype
;
2510 int t
, it
, bt
; /* register numbers */
2511 opflags_t x
, ix
, bx
; /* register flags */
2514 i
= -1; /* make this easy, at least */
2516 if (is_register(i
)) {
2517 it
= nasm_regvals
[i
];
2518 ix
= nasm_reg_flags
[i
];
2524 if (is_register(b
)) {
2525 bt
= nasm_regvals
[b
];
2526 bx
= nasm_reg_flags
[b
];
2532 /* if either one are a vector register... */
2533 if ((ix
|bx
) & (XMMREG
|YMMREG
|ZMMREG
) & ~REG_EA
) {
2534 opflags_t sok
= BITS32
| BITS64
;
2535 int32_t o
= input
->offset
;
2536 int mod
, scale
, index
, base
;
2539 * For a vector SIB, one has to be a vector and the other,
2540 * if present, a GPR. The vector must be the index operand.
2542 if (it
== -1 || (bx
& (XMMREG
|YMMREG
|ZMMREG
) & ~REG_EA
)) {
2548 t
= bt
, bt
= it
, it
= t
;
2549 x
= bx
, bx
= ix
, ix
= x
;
2555 if (!(REG64
& ~bx
) || !(REG32
& ~bx
))
2562 * While we're here, ensure the user didn't specify
2565 if (input
->disp_size
== 16 || input
->disp_size
== 64)
2568 if (addrbits
== 16 ||
2569 (addrbits
== 32 && !(sok
& BITS32
)) ||
2570 (addrbits
== 64 && !(sok
& BITS64
)))
2573 output
->type
= ((ix
& ZMMREG
& ~REG_EA
) ? EA_ZMMVSIB
2574 : ((ix
& YMMREG
& ~REG_EA
)
2575 ? EA_YMMVSIB
: EA_XMMVSIB
));
2577 output
->rex
|= rexflags(it
, ix
, REX_X
);
2578 output
->rex
|= rexflags(bt
, bx
, REX_B
);
2579 ins
->evex_p
[2] |= evexflags(it
, 0, EVEX_P2VP
, 2);
2581 index
= it
& 7; /* it is known to be != -1 */
2596 default: /* then what the smeg is it? */
2597 goto err
; /* panic */
2605 if (base
!= REG_NUM_EBP
&& o
== 0 &&
2606 seg
== NO_SEG
&& !forw_ref
&&
2607 !(eaflags
& (EAF_BYTEOFFS
| EAF_WORDOFFS
)))
2609 else if (IS_MOD_01())
2615 output
->sib_present
= true;
2616 output
->bytes
= (bt
== -1 || mod
== 2 ? 4 : mod
);
2617 output
->modrm
= GEN_MODRM(mod
, rfield
, 4);
2618 output
->sib
= GEN_SIB(scale
, index
, base
);
2619 } else if ((ix
|bx
) & (BITS32
|BITS64
)) {
2621 * it must be a 32/64-bit memory reference. Firstly we have
2622 * to check that all registers involved are type E/Rxx.
2624 opflags_t sok
= BITS32
| BITS64
;
2625 int32_t o
= input
->offset
;
2628 if (!(REG64
& ~ix
) || !(REG32
& ~ix
))
2636 goto err
; /* Invalid register */
2637 if (~sok
& bx
& SIZE_MASK
)
2638 goto err
; /* Invalid size */
2643 * While we're here, ensure the user didn't specify
2646 if (input
->disp_size
== 16 || input
->disp_size
== 64)
2649 if (addrbits
== 16 ||
2650 (addrbits
== 32 && !(sok
& BITS32
)) ||
2651 (addrbits
== 64 && !(sok
& BITS64
)))
2654 /* now reorganize base/index */
2655 if (s
== 1 && bt
!= it
&& bt
!= -1 && it
!= -1 &&
2656 ((hb
== b
&& ht
== EAH_NOTBASE
) ||
2657 (hb
== i
&& ht
== EAH_MAKEBASE
))) {
2658 /* swap if hints say so */
2659 t
= bt
, bt
= it
, it
= t
;
2660 x
= bx
, bx
= ix
, ix
= x
;
2663 if (bt
== -1 && s
== 1 && !(hb
== i
&& ht
== EAH_NOTBASE
)) {
2664 /* make single reg base, unless hint */
2665 bt
= it
, bx
= ix
, it
= -1, ix
= 0;
2667 if (eaflags
& EAF_MIB
) {
2668 /* only for mib operands */
2669 if (it
== -1 && (hb
== b
&& ht
== EAH_NOTBASE
)) {
2671 * make a single reg index [reg*1].
2672 * gas uses this form for an explicit index register.
2674 it
= bt
, ix
= bx
, bt
= -1, bx
= 0, s
= 1;
2676 if ((ht
== EAH_SUMMED
) && bt
== -1) {
2677 /* separate once summed index into [base, index] */
2678 bt
= it
, bx
= ix
, s
--;
2681 if (((s
== 2 && it
!= REG_NUM_ESP
&&
2682 (!(eaflags
& EAF_TIMESTWO
) || (ht
== EAH_SUMMED
))) ||
2683 s
== 3 || s
== 5 || s
== 9) && bt
== -1) {
2684 /* convert 3*EAX to EAX+2*EAX */
2685 bt
= it
, bx
= ix
, s
--;
2687 if (it
== -1 && (bt
& 7) != REG_NUM_ESP
&&
2688 (eaflags
& EAF_TIMESTWO
) &&
2689 (hb
== b
&& ht
== EAH_NOTBASE
)) {
2691 * convert [NOSPLIT EAX*1]
2692 * to sib format with 0x0 displacement - [EAX*1+0].
2694 it
= bt
, ix
= bx
, bt
= -1, bx
= 0, s
= 1;
2697 if (s
== 1 && it
== REG_NUM_ESP
) {
2698 /* swap ESP into base if scale is 1 */
2699 t
= it
, it
= bt
, bt
= t
;
2700 x
= ix
, ix
= bx
, bx
= x
;
2702 if (it
== REG_NUM_ESP
||
2703 (s
!= 1 && s
!= 2 && s
!= 4 && s
!= 8 && it
!= -1))
2704 goto err
; /* wrong, for various reasons */
2706 output
->rex
|= rexflags(it
, ix
, REX_X
);
2707 output
->rex
|= rexflags(bt
, bx
, REX_B
);
2709 if (it
== -1 && (bt
& 7) != REG_NUM_ESP
) {
2718 if (rm
!= REG_NUM_EBP
&& o
== 0 &&
2719 seg
== NO_SEG
&& !forw_ref
&&
2720 !(eaflags
& (EAF_BYTEOFFS
| EAF_WORDOFFS
)))
2722 else if (IS_MOD_01())
2728 output
->sib_present
= false;
2729 output
->bytes
= (bt
== -1 || mod
== 2 ? 4 : mod
);
2730 output
->modrm
= GEN_MODRM(mod
, rfield
, rm
);
2733 int mod
, scale
, index
, base
;
2753 default: /* then what the smeg is it? */
2754 goto err
; /* panic */
2762 if (base
!= REG_NUM_EBP
&& o
== 0 &&
2763 seg
== NO_SEG
&& !forw_ref
&&
2764 !(eaflags
& (EAF_BYTEOFFS
| EAF_WORDOFFS
)))
2766 else if (IS_MOD_01())
2772 output
->sib_present
= true;
2773 output
->bytes
= (bt
== -1 || mod
== 2 ? 4 : mod
);
2774 output
->modrm
= GEN_MODRM(mod
, rfield
, 4);
2775 output
->sib
= GEN_SIB(scale
, index
, base
);
2777 } else { /* it's 16-bit */
2779 int16_t o
= input
->offset
;
2781 /* check for 64-bit long mode */
2785 /* check all registers are BX, BP, SI or DI */
2786 if ((b
!= -1 && b
!= R_BP
&& b
!= R_BX
&& b
!= R_SI
&& b
!= R_DI
) ||
2787 (i
!= -1 && i
!= R_BP
&& i
!= R_BX
&& i
!= R_SI
&& i
!= R_DI
))
2790 /* ensure the user didn't specify DWORD/QWORD */
2791 if (input
->disp_size
== 32 || input
->disp_size
== 64)
2794 if (s
!= 1 && i
!= -1)
2795 goto err
; /* no can do, in 16-bit EA */
2796 if (b
== -1 && i
!= -1) {
2801 if ((b
== R_SI
|| b
== R_DI
) && i
!= -1) {
2806 /* have BX/BP as base, SI/DI index */
2808 goto err
; /* shouldn't ever happen, in theory */
2809 if (i
!= -1 && b
!= -1 &&
2810 (i
== R_BP
|| i
== R_BX
|| b
== R_SI
|| b
== R_DI
))
2811 goto err
; /* invalid combinations */
2812 if (b
== -1) /* pure offset: handled above */
2813 goto err
; /* so if it gets to here, panic! */
2817 switch (i
* 256 + b
) {
2818 case R_SI
* 256 + R_BX
:
2821 case R_DI
* 256 + R_BX
:
2824 case R_SI
* 256 + R_BP
:
2827 case R_DI
* 256 + R_BP
:
2845 if (rm
== -1) /* can't happen, in theory */
2846 goto err
; /* so panic if it does */
2848 if (o
== 0 && seg
== NO_SEG
&& !forw_ref
&& rm
!= 6 &&
2849 !(eaflags
& (EAF_BYTEOFFS
| EAF_WORDOFFS
)))
2851 else if (IS_MOD_01())
2856 output
->sib_present
= false; /* no SIB - it's 16-bit */
2857 output
->bytes
= mod
; /* bytes of offset needed */
2858 output
->modrm
= GEN_MODRM(mod
, rfield
, rm
);
2863 output
->size
= 1 + output
->sib_present
+ output
->bytes
;
2864 return output
->type
;
2867 return output
->type
= EA_INVALID
;
2870 static void add_asp(insn
*ins
, int addrbits
)
2875 valid
= (addrbits
== 64) ? 64|32 : 32|16;
2877 switch (ins
->prefixes
[PPS_ASIZE
]) {
2888 valid
&= (addrbits
== 32) ? 16 : 32;
2894 for (j
= 0; j
< ins
->operands
; j
++) {
2895 if (is_class(MEMORY
, ins
->oprs
[j
].type
)) {
2898 /* Verify as Register */
2899 if (!is_register(ins
->oprs
[j
].indexreg
))
2902 i
= nasm_reg_flags
[ins
->oprs
[j
].indexreg
];
2904 /* Verify as Register */
2905 if (!is_register(ins
->oprs
[j
].basereg
))
2908 b
= nasm_reg_flags
[ins
->oprs
[j
].basereg
];
2910 if (ins
->oprs
[j
].scale
== 0)
2914 int ds
= ins
->oprs
[j
].disp_size
;
2915 if ((addrbits
!= 64 && ds
> 8) ||
2916 (addrbits
== 64 && ds
== 16))
2936 if (valid
& addrbits
) {
2937 ins
->addr_size
= addrbits
;
2938 } else if (valid
& ((addrbits
== 32) ? 16 : 32)) {
2939 /* Add an address size prefix */
2940 ins
->prefixes
[PPS_ASIZE
] = (addrbits
== 32) ? P_A16
: P_A32
;;
2941 ins
->addr_size
= (addrbits
== 32) ? 16 : 32;
2944 nasm_error(ERR_NONFATAL
, "impossible combination of address sizes");
2945 ins
->addr_size
= addrbits
; /* Error recovery */
2948 defdisp
= ins
->addr_size
== 16 ? 16 : 32;
2950 for (j
= 0; j
< ins
->operands
; j
++) {
2951 if (!(MEM_OFFS
& ~ins
->oprs
[j
].type
) &&
2952 (ins
->oprs
[j
].disp_size
? ins
->oprs
[j
].disp_size
: defdisp
) != ins
->addr_size
) {
2954 * mem_offs sizes must match the address size; if not,
2955 * strip the MEM_OFFS bit and match only EA instructions
2957 ins
->oprs
[j
].type
&= ~(MEM_OFFS
& ~MEMORY
);