Statistics
| Branch: | Revision:

root / disas / i386.c @ 8cfd0495

History | View | Annotate | Download (160.5 kB)

# Date Author Comment
d640045a 04/13/2013 02:51 pm Aurelien Jarno

target-i386: add AES-NI instructions

Reviewed-by: Edgar E. Iglesias <>
Reviewed-by: Richard Henderson <>
Signed-off-by: Aurelien Jarno <>

8dbd3fc3 04/13/2013 02:51 pm Aurelien Jarno

disas/i386.c: disassemble pclmulqdq instruction

Reviewed-by: Richard Henderson <>
Signed-off-by: Aurelien Jarno <>

309b4de1 04/13/2013 02:51 pm Aurelien Jarno

disas/i386.c: disassemble aes-ni instructions

Reviewed-by: Richard Henderson <>
Signed-off-by: Aurelien Jarno <>

6ab7e546 02/23/2013 06:11 pm Peter Maydell

Replace all setjmp()/longjmp() with sigsetjmp()/siglongjmp()

The setjmp() function doesn't specify whether signal masks are saved and
restored; on Linux they are not, but on BSD (including MacOSX) they are.
We want to have consistent behaviour across platforms, so we should...

af18078d 02/23/2013 11:50 am Peter Maydell

disas/i386.c: Add explicit braces round empty for-loop body

Add explicit braces round an empty for-loop body; this fits
QEMU style and is easier to read than an inconspicuous semicolon
at the end of the line. It also silences a clang warning:

disas/i386.c:4723:49: warning: for loop has empty body [-Wempty-body]...

76cad711 12/19/2012 09:29 am Paolo Bonzini

build: kill libdis, move disassemblers to disas/

Signed-off-by: Paolo Bonzini <>