author | rehn |
Fri, 07 Jul 2017 23:11:33 +0200 | |
changeset 46644 | a5813fb66270 |
parent 46604 | d409276ee40c |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46644
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, 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:
1623
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1623
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:
1623
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef OS_WINDOWS_VM_OS_WINDOWS_HPP |
26 |
#define OS_WINDOWS_VM_OS_WINDOWS_HPP |
|
1 | 27 |
// Win32_OS defines the interface to windows operating systems |
28 |
||
22852
1063026e8cee
8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents:
18943
diff
changeset
|
29 |
// Information about the protection of the page at address '0' on this os. |
1063026e8cee
8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents:
18943
diff
changeset
|
30 |
static bool zero_page_read_protected() { return true; } |
1063026e8cee
8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents:
18943
diff
changeset
|
31 |
|
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
23527
diff
changeset
|
32 |
// File conventions |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
23527
diff
changeset
|
33 |
static const char* file_separator() { return "\\"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
23527
diff
changeset
|
34 |
static const char* line_separator() { return "\r\n"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
23527
diff
changeset
|
35 |
static const char* path_separator() { return ";"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
23527
diff
changeset
|
36 |
|
1 | 37 |
class win32 { |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
10494
diff
changeset
|
38 |
friend class os; |
38290
6b194cfc1557
8154715: Missing destructor and/or TLS clearing calls for terminating threads
dholmes
parents:
35212
diff
changeset
|
39 |
friend unsigned __stdcall thread_native_entry(class Thread*); |
1 | 40 |
|
41 |
protected: |
|
42 |
static int _vm_page_size; |
|
43 |
static int _vm_allocation_granularity; |
|
44 |
static int _processor_type; |
|
45 |
static int _processor_level; |
|
46 |
static julong _physical_memory; |
|
47 |
static size_t _default_stack_size; |
|
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
7397
diff
changeset
|
48 |
static bool _is_windows_server; |
26682
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
49 |
static bool _has_exit_bug; |
1 | 50 |
|
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
10494
diff
changeset
|
51 |
static void print_windows_version(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
10494
diff
changeset
|
52 |
|
1 | 53 |
public: |
54 |
// Windows-specific interface: |
|
55 |
static void initialize_system_info(); |
|
56 |
static void setmode_streams(); |
|
57 |
||
58 |
// Processor info as provided by NT |
|
59 |
static int processor_type() { return _processor_type; } |
|
60 |
static int processor_level() { |
|
61 |
return _processor_level; |
|
62 |
} |
|
63 |
static julong available_memory(); |
|
64 |
static julong physical_memory() { return _physical_memory; } |
|
65 |
||
10246
adee0cf4c981
7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents:
8119
diff
changeset
|
66 |
// load dll from Windows system directory or Windows directory |
adee0cf4c981
7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents:
8119
diff
changeset
|
67 |
static HINSTANCE load_Windows_dll(const char* name, char *ebuf, int ebuflen); |
adee0cf4c981
7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents:
8119
diff
changeset
|
68 |
|
26682
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
69 |
private: |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
70 |
enum Ept { EPT_THREAD, EPT_PROCESS, EPT_PROCESS_DIE }; |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
71 |
// Wrapper around _endthreadex(), exit() and _exit() |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
72 |
static int exit_process_or_thread(Ept what, int exit_code); |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
73 |
|
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
74 |
static void initialize_performance_counter(); |
22891
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
18943
diff
changeset
|
75 |
|
1 | 76 |
public: |
77 |
// Generic interface: |
|
78 |
||
79 |
// Trace number of created threads |
|
80 |
static intx _os_thread_limit; |
|
81 |
static volatile intx _os_thread_count; |
|
82 |
||
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
7397
diff
changeset
|
83 |
// Tells whether this is a server version of Windows |
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
7397
diff
changeset
|
84 |
static bool is_windows_server() { return _is_windows_server; } |
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
7397
diff
changeset
|
85 |
|
26682
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
86 |
// Tells whether there can be the race bug during process exit on this platform |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
87 |
static bool has_exit_bug() { return _has_exit_bug; } |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
88 |
|
1 | 89 |
// Returns the byte size of a virtual memory page |
90 |
static int vm_page_size() { return _vm_page_size; } |
|
91 |
||
92 |
// Returns the size in bytes of memory blocks which can be allocated. |
|
93 |
static int vm_allocation_granularity() { return _vm_allocation_granularity; } |
|
94 |
||
95 |
// Read the headers for the executable that started the current process into |
|
96 |
// the structure passed in (see winnt.h). |
|
97 |
static void read_executable_headers(PIMAGE_NT_HEADERS); |
|
98 |
||
99 |
// Default stack size for the current process. |
|
100 |
static size_t default_stack_size() { return _default_stack_size; } |
|
101 |
||
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35056
diff
changeset
|
102 |
static bool get_frame_at_stack_banging_point(JavaThread* thread, |
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35056
diff
changeset
|
103 |
struct _EXCEPTION_POINTERS* exceptionInfo, |
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35056
diff
changeset
|
104 |
address pc, frame* fr); |
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
35056
diff
changeset
|
105 |
|
1 | 106 |
#ifndef _WIN64 |
107 |
// A wrapper to install a structured exception handler for fast JNI accesors. |
|
108 |
static address fast_jni_accessor_wrapper(BasicType); |
|
109 |
#endif |
|
110 |
||
111 |
// filter function to ignore faults on serializations page |
|
112 |
static LONG WINAPI serialize_fault_filter(struct _EXCEPTION_POINTERS* e); |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
113 |
|
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
114 |
// Fast access to current thread |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
115 |
protected: |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
116 |
static int _thread_ptr_offset; |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
117 |
private: |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
118 |
static void initialize_thread_ptr_offset(); |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
119 |
public: |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
120 |
static inline void set_thread_ptr_offset(int offset) { |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
121 |
_thread_ptr_offset = offset; |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
122 |
} |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
30143
diff
changeset
|
123 |
static inline int get_thread_ptr_offset() { return _thread_ptr_offset; } |
1 | 124 |
}; |
125 |
||
46604
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
126 |
static void write_memory_serialize_page_with_handler(JavaThread* thread) { |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
127 |
// Due to chained nature of SEH handlers we have to be sure |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
128 |
// that our handler is always last handler before an attempt to write |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
129 |
// into serialization page - it can fault if we access this page |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
130 |
// right in the middle of protect/unprotect sequence by remote |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
131 |
// membar logic. |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
132 |
// __try/__except are very lightweight operations (only several |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
133 |
// instructions not affecting control flow directly on x86) |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
134 |
// so we can use it here, on very time critical path |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
135 |
__try { |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
136 |
write_memory_serialize_page(thread); |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
137 |
} __except (win32::serialize_fault_filter((_EXCEPTION_POINTERS*)_exception_info())) |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
138 |
{} |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
139 |
} |
d409276ee40c
8183198: Factor out thread state serialization into a proper helper function
mgerdin
parents:
38290
diff
changeset
|
140 |
|
18943 | 141 |
/* |
142 |
* Crash protection for the watcher thread. Wrap the callback |
|
143 |
* with a __try { call() } |
|
144 |
* To be able to use this - don't take locks, don't rely on destructors, |
|
145 |
* don't make OS library calls, don't allocate memory, don't print, |
|
146 |
* don't call code that could leave the heap / memory in an inconsistent state, |
|
147 |
* or anything else where we are not in control if we suddenly jump out. |
|
148 |
*/ |
|
46644
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
149 |
class ThreadCrashProtection : public StackObj { |
18943 | 150 |
public: |
46644
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
151 |
static bool is_crash_protected(Thread* thr) { |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
152 |
return _crash_protection != NULL && _protected_thread == thr; |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
153 |
} |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
154 |
|
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
155 |
ThreadCrashProtection(); |
18943 | 156 |
bool call(os::CrashProtectionCallback& cb); |
46644
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
157 |
private: |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
158 |
static Thread* _protected_thread; |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
159 |
static ThreadCrashProtection* _crash_protection; |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
160 |
static volatile intptr_t _crash_mux; |
18943 | 161 |
}; |
162 |
||
13195 | 163 |
class PlatformEvent : public CHeapObj<mtInternal> { |
1 | 164 |
private: |
165 |
double CachePad [4] ; // increase odds that _Event is sole occupant of cache line |
|
166 |
volatile int _Event ; |
|
167 |
HANDLE _ParkHandle ; |
|
168 |
||
169 |
public: // TODO-FIXME: make dtor private |
|
170 |
~PlatformEvent() { guarantee (0, "invariant") ; } |
|
171 |
||
172 |
public: |
|
173 |
PlatformEvent() { |
|
174 |
_Event = 0 ; |
|
175 |
_ParkHandle = CreateEvent (NULL, false, false, NULL) ; |
|
176 |
guarantee (_ParkHandle != NULL, "invariant") ; |
|
177 |
} |
|
178 |
||
179 |
// Exercise caution using reset() and fired() - they may require MEMBARs |
|
180 |
void reset() { _Event = 0 ; } |
|
181 |
int fired() { return _Event; } |
|
182 |
void park () ; |
|
183 |
void unpark () ; |
|
184 |
int park (jlong millis) ; |
|
185 |
} ; |
|
186 |
||
187 |
||
188 |
||
13195 | 189 |
class PlatformParker : public CHeapObj<mtInternal> { |
1 | 190 |
protected: |
191 |
HANDLE _ParkEvent ; |
|
192 |
||
193 |
public: |
|
194 |
~PlatformParker () { guarantee (0, "invariant") ; } |
|
195 |
PlatformParker () { |
|
196 |
_ParkEvent = CreateEvent (NULL, true, false, NULL) ; |
|
197 |
guarantee (_ParkEvent != NULL, "invariant") ; |
|
198 |
} |
|
199 |
||
200 |
} ; |
|
7397 | 201 |
|
202 |
#endif // OS_WINDOWS_VM_OS_WINDOWS_HPP |