Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
/*-
|
2001-09-03 22:03:25 +00:00
|
|
|
* Copyright (c) 1998 Doug Rabson.
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
* Copyright (c) 2001 Jake Burkholder.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
2001-08-09 02:09:34 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
2001-08-09 02:09:34 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
2001-09-03 22:03:25 +00:00
|
|
|
* from: FreeBSD: src/sys/i386/include/atomic.h,v 1.20 2001/02/11
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#ifndef _MACHINE_ATOMIC_H_
|
|
|
|
#define _MACHINE_ATOMIC_H_
|
|
|
|
|
|
|
|
#include <machine/cpufunc.h>
|
|
|
|
|
2001-12-29 06:48:43 +00:00
|
|
|
/* Userland needs different ASI's. */
|
|
|
|
#ifdef _KERNEL
|
|
|
|
#define __ASI_ATOMIC ASI_N
|
|
|
|
#else
|
|
|
|
#define __ASI_ATOMIC ASI_P
|
|
|
|
#endif
|
|
|
|
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
/*
|
2001-07-31 06:05:05 +00:00
|
|
|
* Various simple arithmetic on memory which is atomic in the presence
|
|
|
|
* of interrupts and multiple processors. See atomic(9) for details.
|
|
|
|
* Note that efficient hardware support exists only for the 32 and 64
|
|
|
|
* bit variants; the 8 and 16 bit versions are not provided and should
|
|
|
|
* not be used in MI code.
|
|
|
|
*
|
|
|
|
* This implementation takes advantage of the fact that the sparc64
|
|
|
|
* cas instruction is both a load and a store. The loop is often coded
|
|
|
|
* as follows:
|
|
|
|
*
|
|
|
|
* do {
|
|
|
|
* expect = *p;
|
|
|
|
* new = expect + 1;
|
|
|
|
* } while (cas(p, expect, new) != expect);
|
|
|
|
*
|
|
|
|
* which performs an unnnecessary load on each iteration that the cas
|
|
|
|
* operation fails. Modified as follows:
|
|
|
|
*
|
|
|
|
* expect = *p;
|
|
|
|
* for (;;) {
|
|
|
|
* new = expect + 1;
|
|
|
|
* result = cas(p, expect, new);
|
|
|
|
* if (result == expect)
|
|
|
|
* break;
|
|
|
|
* expect = result;
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* the return value of cas is used to avoid the extra reload. At the
|
|
|
|
* time of writing, with gcc version 2.95.3, the branch for the if
|
|
|
|
* statement is predicted incorrectly as not taken, rather than taken.
|
|
|
|
* It is expected that the branch prediction hints available in gcc 3.0,
|
|
|
|
* __builtin_expect, will allow better code to be generated.
|
|
|
|
*
|
|
|
|
* The memory barriers provided by the acq and rel variants are intended
|
|
|
|
* to be sufficient for use of relaxed memory ordering. Due to the
|
|
|
|
* suggested assembly syntax of the membar operands containing a #
|
|
|
|
* character, they cannot be used in macros. The cmask and mmask bits
|
|
|
|
* are hard coded in machine/cpufunc.h and used here through macros.
|
|
|
|
* Hopefully sun will choose not to change the bit numbers.
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
*/
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#define itype(sz) u_int ## sz ## _t
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
|
2001-12-29 06:48:43 +00:00
|
|
|
#define atomic_cas_32(p, e, s) casa(p, e, s, __ASI_ATOMIC)
|
|
|
|
#define atomic_cas_64(p, e, s) casxa(p, e, s, __ASI_ATOMIC)
|
2001-07-31 06:05:05 +00:00
|
|
|
|
|
|
|
#define atomic_cas(p, e, s, sz) \
|
|
|
|
atomic_cas_ ## sz(p, e, s)
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#define atomic_cas_acq(p, e, s, sz) ({ \
|
|
|
|
itype(sz) v; \
|
|
|
|
v = atomic_cas(p, e, s, sz); \
|
|
|
|
membar(LoadLoad | LoadStore); \
|
|
|
|
v; \
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
})
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#define atomic_cas_rel(p, e, s, sz) ({ \
|
|
|
|
itype(sz) v; \
|
|
|
|
membar(LoadStore | StoreStore); \
|
|
|
|
v = atomic_cas(p, e, s, sz); \
|
|
|
|
v; \
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
})
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#define atomic_op(p, op, v, sz) do { \
|
|
|
|
itype(sz) e, r, s; \
|
|
|
|
for (e = *(volatile itype(sz) *)p;; e = r) { \
|
|
|
|
s = e op v; \
|
|
|
|
r = atomic_cas_ ## sz(p, e, s); \
|
|
|
|
if (r == e) \
|
|
|
|
break; \
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
} \
|
2001-07-31 06:05:05 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define atomic_op_acq(p, op, v, sz) do { \
|
|
|
|
atomic_op(p, op, v, sz); \
|
|
|
|
membar(LoadLoad | LoadStore); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define atomic_op_rel(p, op, v, sz) do { \
|
|
|
|
membar(LoadStore | StoreStore); \
|
|
|
|
atomic_op(p, op, v, sz); \
|
|
|
|
} while (0)
|
|
|
|
|
2001-09-03 22:03:25 +00:00
|
|
|
#define atomic_load(p, sz) \
|
|
|
|
atomic_cas(p, 0, 0, sz)
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#define atomic_load_acq(p, sz) ({ \
|
|
|
|
itype(sz) v; \
|
2001-09-03 22:03:25 +00:00
|
|
|
v = atomic_load(p, sz); \
|
2001-07-31 06:05:05 +00:00
|
|
|
membar(LoadLoad | LoadStore); \
|
|
|
|
v; \
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
})
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#define atomic_load_clear(p, sz) ({ \
|
|
|
|
itype(sz) e, r; \
|
|
|
|
for (e = *(volatile itype(sz) *)p;; e = r) { \
|
2001-09-03 22:03:25 +00:00
|
|
|
r = atomic_cas(p, e, 0, sz); \
|
2001-07-31 06:05:05 +00:00
|
|
|
if (r == e) \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
e; \
|
|
|
|
})
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
|
2001-09-03 22:03:25 +00:00
|
|
|
#define atomic_store(p, v, sz) do { \
|
2001-07-31 06:05:05 +00:00
|
|
|
itype(sz) e, r; \
|
|
|
|
for (e = *(volatile itype(sz) *)p;; e = r) { \
|
2001-09-03 22:03:25 +00:00
|
|
|
r = atomic_cas(p, e, v, sz); \
|
2001-07-31 06:05:05 +00:00
|
|
|
if (r == e) \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2001-09-03 22:03:25 +00:00
|
|
|
#define atomic_store_rel(p, v, sz) do { \
|
|
|
|
membar(LoadStore | StoreStore); \
|
|
|
|
atomic_store(p, v, sz); \
|
|
|
|
} while (0)
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#define ATOMIC_GEN(name, ptype, vtype, atype, sz) \
|
|
|
|
\
|
|
|
|
static __inline void \
|
|
|
|
atomic_add_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op(p, +, v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
|
|
|
atomic_add_acq_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op_acq(p, +, v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
|
|
|
atomic_add_rel_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op_rel(p, +, v, sz); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static __inline void \
|
|
|
|
atomic_clear_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op(p, &, ~v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
|
|
|
atomic_clear_acq_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op_acq(p, &, ~v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
|
|
|
atomic_clear_rel_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op_rel(p, &, ~v, sz); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static __inline int \
|
|
|
|
atomic_cmpset_ ## name(volatile ptype p, vtype e, vtype s) \
|
|
|
|
{ \
|
|
|
|
return (((vtype)atomic_cas(p, e, s, sz)) == e); \
|
|
|
|
} \
|
|
|
|
static __inline int \
|
|
|
|
atomic_cmpset_acq_ ## name(volatile ptype p, vtype e, vtype s) \
|
|
|
|
{ \
|
|
|
|
return (((vtype)atomic_cas_acq(p, e, s, sz)) == e); \
|
|
|
|
} \
|
|
|
|
static __inline int \
|
|
|
|
atomic_cmpset_rel_ ## name(volatile ptype p, vtype e, vtype s) \
|
|
|
|
{ \
|
|
|
|
return (((vtype)atomic_cas_rel(p, e, s, sz)) == e); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static __inline vtype \
|
2001-09-03 22:03:25 +00:00
|
|
|
atomic_load_ ## name(volatile ptype p) \
|
|
|
|
{ \
|
|
|
|
return ((vtype)atomic_cas(p, 0, 0, sz)); \
|
|
|
|
} \
|
|
|
|
static __inline vtype \
|
2001-07-31 06:05:05 +00:00
|
|
|
atomic_load_acq_ ## name(volatile ptype p) \
|
|
|
|
{ \
|
|
|
|
return ((vtype)atomic_cas_acq(p, 0, 0, sz)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static __inline vtype \
|
|
|
|
atomic_readandclear_ ## name(volatile ptype p) \
|
|
|
|
{ \
|
|
|
|
return ((vtype)atomic_load_clear(p, sz)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static __inline void \
|
|
|
|
atomic_set_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op(p, |, v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
|
|
|
atomic_set_acq_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op_acq(p, |, v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
|
|
|
atomic_set_rel_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op_rel(p, |, v, sz); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static __inline void \
|
|
|
|
atomic_subtract_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op(p, -, v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
|
|
|
atomic_subtract_acq_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op_acq(p, -, v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
|
|
|
atomic_subtract_rel_ ## name(volatile ptype p, atype v) \
|
|
|
|
{ \
|
|
|
|
atomic_op_rel(p, -, v, sz); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static __inline void \
|
2001-09-03 22:03:25 +00:00
|
|
|
atomic_store_ ## name(volatile ptype p, vtype v) \
|
|
|
|
{ \
|
|
|
|
atomic_store(p, v, sz); \
|
|
|
|
} \
|
|
|
|
static __inline void \
|
2001-07-31 06:05:05 +00:00
|
|
|
atomic_store_rel_ ## name(volatile ptype p, vtype v) \
|
|
|
|
{ \
|
|
|
|
atomic_store_rel(p, v, sz); \
|
|
|
|
}
|
|
|
|
|
|
|
|
ATOMIC_GEN(int, int *, int, int, 32);
|
|
|
|
ATOMIC_GEN(32, int *, int, int, 32);
|
|
|
|
|
|
|
|
ATOMIC_GEN(long, long *, long, long, 64);
|
|
|
|
ATOMIC_GEN(64, long *, long, long, 64);
|
|
|
|
|
|
|
|
ATOMIC_GEN(ptr, void *, void *, uintptr_t, 64);
|
|
|
|
|
2001-12-29 06:48:43 +00:00
|
|
|
#undef __ASI_ATOMIC
|
2001-07-31 06:05:05 +00:00
|
|
|
#undef ATOMIC_GEN
|
|
|
|
#undef atomic_cas_32
|
|
|
|
#undef atomic_cas_64
|
|
|
|
#undef atomic_cas
|
|
|
|
#undef atomic_cas_acq
|
|
|
|
#undef atomic_cas_rel
|
|
|
|
#undef atomic_op
|
|
|
|
#undef atomic_op_acq
|
|
|
|
#undef atomic_op_rel
|
|
|
|
#undef atomic_load_acq
|
|
|
|
#undef atomic_store_rel
|
|
|
|
#undef atomic_load_clear
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
|
|
|
|
#endif /* !_MACHINE_ATOMIC_H_ */
|