author | darcy |
Tue, 12 Nov 2019 10:45:23 -0800 | |
changeset 59037 | 3d2575331a41 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
14837
diff
changeset
|
2 |
* Copyright (c) 1999, 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:
1066
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1066
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:
1066
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
14626
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
7397
diff
changeset
|
26 |
#include "asm/macroAssembler.hpp" |
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
7397
diff
changeset
|
27 |
#include "asm/macroAssembler.inline.hpp" |
7397 | 28 |
#include "runtime/os.hpp" |
1 | 29 |
|
30 |
void MacroAssembler::int3() { |
|
14837
a75c3082d106
8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
twisti
parents:
14626
diff
changeset
|
31 |
emit_int8((unsigned char)0xCC); |
1 | 32 |
} |
33 |
||
1066 | 34 |
#ifndef _LP64 |
1 | 35 |
// The current scheme to accelerate access to the thread |
36 |
// pointer is to store the current thread in the os_exception_wrapper |
|
37 |
// and reference the current thread from stubs and compiled code |
|
38 |
// via the FS register. FS[0] contains a pointer to the structured |
|
39 |
// exception block which is actually a stack address. The first time |
|
40 |
// we call the os exception wrapper, we calculate and store the |
|
41 |
// offset from this exception block and use that offset here. |
|
42 |
// |
|
43 |
// The last mechanism we used was problematic in that the |
|
44 |
// the offset we had hard coded in the VM kept changing as Microsoft |
|
45 |
// evolved the OS. |
|
46 |
// |
|
47 |
// Warning: This mechanism assumes that we only attempt to get the |
|
48 |
// thread when we are nested below a call wrapper. |
|
49 |
// |
|
50 |
// movl reg, fs:[0] Get exeception pointer |
|
51 |
// movl reg, [reg + thread_ptr_offset] Load thread |
|
52 |
// |
|
53 |
void MacroAssembler::get_thread(Register thread) { |
|
54 |
prefix(FS_segment); |
|
36301
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
34633
diff
changeset
|
55 |
movptr(thread, ExternalAddress(NULL)); |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
14837
diff
changeset
|
56 |
assert(os::win32::get_thread_ptr_offset() != 0, |
1 | 57 |
"Thread Pointer Offset has not been initialized"); |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
14837
diff
changeset
|
58 |
movl(thread, Address(thread, os::win32::get_thread_ptr_offset())); |
1 | 59 |
} |
1066 | 60 |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
14837
diff
changeset
|
61 |
// #else - use shared x86 implementation in cpu/x86/vm/macroAssembler_x86.cpp |
1066 | 62 |
|
63 |
#endif |