From 4f8a3b87f948d472c2aeb1bc9177892c8fc6f113 Mon Sep 17 00:00:00 2001 From: Torvald Riegel Date: Sun, 22 Nov 2015 20:56:20 +0000 Subject: [PATCH] libitm: Fix recent changes to allocations log. libitm/ * libitm_i.h (gtm_alloc_action): Remove union. * testsuite/libitm.c/alloc-1.c: New. From-SVN: r230727 --- libitm/ChangeLog | 5 +++++ libitm/libitm_i.h | 10 ++++------ libitm/testsuite/libitm.c/alloc-1.c | 17 +++++++++++++++++ 3 files changed, 26 insertions(+), 6 deletions(-) create mode 100644 libitm/testsuite/libitm.c/alloc-1.c diff --git a/libitm/ChangeLog b/libitm/ChangeLog index 4be0561..a986e67 100644 --- a/libitm/ChangeLog +++ b/libitm/ChangeLog @@ -1,3 +1,8 @@ +2015-11-22 Torvald Riegel + + * libitm_i.h (gtm_alloc_action): Remove union. + * testsuite/libitm.c/alloc-1.c: New. + 2015-11-19 Torvald Riegel * testsuite/libitm.c++/eh-5.C: New. diff --git a/libitm/libitm_i.h b/libitm/libitm_i.h index f01a1ab..4b72348 100644 --- a/libitm/libitm_i.h +++ b/libitm/libitm_i.h @@ -106,12 +106,10 @@ namespace GTM HIDDEN { // the template used inside gtm_thread can instantiate. struct gtm_alloc_action { - // Iff free_fn_sz is nonzero, it must be used instead of free_fn. - union - { - void (*free_fn)(void *); - void (*free_fn_sz)(void *, size_t); - }; + // Iff free_fn_sz is nonzero, it must be used instead of free_fn, and vice + // versa. + void (*free_fn)(void *); + void (*free_fn_sz)(void *, size_t); size_t sz; // If true, this is an allocation; we discard the log entry on outermost // commit, and deallocate on abort. If false, this is a deallocation and diff --git a/libitm/testsuite/libitm.c/alloc-1.c b/libitm/testsuite/libitm.c/alloc-1.c new file mode 100644 index 0000000..49faab5 --- /dev/null +++ b/libitm/testsuite/libitm.c/alloc-1.c @@ -0,0 +1,17 @@ +// Test that rolling back allocations works. +#include + +void __attribute((transaction_pure,noinline)) dont_optimize(void* p) +{ + *(volatile char *) p; +} + +int main() +{ + __transaction_atomic { + void *p = malloc (23); + dont_optimize (p); + __transaction_cancel; + } + return 0; +} -- 2.7.4