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