diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-29 02:57:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-29 02:57:56 +0000 |
commit | 4c270657cfbd0da323d562f6b94ff724aac70546 (patch) | |
tree | 19227bd8b181347d00a5d0609ac8c634cfe69c50 /test | |
parent | e67bf5d6222596154c6fb5b3d24bb4cfbc674171 (diff) | |
download | external_llvm-4c270657cfbd0da323d562f6b94ff724aac70546.zip external_llvm-4c270657cfbd0da323d562f6b94ff724aac70546.tar.gz external_llvm-4c270657cfbd0da323d562f6b94ff724aac70546.tar.bz2 |
add basic avx support to the disassembler, also teach it about ssmem/sdmem
operands.
With this done, we can remove the _Int suffixes from the round instructions
without the disassembler blowing up. This allows the assembler to support
them, implementing rdar://8456376 - llvm-mc rejects 'roundss'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/AsmParser/X86/x86_instructions.s | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/MC/AsmParser/X86/x86_instructions.s b/test/MC/AsmParser/X86/x86_instructions.s index ecc8b87..1e164e7 100644 --- a/test/MC/AsmParser/X86/x86_instructions.s +++ b/test/MC/AsmParser/X86/x86_instructions.s @@ -430,3 +430,9 @@ cvttpd2dq (%rax), %xmm0 // CHECK: cvttpd2dq (%rax), %xmm0 cvttps2dq %xmm1, %xmm0 // CHECK: cvttps2dq %xmm1, %xmm0 cvttps2dq (%rax), %xmm0 // CHECK: cvttps2dq (%rax), %xmm0 + +// rdar://8456376 - llvm-mc rejects 'roundss' +roundss $0xE, %xmm0, %xmm0 // CHECK: encoding: [0x66,0x0f,0x3a,0x0a,0xc0,0x0e] +roundps $0xE, %xmm0, %xmm0 // CHECK: encoding: [0x66,0x0f,0x3a,0x08,0xc0,0x0e] +roundsd $0xE, %xmm0, %xmm0 // CHECK: encoding: [0x66,0x0f,0x3a,0x0b,0xc0,0x0e] +roundpd $0xE, %xmm0, %xmm0 // CHECK: encoding: [0x66,0x0f,0x3a,0x09,0xc0,0x0e] |