* src/vm/jit/powerpc/Makefile.am (noinst_HEADERS): Removed
authorChristian Thalinger <twisti@complang.tuwien.ac.at>
Fri, 20 Jun 2008 17:53:44 +0000 (19:53 +0200)
committerChristian Thalinger <twisti@complang.tuwien.ac.at>
Fri, 20 Jun 2008 17:53:44 +0000 (19:53 +0200)
machine-instr.h, added atomic.hpp.
* src/vm/jit/powerpc/asmpart.S (asm_compare_and_swap): Removed.
(asm_memory_barrier): Likewise.
* src/vm/jit/powerpc/atomic.hpp: New file.
* src/vm/jit/powerpc/machine-instr.h: Removed.

--HG--
branch : twisti

src/vm/jit/powerpc/Makefile.am
src/vm/jit/powerpc/asmpart.S
src/vm/jit/powerpc/atomic.hpp [new file with mode: 0644]
src/vm/jit/powerpc/machine-instr.h [deleted file]

index d8e59bfa4957cc271a752439dc3524ccbcbc22a1..6f943e04a9e81a2ddcba223e95d0ebc49eb15d59 100644 (file)
@@ -35,7 +35,7 @@ LIBS =
 
 noinst_HEADERS = \
        arch.h \
-       machine-instr.h
+       atomic.hpp
 
 noinst_LTLIBRARIES = \
        libarch.la
index 3413a354f16384a5bb3df4b84558db4a4aa7543d..cae9439fa6471ab1170a558a1c176a946e9f57bc 100644 (file)
@@ -57,9 +57,6 @@
 
        .globl asm_cacheflush
 
-       .globl asm_compare_and_swap
-       .globl asm_memory_barrier
-
 
 /* asm_vm_call_method **********************************************************
 *                                                                              *
@@ -463,36 +460,6 @@ asm_cacheflush:
        blr
 
 
-/* asm_compare_and_swap ********************************************************
-
-   XXX
-
-*******************************************************************************/
-
-asm_compare_and_swap:
-1:
-       lwarx   a6,0,a0 
-       subf.   r0,a6,a1 
-       bne-    2f 
-       or      r0,a2,a2 
-       stwcx.  r0,0,a0 
-       bne-    1b 
-2: 
-       mr      a0,a6
-       blr
-
-
-/* asm_memory_barrier **********************************************************
-
-   XXX
-
-*******************************************************************************/
-
-asm_memory_barrier:
-       sync
-       blr
-
-
 #if defined(__DARWIN__)
 
 .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32
diff --git a/src/vm/jit/powerpc/atomic.hpp b/src/vm/jit/powerpc/atomic.hpp
new file mode 100644 (file)
index 0000000..7cc9235
--- /dev/null
@@ -0,0 +1,126 @@
+/* src/vm/jit/powerpc/atomic.hpp - PowerPC atomic instructions
+
+   Copyright (C) 2008
+   CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
+
+   This file is part of CACAO.
+
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
+
+*/
+
+
+#ifndef _ATOMIC_HPP
+#define _ATOMIC_HPP
+
+#include "config.h"
+
+#include <stdint.h>
+
+
+/**
+ * An atomic compare and swap for 32-bit integer values.
+ *
+ * @param p      Pointer to memory address.
+ * @param oldval Old value to be expected.
+ * @param newval New value to be stored.
+ *
+ * @return value of the memory location before the store
+ */
+inline static uint32_t Atomic_cas_32(volatile uint32_t *p, uint32_t oldval, uint32_t newval)
+{
+       uint32_t temp;
+       uint32_t result;
+
+       __asm__ __volatile__ ("\n\
+1:  lwarx  %0,0,%4 \n                                                  \
+    subf.  %1,%0,%2 \n                                                 \
+    bne-   2f \n                                                               \
+    or     %1,%3,%3 \n                                                 \
+    stwcx. %1,0,%4 \n                                                  \
+    bne-   1b \n                                                               \
+2: \n                                                                                  \
+"
+                                                 : "=&r"(result), "=&r"(temp)
+                                                 : "r"(oldval), "r"(newval), "r"(p)
+                                                 : "cr0", "memory");
+
+       return result;
+}
+
+
+/**
+ * An atomic compare and swap for 64-bit integer values.
+ *
+ * @param p      Pointer to memory address.
+ * @param oldval Old value to be expected.
+ * @param newval New value to be stored.
+ *
+ * @return value of the memory location before the store
+ */
+inline static uint64_t Atomic_cas_64(volatile uint64_t *p, uint64_t oldval, uint64_t newval)
+{
+       uint64_t result;
+
+       log_println("Atomic_cas_64: Not implemented.");
+
+       return result;
+}
+
+
+/**
+ * An atomic compare and swap for pointer values.
+ *
+ * @param p      Pointer to memory address.
+ * @param oldval Old value to be expected.
+ * @param newval New value to be stored.
+ *
+ * @return value of the memory location before the store
+ */
+inline static void* Atomic_cas_ptr(volatile void** p, void* oldval, void* newval)
+{
+       return (void*) Atomic_cas_32((volatile uint32_t*) p, (uint32_t) oldval, (uint32_t) newval);
+}
+
+
+/**
+ * A memory barrier.
+ */
+inline static void Atomic_mb(void)
+{
+       __asm__ __volatile__ ("sync" : : : "memory");
+}
+
+
+#define STORE_ORDER_BARRIER() __asm__ __volatile__ ("" : : : "memory");
+#define MEMORY_BARRIER_AFTER_ATOMIC() __asm__ __volatile__ ("isync" : : : "memory");
+
+#endif /* _ATOMIC_HPP */
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c++
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ * vim:noexpandtab:sw=4:ts=4:
+ */
diff --git a/src/vm/jit/powerpc/machine-instr.h b/src/vm/jit/powerpc/machine-instr.h
deleted file mode 100644 (file)
index 8c7ba6e..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _MACHINE_INSTR_H
-#define _MACHINE_INSTR_H
-
-static inline long compare_and_swap(long *p, long oldval, long newval)
-{
-  long ret, temp;
-
-  __asm__ __volatile__ ("\n\
-1:  lwarx  %0,0,%4 \n\
-    subf.  %1,%0,%2 \n\
-    bne-   2f \n\
-    or     %1,%3,%3 \n\
-    stwcx. %1,0,%4 \n\
-    bne-   1b \n\
-2: \n\
-"   : "=&r"(ret), "=&r"(temp)
-    : "r"(oldval), "r"(newval), "r"(p) : "cr0", "memory");
-
-  return ret;
-}
-
-#define STORE_ORDER_BARRIER() __asm__ __volatile__ ("" : : : "memory");
-#define MEMORY_BARRIER_AFTER_ATOMIC() __asm__ __volatile__ ("isync" : : : "memory");
-#define MEMORY_BARRIER() __asm__ __volatile__ ( "sync" : : : "memory" );
-
-#endif