]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
l2.c: New test.
authorJie Zhang <jie.zhang@analog.com>
Wed, 13 Jan 2010 14:57:59 +0000 (14:57 +0000)
committerJie Zhang <jiez@gcc.gnu.org>
Wed, 13 Jan 2010 14:57:59 +0000 (14:57 +0000)
* gcc.target/bfin/l2.c: New test.
* gcc.target/bfin/bfin.exp (dg-bfin-processors): New.

From-SVN: r155860

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/bfin/bfin.exp
gcc/testsuite/gcc.target/bfin/l2.c [new file with mode: 0644]

index 38241e23fbb5656b05bda074dbadd8066fc1f165..9d264b6b44de5fdf75c8d8311a208f9d8d38874b 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-13  Jie Zhang  <jie.zhang@analog.com>
+
+       * gcc.target/bfin/l2.c: New test.
+       * gcc.target/bfin/bfin.exp (dg-bfin-processors): New.
+
 2010-01-13  Richard Guenther  <rguenther@suse.de>
 
        PR middle-end/42716
index 854713e2f48723557a5da76587116f9aa9e49483..85a50a5ba4a732ec73485eb9f11ed1afbf9c45b3 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2007 Free Software Foundation, Inc.
+# Copyright (C) 2007, 2010 Free Software Foundation, Inc.
 
 # 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
@@ -53,6 +53,30 @@ proc dg-bfin-options {args} {
     }
 }
 
+# dg-bfin-processors can be used to specify the processors which can
+# run the test case.
+proc dg-bfin-processors {args} {
+    upvar dg-extra-tool-flags extra_tool_flags
+    upvar dg-do-what do_what
+
+    set multilib_cpu ""
+    set cpu ""
+
+    foreach flag [target_info multilib_flags] {
+       regexp "^-mcpu=([^-]*)" $flag dummy multilib_cpu
+    }
+
+    set cpus [lindex $args 1]
+
+    foreach cpu $cpus {
+       if {$multilib_cpu == $cpu} {
+           return
+       }
+    }
+
+    set do_what [list [lindex $do_what 0] "N" "P"]
+}
+
 # Initialize `dg'.
 dg-init
 
diff --git a/gcc/testsuite/gcc.target/bfin/l2.c b/gcc/testsuite/gcc.target/bfin/l2.c
new file mode 100644 (file)
index 0000000..56f64cc
--- /dev/null
@@ -0,0 +1,38 @@
+/* { dg-do run { target bfin-*-linux-uclibc } } */
+/* { dg-bfin-processors bf544 bf547 bf548 bf549 bf561} */
+
+#if defined(__ADSPBF544__)
+#define L2_START 0xFEB00000
+#define L2_LENGTH 0x10000
+#else
+#define L2_START 0xFEB00000
+#define L2_LENGTH 0x20000
+#endif
+
+int n __attribute__ ((l2));
+
+int foo (int i) __attribute__ ((l2));
+
+int foo (int a)
+{
+  return a + 1;
+}
+
+int main ()
+{
+  int r;
+  unsigned long *p;
+
+  p = (unsigned long *) foo;
+  if (*p < L2_START || *p >= L2_START + L2_LENGTH)
+    return 1;
+
+  p = (unsigned long *) &n;
+  if ((unsigned long) p < L2_START || (unsigned long) p >= L2_START + L2_LENGTH)
+    return 2;
+
+  if (foo (0) != 1)
+    return 3;
+
+  return 0;
+}