src/hotspot/os/windows/jvm_windows.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 49449 ef5d5d343e2a
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
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1998, 2010, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
    26
#include "jvm.h"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 47765
diff changeset
    27
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "runtime/osThread.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#include <signal.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
JVM_LEAF(void*, JVM_GetThreadInterruptEvent())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  return Thread::current()->osthread()->interrupt_event();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// sun.misc.Signal ///////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Signal code is mostly copied from classic vm, signals_md.c   1.4 98/08/23
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 * This function is included primarily as a debugging aid. If Java is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 * running in a console window, then pressing <CTRL-BREAK> will cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 * the current state of all active threads and monitors to be written
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
 * to the console window.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
JVM_ENTRY_NO_ENV(void*, JVM_RegisterSignal(jint sig, void* handler))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // Copied from classic vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // signals_md.c       1.4 98/08/23
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  void* newHandler = handler == (void *)2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
                   ? os::user_handler()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
                   : handler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  switch (sig) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
   case SIGFPE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
     return (void *)-1; /* already used by VM */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
   case SIGBREAK:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
     if (!ReduceSignalUsage) return (void *)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    /* The following signals are used for Shutdown Hooks support. However, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
       ReduceSignalUsage (-Xrs) is set, Shutdown Hooks must be invoked via
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
       System.exit(), Java is not allowed to use these signals, and the the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
       user is allowed to set his own _native_ handler for these signals and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
       invoke System.exit() as needed. Terminator.setup() is avoiding
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
       registration of these signals when -Xrs is present. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
   case SHUTDOWN1_SIGNAL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
   case SHUTDOWN2_SIGNAL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
     if (ReduceSignalUsage) return (void*)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  void* oldHandler = os::signal(sig, newHandler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  if (oldHandler == os::user_handler()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      return (void *)2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      return oldHandler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
JVM_ENTRY_NO_ENV(jboolean, JVM_RaiseSignal(jint sig))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  if (ReduceSignalUsage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    // do not allow SHUTDOWN1_SIGNAL,SHUTDOWN2_SIGNAL,BREAK_SIGNAL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    // to be raised when ReduceSignalUsage is set, since no handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    // for them is actually registered in JVM or via JVM_RegisterSignal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    if (sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
        sig == SIGBREAK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
      return JNI_FALSE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  os::signal_raise(sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  return JNI_TRUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91