aboutsummaryrefslogtreecommitdiff
path: root/libitm/testsuite/libitm.c/stackundo.c
diff options
context:
space:
mode:
authorTorvald Riegel <triegel@redhat.com>2012-01-13 23:45:06 +0000
committerTorvald Riegel <torvald@gcc.gnu.org>2012-01-13 23:45:06 +0000
commit07b6642b935e1cd499a2aae071db06d845e39a8b (patch)
tree8ed0df69ae3d1543fa4811e7cb7e72a8d99333b5 /libitm/testsuite/libitm.c/stackundo.c
parent4cce1836bde85844781736f0f87b51ae9393da5f (diff)
downloadgcc-07b6642b935e1cd499a2aae071db06d845e39a8b.zip
gcc-07b6642b935e1cd499a2aae071db06d845e39a8b.tar.gz
gcc-07b6642b935e1cd499a2aae071db06d845e39a8b.tar.bz2
libitm: Filter out undo writes that overlap with the libitm stack.
PR libitm/51855 * config/generic/tls.h (GTM::mask_stack_top): New. (GTM::mask_stack_bottom): Declare. * config/generic/tls.c (GTM::mask_stack_bottom): New. * local.cc (gtm_undolog::rollback): Filter out any updates that overlap the libitm stack. Add current transaction as parameter. * libitm_i.h (GTM::gtm_undolog::rollback): Adapt. * beginend.cc (GTM::gtm_thread::rollback): Adapt. * testsuite/libitm.c/stackundo.c: New test. From-SVN: r183172
Diffstat (limited to 'libitm/testsuite/libitm.c/stackundo.c')
-rw-r--r--libitm/testsuite/libitm.c/stackundo.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/libitm/testsuite/libitm.c/stackundo.c b/libitm/testsuite/libitm.c/stackundo.c
new file mode 100644
index 0000000..02759d7
--- /dev/null
+++ b/libitm/testsuite/libitm.c/stackundo.c
@@ -0,0 +1,23 @@
+int __attribute__((noinline)) test2(int x[1000])
+{
+ int i;
+ return x[12];
+}
+
+int __attribute__((noinline)) test1()
+{
+ int x[1000], i;
+
+ for (i = 0; i < 1000; i++)
+ x[i] = i;
+ return test2(x);
+}
+
+int main()
+{
+ __transaction_atomic {
+ if (test1() !=0)
+ __transaction_cancel;
+ }
+ return 0;
+}