author | mgerdin |
Thu, 23 Feb 2012 14:58:35 +0100 | |
changeset 12095 | cc3d6f08a4c4 |
parent 9990 | c8683968c01b |
child 14626 | 0cf4eccf130f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
7397 | 2 |
* Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3795
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3795
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3795
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_ATOMIC_HPP |
26 |
#define SHARE_VM_RUNTIME_ATOMIC_HPP |
|
27 |
||
28 |
#include "memory/allocation.hpp" |
|
29 |
||
1 | 30 |
class Atomic : AllStatic { |
31 |
public: |
|
32 |
// Atomically store to a location |
|
33 |
static void store (jbyte store_value, jbyte* dest); |
|
34 |
static void store (jshort store_value, jshort* dest); |
|
35 |
static void store (jint store_value, jint* dest); |
|
36 |
static void store (jlong store_value, jlong* dest); |
|
37 |
static void store_ptr(intptr_t store_value, intptr_t* dest); |
|
38 |
static void store_ptr(void* store_value, void* dest); |
|
39 |
||
40 |
static void store (jbyte store_value, volatile jbyte* dest); |
|
41 |
static void store (jshort store_value, volatile jshort* dest); |
|
42 |
static void store (jint store_value, volatile jint* dest); |
|
43 |
static void store (jlong store_value, volatile jlong* dest); |
|
44 |
static void store_ptr(intptr_t store_value, volatile intptr_t* dest); |
|
45 |
static void store_ptr(void* store_value, volatile void* dest); |
|
46 |
||
3594
0ce9158bc84c
6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents:
670
diff
changeset
|
47 |
static jlong load(volatile jlong* src); |
0ce9158bc84c
6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents:
670
diff
changeset
|
48 |
|
1 | 49 |
// Atomically add to a location, return updated value |
50 |
static jint add (jint add_value, volatile jint* dest); |
|
51 |
static intptr_t add_ptr(intptr_t add_value, volatile intptr_t* dest); |
|
52 |
static void* add_ptr(intptr_t add_value, volatile void* dest); |
|
53 |
||
9990
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
7397
diff
changeset
|
54 |
static jlong add (jlong add_value, volatile jlong* dest); |
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
7397
diff
changeset
|
55 |
|
1 | 56 |
// Atomically increment location |
57 |
static void inc (volatile jint* dest); |
|
58 |
static void inc_ptr(volatile intptr_t* dest); |
|
59 |
static void inc_ptr(volatile void* dest); |
|
60 |
||
61 |
// Atomically decrement a location |
|
62 |
static void dec (volatile jint* dest); |
|
63 |
static void dec_ptr(volatile intptr_t* dest); |
|
64 |
static void dec_ptr(volatile void* dest); |
|
65 |
||
66 |
// Performs atomic exchange of *dest with exchange_value. Returns old prior value of *dest. |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
67 |
static jint xchg(jint exchange_value, volatile jint* dest); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
68 |
static unsigned int xchg(unsigned int exchange_value, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
69 |
volatile unsigned int* dest); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
70 |
|
1 | 71 |
static intptr_t xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest); |
72 |
static void* xchg_ptr(void* exchange_value, volatile void* dest); |
|
73 |
||
74 |
// Performs atomic compare of *dest and compare_value, and exchanges *dest with exchange_value |
|
75 |
// if the comparison succeeded. Returns prior value of *dest. Guarantees a two-way memory |
|
76 |
// barrier across the cmpxchg. I.e., it's really a 'fence_cmpxchg_acquire'. |
|
77 |
static jbyte cmpxchg (jbyte exchange_value, volatile jbyte* dest, jbyte compare_value); |
|
78 |
static jint cmpxchg (jint exchange_value, volatile jint* dest, jint compare_value); |
|
79 |
static jlong cmpxchg (jlong exchange_value, volatile jlong* dest, jlong compare_value); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
80 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
81 |
static unsigned int cmpxchg(unsigned int exchange_value, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
82 |
volatile unsigned int* dest, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
83 |
unsigned int compare_value); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
84 |
|
1 | 85 |
static intptr_t cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value); |
86 |
static void* cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value); |
|
87 |
}; |
|
7397 | 88 |
|
89 |
#endif // SHARE_VM_RUNTIME_ATOMIC_HPP |