src/hotspot/os/windows/os_windows.hpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 57738 807d192fb7dd
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52894
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52894
diff changeset
    25
#ifndef OS_WINDOWS_OS_WINDOWS_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52894
diff changeset
    26
#define OS_WINDOWS_OS_WINDOWS_HPP
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// Win32_OS defines the interface to windows operating systems
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
52894
8df9cf767f79 8214773: Replace use of thread unsafe strtok
neliasso
parents: 52460
diff changeset
    29
// strtok_s is the Windows thread-safe equivalent of POSIX strtok_r
8df9cf767f79 8214773: Replace use of thread unsafe strtok
neliasso
parents: 52460
diff changeset
    30
#define strtok_r strtok_s
8df9cf767f79 8214773: Replace use of thread unsafe strtok
neliasso
parents: 52460
diff changeset
    31
53369
55cee96fefec 8215699: -Xlog::file cannot be used with named pipe
hseigel
parents: 53244
diff changeset
    32
#define S_ISCHR(mode)   (((mode) & _S_IFCHR) == _S_IFCHR)
55cee96fefec 8215699: -Xlog::file cannot be used with named pipe
hseigel
parents: 53244
diff changeset
    33
#define S_ISFIFO(mode)  (((mode) & _S_IFIFO) == _S_IFIFO)
55cee96fefec 8215699: -Xlog::file cannot be used with named pipe
hseigel
parents: 53244
diff changeset
    34
22852
1063026e8cee 8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents: 18943
diff changeset
    35
// 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
    36
static bool zero_page_read_protected() { return true; }
1063026e8cee 8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents: 18943
diff changeset
    37
25468
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 23527
diff changeset
    38
// File conventions
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 23527
diff changeset
    39
static const char* file_separator() { return "\\"; }
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 23527
diff changeset
    40
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
    41
static const char* path_separator() { return ";"; }
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 23527
diff changeset
    42
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class win32 {
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 10494
diff changeset
    44
  friend class os;
38290
6b194cfc1557 8154715: Missing destructor and/or TLS clearing calls for terminating threads
dholmes
parents: 35212
diff changeset
    45
  friend unsigned __stdcall thread_native_entry(class Thread*);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static int    _vm_page_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  static int    _vm_allocation_granularity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  static int    _processor_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static int    _processor_level;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static julong _physical_memory;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static size_t _default_stack_size;
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 7397
diff changeset
    54
  static bool   _is_windows_server;
26682
f339669ba825 8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents: 25468
diff changeset
    55
  static bool   _has_exit_bug;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 10494
diff changeset
    57
  static void print_windows_version(outputStream* st);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents: 10494
diff changeset
    58
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // Windows-specific interface:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  static void   initialize_system_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static void   setmode_streams();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Processor info as provided by NT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static int processor_type()  { return _processor_type;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static int processor_level() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    return _processor_level;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static julong available_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static julong physical_memory() { return _physical_memory; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
10246
adee0cf4c981 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 8119
diff changeset
    72
  // 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
    73
  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
    74
26682
f339669ba825 8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents: 25468
diff changeset
    75
 private:
f339669ba825 8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents: 25468
diff changeset
    76
  enum Ept { EPT_THREAD, EPT_PROCESS, EPT_PROCESS_DIE };
f339669ba825 8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents: 25468
diff changeset
    77
  // Wrapper around _endthreadex(), exit() and _exit()
f339669ba825 8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents: 25468
diff changeset
    78
  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
    79
f339669ba825 8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents: 25468
diff changeset
    80
  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
    81
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Generic interface:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Trace number of created threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static          intx  _os_thread_limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static volatile intx  _os_thread_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 7397
diff changeset
    89
  // Tells whether this is a server version of Windows
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 7397
diff changeset
    90
  static bool is_windows_server() { return _is_windows_server; }
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 7397
diff changeset
    91
26682
f339669ba825 8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents: 25468
diff changeset
    92
  // 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
    93
  static bool has_exit_bug() { return _has_exit_bug; }
f339669ba825 8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents: 25468
diff changeset
    94
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Returns the byte size of a virtual memory page
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static int vm_page_size() { return _vm_page_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Returns the size in bytes of memory blocks which can be allocated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  static int vm_allocation_granularity() { return _vm_allocation_granularity; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Read the headers for the executable that started the current process into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // the structure passed in (see winnt.h).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  static void read_executable_headers(PIMAGE_NT_HEADERS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Default stack size for the current process.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static size_t default_stack_size() { return _default_stack_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 35056
diff changeset
   108
  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
   109
                          struct _EXCEPTION_POINTERS* exceptionInfo,
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 35056
diff changeset
   110
                          address pc, frame* fr);
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 35056
diff changeset
   111
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
#ifndef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // A wrapper to install a structured exception handler for fast JNI accesors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static address fast_jni_accessor_wrapper(BasicType);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   117
  // Fast access to current thread
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   118
protected:
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   119
  static int _thread_ptr_offset;
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   120
private:
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   121
  static void initialize_thread_ptr_offset();
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   122
public:
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   123
  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
   124
    _thread_ptr_offset = offset;
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   125
  }
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 30143
diff changeset
   126
  static inline int get_thread_ptr_offset() { return _thread_ptr_offset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   129
/*
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   130
 * Crash protection for the watcher thread. Wrap the callback
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   131
 * with a __try { call() }
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   132
 * To be able to use this - don't take locks, don't rely on destructors,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   133
 * don't make OS library calls, don't allocate memory, don't print,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   134
 * don't call code that could leave the heap / memory in an inconsistent state,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   135
 * or anything else where we are not in control if we suddenly jump out.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   136
 */
46644
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   137
class ThreadCrashProtection : public StackObj {
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   138
public:
46644
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   139
  static bool is_crash_protected(Thread* thr) {
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   140
    return _crash_protection != NULL && _protected_thread == thr;
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   141
  }
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   142
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   143
  ThreadCrashProtection();
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   144
  bool call(os::CrashProtectionCallback& cb);
46644
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   145
private:
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   146
  static Thread* _protected_thread;
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   147
  static ThreadCrashProtection* _crash_protection;
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   148
  static volatile intptr_t _crash_mux;
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   149
};
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 18683
diff changeset
   150
53849
46ef4dea49e5 8219370: NMT: Move synchronization primitives from mtInternal to mtSynchronizer
zgu
parents: 53646
diff changeset
   151
class PlatformEvent : public CHeapObj<mtSynchronizer> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    double CachePad [4] ;   // increase odds that _Event is sole occupant of cache line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    volatile int _Event ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    HANDLE _ParkHandle ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  public:       // TODO-FIXME: make dtor private
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    ~PlatformEvent() { guarantee (0, "invariant") ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    PlatformEvent() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
      _Event   = 0 ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
      _ParkHandle = CreateEvent (NULL, false, false, NULL) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      guarantee (_ParkHandle != NULL, "invariant") ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    // Exercise caution using reset() and fired() - they may require MEMBARs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    void reset() { _Event = 0 ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    int  fired() { return _Event; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    void park () ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    void unpark () ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    int  park (jlong millis) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
} ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
53849
46ef4dea49e5 8219370: NMT: Move synchronization primitives from mtInternal to mtSynchronizer
zgu
parents: 53646
diff changeset
   177
class PlatformParker : public CHeapObj<mtSynchronizer> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    HANDLE _ParkEvent ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    ~PlatformParker () { guarantee (0, "invariant") ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    PlatformParker  () {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      _ParkEvent = CreateEvent (NULL, true, false, NULL) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      guarantee (_ParkEvent != NULL, "invariant") ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
} ;
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   189
57738
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   190
// Platform specific implementations that underpin VM Mutex/Monitor classes
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   191
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   192
class PlatformMutex : public CHeapObj<mtSynchronizer> {
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   193
  // Disable copying
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   194
  PlatformMutex(const PlatformMutex&);
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   195
  PlatformMutex& operator=(const PlatformMutex&);
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   196
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   197
 protected:
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   198
  CRITICAL_SECTION   _mutex; // Native mutex for locking
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   199
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   200
 public:
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   201
  PlatformMutex();
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   202
  ~PlatformMutex();
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   203
  void lock();
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   204
  void unlock();
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   205
  bool try_lock();
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   206
};
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   207
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   208
class PlatformMonitor : public PlatformMutex {
53646
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   209
 private:
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   210
  CONDITION_VARIABLE _cond;  // Native condition variable for blocking
57738
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   211
  // Disable copying
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   212
  PlatformMonitor(const PlatformMonitor&);
807d192fb7dd 8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents: 53849
diff changeset
   213
  PlatformMonitor& operator=(const PlatformMonitor&);
53646
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   214
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   215
 public:
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   216
  PlatformMonitor();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   217
  ~PlatformMonitor();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   218
  int wait(jlong millis);
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   219
  void notify();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   220
  void notify_all();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   221
};
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53369
diff changeset
   222
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52894
diff changeset
   223
#endif // OS_WINDOWS_OS_WINDOWS_HPP