+2016-05-13 Nathan Sidwell <nathan@acm.org>
+
+ * config/nvptx/nvptx.c (write_fn_proto): Handle
+ BUILT_IN_ATOMIC_COMPARE_EXCHANGE_n oddity.
+
2016-05-13 Martin Liska <mliska@suse.cz>
* tree-ssa-loop-ivopts.c (create_new_ivs): Use HOST_WIDE_INT_PRINT_DEC
tree fntype = TREE_TYPE (decl);
tree result_type = TREE_TYPE (fntype);
+ /* atomic_compare_exchange_$n builtins have an exceptional calling
+ convention. */
+ int not_atomic_weak_arg = -1;
+ if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
+ switch (DECL_FUNCTION_CODE (decl))
+ {
+ case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_1:
+ case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_2:
+ case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_4:
+ case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_8:
+ case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_16:
+ /* These atomics skip the 'weak' parm in an actual library
+ call. We must skip it in the prototype too. */
+ not_atomic_weak_arg = 3;
+ break;
+
+ default:
+ break;
+ }
+
/* Declare the result. */
bool return_in_mem = write_return_type (s, true, result_type);
prototyped = false;
}
- for (; args; args = TREE_CHAIN (args))
+ for (; args; args = TREE_CHAIN (args), not_atomic_weak_arg--)
{
tree type = prototyped ? TREE_VALUE (args) : TREE_TYPE (args);
-
- argno = write_arg_type (s, -1, argno, type, prototyped);
+
+ if (not_atomic_weak_arg)
+ argno = write_arg_type (s, -1, argno, type, prototyped);
+ else
+ gcc_assert (type == boolean_type_node);
}
if (stdarg_p (fntype))
+2016-05-13 Nathan Sidwell <nathan@acm.org>
+
+ * gcc.dg/atomic-noinline-aux.c: Include stddef.h. Fix
+ __atomic_is_lock_free declaration.
+
2016-05-13 Richard Biener <rguenther@suse.de>
PR tree-optimization/42587
the exact entry points the test file will require. All these routines
simply set the first parameter to 1, and the caller will test for that. */
+#include <stddef.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
return ret;
}
-bool __atomic_is_lock_free (int i, void *p)
+bool __atomic_is_lock_free (size_t i, void *p)
{
*(short *)p = 1;
return true;