author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 37466 | hotspot/src/share/vm/runtime/threadLocalStorage.hpp@287c4ebd11b0 |
child 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
30764 | 2 |
* Copyright (c) 1997, 2015, 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:
1217
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1217
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:
1217
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_THREADLOCALSTORAGE_HPP |
26 |
#define SHARE_VM_RUNTIME_THREADLOCALSTORAGE_HPP |
|
27 |
||
37466 | 28 |
#include "memory/allocation.hpp" |
7397 | 29 |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
30 |
// forward-decl as we can't have an include cycle |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
31 |
class Thread; |
1 | 32 |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
33 |
// Wrapper class for library-based (as opposed to compiler-based) |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
34 |
// thread-local storage (TLS). All platforms require this for |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
35 |
// signal-handler based TLS access (which while not strictly async-signal |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
36 |
// safe in theory, is and has-been for a long time, in practice). |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
37 |
// Platforms without compiler-based TLS (i.e. __thread storage-class modifier) |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
38 |
// will use this implementation for all TLS access - see thread.hpp/cpp |
1 | 39 |
|
40 |
class ThreadLocalStorage : AllStatic { |
|
32181
dee472a9b4db
8130212: Thread::current() might access freed memory on Solaris
dholmes
parents:
30764
diff
changeset
|
41 |
|
dee472a9b4db
8130212: Thread::current() might access freed memory on Solaris
dholmes
parents:
30764
diff
changeset
|
42 |
// Exported API |
1 | 43 |
public: |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
44 |
static Thread* thread(); // return current thread, if attached |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
45 |
static void set_thread(Thread* thread); // set current thread |
32181
dee472a9b4db
8130212: Thread::current() might access freed memory on Solaris
dholmes
parents:
30764
diff
changeset
|
46 |
static void init(); |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
32181
diff
changeset
|
47 |
static bool is_initialized(); // can't use TLS prior to initialization |
1 | 48 |
}; |
7397 | 49 |
|
50 |
#endif // SHARE_VM_RUNTIME_THREADLOCALSTORAGE_HPP |