mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
i386: Issue a warning to IRET without suffix for .code16gcc
The .code16gcc directive to support 16-bit mode with 32-bit address. For IRET without a suffix, generate 16-bit IRET with a warning to return from an interrupt handler in 16-bit mode. PR gas/24485 * config/tc-i386.c (process_suffix): Issue a warning to IRET without a suffix for .code16gcc. * testsuite/gas/i386/jump16.s: Add tests for iretX. * testsuite/gas/i386/jump16.d: Updated. * testsuite/gas/i386/jump16.e: New file.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
2019-05-02 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR gas/24485
|
||||||
|
* config/tc-i386.c (process_suffix): Issue a warning to IRET
|
||||||
|
without a suffix for .code16gcc.
|
||||||
|
* testsuite/gas/i386/jump16.s: Add tests for iretX.
|
||||||
|
* testsuite/gas/i386/jump16.d: Updated.
|
||||||
|
* testsuite/gas/i386/jump16.e: New file.
|
||||||
|
|
||||||
2019-05-01 Sudakshina Das <sudi.das@arm.com>
|
2019-05-01 Sudakshina Das <sudi.das@arm.com>
|
||||||
|
|
||||||
* config/tc-aarch64.c (parse_operands): Add case for
|
* config/tc-aarch64.c (parse_operands): Add case for
|
||||||
|
@ -6242,7 +6242,19 @@ process_suffix (void)
|
|||||||
/* exclude fldenv/frstor/fsave/fstenv */
|
/* exclude fldenv/frstor/fsave/fstenv */
|
||||||
&& i.tm.opcode_modifier.no_ssuf)
|
&& i.tm.opcode_modifier.no_ssuf)
|
||||||
{
|
{
|
||||||
i.suffix = stackop_size;
|
if (stackop_size == LONG_MNEM_SUFFIX
|
||||||
|
&& i.tm.base_opcode == 0xcf)
|
||||||
|
{
|
||||||
|
/* stackop_size is set to LONG_MNEM_SUFFIX for the
|
||||||
|
.code16gcc directive to support 16-bit mode with
|
||||||
|
32-bit address. For IRET without a suffix, generate
|
||||||
|
16-bit IRET (opcode 0xcf) to return from an interrupt
|
||||||
|
handler. */
|
||||||
|
i.suffix = WORD_MNEM_SUFFIX;
|
||||||
|
as_warn (_("generating 16-bit `iret' for .code16gcc directive"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
i.suffix = stackop_size;
|
||||||
}
|
}
|
||||||
else if (intel_syntax
|
else if (intel_syntax
|
||||||
&& !i.suffix
|
&& !i.suffix
|
||||||
@ -6352,13 +6364,7 @@ process_suffix (void)
|
|||||||
if (!add_prefix (ADDR_PREFIX_OPCODE))
|
if (!add_prefix (ADDR_PREFIX_OPCODE))
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
/* stackop_size is set to LONG_MNEM_SUFFIX for the .code16gcc
|
|
||||||
directive to support 16bit mode with 32-bit address. Since
|
|
||||||
IRET (opcode 0xcf) in 16bit mode returns from an interrupt
|
|
||||||
in 16bit mode, we shouldn't add DATA_PREFIX_OPCODE here. */
|
|
||||||
else if (i.suffix != QWORD_MNEM_SUFFIX
|
else if (i.suffix != QWORD_MNEM_SUFFIX
|
||||||
&& (stackop_size != LONG_MNEM_SUFFIX
|
|
||||||
|| i.tm.base_opcode != 0xcf)
|
|
||||||
&& !i.tm.opcode_modifier.ignoresize
|
&& !i.tm.opcode_modifier.ignoresize
|
||||||
&& !i.tm.opcode_modifier.floatmf
|
&& !i.tm.opcode_modifier.floatmf
|
||||||
&& !i.tm.opcode_modifier.vex
|
&& !i.tm.opcode_modifier.vex
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#name: i386 jump16
|
#name: i386 jump16
|
||||||
#objdump: -drw -mi8086
|
#objdump: -drw -mi8086
|
||||||
|
#warning_output: jump16.e
|
||||||
|
|
||||||
.*: file format .*i386.*
|
.*: file format .*i386.*
|
||||||
|
|
||||||
@ -69,4 +70,8 @@ Disassembly of section .text:
|
|||||||
[ ]*[a-f0-9]+: ea 00 00 90 90 ljmp \$0x9090,\$0x0 f2: (R_386_)?16 xxx
|
[ ]*[a-f0-9]+: ea 00 00 90 90 ljmp \$0x9090,\$0x0 f2: (R_386_)?16 xxx
|
||||||
[ ]*[a-f0-9]+: cf iret
|
[ ]*[a-f0-9]+: cf iret
|
||||||
[ ]*[a-f0-9]+: cf iret
|
[ ]*[a-f0-9]+: cf iret
|
||||||
|
[ ]*[a-f0-9]+: 66 cf iretl
|
||||||
|
[ ]*[a-f0-9]+: cf iret
|
||||||
|
[ ]*[a-f0-9]+: cf iret
|
||||||
|
[ ]*[a-f0-9]+: 66 cf iretl
|
||||||
#pass
|
#pass
|
||||||
|
3
gas/testsuite/gas/i386/jump16.e
Normal file
3
gas/testsuite/gas/i386/jump16.e
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.*: Assembler messages:
|
||||||
|
.*:77: Warning: generating 16-bit `iret' for .code16gcc directive
|
||||||
|
.*:88: Warning: generating 16-bit `iret' for .code16gcc directive
|
@ -72,8 +72,24 @@
|
|||||||
jmp 0x9090,xxx
|
jmp 0x9090,xxx
|
||||||
jmp 0x9090:xxx
|
jmp 0x9090:xxx
|
||||||
|
|
||||||
|
.att_syntax
|
||||||
.code16gcc
|
.code16gcc
|
||||||
iret
|
iret
|
||||||
|
iretw
|
||||||
|
iretl
|
||||||
|
|
||||||
.code16
|
.code16
|
||||||
iret
|
iret
|
||||||
|
iretw
|
||||||
|
iretl
|
||||||
|
|
||||||
|
.intel_syntax noprefix
|
||||||
|
.code16gcc
|
||||||
|
iret
|
||||||
|
iretw
|
||||||
|
iretd
|
||||||
|
|
||||||
|
.code16
|
||||||
|
iret
|
||||||
|
iretw
|
||||||
|
iretd
|
||||||
|
Reference in New Issue
Block a user