src/os_cpu/linux_sparc/vm/os_linux_sparc.hpp

Wed, 02 Jul 2008 12:55:16 -0700

author
xdono
date
Wed, 02 Jul 2008 12:55:16 -0700
changeset 631
d1605aabd0a1
parent 568
435e64505015
child 1106
d0994e5bebce
permissions
-rw-r--r--

6719955: Update copyright year
Summary: Update copyright year for files that have been modified in 2008
Reviewed-by: ohair, tbell

phh@568 1 /*
xdono@631 2 * Copyright 1999-2008 Sun Microsystems, Inc. All Rights Reserved.
phh@568 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
phh@568 4 *
phh@568 5 * This code is free software; you can redistribute it and/or modify it
phh@568 6 * under the terms of the GNU General Public License version 2 only, as
phh@568 7 * published by the Free Software Foundation.
phh@568 8 *
phh@568 9 * This code is distributed in the hope that it will be useful, but WITHOUT
phh@568 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
phh@568 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
phh@568 12 * version 2 for more details (a copy is included in the LICENSE file that
phh@568 13 * accompanied this code).
phh@568 14 *
phh@568 15 * You should have received a copy of the GNU General Public License version
phh@568 16 * 2 along with this work; if not, write to the Free Software Foundation,
phh@568 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
phh@568 18 *
phh@568 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
phh@568 20 * CA 95054 USA or visit www.sun.com if you need additional information or
phh@568 21 * have any questions.
phh@568 22 *
phh@568 23 */
phh@568 24
phh@568 25 //
phh@568 26 // NOTE: we are back in class os here, not Linux
phh@568 27 //
phh@568 28 static jint (*atomic_xchg_func) (jint, volatile jint*);
phh@568 29 static jint (*atomic_cmpxchg_func) (jint, volatile jint*, jint);
phh@568 30 static jlong (*atomic_cmpxchg_long_func)(jlong, volatile jlong*, jlong);
phh@568 31 static jint (*atomic_add_func) (jint, volatile jint*);
phh@568 32 static void (*fence_func) ();
phh@568 33
phh@568 34 static jint atomic_xchg_bootstrap (jint, volatile jint*);
phh@568 35 static jint atomic_cmpxchg_bootstrap (jint, volatile jint*, jint);
phh@568 36 static jlong atomic_cmpxchg_long_bootstrap(jlong, volatile jlong*, jlong);
phh@568 37 static jint atomic_add_bootstrap (jint, volatile jint*);
phh@568 38 static void fence_bootstrap ();
phh@568 39
phh@568 40 static void setup_fpu() {}
phh@568 41
phh@568 42 static bool is_allocatable(size_t bytes);
phh@568 43
phh@568 44 // Used to register dynamic code cache area with the OS
phh@568 45 // Note: Currently only used in 64 bit Windows implementations
phh@568 46 static bool register_code_area(char *low, char *high) { return true; }

mercurial