a8767b3
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
f524ac5
From: Fedora GDB patches <invalid@email.com>
f524ac5
Date: Fri, 27 Oct 2017 21:07:50 +0200
f524ac5
Subject: gdb-test-ivy-bridge.patch
f524ac5
f637971
;; Test GDB opcodes/ disassembly of Intel Ivy Bridge instructions (BZ 696890).
f637971
;;=fedoratest
f524ac5
f637971
diff --git a/gdb/testsuite/gdb.arch/amd64-ivy-bridge.S b/gdb/testsuite/gdb.arch/amd64-ivy-bridge.S
f637971
new file mode 100644
f637971
--- /dev/null
f637971
+++ b/gdb/testsuite/gdb.arch/amd64-ivy-bridge.S
f637971
@@ -0,0 +1,98 @@
f637971
+/* Copyright 2011 Free Software Foundation, Inc.
f637971
+
f637971
+   This program is free software; you can redistribute it and/or modify
f637971
+   it under the terms of the GNU General Public License as published by
f637971
+   the Free Software Foundation; either version 3 of the License, or
f637971
+   (at your option) any later version.
f637971
+
f637971
+   This program is distributed in the hope that it will be useful,
f637971
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
f637971
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f637971
+   GNU General Public License for more details.
f637971
+
f637971
+   You should have received a copy of the GNU General Public License
f637971
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
f637971
+
f637971
+   This file is part of the gdb testsuite.  */
f637971
+
f637971
+	.globl _start
f637971
+_start:	.text
f637971
+
f637971
+/* gas/i386/x86-64-rdrnd.s */
f637971
+	.att_syntax prefix
f637971
+	rdrand %bx
f637971
+	rdrand %ebx
f637971
+	rdrand %rbx
f637971
+	rdrand %r8w
f637971
+	rdrand %r8d
f637971
+	rdrand %r8
f637971
+
f637971
+	.intel_syntax noprefix
f637971
+	rdrand bx
f637971
+	rdrand ebx
f637971
+	rdrand rbx
f637971
+	rdrand r8w
f637971
+	rdrand r8d
f637971
+	rdrand r8
f637971
+
f637971
+/* gas/i386/x86-64-f16c.s */
f637971
+	.att_syntax prefix
f637971
+	vcvtph2ps %xmm4,%ymm4
f637971
+	vcvtph2ps (%r8),%ymm8
f637971
+	vcvtph2ps %xmm4,%xmm6
f637971
+	vcvtph2ps (%rcx),%xmm4
f637971
+	vcvtps2ph $0x2,%ymm4,%xmm4
f637971
+	vcvtps2ph $0x2,%ymm8,(%r8)
f637971
+	vcvtps2ph $0x2,%xmm4,%xmm4
f637971
+	vcvtps2ph $0x2,%xmm4,(%rcx) 
f637971
+
f637971
+	.intel_syntax noprefix
f637971
+	vcvtph2ps ymm4,xmm4
f637971
+	vcvtph2ps ymm8,XMMWORD PTR [r8]
f637971
+	vcvtph2ps ymm4,[rcx]
f637971
+	vcvtph2ps xmm6,xmm4
f637971
+	vcvtph2ps xmm4,QWORD PTR [rcx]          
f637971
+	vcvtph2ps xmm4,[rcx]
f637971
+	vcvtps2ph xmm4,ymm4,0x2
f637971
+	vcvtps2ph XMMWORD PTR [rcx],ymm4,0x2    
f637971
+	vcvtps2ph [rcx],ymm4,0x2 
f637971
+	vcvtps2ph xmm4,xmm4,0x2
f637971
+	vcvtps2ph QWORD PTR [r8],xmm8,0x2       
f637971
+	vcvtps2ph [rcx],xmm4,0x2 
f637971
+
f637971
+/* gas/i386/x86-64-fsgs.s */
f637971
+	.att_syntax prefix
f637971
+	rdfsbase %ebx
f637971
+	rdfsbase %rbx
f637971
+	rdfsbase %r8d
f637971
+	rdfsbase %r8
f637971
+	rdgsbase %ebx
f637971
+	rdgsbase %rbx   
f637971
+	rdgsbase %r8d   
f637971
+	rdgsbase %r8    
f637971
+	wrfsbase %ebx   
f637971
+	wrfsbase %rbx   
f637971
+	wrfsbase %r8d   
f637971
+	wrfsbase %r8    
f637971
+	wrgsbase %ebx   
f637971
+	wrgsbase %rbx   
f637971
+	wrgsbase %r8d   
f637971
+	wrgsbase %r8    
f637971
+
f637971
+	.intel_syntax noprefix
f637971
+	rdfsbase ebx    
f637971
+	rdfsbase rbx    
f637971
+	rdfsbase r8d    
f637971
+	rdfsbase r8
f637971
+	rdgsbase ebx    
f637971
+	rdgsbase rbx    
f637971
+	rdgsbase r8d    
f637971
+	rdgsbase r8
f637971
+	wrfsbase ebx    
f637971
+	wrfsbase rbx    
f637971
+	wrfsbase r8d    
f637971
+	wrfsbase r8
f637971
+	wrgsbase ebx    
f637971
+	wrgsbase rbx    
f637971
+	wrgsbase r8d    
f637971
+	wrgsbase r8
f637971
diff --git a/gdb/testsuite/gdb.arch/amd64-ivy-bridge.exp b/gdb/testsuite/gdb.arch/amd64-ivy-bridge.exp
f637971
new file mode 100644
f637971
--- /dev/null
f637971
+++ b/gdb/testsuite/gdb.arch/amd64-ivy-bridge.exp
Jan Kratochvil 29d49d9
@@ -0,0 +1,170 @@
Jan Kratochvil 29d49d9
+# Copyright 2011 Free Software Foundation, Inc.
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+# This program is free software; you can redistribute it and/or modify
Jan Kratochvil 29d49d9
+# it under the terms of the GNU General Public License as published by
Jan Kratochvil 29d49d9
+# the Free Software Foundation; either version 3 of the License, or
Jan Kratochvil 29d49d9
+# (at your option) any later version.
Jan Kratochvil 29d49d9
+#
Jan Kratochvil 29d49d9
+# This program is distributed in the hope that it will be useful,
Jan Kratochvil 29d49d9
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
Jan Kratochvil 29d49d9
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Jan Kratochvil 29d49d9
+# GNU General Public License for more details.
Jan Kratochvil 29d49d9
+#
Jan Kratochvil 29d49d9
+# You should have received a copy of the GNU General Public License
Jan Kratochvil 29d49d9
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+if {![istarget "x86_64-*-*"]} then {
Jan Kratochvil 29d49d9
+    return
Jan Kratochvil 29d49d9
+}
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+set testfile amd64-ivy-bridge
Jan Kratochvil 29d49d9
+set test compilation
Jan Kratochvil 29d49d9
+if [prepare_for_testing ${testfile}.exp ${testfile}.x ${testfile}.S [list debug "additional_flags=-m64 -nostdlib"]] {
Jan Kratochvil 29d49d9
+    fail $test
Jan Kratochvil 29d49d9
+    return -1
Jan Kratochvil 29d49d9
+}
Jan Kratochvil 29d49d9
+pass $test
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+gdb_test_no_output "set disassembly-flavor att"
Jan Kratochvil 29d49d9
+# gas/i386/x86-64-rdrnd.d
Jan Kratochvil 29d49d9
+# gas/i386/x86-64-f16c.d
Jan Kratochvil 29d49d9
+# gas/i386/x86-64-fsgs.d
Jan Kratochvil 29d49d9
+gdb_test "disassemble/r _start" "\r
Jan Kratochvil 29d49d9
+Dump of assembler code for function _start:\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 0f c7 f3\t\(             \)?rdrand %bx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t0f c7 f3\t\(                \)?rdrand %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t48 0f c7 f3\t\(             \)?rdrand %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 41 0f c7 f0\t\(          \)?rdrand %r8w\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t41 0f c7 f0\t\(             \)?rdrand %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t49 0f c7 f0\t\(             \)?rdrand %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 0f c7 f3\t\(             \)?rdrand %bx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t0f c7 f3\t\(                \)?rdrand %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t48 0f c7 f3\t\(             \)?rdrand %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 41 0f c7 f0\t\(          \)?rdrand %r8w\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t41 0f c7 f0\t\(             \)?rdrand %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t49 0f c7 f0\t\(             \)?rdrand %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 e4\t\(          \)?vcvtph2ps %xmm4,%ymm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 42 7d 13 00\t\(          \)?vcvtph2ps \\(%r8\\),%ymm8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 f4\t\(          \)?vcvtph2ps %xmm4,%xmm6\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps \\(%rcx\\),%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d e4 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 43 7d 1d 00 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm8,\\(%r8\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d e4 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,\\(%rcx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 e4\t\(          \)?vcvtph2ps %xmm4,%ymm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 42 7d 13 00\t\(          \)?vcvtph2ps \\(%r8\\),%ymm8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 21\t\(          \)?vcvtph2ps \\(%rcx\\),%ymm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 f4\t\(          \)?vcvtph2ps %xmm4,%xmm6\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps \\(%rcx\\),%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps \\(%rcx\\),%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d e4 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,\\(%rcx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,\\(%rcx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d e4 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 43 79 1d 00 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm8,\\(%r8\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,\\(%rcx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae c3\t\(             \)?rdfsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae c3\t\(          \)?rdfsbase %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae c0\t\(          \)?rdfsbase %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae c0\t\(          \)?rdfsbase %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae cb\t\(             \)?rdgsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae cb\t\(          \)?rdgsbase %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae c8\t\(          \)?rdgsbase %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae c8\t\(          \)?rdgsbase %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae d3\t\(             \)?wrfsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae d3\t\(          \)?wrfsbase %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae d0\t\(          \)?wrfsbase %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae d0\t\(          \)?wrfsbase %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae db\t\(             \)?wrgsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae db\t\(          \)?wrgsbase %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae d8\t\(          \)?wrgsbase %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae d8\t\(          \)?wrgsbase %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae c3\t\(             \)?rdfsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae c3\t\(          \)?rdfsbase %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae c0\t\(          \)?rdfsbase %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae c0\t\(          \)?rdfsbase %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae cb\t\(             \)?rdgsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae cb\t\(          \)?rdgsbase %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae c8\t\(          \)?rdgsbase %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae c8\t\(          \)?rdgsbase %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae d3\t\(             \)?wrfsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae d3\t\(          \)?wrfsbase %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae d0\t\(          \)?wrfsbase %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae d0\t\(          \)?wrfsbase %r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae db\t\(             \)?wrgsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae db\t\(          \)?wrgsbase %rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae d8\t\(          \)?wrgsbase %r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae d8\t\(          \)?wrgsbase %r8\r
Jan Kratochvil 29d49d9
+End of assembler dump\\." "att"
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+gdb_test_no_output "set disassembly-flavor intel"
Jan Kratochvil 29d49d9
+# gas/i386/x86-64-rdrnd-intel.d
Jan Kratochvil 29d49d9
+# gas/i386/x86-64-f16c-intel.d
Jan Kratochvil 29d49d9
+# gas/i386/x86-64-fsgs-intel.d
Jan Kratochvil 29d49d9
+gdb_test "disassemble/r _start" "\r
Jan Kratochvil 29d49d9
+Dump of assembler code for function _start:\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 0f c7 f3\t\(             \)?rdrand bx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t0f c7 f3\t\(                \)?rdrand ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t48 0f c7 f3\t\(             \)?rdrand rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 41 0f c7 f0\t\(          \)?rdrand r8w\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t41 0f c7 f0\t\(             \)?rdrand r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t49 0f c7 f0\t\(             \)?rdrand r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 0f c7 f3\t\(             \)?rdrand bx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t0f c7 f3\t\(                \)?rdrand ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t48 0f c7 f3\t\(             \)?rdrand rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 41 0f c7 f0\t\(          \)?rdrand r8w\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t41 0f c7 f0\t\(             \)?rdrand r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t49 0f c7 f0\t\(             \)?rdrand r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 e4\t\(          \)?vcvtph2ps ymm4,xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 42 7d 13 00\t\(          \)?vcvtph2ps ymm8,XMMWORD PTR \\\[r8\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 f4\t\(          \)?vcvtph2ps xmm6,xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps xmm4,QWORD PTR \\\[rcx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d e4 02\t\(       \)?vcvtps2ph xmm4,ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 43 7d 1d 00 02\t\(       \)?vcvtps2ph XMMWORD PTR \\\[r8\\\],ymm8,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d e4 02\t\(       \)?vcvtps2ph xmm4,xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph QWORD PTR \\\[rcx\\\],xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 e4\t\(          \)?vcvtph2ps ymm4,xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 42 7d 13 00\t\(          \)?vcvtph2ps ymm8,XMMWORD PTR \\\[r8\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 21\t\(          \)?vcvtph2ps ymm4,XMMWORD PTR \\\[rcx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 f4\t\(          \)?vcvtph2ps xmm6,xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps xmm4,QWORD PTR \\\[rcx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps xmm4,QWORD PTR \\\[rcx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d e4 02\t\(       \)?vcvtps2ph xmm4,ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph XMMWORD PTR \\\[rcx\\\],ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph XMMWORD PTR \\\[rcx\\\],ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d e4 02\t\(       \)?vcvtps2ph xmm4,xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 43 79 1d 00 02\t\(       \)?vcvtps2ph QWORD PTR \\\[r8\\\],xmm8,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph QWORD PTR \\\[rcx\\\],xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae c3\t\(             \)?rdfsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae c3\t\(          \)?rdfsbase rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae c0\t\(          \)?rdfsbase r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae c0\t\(          \)?rdfsbase r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae cb\t\(             \)?rdgsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae cb\t\(          \)?rdgsbase rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae c8\t\(          \)?rdgsbase r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae c8\t\(          \)?rdgsbase r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae d3\t\(             \)?wrfsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae d3\t\(          \)?wrfsbase rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae d0\t\(          \)?wrfsbase r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae d0\t\(          \)?wrfsbase r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae db\t\(             \)?wrgsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae db\t\(          \)?wrgsbase rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae d8\t\(          \)?wrgsbase r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae d8\t\(          \)?wrgsbase r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae c3\t\(             \)?rdfsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae c3\t\(          \)?rdfsbase rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae c0\t\(          \)?rdfsbase r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae c0\t\(          \)?rdfsbase r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae cb\t\(             \)?rdgsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae cb\t\(          \)?rdgsbase rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae c8\t\(          \)?rdgsbase r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae c8\t\(          \)?rdgsbase r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae d3\t\(             \)?wrfsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae d3\t\(          \)?wrfsbase rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae d0\t\(          \)?wrfsbase r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae d0\t\(          \)?wrfsbase r8\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae db\t\(             \)?wrgsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 48 0f ae db\t\(          \)?wrgsbase rbx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 41 0f ae d8\t\(          \)?wrgsbase r8d\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 49 0f ae d8\t\(          \)?wrgsbase r8\r
Jan Kratochvil 29d49d9
+End of assembler dump\\." "intel"
f637971
diff --git a/gdb/testsuite/gdb.arch/i386-ivy-bridge.S b/gdb/testsuite/gdb.arch/i386-ivy-bridge.S
f637971
new file mode 100644
f637971
--- /dev/null
f637971
+++ b/gdb/testsuite/gdb.arch/i386-ivy-bridge.S
f637971
@@ -0,0 +1,67 @@
f637971
+/* Copyright 2011 Free Software Foundation, Inc.
f637971
+
f637971
+   This program is free software; you can redistribute it and/or modify
f637971
+   it under the terms of the GNU General Public License as published by
f637971
+   the Free Software Foundation; either version 3 of the License, or
f637971
+   (at your option) any later version.
f637971
+
f637971
+   This program is distributed in the hope that it will be useful,
f637971
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
f637971
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f637971
+   GNU General Public License for more details.
f637971
+
f637971
+   You should have received a copy of the GNU General Public License
f637971
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
f637971
+
f637971
+   This file is part of the gdb testsuite.  */
f637971
+
f637971
+	.globl _start
f637971
+_start:	.text
f637971
+
f637971
+/* gas/i386/rdrnd.s */
f637971
+	.att_syntax prefix
f637971
+	rdrand %bx
f637971
+	rdrand %ebx
f637971
+
f637971
+	.intel_syntax noprefix
f637971
+	rdrand bx
f637971
+	rdrand ebx
f637971
+
f637971
+/* gas/i386/f16c.s */
f637971
+	.att_syntax prefix
f637971
+	vcvtph2ps %xmm4,%ymm4
f637971
+	vcvtph2ps (%ecx),%ymm4
f637971
+	vcvtph2ps %xmm4,%xmm6
f637971
+	vcvtph2ps (%ecx),%xmm4
f637971
+	vcvtps2ph $0x2,%ymm4,%xmm4
f637971
+	vcvtps2ph $0x2,%ymm4,(%ecx) 
f637971
+	vcvtps2ph $0x2,%xmm4,%xmm4
f637971
+	vcvtps2ph $0x2,%xmm4,(%ecx) 
f637971
+
f637971
+	.intel_syntax noprefix
f637971
+	vcvtph2ps ymm4,xmm4
f637971
+	vcvtph2ps ymm4,XMMWORD PTR [ecx]
f637971
+	vcvtph2ps ymm4,[ecx]
f637971
+	vcvtph2ps xmm6,xmm4
f637971
+	vcvtph2ps xmm4,QWORD PTR [ecx]          
f637971
+	vcvtph2ps xmm4,[ecx]
f637971
+	vcvtps2ph xmm4,ymm4,0x2
f637971
+	vcvtps2ph XMMWORD PTR [ecx],ymm4,0x2    
f637971
+	vcvtps2ph [ecx],ymm4,0x2 
f637971
+	vcvtps2ph xmm4,xmm4,0x2
f637971
+	vcvtps2ph QWORD PTR [ecx],xmm4,0x2      
f637971
+	vcvtps2ph [ecx],xmm4,0x2 
f637971
+
f637971
+/* gas/i386/fsgs.s */
f637971
+	.att_syntax prefix
f637971
+	rdfsbase %ebx
f637971
+	rdgsbase %ebx
f637971
+	wrfsbase %ebx
f637971
+	wrgsbase %ebx
f637971
+
f637971
+	.intel_syntax noprefix
f637971
+	rdfsbase ebx    
f637971
+	rdgsbase ebx    
f637971
+	wrfsbase ebx    
f637971
+	wrgsbase ebx    
f637971
+
f637971
diff --git a/gdb/testsuite/gdb.arch/i386-ivy-bridge.exp b/gdb/testsuite/gdb.arch/i386-ivy-bridge.exp
f637971
new file mode 100644
f637971
--- /dev/null
f637971
+++ b/gdb/testsuite/gdb.arch/i386-ivy-bridge.exp
Jan Kratochvil 29d49d9
@@ -0,0 +1,106 @@
Jan Kratochvil 29d49d9
+# Copyright 2011 Free Software Foundation, Inc.
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+# This program is free software; you can redistribute it and/or modify
Jan Kratochvil 29d49d9
+# it under the terms of the GNU General Public License as published by
Jan Kratochvil 29d49d9
+# the Free Software Foundation; either version 3 of the License, or
Jan Kratochvil 29d49d9
+# (at your option) any later version.
Jan Kratochvil 29d49d9
+#
Jan Kratochvil 29d49d9
+# This program is distributed in the hope that it will be useful,
Jan Kratochvil 29d49d9
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
Jan Kratochvil 29d49d9
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Jan Kratochvil 29d49d9
+# GNU General Public License for more details.
Jan Kratochvil 29d49d9
+#
Jan Kratochvil 29d49d9
+# You should have received a copy of the GNU General Public License
Jan Kratochvil 29d49d9
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+if {![istarget "x86_64-*-*"] && ![istarget "i?86-*-*"]} then {
Jan Kratochvil 29d49d9
+    return
Jan Kratochvil 29d49d9
+}
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+set testfile i386-ivy-bridge
Jan Kratochvil 29d49d9
+set test compilation
Jan Kratochvil 29d49d9
+if [prepare_for_testing ${testfile}.exp ${testfile}.x ${testfile}.S [list debug "additional_flags=-m32 -nostdlib"]] {
Jan Kratochvil 29d49d9
+    fail $test
Jan Kratochvil 29d49d9
+    return -1
Jan Kratochvil 29d49d9
+}
Jan Kratochvil 29d49d9
+pass $test
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+gdb_test_no_output "set disassembly-flavor att"
Jan Kratochvil 29d49d9
+# gas/i386/rdrnd.d
Jan Kratochvil 29d49d9
+# gas/i386/f16c.d
Jan Kratochvil 29d49d9
+# gas/i386/fsgs.d
Jan Kratochvil 29d49d9
+gdb_test "disassemble/r _start" "\r
Jan Kratochvil 29d49d9
+Dump of assembler code for function _start:\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 0f c7 f3\t\(             \)?rdrand %bx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t0f c7 f3\t\(                \)?rdrand %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 0f c7 f3\t\(             \)?rdrand %bx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t0f c7 f3\t\(                \)?rdrand %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 e4\t\(          \)?vcvtph2ps %xmm4,%ymm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 21\t\(          \)?vcvtph2ps \\(%ecx\\),%ymm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 f4\t\(          \)?vcvtph2ps %xmm4,%xmm6\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps \\(%ecx\\),%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d e4 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,\\(%ecx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d e4 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,\\(%ecx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 e4\t\(          \)?vcvtph2ps %xmm4,%ymm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 21\t\(          \)?vcvtph2ps \\(%ecx\\),%ymm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 21\t\(          \)?vcvtph2ps \\(%ecx\\),%ymm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 f4\t\(          \)?vcvtph2ps %xmm4,%xmm6\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps \\(%ecx\\),%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps \\(%ecx\\),%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d e4 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,\\(%ecx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%ymm4,\\(%ecx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d e4 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,%xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,\\(%ecx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph \\\$0x2,%xmm4,\\(%ecx\\)\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae c3\t\(             \)?rdfsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae cb\t\(             \)?rdgsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae d3\t\(             \)?wrfsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae db\t\(             \)?wrgsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae c3\t\(             \)?rdfsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae cb\t\(             \)?rdgsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae d3\t\(             \)?wrfsbase %ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae db\t\(             \)?wrgsbase %ebx\r
Jan Kratochvil 29d49d9
+End of assembler dump\\." "att"
Jan Kratochvil 29d49d9
+
Jan Kratochvil 29d49d9
+gdb_test_no_output "set disassembly-flavor intel"
Jan Kratochvil 29d49d9
+# gas/i386/rdrnd-intel.d
Jan Kratochvil 29d49d9
+# gas/i386/f16c-intel.d
Jan Kratochvil 29d49d9
+# gas/i386/fsgs-intel.d
Jan Kratochvil 29d49d9
+gdb_test "disassemble/r _start" "\r
Jan Kratochvil 29d49d9
+Dump of assembler code for function _start:\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 0f c7 f3\t\(             \)?rdrand bx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t0f c7 f3\t\(                \)?rdrand ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t66 0f c7 f3\t\(             \)?rdrand bx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\t0f c7 f3\t\(                \)?rdrand ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 e4\t\(          \)?vcvtph2ps ymm4,xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 21\t\(          \)?vcvtph2ps ymm4,XMMWORD PTR \\\[ecx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 f4\t\(          \)?vcvtph2ps xmm6,xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps xmm4,QWORD PTR \\\[ecx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d e4 02\t\(       \)?vcvtps2ph xmm4,ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph XMMWORD PTR \\\[ecx\\\],ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d e4 02\t\(       \)?vcvtps2ph xmm4,xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph QWORD PTR \\\[ecx\\\],xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 e4\t\(          \)?vcvtph2ps ymm4,xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 21\t\(          \)?vcvtph2ps ymm4,XMMWORD PTR \\\[ecx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 7d 13 21\t\(          \)?vcvtph2ps ymm4,XMMWORD PTR \\\[ecx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 f4\t\(          \)?vcvtph2ps xmm6,xmm4\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps xmm4,QWORD PTR \\\[ecx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e2 79 13 21\t\(          \)?vcvtph2ps xmm4,QWORD PTR \\\[ecx\\\]\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d e4 02\t\(       \)?vcvtps2ph xmm4,ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph XMMWORD PTR \\\[ecx\\\],ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 7d 1d 21 02\t\(       \)?vcvtps2ph XMMWORD PTR \\\[ecx\\\],ymm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d e4 02\t\(       \)?vcvtps2ph xmm4,xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph QWORD PTR \\\[ecx\\\],xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tc4 e3 79 1d 21 02\t\(       \)?vcvtps2ph QWORD PTR \\\[ecx\\\],xmm4,0x2\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae c3\t\(             \)?rdfsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae cb\t\(             \)?rdgsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae d3\t\(             \)?wrfsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae db\t\(             \)?wrgsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae c3\t\(             \)?rdfsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae cb\t\(             \)?rdgsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae d3\t\(             \)?wrfsbase ebx\r
Jan Kratochvil 29d49d9
+\[^\r\n\]+:\tf3 0f ae db\t\(             \)?wrgsbase ebx\r
Jan Kratochvil 29d49d9
+End of assembler dump\\." "intel"