jdk/src/share/classes/sun/misc/VM.java
author ksrini
Thu, 03 Feb 2011 15:41:23 -0800
changeset 8174 89e3a22d4cd7
parent 7668 d4a77089c587
child 9035 1255eb81cc2f
permissions -rw-r--r--
6968053: (launcher) hide exceptions under certain launcher failures Reviewed-by: mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 7540
diff changeset
     2
 * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3958
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3958
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3958
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3958
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3958
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.misc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
7540
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
    28
import static java.lang.Thread.State.*;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Properties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
public class VM {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    /* The following methods used to be native methods that instruct
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
     * the VM to selectively suspend certain threads in low-memory
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
     * situations. They are inherently dangerous and not implementable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
     * on native threads. We removed them in JDK 1.2. The skeletons
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
     * remain so that existing applications that use these methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
     * will still work.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private static boolean suspended = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    public static boolean threadsSuspended() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        return suspended;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    public static boolean allowThreadSuspension(ThreadGroup g, boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        return g.allowThreadSuspension(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    public static boolean suspendThreads() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        suspended = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    // Causes any suspended threadgroups to be resumed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    public static void unsuspendThreads() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        suspended = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    // Causes threadgroups no longer marked suspendable to be resumed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    public static void unsuspendSomeThreads() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /* Deprecated fields and methods -- Memory advice not supported in 1.2 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    public static final int STATE_GREEN = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    public static final int STATE_YELLOW = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    public static final int STATE_RED = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    public static final int getState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        return STATE_GREEN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    public static void registerVMNotification(VMNotification n) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    public static void asChange(int as_old, int as_new) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /** @deprecated */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    public static void asChange_otherthread(int as_old, int as_new) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Not supported in 1.2 because these will have to be exported as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * JVM functions, and we are not sure we want do that. Leaving
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * here so it can be easily resurrected -- just remove the //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * comments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Resume Java profiling.  All profiling data is added to any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * earlier profiling, unless <code>resetJavaProfiler</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * called in between.  If profiling was not started from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * command line, <code>resumeJavaProfiler</code> will start it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * NOTE: Profiling must be enabled from the command line for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * java.prof report to be automatically generated on exit; if not,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * writeJavaProfilerReport must be invoked to write a report.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @see     resetJavaProfiler
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @see     writeJavaProfilerReport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    // public native static void resumeJavaProfiler();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * Suspend Java profiling.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    // public native static void suspendJavaProfiler();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Initialize Java profiling.  Any accumulated profiling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * information is discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    // public native static void resetJavaProfiler();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * Write the current profiling contents to the file "java.prof".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * If the file already exists, it will be overwritten.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    // public native static void writeJavaProfilerReport();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    private static volatile boolean booted = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    // Invoked by by System.initializeSystemClass just before returning.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    // Subsystems that are invoked during initialization can check this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    // property in order to avoid doing things that should wait until the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    // application class loader has been set up.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    public static void booted() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        booted = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    public static boolean isBooted() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        return booted;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    // A user-settable upper limit on the maximum amount of allocatable direct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    // buffer memory.  This value may be changed during VM initialization if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    // "java" is launched with "-XX:MaxDirectMemorySize=<size>".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    // The initial value of this field is arbitrary; during JRE initialization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    // it will be reset to the value specified on the command line, if any,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    // otherwise to Runtime.getRuntime.maxDirectMemory().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    private static long directMemory = 64 * 1024 * 1024;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   174
    // Returns the maximum amount of allocatable direct buffer memory.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   175
    // The directMemory variable is initialized during system initialization
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   176
    // in the saveAndRemoveProperties method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public static long maxDirectMemory() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        return directMemory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
6902
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   182
    // User-controllable flag that determines if direct buffers should be page
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   183
    // aligned. The "-XX:+PageAlignDirectMemory" option can be used to force
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   184
    // buffers, allocated by ByteBuffer.allocateDirect, to be page aligned.
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   185
    private static boolean pageAlignDirectMemory;
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   186
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   187
    // Returns {@code true} if the direct buffers should be page aligned. This
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   188
    // variable is initialized by saveAndRemoveProperties.
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   189
    public static boolean isDirectMemoryPageAligned() {
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   190
        return pageAlignDirectMemory;
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   191
    }
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   192
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    // A user-settable boolean to determine whether ClassLoader.loadClass should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    // accept array syntax.  This value may be changed during VM initialization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    // via the system property "sun.lang.ClassLoader.allowArraySyntax".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    // The default for 1.5 is "true", array syntax is allowed.  In 1.6, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    // default will be "false".  The presence of this system property to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    // control array syntax allows applications the ability to preview this new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    // behaviour.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    private static boolean defaultAllowArraySyntax = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    private static boolean allowArraySyntax = defaultAllowArraySyntax;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   205
    // The allowArraySyntax boolean is initialized during system initialization
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   206
    // in the saveAndRemoveProperties method.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   207
    //
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   208
    // It is initialized based on the value of the system property
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    // "sun.lang.ClassLoader.allowArraySyntax".  If the system property is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    // provided, the default for 1.5 is "true".  In 1.6, the default will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    // "false".  If the system property is provided, then the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    // allowArraySyntax will be equal to "true" if Boolean.parseBoolean()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    // returns "true".   Otherwise, the field will be set to "false".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    //
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   215
    public static boolean allowArraySyntax() {
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   216
        return allowArraySyntax;
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   217
    }
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   218
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   219
    /**
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   220
     * Returns the system property of the specified key saved at
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   221
     * system initialization time.  This method should only be used
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   222
     * for the system properties that are not changed during runtime.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   223
     * It accesses a private copy of the system properties so
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   224
     * that user's locking of the system properties object will not
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   225
     * cause the library to deadlock.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   226
     *
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   227
     * Note that the saved system properties do not include
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   228
     * the ones set by sun.misc.Version.init().
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   229
     *
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   230
     */
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   231
    public static String getSavedProperty(String key) {
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   232
        if (savedProps.isEmpty())
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   233
            throw new IllegalStateException("Should be non-empty if initialized");
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   234
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   235
        return savedProps.getProperty(key);
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   236
    }
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   237
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7668
diff changeset
   238
    // TODO: the Property Management needs to be refactored and
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7668
diff changeset
   239
    // the appropriate prop keys need to be accessible to the
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7668
diff changeset
   240
    // calling classes to avoid duplication of keys.
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   241
    private static final Properties savedProps = new Properties();
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   242
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   243
    // Save a private copy of the system properties and remove
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   244
    // the system properties that are not intended for public access.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    //
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   246
    // This method can only be invoked during system initialization.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   247
    public static void saveAndRemoveProperties(Properties props) {
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   248
        if (booted)
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   249
            throw new IllegalStateException("System initialization has completed");
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   250
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   251
        savedProps.putAll(props);
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   252
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   253
        // Set the maximum amount of direct memory.  This value is controlled
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   254
        // by the vm option -XX:MaxDirectMemorySize=<size>.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   255
        // The maximum amount of allocatable direct buffer memory (in bytes)
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   256
        // from the system property sun.nio.MaxDirectMemorySize set by the VM.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   257
        // The system property will be removed.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   258
        String s = (String)props.remove("sun.nio.MaxDirectMemorySize");
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   259
        if (s != null) {
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   260
            if (s.equals("-1")) {
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   261
                // -XX:MaxDirectMemorySize not given, take default
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   262
                directMemory = Runtime.getRuntime().maxMemory();
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   263
            } else {
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   264
                long l = Long.parseLong(s);
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   265
                if (l > -1)
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   266
                    directMemory = l;
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   267
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        }
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   269
6902
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   270
        // Check if direct buffers should be page aligned
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   271
        s = (String)props.remove("sun.nio.PageAlignDirectMemory");
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   272
        if ("true".equals(s))
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   273
            pageAlignDirectMemory = true;
3352f8839320 4837564: (bf) Please make DirectByteBuffer performance enhancements
alanb
parents: 6882
diff changeset
   274
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   275
        // Set a boolean to determine whether ClassLoader.loadClass accepts
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   276
        // array syntax.  This value is controlled by the system property
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   277
        // "sun.lang.ClassLoader.allowArraySyntax".
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   278
        s = props.getProperty("sun.lang.ClassLoader.allowArraySyntax");
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   279
        allowArraySyntax = (s == null
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   280
                               ? defaultAllowArraySyntax
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   281
                               : Boolean.parseBoolean(s));
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   282
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   283
        // Remove other private system properties
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   284
        // used by java.lang.Integer.IntegerCache
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   285
        props.remove("java.lang.Integer.IntegerCache.high");
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   286
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   287
        // used by java.util.zip.ZipFile
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   288
        props.remove("sun.zip.disableMemoryMapping");
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7668
diff changeset
   289
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7668
diff changeset
   290
        // used by sun.launcher.LauncherHelper
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7668
diff changeset
   291
        props.remove("sun.java.launcher.diag");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    // Initialize any miscellenous operating system settings that need to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    // set for the class libraries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    public static void initializeOSEnvironment() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        if (!booted) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            OSEnvironment.initialize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    /* Current count of objects pending for finalization */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    private static volatile int finalRefCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    /* Peak count of objects pending for finalization */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    private static volatile int peakFinalRefCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * Gets the number of objects pending for finalization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * @return the number of objects pending for finalization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    public static int getFinalRefCount() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        return finalRefCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * Gets the peak number of objects pending for finalization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * @return the peak number of objects pending for finalization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    public static int getPeakFinalRefCount() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        return peakFinalRefCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * Add <tt>n</tt> to the objects pending for finalization count.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * @param n an integer value to be added to the objects pending
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * for finalization count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    public static void addFinalRefCount(int n) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        // The caller must hold lock to synchronize the update.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        finalRefCount += n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        if (finalRefCount > peakFinalRefCount) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            peakFinalRefCount = finalRefCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
7540
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   342
    /**
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   343
     * Returns Thread.State for the given threadStatus
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   344
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    public static Thread.State toThreadState(int threadStatus) {
7540
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   346
        if ((threadStatus & JVMTI_THREAD_STATE_RUNNABLE) != 0) {
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   347
            return RUNNABLE;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   348
        } else if ((threadStatus & JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER) != 0) {
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   349
            return BLOCKED;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   350
        } else if ((threadStatus & JVMTI_THREAD_STATE_WAITING_INDEFINITELY) != 0) {
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   351
            return WAITING;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   352
        } else if ((threadStatus & JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT) != 0) {
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   353
            return TIMED_WAITING;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   354
        } else if ((threadStatus & JVMTI_THREAD_STATE_TERMINATED) != 0) {
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   355
            return TERMINATED;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   356
        } else if ((threadStatus & JVMTI_THREAD_STATE_ALIVE) == 0) {
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   357
            return NEW;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   358
        } else {
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   359
            return RUNNABLE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
7540
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   363
    /* The threadStatus field is set by the VM at state transition
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   364
     * in the hotspot implementation. Its value is set according to
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   365
     * the JVM TI specification GetThreadState function.
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   366
     */
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   367
    private final static int JVMTI_THREAD_STATE_ALIVE = 0x0001;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   368
    private final static int JVMTI_THREAD_STATE_TERMINATED = 0x0002;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   369
    private final static int JVMTI_THREAD_STATE_RUNNABLE = 0x0004;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   370
    private final static int JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER = 0x0400;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   371
    private final static int JVMTI_THREAD_STATE_WAITING_INDEFINITELY = 0x0010;
df3383a0e30d 6977034: Thread.getState() very slow
mchung
parents: 6902
diff changeset
   372
    private final static int JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT = 0x0020;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        initialize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    private native static void initialize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
}