atomic_add_32_cas.c revision 1.6
11.6Smatt/*	$NetBSD: atomic_add_32_cas.c,v 1.6 2014/01/27 18:29:47 matt Exp $	*/
21.2Sad
31.2Sad/*-
41.2Sad * Copyright (c) 2007 The NetBSD Foundation, Inc.
51.2Sad * All rights reserved.
61.2Sad *
71.2Sad * This code is derived from software contributed to The NetBSD Foundation
81.2Sad * by Jason R. Thorpe.
91.2Sad *
101.2Sad * Redistribution and use in source and binary forms, with or without
111.2Sad * modification, are permitted provided that the following conditions
121.2Sad * are met:
131.2Sad * 1. Redistributions of source code must retain the above copyright
141.2Sad *    notice, this list of conditions and the following disclaimer.
151.2Sad * 2. Redistributions in binary form must reproduce the above copyright
161.2Sad *    notice, this list of conditions and the following disclaimer in the
171.2Sad *    documentation and/or other materials provided with the distribution.
181.2Sad *
191.2Sad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
201.2Sad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
211.2Sad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
221.2Sad * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
231.2Sad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
241.2Sad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
251.2Sad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
261.2Sad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
271.2Sad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
281.2Sad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
291.2Sad * POSSIBILITY OF SUCH DAMAGE.
301.2Sad */
311.2Sad
321.2Sad#include "atomic_op_namespace.h"
331.2Sad
341.2Sad#include <sys/atomic.h>
351.2Sad
361.6Smattuint32_t __sync_fetch_and_add_4(volatile uint32_t *, int32_t);
371.6Smatt
381.6Smattuint32_t
391.6Smatt__sync_fetch_and_add_4(volatile uint32_t *addr, int32_t val)
401.2Sad{
411.2Sad	uint32_t old, new;
421.2Sad
431.2Sad	do {
441.2Sad		old = *addr;
451.2Sad		new = old + val;
461.2Sad	} while (atomic_cas_32(addr, old, new) != old);
471.6Smatt	return old;
481.6Smatt}
491.6Smatt
501.6Smattvoid
511.6Smattatomic_add_32(volatile uint32_t *addr, int32_t val)
521.6Smatt{
531.6Smatt	(void) __sync_fetch_and_add_4(addr, val);
541.2Sad}
551.2Sad
561.2Sad#undef atomic_add_32
571.2Sadatomic_op_alias(atomic_add_32,_atomic_add_32)
581.2Sad
591.2Sad#undef atomic_add_int
601.2Sadatomic_op_alias(atomic_add_int,_atomic_add_32)
611.2Sad__strong_alias(_atomic_add_int,_atomic_add_32)
621.2Sad
631.2Sad#if !defined(_LP64)
641.2Sad#undef atomic_add_long
651.2Sadatomic_op_alias(atomic_add_long,_atomic_add_32)
661.2Sad__strong_alias(_atomic_add_long,_atomic_add_32)
671.2Sad
681.2Sad#undef atomic_add_ptr
691.2Sadatomic_op_alias(atomic_add_ptr,_atomic_add_32)
701.2Sad__strong_alias(_atomic_add_ptr,_atomic_add_32)
711.2Sad#endif /* _LP64 */
72