src/hotspot/share/prims/jvmtiManageCapabilities.hpp
author adinn
Fri, 05 Apr 2019 10:01:09 +0100
changeset 54439 d9b46b7de028
parent 53244 9807daeb47c4
permissions -rw-r--r--
8221477: Inject os/cpu-specific constants into Unsafe from JVM Summary: Initialize Unsafe os/cpu-specific constants using injection instead of native callouts Reviewed-by: stuefe, coleenp, dholmes, plevart
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: 48877
diff changeset
     2
 * Copyright (c) 2003, 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: 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48877
diff changeset
    25
#ifndef SHARE_PRIMS_JVMTIMANAGECAPABILITIES_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48877
diff changeset
    26
#define SHARE_PRIMS_JVMTIMANAGECAPABILITIES_HPP
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "jvmtifiles/jvmti.h"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/allocation.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class JvmtiManageCapabilities : public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  // these four capabilities sets represent all potentially
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // available capabilities.  They are disjoint, covering
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // the four cases: (OnLoad vs OnLoad+live phase) X
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // (one environment vs any environment).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  static jvmtiCapabilities always_capabilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static jvmtiCapabilities onload_capabilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  static jvmtiCapabilities always_solo_capabilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  static jvmtiCapabilities onload_solo_capabilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // solo capabilities that have not been grabbed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static jvmtiCapabilities always_solo_remaining_capabilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static jvmtiCapabilities onload_solo_remaining_capabilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // all capabilities ever acquired
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  static jvmtiCapabilities acquired_capabilities;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // basic intenal operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static jvmtiCapabilities *either(const jvmtiCapabilities *a, const jvmtiCapabilities *b, jvmtiCapabilities *result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static jvmtiCapabilities *both(const jvmtiCapabilities *a, const jvmtiCapabilities *b, jvmtiCapabilities *result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  static jvmtiCapabilities *exclude(const jvmtiCapabilities *a, const jvmtiCapabilities *b, jvmtiCapabilities *result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  static bool has_some(const jvmtiCapabilities *a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  static void update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // init functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static jvmtiCapabilities init_always_capabilities();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  static jvmtiCapabilities init_onload_capabilities();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  static jvmtiCapabilities init_always_solo_capabilities();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static jvmtiCapabilities init_onload_solo_capabilities();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // queries and actions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static void get_potential_capabilities(const jvmtiCapabilities *current,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                                         const jvmtiCapabilities *prohibited,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                         jvmtiCapabilities *result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  static jvmtiError add_capabilities(const jvmtiCapabilities *current,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                     const jvmtiCapabilities *prohibited,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                     const jvmtiCapabilities *desired,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                     jvmtiCapabilities *result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  static void relinquish_capabilities(const jvmtiCapabilities *current,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
                                      const jvmtiCapabilities *unwanted,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                      jvmtiCapabilities *result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  static void copy_capabilities(const jvmtiCapabilities *from, jvmtiCapabilities *to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static void print(const jvmtiCapabilities* caps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48877
diff changeset
    85
#endif // SHARE_PRIMS_JVMTIMANAGECAPABILITIES_HPP