aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.arch/i386-sse-stack-align.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2012-06-13 21:31:06 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2012-06-13 21:31:06 +0000
commitf85e18ee6c9f6650c24532f1830057919e872664 (patch)
treec7976b6a7aa0355c14482fe82421eadd2cb44b63 /gdb/testsuite/gdb.arch/i386-sse-stack-align.c
parent284c5a60c3012c2b47a0772c34b805553053cce3 (diff)
downloadgdb-f85e18ee6c9f6650c24532f1830057919e872664.zip
gdb-f85e18ee6c9f6650c24532f1830057919e872664.tar.gz
gdb-f85e18ee6c9f6650c24532f1830057919e872664.tar.bz2
gdb/testsuite/
PR tdep/14222 * gdb.arch/i386-sse-stack-align.S: New file. * gdb.arch/i386-sse-stack-align.c: New file. * gdb.arch/i386-sse-stack-align.exp: New file.
Diffstat (limited to 'gdb/testsuite/gdb.arch/i386-sse-stack-align.c')
-rw-r--r--gdb/testsuite/gdb.arch/i386-sse-stack-align.c70
1 files changed, 70 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.arch/i386-sse-stack-align.c b/gdb/testsuite/gdb.arch/i386-sse-stack-align.c
new file mode 100644
index 0000000..b9daa9b
--- /dev/null
+++ b/gdb/testsuite/gdb.arch/i386-sse-stack-align.c
@@ -0,0 +1,70 @@
+/* Copyright 2012 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+typedef float V __attribute__((vector_size(16)));
+
+static V
+foo (V a, V b)
+{
+ return a + b * a;
+}
+
+static __attribute__((noinline, noclone)) int
+f (void)
+{
+ volatile V a = { 1, 2, 3, 4 };
+ volatile V b;
+
+ b = foo (a, a);
+ return b[0];
+}
+
+static __attribute__((noinline, noclone)) int
+g0 (void)
+{
+ return f ();
+}
+
+static __attribute__((noinline, noclone)) int
+g1 (int p1)
+{
+ return f ();
+}
+
+static __attribute__((noinline, noclone)) int
+g2 (int p1, int p2)
+{
+ return f ();
+}
+
+static __attribute__((noinline, noclone)) int
+g3 (int p1, int p2, int p3)
+{
+ return f ();
+}
+
+static __attribute__((noinline, noclone)) int
+g4 (int p1, int p2, int p3, int p4)
+{
+ return f ();
+}
+
+int
+main (void)
+{
+ return g0 () + g1 (1) + g2 (1, 2) + g3 (1, 2, 3) + g4 (1, 2, 3, 4);
+}