aboutsummaryrefslogtreecommitdiff
path: root/libjava/sysdep
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2016-09-30 16:24:48 +0000
committerAndrew Haley <aph@gcc.gnu.org>2016-09-30 16:24:48 +0000
commit07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch)
tree3f22b3241c513ad168c8353805614ae1249410f4 /libjava/sysdep
parenteae993948bae8b788c53772bcb9217c063716f93 (diff)
downloadgcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com> * Makefile.def: Remove libjava. * Makefile.tpl: Likewise. * Makefile.in: Regenerate. * configure.ac: Likewise. * configure: Likewise. * gcc/java: Remove. * libjava: Likewise. From-SVN: r240662
Diffstat (limited to 'libjava/sysdep')
-rw-r--r--libjava/sysdep/aarch64/locks.h57
-rw-r--r--libjava/sysdep/alpha/locks.h66
-rw-r--r--libjava/sysdep/arm/backtrace.h35
-rw-r--r--libjava/sysdep/arm/locks.h133
-rw-r--r--libjava/sysdep/descriptor-n.h3
-rw-r--r--libjava/sysdep/descriptor-y.h5
-rw-r--r--libjava/sysdep/generic/backtrace.h23
-rw-r--r--libjava/sysdep/generic/locks.h11
-rw-r--r--libjava/sysdep/i386/backtrace.h123
-rw-r--r--libjava/sysdep/i386/locks.h69
-rw-r--r--libjava/sysdep/ia64/locks.h61
-rw-r--r--libjava/sysdep/m68k/locks.h68
-rw-r--r--libjava/sysdep/mips/locks.h68
-rw-r--r--libjava/sysdep/pa/descriptor-pa32-hpux.h91
-rw-r--r--libjava/sysdep/pa/descriptor-pa64-hpux.h6
-rw-r--r--libjava/sysdep/pa/descriptor.h7
-rw-r--r--libjava/sysdep/pa/locks.h110
-rw-r--r--libjava/sysdep/powerpc/descriptor.h9
-rw-r--r--libjava/sysdep/powerpc/locks.h73
-rw-r--r--libjava/sysdep/s390/locks.h63
-rw-r--r--libjava/sysdep/sh/locks.h50
-rw-r--r--libjava/sysdep/sparc/locks.h142
22 files changed, 0 insertions, 1273 deletions
diff --git a/libjava/sysdep/aarch64/locks.h b/libjava/sysdep/aarch64/locks.h
deleted file mode 100644
index f91473d..0000000
--- a/libjava/sysdep/aarch64/locks.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// locks.h - Thread synchronization primitives. AArch64 implementation.
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-typedef size_t obj_addr_t; /* Integer type big enough for object */
- /* address. */
-
-// Atomically replace *addr by new_val if it was initially equal to old.
-// Return true if the comparison succeeded.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap(addr, old, new_val);
-}
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __sync_synchronize();
- *addr = new_val;
-}
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-// On many architecture, the operation makes both guarantees, so the
-// implementation can be the same.
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap(addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-inline static void
-read_barrier()
-{
- __sync_synchronize();
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-inline static void
-write_barrier()
-{
- __sync_synchronize();
-}
-#endif
diff --git a/libjava/sysdep/alpha/locks.h b/libjava/sysdep/alpha/locks.h
deleted file mode 100644
index 993afca..0000000
--- a/libjava/sysdep/alpha/locks.h
+++ /dev/null
@@ -1,66 +0,0 @@
-// locks.h - Thread synchronization primitives. Alpha implementation.
-
-/* Copyright (C) 2002, 2011 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-/* Integer type big enough for object address. */
-typedef size_t obj_addr_t;
-
-// Atomically replace *addr by new_val if it was initially equal to old.
-// Return true if the comparison succeeded.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap(addr, old, new_val);
-}
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __sync_synchronize();
- *(addr) = new_val;
-}
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-// On many architecture, the operation makes both guarantees, so the
-// implementation can be the same.
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return compare_and_swap(addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-inline static void
-read_barrier()
-{
- __asm__ __volatile__("mb" : : : "memory");
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-inline static void
-write_barrier()
-{
- __asm__ __volatile__("wmb" : : : "memory");
-}
-
-#endif
diff --git a/libjava/sysdep/arm/backtrace.h b/libjava/sysdep/arm/backtrace.h
deleted file mode 100644
index ee1bd99..0000000
--- a/libjava/sysdep/arm/backtrace.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// backtrace.h - Fallback backtrace implementation. ARM implementation.
-
-/* Copyright (C) 2005, 2006 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_BACKTRACE_H__
-#define __SYSDEP_BACKTRACE_H__
-
-#include <java-stack.h>
-
-extern "C"
-{
-/* Unwind through the call stack calling TRACE_FN with STATE for every stack
- frame. Returns the reason why the unwinding was stopped. */
-#ifdef __ARM_EABI_UNWINDER__
-
-#define _Unwind_FindEnclosingFunction(PC) \
- (PC)
-
-_Unwind_Reason_Code
-fallback_backtrace (_Unwind_Reason_Code (*)(struct _Unwind_Context*, void*), _Jv_UnwindState *)
-#else
-_Unwind_Reason_Code
-fallback_backtrace (_Unwind_Trace_Fn, _Jv_UnwindState *)
-#endif
-{
- return _URC_NO_REASON;
-}
-}
-#endif
diff --git a/libjava/sysdep/arm/locks.h b/libjava/sysdep/arm/locks.h
deleted file mode 100644
index 2a81e11..0000000
--- a/libjava/sysdep/arm/locks.h
+++ /dev/null
@@ -1,133 +0,0 @@
-// locks.h - Thread synchronization primitives. ARM implementation.
-
-/* Copyright (C) 2007 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-typedef size_t obj_addr_t; /* Integer type big enough for object */
- /* address. */
-#if (__ARM_EABI__ && __linux)
-
-// Atomically replace *addr by new_val if it was initially equal to old.
-// Return true if the comparison succeeded.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap(addr, old, new_val);
-}
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __sync_synchronize();
- *(addr) = new_val;
-}
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-// On many architecture, the operation makes both guarantees, so the
-// implementation can be the same.
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap(addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-// On X86, the hardware ensures that reads are properly ordered.
-inline static void
-read_barrier()
-{
- __sync_synchronize();
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-inline static void
-write_barrier()
-{
- __sync_synchronize();
-}
-
-#else
-
-/* Atomic compare and exchange. These sequences are not actually
- atomic; there is a race if *ADDR != OLD_VAL and we are preempted
- between the two swaps. However, they are very close to atomic, and
- are the best that a pre-ARMv6 implementation can do without
- operating system support. LinuxThreads has been using these
- sequences for many years. */
-
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old_val,
- obj_addr_t new_val)
-{
- volatile obj_addr_t result, tmp;
- __asm__ ("\n"
- "0: ldr %[tmp],[%[addr]]\n"
- " cmp %[tmp],%[old_val]\n"
- " movne %[result],#0\n"
- " bne 1f\n"
- " swp %[result],%[new_val],[%[addr]]\n"
- " cmp %[tmp],%[result]\n"
- " swpne %[tmp],%[result],[%[addr]]\n"
- " bne 0b\n"
- " mov %[result],#1\n"
- "1:"
- : [result] "=&r" (result), [tmp] "=&r" (tmp)
- : [addr] "r" (addr), [new_val] "r" (new_val), [old_val] "r" (old_val)
- : "cc", "memory");
-
- return result;
-}
-
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __asm__ __volatile__("" : : : "memory");
- *(addr) = new_val;
-}
-
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return compare_and_swap(addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-inline static void
-read_barrier()
-{
- __asm__ __volatile__("" : : : "memory");
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-inline static void
-write_barrier()
-{
- __asm__ __volatile__("" : : : "memory");
-}
-
-#endif
-#endif
diff --git a/libjava/sysdep/descriptor-n.h b/libjava/sysdep/descriptor-n.h
deleted file mode 100644
index d640405..0000000
--- a/libjava/sysdep/descriptor-n.h
+++ /dev/null
@@ -1,3 +0,0 @@
-// Given a function pointer, return the code address.
-
-#define UNWRAP_FUNCTION_DESCRIPTOR(X) (X)
diff --git a/libjava/sysdep/descriptor-y.h b/libjava/sysdep/descriptor-y.h
deleted file mode 100644
index ca61550..0000000
--- a/libjava/sysdep/descriptor-y.h
+++ /dev/null
@@ -1,5 +0,0 @@
-// Given a function pointer, return the code address.
-
-// The function descriptor is actually multiple words,
-// but we don't care about anything except the first.
-#define UNWRAP_FUNCTION_DESCRIPTOR(X) (*(void **)(X))
diff --git a/libjava/sysdep/generic/backtrace.h b/libjava/sysdep/generic/backtrace.h
deleted file mode 100644
index 21138ae..0000000
--- a/libjava/sysdep/generic/backtrace.h
+++ /dev/null
@@ -1,23 +0,0 @@
-// backtrace.h - Fallback backtrace implementation. default implementation.
-
-/* Copyright (C) 2005, 2006 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_BACKTRACE_H__
-#define __SYSDEP_BACKTRACE_H__
-
-#include <java-stack.h>
-
-/* Unwind through the call stack calling TRACE_FN with STATE for every stack
- frame. Returns the reason why the unwinding was stopped. */
-_Unwind_Reason_Code
-fallback_backtrace (_Unwind_Trace_Fn, _Jv_UnwindState *)
-{
- return _URC_NO_REASON;
-}
-#endif
diff --git a/libjava/sysdep/generic/locks.h b/libjava/sysdep/generic/locks.h
deleted file mode 100644
index fce6c71..0000000
--- a/libjava/sysdep/generic/locks.h
+++ /dev/null
@@ -1,11 +0,0 @@
-// locks.h - Thread synchronization primitives. Generic implementation.
-
-/* Copyright (C) 2002 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#error Thread synchronization primitives not implemented for this platform.
diff --git a/libjava/sysdep/i386/backtrace.h b/libjava/sysdep/i386/backtrace.h
deleted file mode 100644
index cfdf07b..0000000
--- a/libjava/sysdep/i386/backtrace.h
+++ /dev/null
@@ -1,123 +0,0 @@
-// backtrace.h - Fallback backtrace implementation. i386 implementation.
-
-/* Copyright (C) 2005, 2006 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_BACKTRACE_H__
-#define __SYSDEP_BACKTRACE_H__
-
-#include <java-stack.h>
-
-#ifdef __CYGWIN__
-/* To allow this to link as a DLL. */
-#define MAIN_FUNC dll_crt0__FP11per_process
-extern "C" int MAIN_FUNC () __declspec(dllimport);
-#elif defined (_WIN32)
-#define MAIN_FUNC DllMain
-extern "C" int __stdcall MAIN_FUNC (void *, unsigned long, void *);
-#else /* !__CYGWIN__ && !_WIN32 */
-#define MAIN_FUNC main
-extern int MAIN_FUNC (int, char **);
-#endif /* ?__CYGWIN__ */
-
-/* The context used to keep track of our position while unwinding through
- the call stack. */
-struct _Unwind_Context
-{
- /* The starting address of the method. */
- _Jv_uintptr_t meth_addr;
-
- /* The return address in the method. */
- _Jv_uintptr_t ret_addr;
-};
-
-#ifdef __USING_SJLJ_EXCEPTIONS__
-
-#undef _Unwind_GetIPInfo
-#define _Unwind_GetIPInfo(ctx,ip_before_insn) \
- (*(ip_before_insn) = 1, (ctx)->ret_addr)
-
-#undef _Unwind_GetRegionStart
-#define _Unwind_GetRegionStart(ctx) \
- ((ctx)->meth_addr)
-
-#undef _Unwind_Backtrace
-#define _Unwind_Backtrace(trace_fn,state_ptr) \
- (fallback_backtrace (trace_fn, state_ptr))
-
-#endif /* __USING_SJLJ_EXCEPTIONS__ */
-
-/* Unwind through the call stack calling TRACE_FN with STATE for each stack
- frame. Returns the reason why the unwinding was stopped. */
-_Unwind_Reason_Code
-fallback_backtrace (_Unwind_Trace_Fn trace_fn, _Jv_UnwindState *state)
-{
- register _Jv_uintptr_t *_ebp __asm__ ("ebp");
- register _Jv_uintptr_t _esp __asm__ ("esp");
- _Jv_uintptr_t rfp;
- _Unwind_Context ctx;
-
- for (rfp = *_ebp; rfp; rfp = *(_Jv_uintptr_t *)rfp)
- {
- /* Sanity checks to eliminate dubious-looking frame pointer chains.
- The frame pointer should be a 32-bit word-aligned stack address.
- Since the stack grows downwards on x86, the frame pointer must have
- a value greater than the current value of the stack pointer, it
- should not be below the supposed next frame pointer and it should
- not be too far off from the supposed next frame pointer. */
- int diff = *(_Jv_uintptr_t *)rfp - rfp;
- if ((rfp & 0x00000003) != 0 || rfp < _esp
- || diff > 4 * 1024 || diff < 0)
- break;
-
- /* Get the return address in the calling function. This is stored on
- the stack just before the value of the old frame pointer. */
- ctx.ret_addr = *(_Jv_uintptr_t *)(rfp + sizeof (_Jv_uintptr_t));
-
- /* Try to locate a "pushl %ebp; movl %esp, %ebp" function prologue
- by scanning backwards at even addresses below the return address.
- This instruction sequence is encoded either as 0x55 0x89 0xE5 or as
- 0x55 0x8B 0xEC. We give up if we do not find this sequence even
- after scanning 1024K of memory.
- FIXME: This is not robust and will probably give us false positives,
- but this is about the best we can do if we do not have DWARF-2 unwind
- information based exception handling. */
- ctx.meth_addr = (_Jv_uintptr_t)NULL;
- _Jv_uintptr_t scan_addr = (ctx.ret_addr & 0xFFFFFFFE) - 2;
- _Jv_uintptr_t limit_addr
- = (scan_addr > 1024 * 1024) ? (scan_addr - 1024 * 1024) : 2;
- for ( ; scan_addr >= limit_addr; scan_addr -= 2)
- {
- unsigned char *scan_bytes = (unsigned char *)scan_addr;
- if (scan_bytes[0] == 0x55
- && ((scan_bytes[1] == 0x89 && scan_bytes[2] == 0xE5)
- || (scan_bytes[1] == 0x8B && scan_bytes[2] == 0xEC)))
- {
- ctx.meth_addr = scan_addr;
- break;
- }
- }
-
- /* Now call the unwinder callback function. */
- if (trace_fn != NULL)
- (*trace_fn) (&ctx, state);
-
- /* No need to unwind beyond _Jv_RunMain(), _Jv_ThreadStart or
- main(). */
- void *jv_runmain
- = (void *)(void (*)(JvVMInitArgs *, jclass, const char *, int,
- const char **, bool))_Jv_RunMain;
- if (ctx.meth_addr == (_Jv_uintptr_t)jv_runmain
- || ctx.meth_addr == (_Jv_uintptr_t)_Jv_ThreadStart
- || (ctx.meth_addr - (_Jv_uintptr_t)MAIN_FUNC) < 16)
- break;
- }
-
- return _URC_NO_REASON;
-}
-#endif
diff --git a/libjava/sysdep/i386/locks.h b/libjava/sysdep/i386/locks.h
deleted file mode 100644
index 7b99f0b..0000000
--- a/libjava/sysdep/i386/locks.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/* locks.h - Thread synchronization primitives. X86/x86-64 implementation.
-
- Copyright (C) 2002, 2011 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-typedef size_t obj_addr_t; /* Integer type big enough for object */
- /* address. */
-
-// Atomically replace *addr by new_val if it was initially equal to old.
-// Return true if the comparison succeeded.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap (addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-// On X86/x86-64, the hardware ensures that reads are properly ordered.
-inline static void
-read_barrier()
-{
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-inline static void
-write_barrier()
-{
- /* x86-64/X86 does not reorder writes. We just need to ensure that
- gcc also doesn't. */
- __asm__ __volatile__(" " : : : "memory");
-}
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-// On X86/x86-64, the hardware shouldn't reorder reads and writes,
-// so we just have to convince gcc not to do it either.
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- write_barrier ();
- *(addr) = new_val;
-}
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-// On many architecture, the operation makes both guarantees, so the
-// implementation can be the same.
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return compare_and_swap(addr, old, new_val);
-}
-#endif
diff --git a/libjava/sysdep/ia64/locks.h b/libjava/sysdep/ia64/locks.h
deleted file mode 100644
index 1a861b2..0000000
--- a/libjava/sysdep/ia64/locks.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// locks.h - Thread synchronization primitives. IA64 implementation.
-
-/* Copyright (C) 2002 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-#include <ia64intrin.h>
-
-typedef size_t obj_addr_t; /* Integer type big enough for object */
- /* address. */
-
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap (addr, old, new_val);
-}
-
-// The fact that *addr is volatile should cause the compiler to
-// automatically generate an st8.rel.
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __asm__ __volatile__("" : : : "memory");
- *(addr) = new_val;
-}
-
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- register unsigned long ar_ccv __asm__("ar.ccv") = old;
- unsigned long out;
- __asm__ __volatile__("cmpxchg8.rel %0=%1,%2,%4"
- : "=r"(out), "=m"(*addr)
- : "r"(new_val), "m"(*addr), "d"(ar_ccv) : "memory");
- return (out == old);
-}
-
-inline static void
-read_barrier()
-{
- __sync_synchronize ();
-}
-
-inline static void
-write_barrier()
-{
- __sync_synchronize ();
-}
-
-#endif
diff --git a/libjava/sysdep/m68k/locks.h b/libjava/sysdep/m68k/locks.h
deleted file mode 100644
index b51e314..0000000
--- a/libjava/sysdep/m68k/locks.h
+++ /dev/null
@@ -1,68 +0,0 @@
-// locks.h - Thread synchronization primitives. m68k implementation.
-
-/* Copyright (C) 2006, 2012 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-/* Integer type big enough for object address. */
-typedef size_t obj_addr_t __attribute__ ((aligned (4)));
-
-// Atomically replace *addr by new_val if it was initially equal to old.
-// Return true if the comparison succeeded.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-static inline bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old, obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap (addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-// On m68k, the hardware ensures that reads are properly ordered.
-static inline void
-read_barrier(void)
-{
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-static inline void
-write_barrier(void)
-{
- // m68k does not reorder writes. We just need to ensure that gcc also doesn't.
- __asm__ __volatile__(" " : : : "memory");
-}
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-// On m68k, the hardware shouldn't reorder reads and writes,
-// so we just have to convince gcc not to do it either.
-static inline void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- write_barrier ();
- *addr = new_val;
-}
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-// On many architecture, the operation makes both guarantees, so the
-// implementation can be the same.
-static inline bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return compare_and_swap(addr, old, new_val);
-}
-
-#endif
diff --git a/libjava/sysdep/mips/locks.h b/libjava/sysdep/mips/locks.h
deleted file mode 100644
index c8e30cf..0000000
--- a/libjava/sysdep/mips/locks.h
+++ /dev/null
@@ -1,68 +0,0 @@
-// locks.h - Thread synchronization primitives. MIPS implementation.
-
-/* Copyright (C) 2003 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-/* Integer type big enough for object address. */
-typedef unsigned obj_addr_t __attribute__((__mode__(__pointer__)));
-
-
-// Atomically replace *addr by new_val if it was initially equal to old.
-// Return true if the comparison succeeded.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap(addr, old, new_val);
-}
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __sync_synchronize();
- *(addr) = new_val;
-}
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-// On many architecture, the operation makes both guarantees, so the
-// implementation can be the same.
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap(addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-// On X86, the hardware ensures that reads are properly ordered.
-inline static void
-read_barrier()
-{
- __sync_synchronize();
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-inline static void
-write_barrier()
-{
- __sync_synchronize();
-}
-
-#endif // __SYSDEP_LOCKS_H__
diff --git a/libjava/sysdep/pa/descriptor-pa32-hpux.h b/libjava/sysdep/pa/descriptor-pa32-hpux.h
deleted file mode 100644
index 6000edb..0000000
--- a/libjava/sysdep/pa/descriptor-pa32-hpux.h
+++ /dev/null
@@ -1,91 +0,0 @@
-/* descriptor-pa32-hpux.h - Given a function pointer, extract and return the
- actual code address of the corresponding function.
-
- This is done by checking if the plabel bit is set. If it's not set,
- return the function pointer. If it's set, mask it off and extract
- the address from the function descriptor. This address may point
- to an export stub. If so, extract the branch target from the stub
- and return it. Otherwise, the address from the function descriptor
- is returned.
-
- Copyright (C) 2006 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#define UNWRAP_FUNCTION_DESCRIPTOR pa_unwrap_function_descriptor
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* Extract bit field from word using HP's numbering (MSB = 0). */
-#define GET_FIELD(X, FROM, TO) \
- ((X) >> (31 - (TO)) & ((1 << ((TO) - (FROM) + 1)) - 1))
-
-static inline int
-sign_extend (int x, int len)
-{
- int signbit = (1 << (len - 1));
- int mask = (signbit << 1) - 1;
- return ((x & mask) ^ signbit) - signbit;
-}
-
-/* Extract a 17-bit signed constant from branch instructions. */
-static inline int
-extract_17 (unsigned word)
-{
- return sign_extend (GET_FIELD (word, 19, 28)
- | GET_FIELD (word, 29, 29) << 10
- | GET_FIELD (word, 11, 15) << 11
- | (word & 0x1) << 16, 17);
-}
-
-/* Extract a 22-bit signed constant from branch instructions. */
-static inline int
-extract_22 (unsigned word)
-{
- return sign_extend (GET_FIELD (word, 19, 28)
- | GET_FIELD (word, 29, 29) << 10
- | GET_FIELD (word, 11, 15) << 11
- | GET_FIELD (word, 6, 10) << 16
- | (word & 0x1) << 21, 22);
-}
-
-static void *
-pa_unwrap_function_descriptor (void *addr)
-{
- unsigned int *tmp_addr;
-
- /* Check if plabel bit is set in function pointer. */
- if (!((unsigned int) addr & 2))
- return addr;
-
- tmp_addr = *(unsigned int **) ((unsigned int) addr & ~3);
-
- /* If TMP_ADDR points to an export stub, adjust it so that it points
- to the branch target of the stub. */
- if ((*tmp_addr & 0xffe0e002) == 0xe8400000 /* bl x,r2 */
- && *(tmp_addr + 1) == 0x08000240 /* nop */
- && *(tmp_addr + 2) == 0x4bc23fd1 /* ldw -18(sp),rp */
- && *(tmp_addr + 3) == 0x004010a1 /* ldsid (rp),r1 */
- && *(tmp_addr + 4) == 0x00011820 /* mtsp r1,sr0 */
- && *(tmp_addr + 5) == 0xe0400002) /* be,n 0(sr0,rp) */
- /* Extract target address from PA 1.x 17-bit branch. */
- tmp_addr += extract_17 (*tmp_addr) + 2;
- else if ((*tmp_addr & 0xfc00e002) == 0xe800a000 /* b,l x,r2 */
- && *(tmp_addr + 1) == 0x08000240 /* nop */
- && *(tmp_addr + 2) == 0x4bc23fd1 /* ldw -18(sp),rp */
- && *(tmp_addr + 3) == 0xe840d002) /* bve,n (rp) */
- /* Extract target address from PA 2.0 22-bit branch. */
- tmp_addr += extract_22 (*tmp_addr) + 2;
-
- return (void *) tmp_addr;
-}
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/libjava/sysdep/pa/descriptor-pa64-hpux.h b/libjava/sysdep/pa/descriptor-pa64-hpux.h
deleted file mode 100644
index bc6af6b..0000000
--- a/libjava/sysdep/pa/descriptor-pa64-hpux.h
+++ /dev/null
@@ -1,6 +0,0 @@
-// Given a function pointer, return the code address.
-// If the plabel bit is set, mask it off and return the code from the
-// first word of the function descriptor. Otherwise, the function
-// pointer is the code address.
-
-#define UNWRAP_FUNCTION_DESCRIPTOR(X) *(void **)((unsigned long) (X) + 16)
diff --git a/libjava/sysdep/pa/descriptor.h b/libjava/sysdep/pa/descriptor.h
deleted file mode 100644
index d988851..0000000
--- a/libjava/sysdep/pa/descriptor.h
+++ /dev/null
@@ -1,7 +0,0 @@
-// Given a function pointer, return the code address.
-// If the plabel bit is set, mask it off and return the code from the
-// first word of the function descriptor. Otherwise, the function
-// pointer is the code address.
-
-#define UNWRAP_FUNCTION_DESCRIPTOR(X) \
- (((unsigned int)(X)) & 2 ? *(void **)(((unsigned int)(X)) & ~3) : (X))
diff --git a/libjava/sysdep/pa/locks.h b/libjava/sysdep/pa/locks.h
deleted file mode 100644
index 4edc2d7..0000000
--- a/libjava/sysdep/pa/locks.h
+++ /dev/null
@@ -1,110 +0,0 @@
-// locks.h - Thread synchronization primitives. PA-RISC implementation.
-
-/* Copyright (C) 2002, 2005 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-// Integer type big enough for object address.
-typedef size_t obj_addr_t;
-
-template<int _Inst>
- struct _pa_jv_cas_lock
- {
- static volatile int _S_pa_jv_cas_lock;
- };
-
-template<int _Inst>
-volatile int
-_pa_jv_cas_lock<_Inst>::_S_pa_jv_cas_lock __attribute__ ((aligned (16))) = 1;
-
-// Because of the lack of weak support when using the hpux som
-// linker, we explicitly instantiate the atomicity lock.
-template volatile int _pa_jv_cas_lock<0>::_S_pa_jv_cas_lock;
-
-// Atomically replace *addr by new_val if it was initially equal to old_val.
-// Return true if the comparison is successful.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-// The following implementation is atomic but it can deadlock
-// (e.g., if a thread dies holding the lock).
-inline static bool
-__attribute__ ((__unused__))
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old_val,
- obj_addr_t new_val)
-{
- bool result;
- int tmp;
- volatile int& lock = _pa_jv_cas_lock<0>::_S_pa_jv_cas_lock;
-
- __asm__ __volatile__ ("ldcw 0(%1),%0\n\t"
- "cmpib,<>,n 0,%0,.+20\n\t"
- "ldw 0(%1),%0\n\t"
- "cmpib,= 0,%0,.-4\n\t"
- "nop\n\t"
- "b,n .-20"
- : "=&r" (tmp)
- : "r" (&lock)
- : "memory");
-
- if (*addr != old_val)
- result = false;
- else
- {
- *addr = new_val;
- result = true;
- }
-
- /* Reset lock with PA 2.0 "ordered" store. */
- __asm__ __volatile__ ("stw,ma %1,0(%0)"
- : : "r" (&lock), "r" (tmp) : "memory");
-
- return result;
-}
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __asm__ __volatile__(" " : : : "memory");
- *(addr) = new_val;
-}
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-// On many architecture, the operation makes both guarantees, so the
-// implementation can be the same.
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return compare_and_swap(addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-inline static void
-read_barrier()
-{
- __asm__ __volatile__(" " : : : "memory");
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-inline static void
-write_barrier()
-{
- __asm__ __volatile__(" " : : : "memory");
-}
-
-#endif
-
diff --git a/libjava/sysdep/powerpc/descriptor.h b/libjava/sysdep/powerpc/descriptor.h
deleted file mode 100644
index 51296c2..0000000
--- a/libjava/sysdep/powerpc/descriptor.h
+++ /dev/null
@@ -1,9 +0,0 @@
-// Given a function pointer, return the code address.
-
-#ifdef _CALL_AIX
-// The function descriptor is actually multiple words,
-// but we don't care about anything except the first.
-# define UNWRAP_FUNCTION_DESCRIPTOR(X) (*(void **)(X))
-#else
-# define UNWRAP_FUNCTION_DESCRIPTOR(X) (X)
-#endif
diff --git a/libjava/sysdep/powerpc/locks.h b/libjava/sysdep/powerpc/locks.h
deleted file mode 100644
index 57ee140..0000000
--- a/libjava/sysdep/powerpc/locks.h
+++ /dev/null
@@ -1,73 +0,0 @@
-// locks.h - Thread synchronization primitives. PowerPC implementation.
-
-/* Copyright (C) 2002,2008 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-typedef size_t obj_addr_t; /* Integer type big enough for object */
- /* address. */
-
-// Atomically replace *addr by new_val if it was initially equal to old.
-// Return true if the comparison succeeded.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-
-inline static bool
-compare_and_swap (volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- return __atomic_compare_exchange_n (addr, &old, new_val, 0,
- __ATOMIC_ACQUIRE, __ATOMIC_RELAXED);
-}
-
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-
-inline static void
-release_set (volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __atomic_store_n(addr, new_val, __ATOMIC_RELEASE);
-}
-
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-
-inline static bool
-compare_and_swap_release (volatile obj_addr_t *addr, obj_addr_t old,
- obj_addr_t new_val)
-{
- return __atomic_compare_exchange_n (addr, &old, new_val, 0,
- __ATOMIC_RELEASE, __ATOMIC_RELAXED);
-}
-
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-
-inline static void
-read_barrier ()
-{
- __atomic_thread_fence (__ATOMIC_ACQUIRE);
-}
-
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-
-inline static void
-write_barrier ()
-{
- __atomic_thread_fence (__ATOMIC_RELEASE);
-}
-
-#endif
diff --git a/libjava/sysdep/s390/locks.h b/libjava/sysdep/s390/locks.h
deleted file mode 100644
index 96fb43d..0000000
--- a/libjava/sysdep/s390/locks.h
+++ /dev/null
@@ -1,63 +0,0 @@
-// locks.h - Thread synchronization primitives. S/390 implementation.
-
-/* Copyright (C) 2002-2012 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-typedef size_t obj_addr_t; /* Integer type big enough for object */
- /* address. */
-
-// Atomically replace *addr by new_val if it was initially equal to old.
-// Return true if the comparison succeeded.
-// Assumed to have acquire semantics, i.e. later memory operations
-// cannot execute before the compare_and_swap finishes.
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old, obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap (addr, old, new_val);
-}
-
-// Set *addr to new_val with release semantics, i.e. making sure
-// that prior loads and stores complete before this
-// assignment.
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __sync_synchronize ();
- *(addr) = new_val;
-}
-
-// Compare_and_swap with release semantics instead of acquire semantics.
-// On many architecture, the operation makes both guarantees, so the
-// implementation can be the same.
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr,
- obj_addr_t old, obj_addr_t new_val)
-{
- return compare_and_swap(addr, old, new_val);
-}
-
-// Ensure that subsequent instructions do not execute on stale
-// data that was loaded from memory before the barrier.
-inline static void
-read_barrier()
-{
- __sync_synchronize ();
-}
-
-// Ensure that prior stores to memory are completed with respect to other
-// processors.
-inline static void
-write_barrier()
-{
- __sync_synchronize ();
-}
-#endif
diff --git a/libjava/sysdep/sh/locks.h b/libjava/sysdep/sh/locks.h
deleted file mode 100644
index 727c3aa..0000000
--- a/libjava/sysdep/sh/locks.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// locks.h - Thread synchronization primitives. SuperH implementation.
-
-/* Copyright (C) 2002, 2007 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-typedef size_t obj_addr_t; /* Integer type big enough for object */
- /* address. */
-
-inline static bool
-compare_and_swap (volatile obj_addr_t *addr, obj_addr_t old,
- obj_addr_t new_val)
-{
- return __sync_bool_compare_and_swap (addr, old, new_val);
-}
-
-inline static void
-release_set (volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __asm__ __volatile__ (" " : : : "memory");
- *(addr) = new_val;
-}
-
-inline static bool
-compare_and_swap_release (volatile obj_addr_t *addr, obj_addr_t old,
- obj_addr_t new_val)
-{
- return compare_and_swap (addr, old, new_val);
-}
-
-inline static void
-read_barrier()
-{
- __asm__ __volatile__(" " : : : "memory");
-}
-
-inline static void
-write_barrier()
-{
- __asm__ __volatile__(" " : : : "memory");
-}
-
-#endif /* ! __SYSDEP_LOCKS_H__ */
diff --git a/libjava/sysdep/sparc/locks.h b/libjava/sysdep/sparc/locks.h
deleted file mode 100644
index 7c30d7c..0000000
--- a/libjava/sysdep/sparc/locks.h
+++ /dev/null
@@ -1,142 +0,0 @@
-// locks.h - Thread synchronization primitives. Sparc implementation.
-
-/* Copyright (C) 2002, 2007 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#ifndef __SYSDEP_LOCKS_H__
-#define __SYSDEP_LOCKS_H__
-
-typedef size_t obj_addr_t; /* Integer type big enough for object */
- /* address. */
-
-#ifdef __arch64__
-/* Sparc64 implementation, use cas instruction. */
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- __asm__ __volatile__("casx [%2], %3, %0\n\t"
- "membar #StoreLoad | #StoreStore"
- : "=&r" (new_val)
- : "0" (new_val), "r" (addr), "r" (old)
- : "memory");
-
- return (new_val == old) ? true : false;
-}
-
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- __asm__ __volatile__("membar #StoreStore | #LoadStore" : : : "memory");
- *(addr) = new_val;
-}
-
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr, obj_addr_t old,
- obj_addr_t new_val)
-{
- return compare_and_swap(addr, old, new_val);
-}
-
-inline static void
-read_barrier()
-{
- __asm__ __volatile__("membar #LoadLoad | #LoadStore" : : : "memory");
-}
-
-inline static void
-write_barrier()
-{
- __asm__ __volatile__("membar #StoreLoad | #StoreStore" : : : "memory");
-}
-#else
-/* Sparc32 implementation, use a spinlock. */
-static unsigned char __cas_lock = 0;
-
-inline static void
-__cas_start_atomic(void)
-{
- unsigned int tmp;
- __asm__ __volatile__(
-"1: ldstub [%1], %0\n"
-" orcc %0, 0x0, %%g0\n"
-" be 3f\n"
-" nop\n"
-"2: ldub [%1], %0\n"
-" orcc %0, 0x0, %%g0\n"
-" bne 2b\n"
-" nop\n"
-"3:" : "=&r" (tmp)
- : "r" (&__cas_lock)
- : "memory", "cc");
-}
-
-inline static void
-__cas_end_atomic(void)
-{
- __asm__ __volatile__(
- "stb %%g0, [%0]"
- : /* no outputs */
- : "r" (&__cas_lock)
- : "memory");
-}
-
-inline static bool
-compare_and_swap(volatile obj_addr_t *addr,
- obj_addr_t old,
- obj_addr_t new_val)
-{
- bool ret;
-
- __cas_start_atomic ();
- if (*addr != old)
- {
- ret = false;
- }
- else
- {
- *addr = new_val;
- ret = true;
- }
- __cas_end_atomic ();
-
- return ret;
-}
-
-inline static void
-release_set(volatile obj_addr_t *addr, obj_addr_t new_val)
-{
- /* Technically stbar would be needed here but no sparc32
- system actually requires it. Also the stbar would mean
- this code would not work on sparcv7 chips. */
- __asm__ __volatile__("" : : : "memory");
- *(addr) = new_val;
-}
-
-inline static bool
-compare_and_swap_release(volatile obj_addr_t *addr, obj_addr_t old,
- obj_addr_t new_val)
-{
- return compare_and_swap(addr, old, new_val);
-}
-
-inline static void
-read_barrier()
-{
- __asm__ __volatile__ ("" : : : "memory");
-}
-
-inline static void
-write_barrier()
-{
- __asm__ __volatile__ ("" : : : "memory");
-}
-#endif /* __arch64__ */
-
-#endif /* ! __SYSDEP_LOCKS_H__ */