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.
211 * Matching success; the conditional ones first
213 MOK_JUMP
, /* Matching OK but needs jmp_match() */
214 MOK_GOOD
/* Matching unconditionally OK */
218 enum ea_type type
; /* what kind of EA is this? */
219 int sib_present
; /* is a SIB byte necessary? */
220 int bytes
; /* # of bytes of offset needed */
221 int size
; /* lazy - this is sib+bytes+1 */
222 uint8_t modrm
, sib
, rex
, rip
; /* the bytes themselves */
223 int8_t disp8
; /* compressed displacement for EVEX */
226 #define GEN_SIB(scale, index, base) \
227 (((scale) << 6) | ((index) << 3) | ((base)))
229 #define GEN_MODRM(mod, reg, rm) \
230 (((mod) << 6) | (((reg) & 7) << 3) | ((rm) & 7))
232 static int64_t calcsize(int32_t, int64_t, int, insn
*,
233 const struct itemplate
*);
234 static int emit_prefix(struct out_data
*data
, const int bits
, insn
*ins
);
235 static void gencode(struct out_data
*data
, insn
*ins
);
236 static enum match_result
find_match(const struct itemplate
**tempp
,
238 int32_t segment
, int64_t offset
, int bits
);
239 static enum match_result
matches(const struct itemplate
*, insn
*, int bits
);
240 static opflags_t
regflag(const operand
*);
241 static int32_t regval(const operand
*);
242 static int rexflags(int, opflags_t
, int);
243 static int op_rexflags(const operand
*, int);
244 static int op_evexflags(const operand
*, int, uint8_t);
245 static void add_asp(insn
*, int);
247 static enum ea_type
process_ea(operand
*, ea
*, int, int,
248 opflags_t
, insn
*, const char **);
250 static inline bool absolute_op(const struct operand
*o
)
252 return o
->segment
== NO_SEG
&& o
->wrt
== NO_SEG
&&
253 !(o
->opflags
& OPFLAG_RELATIVE
);
256 static int has_prefix(insn
* ins
, enum prefix_pos pos
, int prefix
)
258 return ins
->prefixes
[pos
] == prefix
;
261 static void assert_no_prefix(insn
* ins
, enum prefix_pos pos
)
263 if (ins
->prefixes
[pos
])
264 nasm_error(ERR_NONFATAL
, "invalid %s prefix",
265 prefix_name(ins
->prefixes
[pos
]));
268 static const char *size_name(int size
)
292 static void warn_overflow(int size
)
294 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
295 "%s data exceeds bounds", size_name(size
));
298 static void warn_overflow_const(int64_t data
, int size
)
300 if (overflow_general(data
, size
))
304 static void warn_overflow_opd(const struct operand
*o
, int size
)
306 if (absolute_op(o
)) {
307 if (overflow_general(o
->offset
, size
))
312 static void warn_overflow_out(int64_t data
, int size
, enum out_sign sign
)
318 err
= overflow_general(data
, size
);
321 err
= overflow_signed(data
, size
);
324 err
= overflow_unsigned(data
, size
);
336 * This routine wrappers the real output format's output routine,
337 * in order to pass a copy of the data off to the listing file
338 * generator at the same time, flatten unnecessary relocations,
339 * and verify backend compatibility.
341 static void out(struct out_data
*data
)
343 static int32_t lineno
= 0; /* static!!! */
344 static const char *lnfname
= NULL
;
346 const int amax
= ofmt
->maxbits
>> 3; /* Maximum address size in bytes */
351 uint64_t size
= data
->size
;
353 int32_t fixseg
; /* Segment for which to produce fixed data */
356 return; /* Nothing to do */
359 * Convert addresses to RAWDATA if possible
360 * XXX: not all backends want this for global symbols!!!!
362 switch (data
->type
) {
364 addrval
= data
->toffset
;
365 fixseg
= NO_SEG
; /* Absolute address is fixed data */
369 addrval
= data
->toffset
- data
->relbase
;
370 fixseg
= data
->segment
; /* Our own segment is fixed data */
375 nasm_assert(asize
<= 8);
376 if (data
->tsegment
== fixseg
&& data
->twrt
== NO_SEG
) {
377 uint8_t *q
= xdata
.b
;
379 warn_overflow_out(addrval
, asize
, data
->sign
);
381 WRITEADDR(q
, addrval
, asize
);
382 data
->data
= xdata
.b
;
383 data
->type
= OUT_RAWDATA
;
384 asize
= 0; /* No longer an address */
389 asize
= 0; /* Not an address */
396 * this call to src_get determines when we call the
397 * debug-format-specific "linenum" function
398 * it updates lineno and lnfname to the current values
399 * returning 0 if "same as last time", -2 if lnfname
400 * changed, and the amount by which lineno changed,
401 * if it did. thus, these variables must be static
404 if (src_get(&lineno
, &lnfname
))
405 dfmt
->linenum(lnfname
, lineno
, data
->segment
);
407 if (asize
&& asize
> amax
) {
408 if (data
->type
!= OUT_ADDRESS
|| data
->sign
== OUT_SIGNED
) {
409 nasm_error(ERR_NONFATAL
,
410 "%d-bit signed relocation unsupported by output format %s\n",
411 asize
<< 3, ofmt
->shortname
);
413 nasm_error(ERR_WARNING
| ERR_WARN_ZEXTRELOC
,
414 "%d-bit unsigned relocation zero-extended from %d bits\n",
415 asize
<< 3, ofmt
->maxbits
);
418 data
->insoffs
+= amax
;
419 data
->offset
+= amax
;
420 data
->size
= size
= asize
- amax
;
422 data
->data
= zero_buffer
;
423 data
->type
= OUT_RAWDATA
;
427 data
->offset
+= size
;
428 data
->insoffs
+= size
;
431 static inline void out_rawdata(struct out_data
*data
, const void *rawdata
,
434 data
->type
= OUT_RAWDATA
;
435 data
->data
= rawdata
;
440 static void out_rawbyte(struct out_data
*data
, uint8_t byte
)
442 data
->type
= OUT_RAWDATA
;
448 static inline void out_reserve(struct out_data
*data
, uint64_t size
)
450 data
->type
= OUT_RESERVE
;
455 static inline void out_imm(struct out_data
*data
, const struct operand
*opx
,
456 int size
, enum out_sign sign
)
459 (opx
->opflags
& OPFLAG_RELATIVE
) ? OUT_RELADDR
: OUT_ADDRESS
;
462 data
->toffset
= opx
->offset
;
463 data
->tsegment
= opx
->segment
;
464 data
->twrt
= opx
->wrt
;
466 * XXX: improve this if at some point in the future we can
467 * distinguish the subtrahend in expressions like [foo - bar]
468 * where bar is a symbol in the current segment. However, at the
469 * current point, if OPFLAG_RELATIVE is set that subtraction has
476 static void out_reladdr(struct out_data
*data
, const struct operand
*opx
,
479 if (opx
->opflags
& OPFLAG_RELATIVE
)
480 nasm_error(ERR_NONFATAL
, "invalid use of self-relative expression");
482 data
->type
= OUT_RELADDR
;
483 data
->sign
= OUT_SIGNED
;
485 data
->toffset
= opx
->offset
;
486 data
->tsegment
= opx
->segment
;
487 data
->twrt
= opx
->wrt
;
488 data
->relbase
= data
->offset
+ (data
->inslen
- data
->insoffs
);
492 static inline void out_segment(struct out_data
*data
,
493 const struct operand
*opx
)
495 data
->type
= OUT_SEGMENT
;
496 data
->sign
= OUT_UNSIGNED
;
498 data
->toffset
= opx
->offset
; /* Is this really needed/wanted? */
499 data
->tsegment
= ofmt
->segbase(opx
->segment
+ 1);
500 data
->twrt
= opx
->wrt
;
504 static bool jmp_match(int32_t segment
, int64_t offset
, int bits
,
505 insn
* ins
, const struct itemplate
*temp
)
508 const uint8_t *code
= temp
->code
;
512 if (((c
& ~1) != 0370) || (ins
->oprs
[0].type
& STRICT
))
516 if (optimizing
< 0 && c
== 0371)
519 isize
= calcsize(segment
, offset
, bits
, ins
, temp
);
521 if (ins
->oprs
[0].opflags
& OPFLAG_UNKNOWN
)
522 /* Be optimistic in pass 1 */
525 if (ins
->oprs
[0].segment
!= segment
)
528 isize
= ins
->oprs
[0].offset
- offset
- isize
; /* isize is delta */
529 is_byte
= (isize
>= -128 && isize
<= 127); /* is it byte size? */
531 if (is_byte
&& c
== 0371 && ins
->prefixes
[PPS_REP
] == P_BND
) {
532 /* jmp short (opcode eb) cannot be used with bnd prefix. */
533 ins
->prefixes
[PPS_REP
] = P_none
;
534 nasm_error(ERR_WARNING
| ERR_WARN_BND
| ERR_PASS2
,
535 "jmp short does not init bnd regs - bnd prefix dropped.");
541 /* This is totally just a wild guess what is reasonable... */
542 #define INCBIN_MAX_BUF (ZERO_BUF_SIZE * 16)
544 int64_t assemble(int32_t segment
, int64_t start
, int bits
, insn
*instruction
)
546 struct out_data data
;
547 const struct itemplate
*temp
;
549 int64_t wsize
; /* size for DB etc. */
553 data
.segment
= segment
;
555 data
.sign
= OUT_WRAP
;
558 wsize
= idata_bytes(instruction
->opcode
);
565 list_for_each(e
, instruction
->eops
) {
566 if (e
->type
== EOT_DB_NUMBER
) {
568 nasm_error(ERR_NONFATAL
,
569 "integer supplied to a DT, DO, DY or DZ"
573 data
.type
= e
->relative
? OUT_RELADDR
: OUT_ADDRESS
;
574 data
.inslen
= data
.size
= wsize
;
575 data
.toffset
= e
->offset
;
576 data
.tsegment
= e
->segment
;
581 } else if (e
->type
== EOT_DB_STRING
||
582 e
->type
== EOT_DB_STRING_FREE
) {
583 int align
= e
->stringlen
% wsize
;
585 align
= wsize
- align
;
588 data
.inslen
= e
->stringlen
+ align
;
590 out_rawdata(&data
, e
->stringval
, e
->stringlen
);
591 out_rawdata(&data
, zero_buffer
, align
);
594 } else if (instruction
->opcode
== I_INCBIN
) {
595 const char *fname
= instruction
->eops
->stringval
;
597 size_t t
= instruction
->times
; /* INCBIN handles TIMES by itself */
600 const void *map
= NULL
;
602 size_t blk
= 0; /* Buffered I/O block size */
603 size_t m
= 0; /* Bytes last read */
605 fp
= nasm_open_read(fname
, NF_BINARY
|NF_FORMAP
);
607 nasm_error(ERR_NONFATAL
, "`incbin': unable to open file `%s'",
612 len
= nasm_file_size(fp
);
614 if (len
== (off_t
)-1) {
615 nasm_error(ERR_NONFATAL
, "`incbin': unable to get length of file `%s'",
620 if (instruction
->eops
->next
) {
621 base
= instruction
->eops
->next
->offset
;
626 if (instruction
->eops
->next
->next
&&
627 len
> (off_t
)instruction
->eops
->next
->next
->offset
)
628 len
= (off_t
)instruction
->eops
->next
->next
->offset
;
632 lfmt
->set_offset(data
.offset
);
633 lfmt
->uplevel(LIST_INCBIN
);
638 /* Try to map file data */
639 map
= nasm_map_file(fp
, base
, len
);
641 blk
= len
< (off_t
)INCBIN_MAX_BUF
? (size_t)len
: INCBIN_MAX_BUF
;
642 buf
= nasm_malloc(blk
);
647 * Consider these irrelevant for INCBIN, since it is fully
648 * possible that these might be (way) bigger than an int
649 * can hold; there is, however, no reason to widen these
650 * types just for INCBIN. data.inslen == 0 signals to the
651 * backend that these fields are meaningless, if at all
658 out_rawdata(&data
, map
, len
);
659 } else if ((off_t
)m
== len
) {
660 out_rawdata(&data
, buf
, len
);
664 if (fseeko(fp
, base
, SEEK_SET
) < 0 || ferror(fp
)) {
665 nasm_error(ERR_NONFATAL
,
666 "`incbin': unable to seek on file `%s'",
671 m
= fread(buf
, 1, l
< (off_t
)blk
? (size_t)l
: blk
, fp
);
672 if (!m
|| feof(fp
)) {
674 * This shouldn't happen unless the file
675 * actually changes while we are reading
678 nasm_error(ERR_NONFATAL
,
679 "`incbin': unexpected EOF while"
680 " reading file `%s'", fname
);
683 out_rawdata(&data
, buf
, m
);
689 lfmt
->downlevel(LIST_INCBIN
);
690 if (instruction
->times
> 1) {
691 lfmt
->set_offset(start
);
692 lfmt
->uplevel(LIST_TIMES
);
693 lfmt
->downlevel(LIST_TIMES
);
696 nasm_error(ERR_NONFATAL
,
697 "`incbin': error while"
698 " reading file `%s'", fname
);
704 nasm_unmap_file(map
, len
);
707 instruction
->times
= 1; /* Tell the upper layer not to iterate */
710 /* "Real" instruction */
712 /* Check to see if we need an address-size prefix */
713 add_asp(instruction
, bits
);
715 m
= find_match(&temp
, instruction
, data
.segment
, data
.offset
, bits
);
719 int64_t insn_size
= calcsize(data
.segment
, data
.offset
,
720 bits
, instruction
, temp
);
721 nasm_assert(insn_size
>= 0);
726 data
.inslen
= insn_size
;
728 gencode(&data
, instruction
);
729 nasm_assert(data
.insoffs
== insn_size
);
733 case MERR_OPSIZEMISSING
:
734 nasm_error(ERR_NONFATAL
, "operation size not specified");
736 case MERR_OPSIZEMISMATCH
:
737 nasm_error(ERR_NONFATAL
, "mismatch in operand sizes");
740 nasm_error(ERR_NONFATAL
,
741 "broadcast not permitted on this operand");
743 case MERR_BRNUMMISMATCH
:
744 nasm_error(ERR_NONFATAL
,
745 "mismatch in the number of broadcasting elements");
747 case MERR_MASKNOTHERE
:
748 nasm_error(ERR_NONFATAL
,
749 "mask not permitted on this operand");
752 nasm_error(ERR_NONFATAL
, "no instruction for this cpu level");
755 nasm_error(ERR_NONFATAL
, "instruction not supported in %d-bit mode",
758 case MERR_ENCMISMATCH
:
759 nasm_error(ERR_NONFATAL
, "specific encoding scheme not available");
762 nasm_error(ERR_NONFATAL
, "bnd prefix is not allowed");
765 nasm_error(ERR_NONFATAL
, "%s prefix is not allowed",
766 (has_prefix(instruction
, PPS_REP
, P_REPNE
) ?
770 nasm_error(ERR_NONFATAL
,
771 "invalid combination of opcode and operands");
775 instruction
->times
= 1; /* Avoid repeated error messages */
778 return data
.offset
- start
;
781 int64_t insn_size(int32_t segment
, int64_t offset
, int bits
, insn
*instruction
)
783 const struct itemplate
*temp
;
786 if (instruction
->opcode
== I_none
)
789 if (opcode_is_db(instruction
->opcode
)) {
791 int32_t isize
, osize
, wsize
;
794 wsize
= idata_bytes(instruction
->opcode
);
795 nasm_assert(wsize
> 0);
797 list_for_each(e
, instruction
->eops
) {
801 if (e
->type
== EOT_DB_NUMBER
) {
803 warn_overflow_const(e
->offset
, wsize
);
804 } else if (e
->type
== EOT_DB_STRING
||
805 e
->type
== EOT_DB_STRING_FREE
)
806 osize
= e
->stringlen
;
808 align
= (-osize
) % wsize
;
811 isize
+= osize
+ align
;
816 if (instruction
->opcode
== I_INCBIN
) {
817 const char *fname
= instruction
->eops
->stringval
;
820 len
= nasm_file_size_by_path(fname
);
821 if (len
== (off_t
)-1) {
822 nasm_error(ERR_NONFATAL
, "`incbin': unable to get length of file `%s'",
827 if (instruction
->eops
->next
) {
828 if (len
<= (off_t
)instruction
->eops
->next
->offset
) {
831 len
-= instruction
->eops
->next
->offset
;
832 if (instruction
->eops
->next
->next
&&
833 len
> (off_t
)instruction
->eops
->next
->next
->offset
) {
834 len
= (off_t
)instruction
->eops
->next
->next
->offset
;
839 len
*= instruction
->times
;
840 instruction
->times
= 1; /* Tell the upper layer to not iterate */
845 /* Check to see if we need an address-size prefix */
846 add_asp(instruction
, bits
);
848 m
= find_match(&temp
, instruction
, segment
, offset
, bits
);
850 /* we've matched an instruction. */
851 return calcsize(segment
, offset
, bits
, instruction
, temp
);
853 return -1; /* didn't match any instruction */
857 static void bad_hle_warn(const insn
* ins
, uint8_t hleok
)
859 enum prefixes rep_pfx
= ins
->prefixes
[PPS_REP
];
860 enum whatwarn
{ w_none
, w_lock
, w_inval
} ww
;
861 static const enum whatwarn warn
[2][4] =
863 { w_inval
, w_inval
, w_none
, w_lock
}, /* XACQUIRE */
864 { w_inval
, w_none
, w_none
, w_lock
}, /* XRELEASE */
868 n
= (unsigned int)rep_pfx
- P_XACQUIRE
;
870 return; /* Not XACQUIRE/XRELEASE */
873 if (!is_class(MEMORY
, ins
->oprs
[0].type
))
874 ww
= w_inval
; /* HLE requires operand 0 to be memory */
881 if (ins
->prefixes
[PPS_LOCK
] != P_LOCK
) {
882 nasm_error(ERR_WARNING
| ERR_WARN_HLE
| ERR_PASS2
,
883 "%s with this instruction requires lock",
884 prefix_name(rep_pfx
));
889 nasm_error(ERR_WARNING
| ERR_WARN_HLE
| ERR_PASS2
,
890 "%s invalid with this instruction",
891 prefix_name(rep_pfx
));
896 /* Common construct */
897 #define case3(x) case (x): case (x)+1: case (x)+2
898 #define case4(x) case3(x): case (x)+3
900 static int64_t calcsize(int32_t segment
, int64_t offset
, int bits
,
901 insn
* ins
, const struct itemplate
*temp
)
903 const uint8_t *codes
= temp
->code
;
912 bool lockcheck
= true;
913 enum reg_enum mib_index
= R_none
; /* For a separate index MIB reg form */
916 ins
->rex
= 0; /* Ensure REX is reset */
917 eat
= EA_SCALAR
; /* Expect a scalar EA */
918 memset(ins
->evex_p
, 0, 3); /* Ensure EVEX is reset */
920 if (ins
->prefixes
[PPS_OSIZE
] == P_O64
)
923 (void)segment
; /* Don't warn that this parameter is unused */
924 (void)offset
; /* Don't warn that this parameter is unused */
928 op1
= (c
& 3) + ((opex
& 1) << 2);
929 op2
= ((c
>> 3) & 3) + ((opex
& 2) << 1);
930 opx
= &ins
->oprs
[op1
];
931 opex
= 0; /* For the next iteration */
935 codes
+= c
, length
+= c
;
944 op_rexflags(opx
, REX_B
|REX_H
|REX_P
|REX_W
);
949 /* this is an index reg of MIB operand */
950 mib_index
= opx
->basereg
;
963 if (opx
->type
& (BITS16
| BITS32
| BITS64
))
964 length
+= (opx
->type
& BITS16
) ? 2 : 4;
966 length
+= (bits
== 16) ? 2 : 4;
974 length
+= ins
->addr_size
>> 3;
982 length
+= 8; /* MOV reg64/imm */
990 if (opx
->type
& (BITS16
| BITS32
| BITS64
))
991 length
+= (opx
->type
& BITS16
) ? 2 : 4;
993 length
+= (bits
== 16) ? 2 : 4;
1016 ins
->vexreg
= regval(opx
);
1017 ins
->evex_p
[2] |= op_evexflags(opx
, EVEX_P2VP
, 2); /* High-16 NDS */
1018 ins
->vex_cm
= *codes
++;
1019 ins
->vex_wlp
= *codes
++;
1020 ins
->evex_tuple
= (*codes
++ - 0300);
1026 ins
->vex_cm
= *codes
++;
1027 ins
->vex_wlp
= *codes
++;
1028 ins
->evex_tuple
= (*codes
++ - 0300);
1037 ins
->vexreg
= regval(opx
);
1038 ins
->vex_cm
= *codes
++;
1039 ins
->vex_wlp
= *codes
++;
1045 ins
->vex_cm
= *codes
++;
1046 ins
->vex_wlp
= *codes
++;
1063 length
+= (bits
!= 16) && !has_prefix(ins
, PPS_ASIZE
, P_A16
);
1067 length
+= (bits
!= 32) && !has_prefix(ins
, PPS_ASIZE
, P_A32
);
1074 if (bits
!= 64 || has_prefix(ins
, PPS_ASIZE
, P_A16
) ||
1075 has_prefix(ins
, PPS_ASIZE
, P_A32
))
1084 enum prefixes pfx
= ins
->prefixes
[PPS_OSIZE
];
1088 nasm_error(ERR_WARNING
| ERR_PASS2
, "invalid operand size prefix");
1090 ins
->prefixes
[PPS_OSIZE
] = P_O16
;
1096 enum prefixes pfx
= ins
->prefixes
[PPS_OSIZE
];
1100 nasm_error(ERR_WARNING
| ERR_PASS2
, "invalid operand size prefix");
1102 ins
->prefixes
[PPS_OSIZE
] = P_O32
;
1144 if (!ins
->prefixes
[PPS_REP
])
1145 ins
->prefixes
[PPS_REP
] = P_REP
;
1149 if (!ins
->prefixes
[PPS_REP
])
1150 ins
->prefixes
[PPS_REP
] = P_REPNE
;
1154 if (!absolute_op(&ins
->oprs
[0]))
1155 nasm_error(ERR_NONFATAL
, "attempt to reserve non-constant"
1156 " quantity of BSS space");
1157 else if (ins
->oprs
[0].opflags
& OPFLAG_FORWARD
)
1158 nasm_error(ERR_WARNING
| ERR_PASS1
,
1159 "forward reference in RESx can have unpredictable results");
1161 length
+= ins
->oprs
[0].offset
;
1165 if (!ins
->prefixes
[PPS_WAIT
])
1166 ins
->prefixes
[PPS_WAIT
] = P_WAIT
;
1221 struct operand
*opy
= &ins
->oprs
[op2
];
1222 struct operand
*op_er_sae
;
1224 ea_data
.rex
= 0; /* Ensure ea.REX is initially 0 */
1227 /* pick rfield from operand b (opx) */
1228 rflags
= regflag(opx
);
1229 rfield
= nasm_regvals
[opx
->basereg
];
1235 /* EVEX.b1 : evex_brerop contains the operand position */
1236 op_er_sae
= (ins
->evex_brerop
>= 0 ?
1237 &ins
->oprs
[ins
->evex_brerop
] : NULL
);
1239 if (op_er_sae
&& (op_er_sae
->decoflags
& (ER
| SAE
))) {
1241 ins
->evex_p
[2] |= EVEX_P2B
;
1242 if (op_er_sae
->decoflags
& ER
) {
1243 /* set EVEX.RC (rounding control) */
1244 ins
->evex_p
[2] |= ((ins
->evex_rm
- BRC_RN
) << 5)
1248 /* set EVEX.L'L (vector length) */
1249 ins
->evex_p
[2] |= ((ins
->vex_wlp
<< (5 - 2)) & EVEX_P2LL
);
1250 ins
->evex_p
[1] |= ((ins
->vex_wlp
<< (7 - 4)) & EVEX_P1W
);
1251 if (opy
->decoflags
& BRDCAST_MASK
) {
1253 ins
->evex_p
[2] |= EVEX_P2B
;
1257 if (itemp_has(temp
, IF_MIB
)) {
1258 opy
->eaflags
|= EAF_MIB
;
1260 * if a separate form of MIB (ICC style) is used,
1261 * the index reg info is merged into mem operand
1263 if (mib_index
!= R_none
) {
1264 opy
->indexreg
= mib_index
;
1266 opy
->hintbase
= mib_index
;
1267 opy
->hinttype
= EAH_NOTBASE
;
1271 if (process_ea(opy
, &ea_data
, bits
,
1272 rfield
, rflags
, ins
, &errmsg
) != eat
) {
1273 nasm_error(ERR_NONFATAL
, "%s", errmsg
);
1276 ins
->rex
|= ea_data
.rex
;
1277 length
+= ea_data
.size
;
1283 nasm_panic(0, "internal instruction table corrupt"
1284 ": instruction code \\%o (0x%02X) given", c
, c
);
1289 ins
->rex
&= rex_mask
;
1291 if (ins
->rex
& REX_NH
) {
1292 if (ins
->rex
& REX_H
) {
1293 nasm_error(ERR_NONFATAL
, "instruction cannot use high registers");
1296 ins
->rex
&= ~REX_P
; /* Don't force REX prefix due to high reg */
1299 switch (ins
->prefixes
[PPS_VEX
]) {
1301 if (!(ins
->rex
& REX_EV
))
1306 if (!(ins
->rex
& REX_V
))
1313 if (ins
->rex
& (REX_V
| REX_EV
)) {
1314 int bad32
= REX_R
|REX_W
|REX_X
|REX_B
;
1316 if (ins
->rex
& REX_H
) {
1317 nasm_error(ERR_NONFATAL
, "cannot use high register in AVX instruction");
1320 switch (ins
->vex_wlp
& 060) {
1334 if (bits
!= 64 && ((ins
->rex
& bad32
) || ins
->vexreg
> 7)) {
1335 nasm_error(ERR_NONFATAL
, "invalid operands in non-64-bit mode");
1337 } else if (!(ins
->rex
& REX_EV
) &&
1338 ((ins
->vexreg
> 15) || (ins
->evex_p
[0] & 0xf0))) {
1339 nasm_error(ERR_NONFATAL
, "invalid high-16 register in non-AVX-512");
1342 if (ins
->rex
& REX_EV
)
1344 else if (ins
->vex_cm
!= 1 || (ins
->rex
& (REX_W
|REX_X
|REX_B
)) ||
1345 ins
->prefixes
[PPS_VEX
] == P_VEX3
)
1349 } else if (ins
->rex
& REX_MASK
) {
1350 if (ins
->rex
& REX_H
) {
1351 nasm_error(ERR_NONFATAL
, "cannot use high register in rex instruction");
1353 } else if (bits
== 64) {
1355 } else if ((ins
->rex
& REX_L
) &&
1356 !(ins
->rex
& (REX_P
|REX_W
|REX_X
|REX_B
)) &&
1357 iflag_ffs(&cpu
) >= IF_X86_64
) {
1359 assert_no_prefix(ins
, PPS_LOCK
);
1360 lockcheck
= false; /* Already errored, no need for warning */
1363 nasm_error(ERR_NONFATAL
, "invalid operands in non-64-bit mode");
1368 if (has_prefix(ins
, PPS_LOCK
, P_LOCK
) && lockcheck
&&
1369 (!itemp_has(temp
,IF_LOCK
) || !is_class(MEMORY
, ins
->oprs
[0].type
))) {
1370 nasm_error(ERR_WARNING
| ERR_WARN_LOCK
| ERR_PASS2
,
1371 "instruction is not lockable");
1374 bad_hle_warn(ins
, hleok
);
1377 * when BND prefix is set by DEFAULT directive,
1378 * BND prefix is added to every appropriate instruction line
1379 * unless it is overridden by NOBND prefix.
1382 (itemp_has(temp
, IF_BND
) && !has_prefix(ins
, PPS_REP
, P_NOBND
)))
1383 ins
->prefixes
[PPS_REP
] = P_BND
;
1386 * Add length of legacy prefixes
1388 length
+= emit_prefix(NULL
, bits
, ins
);
1393 static inline void emit_rex(struct out_data
*data
, insn
*ins
)
1395 if (data
->bits
== 64) {
1396 if ((ins
->rex
& REX_MASK
) &&
1397 !(ins
->rex
& (REX_V
| REX_EV
)) &&
1399 uint8_t rex
= (ins
->rex
& REX_MASK
) | REX_P
;
1400 out_rawbyte(data
, rex
);
1401 ins
->rex_done
= true;
1406 static int emit_prefix(struct out_data
*data
, const int bits
, insn
*ins
)
1411 for (j
= 0; j
< MAXPREFIX
; j
++) {
1413 switch (ins
->prefixes
[j
]) {
1434 nasm_error(ERR_WARNING
| ERR_PASS2
,
1435 "cs segment base generated, but will be ignored in 64-bit mode");
1441 nasm_error(ERR_WARNING
| ERR_PASS2
,
1442 "ds segment base generated, but will be ignored in 64-bit mode");
1448 nasm_error(ERR_WARNING
| ERR_PASS2
,
1449 "es segment base generated, but will be ignored in 64-bit mode");
1461 nasm_error(ERR_WARNING
| ERR_PASS2
,
1462 "ss segment base generated, but will be ignored in 64-bit mode");
1468 nasm_error(ERR_NONFATAL
,
1469 "segr6 and segr7 cannot be used as prefixes");
1473 nasm_error(ERR_NONFATAL
,
1474 "16-bit addressing is not supported "
1476 } else if (bits
!= 16)
1485 nasm_error(ERR_NONFATAL
,
1486 "64-bit addressing is only supported "
1514 nasm_panic(0, "invalid instruction prefix");
1518 out_rawbyte(data
, c
);
1525 static void gencode(struct out_data
*data
, insn
*ins
)
1531 struct operand
*opx
;
1532 const uint8_t *codes
= data
->itemp
->code
;
1534 enum ea_type eat
= EA_SCALAR
;
1536 const int bits
= data
->bits
;
1539 ins
->rex_done
= false;
1541 emit_prefix(data
, bits
, ins
);
1545 op1
= (c
& 3) + ((opex
& 1) << 2);
1546 op2
= ((c
>> 3) & 3) + ((opex
& 2) << 1);
1547 opx
= &ins
->oprs
[op1
];
1548 opex
= 0; /* For the next iteration */
1556 emit_rex(data
, ins
);
1557 out_rawdata(data
, codes
, c
);
1568 emit_rex(data
, ins
);
1569 out_rawbyte(data
, *codes
++ + (regval(opx
) & 7));
1576 if (opx
->offset
< -256 || opx
->offset
> 255)
1577 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1578 "byte value exceeds bounds");
1579 out_imm(data
, opx
, 1, OUT_WRAP
);
1583 if (opx
->offset
< 0 || opx
->offset
> 255)
1584 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1585 "unsigned byte value exceeds bounds");
1586 out_imm(data
, opx
, 1, OUT_UNSIGNED
);
1590 warn_overflow_opd(opx
, 2);
1591 out_imm(data
, opx
, 2, OUT_WRAP
);
1595 if (opx
->type
& (BITS16
| BITS32
))
1596 size
= (opx
->type
& BITS16
) ? 2 : 4;
1598 size
= (bits
== 16) ? 2 : 4;
1599 warn_overflow_opd(opx
, size
);
1600 out_imm(data
, opx
, size
, OUT_WRAP
);
1604 warn_overflow_opd(opx
, 4);
1605 out_imm(data
, opx
, 4, OUT_WRAP
);
1609 size
= ins
->addr_size
>> 3;
1610 warn_overflow_opd(opx
, size
);
1611 out_imm(data
, opx
, size
, OUT_WRAP
);
1615 if (opx
->segment
== data
->segment
) {
1616 int64_t delta
= opx
->offset
- data
->offset
1617 - (data
->inslen
- data
->insoffs
);
1618 if (delta
> 127 || delta
< -128)
1619 nasm_error(ERR_NONFATAL
, "short jump is out of range");
1621 out_reladdr(data
, opx
, 1);
1625 out_imm(data
, opx
, 8, OUT_WRAP
);
1629 out_reladdr(data
, opx
, 2);
1633 if (opx
->type
& (BITS16
| BITS32
| BITS64
))
1634 size
= (opx
->type
& BITS16
) ? 2 : 4;
1636 size
= (bits
== 16) ? 2 : 4;
1638 out_reladdr(data
, opx
, size
);
1642 out_reladdr(data
, opx
, 4);
1646 if (opx
->segment
== NO_SEG
)
1647 nasm_error(ERR_NONFATAL
, "value referenced by FAR is not"
1649 out_segment(data
, opx
);
1654 int mask
= ins
->prefixes
[PPS_VEX
] == P_EVEX
? 7 : 15;
1655 const struct operand
*opy
;
1658 opx
= &ins
->oprs
[c
>> 3];
1659 opy
= &ins
->oprs
[c
& 7];
1660 if (!absolute_op(opy
)) {
1661 nasm_error(ERR_NONFATAL
,
1662 "non-absolute expression not permitted as argument %d",
1664 } else if (opy
->offset
& ~mask
) {
1665 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1666 "is4 argument exceeds bounds");
1668 c
= opy
->offset
& mask
;
1674 opx
= &ins
->oprs
[c
>> 4];
1681 r
= nasm_regvals
[opx
->basereg
];
1682 out_rawbyte(data
, (r
<< 4) | ((r
& 0x10) >> 1) | c
);
1686 if (absolute_op(opx
) &&
1687 (int32_t)opx
->offset
!= (int64_t)opx
->offset
) {
1688 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1689 "signed dword immediate exceeds bounds");
1691 out_imm(data
, opx
, 4, OUT_SIGNED
);
1697 ins
->evex_p
[2] |= op_evexflags(&ins
->oprs
[0],
1698 EVEX_P2Z
| EVEX_P2AAA
, 2);
1699 ins
->evex_p
[2] ^= EVEX_P2VP
; /* 1's complement */
1701 /* EVEX.X can be set by either REX or EVEX for different reasons */
1702 bytes
[1] = ((((ins
->rex
& 7) << 5) |
1703 (ins
->evex_p
[0] & (EVEX_P0X
| EVEX_P0RP
))) ^ 0xf0) |
1704 (ins
->vex_cm
& EVEX_P0MM
);
1705 bytes
[2] = ((ins
->rex
& REX_W
) << (7 - 3)) |
1706 ((~ins
->vexreg
& 15) << 3) |
1707 (1 << 2) | (ins
->vex_wlp
& 3);
1708 bytes
[3] = ins
->evex_p
[2];
1709 out_rawdata(data
, bytes
, 4);
1715 if (ins
->vex_cm
!= 1 || (ins
->rex
& (REX_W
|REX_X
|REX_B
)) ||
1716 ins
->prefixes
[PPS_VEX
] == P_VEX3
) {
1717 bytes
[0] = (ins
->vex_cm
>> 6) ? 0x8f : 0xc4;
1718 bytes
[1] = (ins
->vex_cm
& 31) | ((~ins
->rex
& 7) << 5);
1719 bytes
[2] = ((ins
->rex
& REX_W
) << (7-3)) |
1720 ((~ins
->vexreg
& 15)<< 3) | (ins
->vex_wlp
& 07);
1721 out_rawdata(data
, bytes
, 3);
1724 bytes
[1] = ((~ins
->rex
& REX_R
) << (7-2)) |
1725 ((~ins
->vexreg
& 15) << 3) | (ins
->vex_wlp
& 07);
1726 out_rawdata(data
, bytes
, 2);
1740 if (absolute_op(opx
)) {
1741 if (ins
->rex
& REX_W
)
1743 else if (ins
->prefixes
[PPS_OSIZE
] == P_O16
)
1745 else if (ins
->prefixes
[PPS_OSIZE
] == P_O32
)
1750 um
= (uint64_t)2 << (s
-1);
1753 if (uv
> 127 && uv
< (uint64_t)-128 &&
1754 (uv
< um
-128 || uv
> um
-1)) {
1755 /* If this wasn't explicitly byte-sized, warn as though we
1756 * had fallen through to the imm16/32/64 case.
1758 nasm_error(ERR_WARNING
| ERR_PASS2
| ERR_WARN_NOV
,
1759 "%s value exceeds bounds",
1760 (opx
->type
& BITS8
) ? "signed byte" :
1766 /* Output as a raw byte to avoid byte overflow check */
1767 out_rawbyte(data
, (uint8_t)uv
);
1769 out_imm(data
, opx
, 1, OUT_WRAP
); /* XXX: OUT_SIGNED? */
1778 if (bits
== 32 && !has_prefix(ins
, PPS_ASIZE
, P_A16
))
1779 out_rawbyte(data
, 0x67);
1783 if (bits
!= 32 && !has_prefix(ins
, PPS_ASIZE
, P_A32
))
1784 out_rawbyte(data
, 0x67);
1816 out_rawbyte(data
, *codes
++ ^ get_cond_opcode(ins
->condition
));
1824 out_rawbyte(data
, c
- 0332 + 0xF2);
1828 if (ins
->rex
& REX_R
)
1829 out_rawbyte(data
, 0xF0);
1830 ins
->rex
&= ~(REX_L
|REX_R
);
1841 if (ins
->oprs
[0].segment
!= NO_SEG
)
1842 nasm_panic(0, "non-constant BSS size in pass two");
1844 out_reserve(data
, ins
->oprs
[0].offset
);
1854 out_rawbyte(data
, 0x66);
1863 out_rawbyte(data
, c
- 0366 + 0x66);
1870 out_rawbyte(data
, bits
== 16 ? 3 : 5);
1902 struct operand
*opy
= &ins
->oprs
[op2
];
1905 /* pick rfield from operand b (opx) */
1906 rflags
= regflag(opx
);
1907 rfield
= nasm_regvals
[opx
->basereg
];
1909 /* rfield is constant */
1914 if (process_ea(opy
, &ea_data
, bits
,
1915 rfield
, rflags
, ins
, &errmsg
) != eat
)
1916 nasm_error(ERR_NONFATAL
, "%s", errmsg
);
1919 *p
++ = ea_data
.modrm
;
1920 if (ea_data
.sib_present
)
1922 out_rawdata(data
, bytes
, p
- bytes
);
1925 * Make sure the address gets the right offset in case
1926 * the line breaks in the .lst file (BR 1197827)
1929 if (ea_data
.bytes
) {
1930 /* use compressed displacement, if available */
1931 if (ea_data
.disp8
) {
1932 out_rawbyte(data
, ea_data
.disp8
);
1933 } else if (ea_data
.rip
) {
1934 out_reladdr(data
, opy
, ea_data
.bytes
);
1936 int asize
= ins
->addr_size
>> 3;
1938 if (overflow_general(opy
->offset
, asize
) ||
1939 signed_bits(opy
->offset
, ins
->addr_size
) !=
1940 signed_bits(opy
->offset
, ea_data
.bytes
<< 3))
1941 warn_overflow(ea_data
.bytes
);
1943 out_imm(data
, opy
, ea_data
.bytes
,
1944 (asize
> ea_data
.bytes
)
1945 ? OUT_SIGNED
: OUT_WRAP
);
1952 nasm_panic(0, "internal instruction table corrupt"
1953 ": instruction code \\%o (0x%02X) given", c
, c
);
1959 static opflags_t
regflag(const operand
* o
)
1961 if (!is_register(o
->basereg
))
1962 nasm_panic(0, "invalid operand passed to regflag()");
1963 return nasm_reg_flags
[o
->basereg
];
1966 static int32_t regval(const operand
* o
)
1968 if (!is_register(o
->basereg
))
1969 nasm_panic(0, "invalid operand passed to regval()");
1970 return nasm_regvals
[o
->basereg
];
1973 static int op_rexflags(const operand
* o
, int mask
)
1978 if (!is_register(o
->basereg
))
1979 nasm_panic(0, "invalid operand passed to op_rexflags()");
1981 flags
= nasm_reg_flags
[o
->basereg
];
1982 val
= nasm_regvals
[o
->basereg
];
1984 return rexflags(val
, flags
, mask
);
1987 static int rexflags(int val
, opflags_t flags
, int mask
)
1991 if (val
>= 0 && (val
& 8))
1992 rex
|= REX_B
|REX_X
|REX_R
;
1995 if (!(REG_HIGH
& ~flags
)) /* AH, CH, DH, BH */
1997 else if (!(REG8
& ~flags
) && val
>= 4) /* SPL, BPL, SIL, DIL */
2003 static int evexflags(int val
, decoflags_t deco
,
2004 int mask
, uint8_t byte
)
2010 if (val
>= 0 && (val
& 16))
2011 evex
|= (EVEX_P0RP
| EVEX_P0X
);
2014 if (val
>= 0 && (val
& 16))
2018 if (deco
& OPMASK_MASK
)
2019 evex
|= deco
& EVEX_P2AAA
;
2025 static int op_evexflags(const operand
* o
, int mask
, uint8_t byte
)
2029 val
= nasm_regvals
[o
->basereg
];
2031 return evexflags(val
, o
->decoflags
, mask
, byte
);
2034 static enum match_result
find_match(const struct itemplate
**tempp
,
2036 int32_t segment
, int64_t offset
, int bits
)
2038 const struct itemplate
*temp
;
2039 enum match_result m
, merr
;
2040 opflags_t xsizeflags
[MAX_OPERANDS
];
2041 bool opsizemissing
= false;
2042 int8_t broadcast
= instruction
->evex_brerop
;
2045 /* broadcasting uses a different data element size */
2046 for (i
= 0; i
< instruction
->operands
; i
++)
2048 xsizeflags
[i
] = instruction
->oprs
[i
].decoflags
& BRSIZE_MASK
;
2050 xsizeflags
[i
] = instruction
->oprs
[i
].type
& SIZE_MASK
;
2052 merr
= MERR_INVALOP
;
2054 for (temp
= nasm_instructions
[instruction
->opcode
];
2055 temp
->opcode
!= I_none
; temp
++) {
2056 m
= matches(temp
, instruction
, bits
);
2057 if (m
== MOK_JUMP
) {
2058 if (jmp_match(segment
, offset
, bits
, instruction
, temp
))
2062 } else if (m
== MERR_OPSIZEMISSING
&& !itemp_has(temp
, IF_SX
)) {
2064 * Missing operand size and a candidate for fuzzy matching...
2066 for (i
= 0; i
< temp
->operands
; i
++)
2068 xsizeflags
[i
] |= temp
->deco
[i
] & BRSIZE_MASK
;
2070 xsizeflags
[i
] |= temp
->opd
[i
] & SIZE_MASK
;
2071 opsizemissing
= true;
2075 if (merr
== MOK_GOOD
)
2079 /* No match, but see if we can get a fuzzy operand size match... */
2083 for (i
= 0; i
< instruction
->operands
; i
++) {
2085 * We ignore extrinsic operand sizes on registers, so we should
2086 * never try to fuzzy-match on them. This also resolves the case
2087 * when we have e.g. "xmmrm128" in two different positions.
2089 if (is_class(REGISTER
, instruction
->oprs
[i
].type
))
2092 /* This tests if xsizeflags[i] has more than one bit set */
2093 if ((xsizeflags
[i
] & (xsizeflags
[i
]-1)))
2094 goto done
; /* No luck */
2096 if (i
== broadcast
) {
2097 instruction
->oprs
[i
].decoflags
|= xsizeflags
[i
];
2098 instruction
->oprs
[i
].type
|= (xsizeflags
[i
] == BR_BITS32
?
2101 instruction
->oprs
[i
].type
|= xsizeflags
[i
]; /* Set the size */
2105 /* Try matching again... */
2106 for (temp
= nasm_instructions
[instruction
->opcode
];
2107 temp
->opcode
!= I_none
; temp
++) {
2108 m
= matches(temp
, instruction
, bits
);
2109 if (m
== MOK_JUMP
) {
2110 if (jmp_match(segment
, offset
, bits
, instruction
, temp
))
2117 if (merr
== MOK_GOOD
)
2126 static uint8_t get_broadcast_num(opflags_t opflags
, opflags_t brsize
)
2128 unsigned int opsize
= (opflags
& SIZE_MASK
) >> SIZE_SHIFT
;
2131 if (brsize
> BITS64
)
2132 nasm_error(ERR_FATAL
,
2133 "size of broadcasting element is greater than 64 bits");
2136 * The shift term is to take care of the extra BITS80 inserted
2137 * between BITS64 and BITS128.
2139 brcast_num
= ((opsize
/ (BITS64
>> SIZE_SHIFT
)) * (BITS64
/ brsize
))
2140 >> (opsize
> (BITS64
>> SIZE_SHIFT
));
2145 static enum match_result
matches(const struct itemplate
*itemp
,
2146 insn
*instruction
, int bits
)
2148 opflags_t size
[MAX_OPERANDS
], asize
;
2149 bool opsizemissing
= false;
2155 if (itemp
->opcode
!= instruction
->opcode
)
2156 return MERR_INVALOP
;
2159 * Count the operands
2161 if (itemp
->operands
!= instruction
->operands
)
2162 return MERR_INVALOP
;
2167 if (!(optimizing
> 0) && itemp_has(itemp
, IF_OPT
))
2168 return MERR_INVALOP
;
2173 switch (instruction
->prefixes
[PPS_VEX
]) {
2175 if (!itemp_has(itemp
, IF_EVEX
))
2176 return MERR_ENCMISMATCH
;
2180 if (!itemp_has(itemp
, IF_VEX
))
2181 return MERR_ENCMISMATCH
;
2188 * Check that no spurious colons or TOs are present
2190 for (i
= 0; i
< itemp
->operands
; i
++)
2191 if (instruction
->oprs
[i
].type
& ~itemp
->opd
[i
] & (COLON
| TO
))
2192 return MERR_INVALOP
;
2195 * Process size flags
2197 switch (itemp_smask(itemp
)) {
2198 case IF_GENBIT(IF_SB
):
2201 case IF_GENBIT(IF_SW
):
2204 case IF_GENBIT(IF_SD
):
2207 case IF_GENBIT(IF_SQ
):
2210 case IF_GENBIT(IF_SO
):
2213 case IF_GENBIT(IF_SY
):
2216 case IF_GENBIT(IF_SZ
):
2219 case IF_GENBIT(IF_SIZE
):
2240 if (itemp_armask(itemp
)) {
2241 /* S- flags only apply to a specific operand */
2242 i
= itemp_arg(itemp
);
2243 memset(size
, 0, sizeof size
);
2246 /* S- flags apply to all operands */
2247 for (i
= 0; i
< MAX_OPERANDS
; i
++)
2252 * Check that the operand flags all match up,
2253 * it's a bit tricky so lets be verbose:
2255 * 1) Find out the size of operand. If instruction
2256 * doesn't have one specified -- we're trying to
2257 * guess it either from template (IF_S* flag) or
2260 * 2) If template operand do not match the instruction OR
2261 * template has an operand size specified AND this size differ
2262 * from which instruction has (perhaps we got it from code bits)
2264 * a) Check that only size of instruction and operand is differ
2265 * other characteristics do match
2266 * b) Perhaps it's a register specified in instruction so
2267 * for such a case we just mark that operand as "size
2268 * missing" and this will turn on fuzzy operand size
2269 * logic facility (handled by a caller)
2271 for (i
= 0; i
< itemp
->operands
; i
++) {
2272 opflags_t type
= instruction
->oprs
[i
].type
;
2273 decoflags_t deco
= instruction
->oprs
[i
].decoflags
;
2274 decoflags_t ideco
= itemp
->deco
[i
];
2275 bool is_broadcast
= deco
& BRDCAST_MASK
;
2276 uint8_t brcast_num
= 0;
2277 opflags_t template_opsize
, insn_opsize
;
2279 if (!(type
& SIZE_MASK
))
2282 insn_opsize
= type
& SIZE_MASK
;
2283 if (!is_broadcast
) {
2284 template_opsize
= itemp
->opd
[i
] & SIZE_MASK
;
2286 decoflags_t deco_brsize
= ideco
& BRSIZE_MASK
;
2288 if (~ideco
& BRDCAST_MASK
)
2289 return MERR_BRNOTHERE
;
2292 * when broadcasting, the element size depends on
2293 * the instruction type. decorator flag should match.
2296 template_opsize
= (deco_brsize
== BR_BITS32
? BITS32
: BITS64
);
2297 /* calculate the proper number : {1to<brcast_num>} */
2298 brcast_num
= get_broadcast_num(itemp
->opd
[i
], template_opsize
);
2300 template_opsize
= 0;
2304 if (~ideco
& deco
& OPMASK_MASK
)
2305 return MERR_MASKNOTHERE
;
2307 if (itemp
->opd
[i
] & ~type
& ~SIZE_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_WORDOFFS) && \
2410 (ins->rex & REX_EV ? seg == NO_SEG && !forw_ref && \
2411 is_disp8n(input, ins, &output->disp8) : \
2412 input->eaflags & EAF_BYTEOFFS || (o >= -128 && \
2413 o <= 127 && seg == NO_SEG && !forw_ref)))
2415 static enum ea_type
process_ea(operand
*input
, ea
*output
, int bits
,
2416 int rfield
, opflags_t rflags
, insn
*ins
,
2417 const char **errmsg
)
2419 bool forw_ref
= !!(input
->opflags
& OPFLAG_UNKNOWN
);
2420 int addrbits
= ins
->addr_size
;
2421 int eaflags
= input
->eaflags
;
2423 *errmsg
= "invalid effective address"; /* Default error message */
2425 output
->type
= EA_SCALAR
;
2426 output
->rip
= false;
2429 /* REX flags for the rfield operand */
2430 output
->rex
|= rexflags(rfield
, rflags
, REX_R
| REX_P
| REX_W
| REX_H
);
2431 /* EVEX.R' flag for the REG operand */
2432 ins
->evex_p
[0] |= evexflags(rfield
, 0, EVEX_P0RP
, 0);
2434 if (is_class(REGISTER
, input
->type
)) {
2436 * It's a direct register.
2438 if (!is_register(input
->basereg
))
2441 if (!is_reg_class(REG_EA
, input
->basereg
))
2444 /* broadcasting is not available with a direct register operand. */
2445 if (input
->decoflags
& BRDCAST_MASK
) {
2446 *errmsg
= "broadcast not allowed with register operand";
2450 output
->rex
|= op_rexflags(input
, REX_B
| REX_P
| REX_W
| REX_H
);
2451 ins
->evex_p
[0] |= op_evexflags(input
, EVEX_P0X
, 0);
2452 output
->sib_present
= false; /* no SIB necessary */
2453 output
->bytes
= 0; /* no offset necessary either */
2454 output
->modrm
= GEN_MODRM(3, rfield
, nasm_regvals
[input
->basereg
]);
2457 * It's a memory reference.
2460 /* Embedded rounding or SAE is not available with a mem ref operand. */
2461 if (input
->decoflags
& (ER
| SAE
)) {
2462 *errmsg
= "embedded rounding is available only with "
2463 "register-register operations";
2467 if (input
->basereg
== -1 &&
2468 (input
->indexreg
== -1 || input
->scale
== 0)) {
2470 * It's a pure offset.
2472 if (bits
== 64 && ((input
->type
& IP_REL
) == IP_REL
)) {
2473 if (input
->segment
== NO_SEG
||
2474 (input
->opflags
& OPFLAG_RELATIVE
)) {
2475 nasm_error(ERR_WARNING
| ERR_PASS2
,
2476 "absolute address can not be RIP-relative");
2477 input
->type
&= ~IP_REL
;
2478 input
->type
|= MEMORY
;
2483 !(IP_REL
& ~input
->type
) && (eaflags
& EAF_MIB
)) {
2484 *errmsg
= "RIP-relative addressing is prohibited for MIB";
2488 if (eaflags
& EAF_BYTEOFFS
||
2489 (eaflags
& EAF_WORDOFFS
&&
2490 input
->disp_size
!= (addrbits
!= 16 ? 32 : 16))) {
2491 nasm_error(ERR_WARNING
| ERR_PASS1
,
2492 "displacement size ignored on absolute address");
2495 if (bits
== 64 && (~input
->type
& IP_REL
)) {
2496 output
->sib_present
= true;
2497 output
->sib
= GEN_SIB(0, 4, 5);
2499 output
->modrm
= GEN_MODRM(0, rfield
, 4);
2500 output
->rip
= false;
2502 output
->sib_present
= false;
2503 output
->bytes
= (addrbits
!= 16 ? 4 : 2);
2504 output
->modrm
= GEN_MODRM(0, rfield
,
2505 (addrbits
!= 16 ? 5 : 6));
2506 output
->rip
= bits
== 64;
2510 * It's an indirection.
2512 int i
= input
->indexreg
, b
= input
->basereg
, s
= input
->scale
;
2513 int32_t seg
= input
->segment
;
2514 int hb
= input
->hintbase
, ht
= input
->hinttype
;
2515 int t
, it
, bt
; /* register numbers */
2516 opflags_t x
, ix
, bx
; /* register flags */
2519 i
= -1; /* make this easy, at least */
2521 if (is_register(i
)) {
2522 it
= nasm_regvals
[i
];
2523 ix
= nasm_reg_flags
[i
];
2529 if (is_register(b
)) {
2530 bt
= nasm_regvals
[b
];
2531 bx
= nasm_reg_flags
[b
];
2537 /* if either one are a vector register... */
2538 if ((ix
|bx
) & (XMMREG
|YMMREG
|ZMMREG
) & ~REG_EA
) {
2539 opflags_t sok
= BITS32
| BITS64
;
2540 int32_t o
= input
->offset
;
2541 int mod
, scale
, index
, base
;
2544 * For a vector SIB, one has to be a vector and the other,
2545 * if present, a GPR. The vector must be the index operand.
2547 if (it
== -1 || (bx
& (XMMREG
|YMMREG
|ZMMREG
) & ~REG_EA
)) {
2553 t
= bt
, bt
= it
, it
= t
;
2554 x
= bx
, bx
= ix
, ix
= x
;
2560 if (!(REG64
& ~bx
) || !(REG32
& ~bx
))
2567 * While we're here, ensure the user didn't specify
2570 if (input
->disp_size
== 16 || input
->disp_size
== 64)
2573 if (addrbits
== 16 ||
2574 (addrbits
== 32 && !(sok
& BITS32
)) ||
2575 (addrbits
== 64 && !(sok
& BITS64
)))
2578 output
->type
= ((ix
& ZMMREG
& ~REG_EA
) ? EA_ZMMVSIB
2579 : ((ix
& YMMREG
& ~REG_EA
)
2580 ? EA_YMMVSIB
: EA_XMMVSIB
));
2582 output
->rex
|= rexflags(it
, ix
, REX_X
);
2583 output
->rex
|= rexflags(bt
, bx
, REX_B
);
2584 ins
->evex_p
[2] |= evexflags(it
, 0, EVEX_P2VP
, 2);
2586 index
= it
& 7; /* it is known to be != -1 */
2601 default: /* then what the smeg is it? */
2602 goto err
; /* panic */
2610 if (base
!= REG_NUM_EBP
&& o
== 0 &&
2611 seg
== NO_SEG
&& !forw_ref
&&
2612 !(eaflags
& (EAF_BYTEOFFS
| EAF_WORDOFFS
)))
2614 else if (IS_MOD_01())
2620 output
->sib_present
= true;
2621 output
->bytes
= (bt
== -1 || mod
== 2 ? 4 : mod
);
2622 output
->modrm
= GEN_MODRM(mod
, rfield
, 4);
2623 output
->sib
= GEN_SIB(scale
, index
, base
);
2624 } else if ((ix
|bx
) & (BITS32
|BITS64
)) {
2626 * it must be a 32/64-bit memory reference. Firstly we have
2627 * to check that all registers involved are type E/Rxx.
2629 opflags_t sok
= BITS32
| BITS64
;
2630 int32_t o
= input
->offset
;
2633 if (!(REG64
& ~ix
) || !(REG32
& ~ix
))
2641 goto err
; /* Invalid register */
2642 if (~sok
& bx
& SIZE_MASK
)
2643 goto err
; /* Invalid size */
2648 * While we're here, ensure the user didn't specify
2651 if (input
->disp_size
== 16 || input
->disp_size
== 64)
2654 if (addrbits
== 16 ||
2655 (addrbits
== 32 && !(sok
& BITS32
)) ||
2656 (addrbits
== 64 && !(sok
& BITS64
)))
2659 /* now reorganize base/index */
2660 if (s
== 1 && bt
!= it
&& bt
!= -1 && it
!= -1 &&
2661 ((hb
== b
&& ht
== EAH_NOTBASE
) ||
2662 (hb
== i
&& ht
== EAH_MAKEBASE
))) {
2663 /* swap if hints say so */
2664 t
= bt
, bt
= it
, it
= t
;
2665 x
= bx
, bx
= ix
, ix
= x
;
2668 if (bt
== -1 && s
== 1 && !(hb
== i
&& ht
== EAH_NOTBASE
)) {
2669 /* make single reg base, unless hint */
2670 bt
= it
, bx
= ix
, it
= -1, ix
= 0;
2672 if (eaflags
& EAF_MIB
) {
2673 /* only for mib operands */
2674 if (it
== -1 && (hb
== b
&& ht
== EAH_NOTBASE
)) {
2676 * make a single reg index [reg*1].
2677 * gas uses this form for an explicit index register.
2679 it
= bt
, ix
= bx
, bt
= -1, bx
= 0, s
= 1;
2681 if ((ht
== EAH_SUMMED
) && bt
== -1) {
2682 /* separate once summed index into [base, index] */
2683 bt
= it
, bx
= ix
, s
--;
2686 if (((s
== 2 && it
!= REG_NUM_ESP
&&
2687 (!(eaflags
& EAF_TIMESTWO
) || (ht
== EAH_SUMMED
))) ||
2688 s
== 3 || s
== 5 || s
== 9) && bt
== -1) {
2689 /* convert 3*EAX to EAX+2*EAX */
2690 bt
= it
, bx
= ix
, s
--;
2692 if (it
== -1 && (bt
& 7) != REG_NUM_ESP
&&
2693 (eaflags
& EAF_TIMESTWO
) &&
2694 (hb
== b
&& ht
== EAH_NOTBASE
)) {
2696 * convert [NOSPLIT EAX*1]
2697 * to sib format with 0x0 displacement - [EAX*1+0].
2699 it
= bt
, ix
= bx
, bt
= -1, bx
= 0, s
= 1;
2702 if (s
== 1 && it
== REG_NUM_ESP
) {
2703 /* swap ESP into base if scale is 1 */
2704 t
= it
, it
= bt
, bt
= t
;
2705 x
= ix
, ix
= bx
, bx
= x
;
2707 if (it
== REG_NUM_ESP
||
2708 (s
!= 1 && s
!= 2 && s
!= 4 && s
!= 8 && it
!= -1))
2709 goto err
; /* wrong, for various reasons */
2711 output
->rex
|= rexflags(it
, ix
, REX_X
);
2712 output
->rex
|= rexflags(bt
, bx
, REX_B
);
2714 if (it
== -1 && (bt
& 7) != REG_NUM_ESP
) {
2723 if (rm
!= REG_NUM_EBP
&& o
== 0 &&
2724 seg
== NO_SEG
&& !forw_ref
&&
2725 !(eaflags
& (EAF_BYTEOFFS
| EAF_WORDOFFS
)))
2727 else if (IS_MOD_01())
2733 output
->sib_present
= false;
2734 output
->bytes
= (bt
== -1 || mod
== 2 ? 4 : mod
);
2735 output
->modrm
= GEN_MODRM(mod
, rfield
, rm
);
2738 int mod
, scale
, index
, base
;
2758 default: /* then what the smeg is it? */
2759 goto err
; /* panic */
2767 if (base
!= REG_NUM_EBP
&& o
== 0 &&
2768 seg
== NO_SEG
&& !forw_ref
&&
2769 !(eaflags
& (EAF_BYTEOFFS
| EAF_WORDOFFS
)))
2771 else if (IS_MOD_01())
2777 output
->sib_present
= true;
2778 output
->bytes
= (bt
== -1 || mod
== 2 ? 4 : mod
);
2779 output
->modrm
= GEN_MODRM(mod
, rfield
, 4);
2780 output
->sib
= GEN_SIB(scale
, index
, base
);
2782 } else { /* it's 16-bit */
2784 int16_t o
= input
->offset
;
2786 /* check for 64-bit long mode */
2790 /* check all registers are BX, BP, SI or DI */
2791 if ((b
!= -1 && b
!= R_BP
&& b
!= R_BX
&& b
!= R_SI
&& b
!= R_DI
) ||
2792 (i
!= -1 && i
!= R_BP
&& i
!= R_BX
&& i
!= R_SI
&& i
!= R_DI
))
2795 /* ensure the user didn't specify DWORD/QWORD */
2796 if (input
->disp_size
== 32 || input
->disp_size
== 64)
2799 if (s
!= 1 && i
!= -1)
2800 goto err
; /* no can do, in 16-bit EA */
2801 if (b
== -1 && i
!= -1) {
2806 if ((b
== R_SI
|| b
== R_DI
) && i
!= -1) {
2811 /* have BX/BP as base, SI/DI index */
2813 goto err
; /* shouldn't ever happen, in theory */
2814 if (i
!= -1 && b
!= -1 &&
2815 (i
== R_BP
|| i
== R_BX
|| b
== R_SI
|| b
== R_DI
))
2816 goto err
; /* invalid combinations */
2817 if (b
== -1) /* pure offset: handled above */
2818 goto err
; /* so if it gets to here, panic! */
2822 switch (i
* 256 + b
) {
2823 case R_SI
* 256 + R_BX
:
2826 case R_DI
* 256 + R_BX
:
2829 case R_SI
* 256 + R_BP
:
2832 case R_DI
* 256 + R_BP
:
2850 if (rm
== -1) /* can't happen, in theory */
2851 goto err
; /* so panic if it does */
2853 if (o
== 0 && seg
== NO_SEG
&& !forw_ref
&& rm
!= 6 &&
2854 !(eaflags
& (EAF_BYTEOFFS
| EAF_WORDOFFS
)))
2856 else if (IS_MOD_01())
2861 output
->sib_present
= false; /* no SIB - it's 16-bit */
2862 output
->bytes
= mod
; /* bytes of offset needed */
2863 output
->modrm
= GEN_MODRM(mod
, rfield
, rm
);
2868 output
->size
= 1 + output
->sib_present
+ output
->bytes
;
2869 return output
->type
;
2872 return output
->type
= EA_INVALID
;
2875 static void add_asp(insn
*ins
, int addrbits
)
2880 valid
= (addrbits
== 64) ? 64|32 : 32|16;
2882 switch (ins
->prefixes
[PPS_ASIZE
]) {
2893 valid
&= (addrbits
== 32) ? 16 : 32;
2899 for (j
= 0; j
< ins
->operands
; j
++) {
2900 if (is_class(MEMORY
, ins
->oprs
[j
].type
)) {
2903 /* Verify as Register */
2904 if (!is_register(ins
->oprs
[j
].indexreg
))
2907 i
= nasm_reg_flags
[ins
->oprs
[j
].indexreg
];
2909 /* Verify as Register */
2910 if (!is_register(ins
->oprs
[j
].basereg
))
2913 b
= nasm_reg_flags
[ins
->oprs
[j
].basereg
];
2915 if (ins
->oprs
[j
].scale
== 0)
2919 int ds
= ins
->oprs
[j
].disp_size
;
2920 if ((addrbits
!= 64 && ds
> 8) ||
2921 (addrbits
== 64 && ds
== 16))
2941 if (valid
& addrbits
) {
2942 ins
->addr_size
= addrbits
;
2943 } else if (valid
& ((addrbits
== 32) ? 16 : 32)) {
2944 /* Add an address size prefix */
2945 ins
->prefixes
[PPS_ASIZE
] = (addrbits
== 32) ? P_A16
: P_A32
;;
2946 ins
->addr_size
= (addrbits
== 32) ? 16 : 32;
2949 nasm_error(ERR_NONFATAL
, "impossible combination of address sizes");
2950 ins
->addr_size
= addrbits
; /* Error recovery */
2953 defdisp
= ins
->addr_size
== 16 ? 16 : 32;
2955 for (j
= 0; j
< ins
->operands
; j
++) {
2956 if (!(MEM_OFFS
& ~ins
->oprs
[j
].type
) &&
2957 (ins
->oprs
[j
].disp_size
? ins
->oprs
[j
].disp_size
: defdisp
) != ins
->addr_size
) {
2959 * mem_offs sizes must match the address size; if not,
2960 * strip the MEM_OFFS bit and match only EA instructions
2962 ins
->oprs
[j
].type
&= ~(MEM_OFFS
& ~MEMORY
);