Home | History | Annotate | Line # | Download | only in rumpkern
rump_atomic_cas_up.c revision 1.2.6.2
      1  1.2.6.2  rmind /*	$NetBSD: rump_atomic_cas_up.c,v 1.2.6.2 2011/03/05 20:56:15 rmind Exp $	*/
      2  1.2.6.2  rmind 
      3  1.2.6.2  rmind /*-
      4  1.2.6.2  rmind  * Copyright (c) 2010 Antti Kantee.  All rights reserved.
      5  1.2.6.2  rmind  *
      6  1.2.6.2  rmind  * Redistribution and use in source and binary forms, with or without
      7  1.2.6.2  rmind  * modification, are permitted provided that the following conditions
      8  1.2.6.2  rmind  * are met:
      9  1.2.6.2  rmind  * 1. Redistributions of source code must retain the above copyright
     10  1.2.6.2  rmind  *    notice, this list of conditions and the following disclaimer.
     11  1.2.6.2  rmind  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.2.6.2  rmind  *    notice, this list of conditions and the following disclaimer in the
     13  1.2.6.2  rmind  *    documentation and/or other materials provided with the distribution.
     14  1.2.6.2  rmind  *
     15  1.2.6.2  rmind  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS
     16  1.2.6.2  rmind  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     17  1.2.6.2  rmind  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     18  1.2.6.2  rmind  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS
     19  1.2.6.2  rmind  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     20  1.2.6.2  rmind  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     21  1.2.6.2  rmind  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     22  1.2.6.2  rmind  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     23  1.2.6.2  rmind  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     24  1.2.6.2  rmind  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25  1.2.6.2  rmind  * POSSIBILITY OF SUCH DAMAGE.
     26  1.2.6.2  rmind  */
     27  1.2.6.2  rmind 
     28  1.2.6.2  rmind #include <sys/cdefs.h>
     29  1.2.6.2  rmind __KERNEL_RCSID(0, "$NetBSD: rump_atomic_cas_up.c,v 1.2.6.2 2011/03/05 20:56:15 rmind Exp $");
     30  1.2.6.2  rmind 
     31  1.2.6.2  rmind /*
     32  1.2.6.2  rmind  * Uniprocessor version of atomic CAS.  Since there is no preemption
     33  1.2.6.2  rmind  * in rump, this is a piece of cake.
     34  1.2.6.2  rmind  */
     35  1.2.6.2  rmind 
     36  1.2.6.2  rmind #include <sys/types.h>
     37  1.2.6.2  rmind 
     38  1.2.6.2  rmind uint32_t rump_cas_32_up(volatile uint32_t *ptr, uint32_t, uint32_t);
     39  1.2.6.2  rmind 
     40  1.2.6.2  rmind uint32_t
     41  1.2.6.2  rmind rump_cas_32_up(volatile uint32_t *ptr, uint32_t old, uint32_t new)
     42  1.2.6.2  rmind {
     43  1.2.6.2  rmind 	uint32_t ret;
     44  1.2.6.2  rmind 
     45  1.2.6.2  rmind 	ret = *ptr;
     46  1.2.6.2  rmind 	if (__predict_true(ret == old)) {
     47  1.2.6.2  rmind 		*ptr = new;
     48  1.2.6.2  rmind 	}
     49  1.2.6.2  rmind 
     50  1.2.6.2  rmind 	return ret;
     51  1.2.6.2  rmind }
     52  1.2.6.2  rmind 
     53  1.2.6.2  rmind __strong_alias(atomic_cas_32,rump_cas_32_up)
     54  1.2.6.2  rmind __strong_alias(_atomic_cas_32,rump_cas_32_up)
     55  1.2.6.2  rmind __strong_alias(atomic_cas_uint,rump_cas_32_up)
     56  1.2.6.2  rmind __strong_alias(_atomic_cas_uint,rump_cas_32_up)
     57  1.2.6.2  rmind __strong_alias(atomic_cas_ulong,rump_cas_32_up)
     58  1.2.6.2  rmind __strong_alias(_atomic_cas_ulong,rump_cas_32_up)
     59  1.2.6.2  rmind __strong_alias(atomic_cas_ptr,rump_cas_32_up)
     60  1.2.6.2  rmind __strong_alias(_atomic_cas_ptr,rump_cas_32_up)
     61  1.2.6.2  rmind __strong_alias(atomic_cas_32_ni,rump_cas_32_up)
     62  1.2.6.2  rmind __strong_alias(_atomic_cas_32_ni,rump_cas_32_up)
     63  1.2.6.2  rmind __strong_alias(atomic_cas_uint_ni,rump_cas_32_up)
     64  1.2.6.2  rmind __strong_alias(_atomic_cas_uint_ni,rump_cas_32_up)
     65  1.2.6.2  rmind __strong_alias(atomic_cas_ulong_ni,rump_cas_32_up)
     66  1.2.6.2  rmind __strong_alias(_atomic_cas_ulong_ni,rump_cas_32_up)
     67  1.2.6.2  rmind __strong_alias(atomic_cas_ptr_ni,rump_cas_32_up)
     68  1.2.6.2  rmind __strong_alias(_atomic_cas_ptr_ni,rump_cas_32_up)
     69