hotspot/src/share/vm/runtime/handles.hpp
author minqi
Fri, 19 Apr 2013 11:08:52 -0700
changeset 17026 72b2233861f1
parent 14120 7d298141c258
child 17031 9a576749065b
permissions -rw-r--r--
8010992: Remove calls to global ::operator new[] and new Summary: disable use of global operator new and new[] which could cause unexpected exception and escape from NMT tracking. Reviewed-by: coleenp, dholmes, zgu Contributed-by: yumin.qi@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
17026
72b2233861f1 8010992: Remove calls to global ::operator new[] and new
minqi
parents: 14120
diff changeset
     2
 * Copyright (c) 1997, 2013, 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: 2332
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2332
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: 2332
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
#ifndef SHARE_VM_RUNTIME_HANDLES_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_HANDLES_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "oops/klass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// In order to preserve oops during garbage collection, they should be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// allocated and passed around via Handles within the VM. A handle is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// simply an extra indirection allocated in a thread local handle area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// A handle is a ValueObj, so it can be passed around as a value, can
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// be used as a parameter w/o using &-passing, and can be returned as a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// return value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// oop parameters and return types should be Handles whenever feasible.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// Handles are declared in a straight-forward manner, e.g.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//   oop obj = ...;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//   Handle h1(obj);              // allocate new handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//   Handle h2(thread, obj);      // faster allocation when current thread is known
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//   Handle h3;                   // declare handle only, no allocation occurs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//   ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//   h3 = h1;                     // make h3 refer to same indirection as h1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//   oop obj2 = h2();             // get handle value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//   h1->print();                 // invoking operation on oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// Handles are specialized for different oop types to provide extra type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// information and avoid unnecessary casting. For each oop type xxxOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// there is a corresponding handle called xxxHandle, e.g.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
//   oop           Handle
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    57
//   Method*       methodHandle
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
//   instanceOop   instanceHandle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// Base class for all handles. Provides overloading of frequently
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// used operators for ease of use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
class Handle VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  oop* _handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  oop     obj() const                            { return _handle == NULL ? (oop)NULL : *_handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  oop     non_null_obj() const                   { assert(_handle != NULL, "resolving NULL handle"); return *_handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  Handle()                                       { _handle = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  Handle(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  Handle(Thread* thread, oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // General access
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  oop     operator () () const                   { return obj(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  oop     operator -> () const                   { return non_null_obj(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  bool    operator == (oop o) const              { return obj() == o; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  bool    operator == (const Handle& h) const          { return obj() == h.obj(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Null checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  bool    is_null() const                        { return _handle == NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  bool    not_null() const                       { return _handle != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  void    print()                                { obj()->print(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Direct interface, use very sparingly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Used by JavaCalls to quickly convert handles and to create handles static data structures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // Constructor takes a dummy argument to prevent unintentional type conversion in C++.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  Handle(oop *handle, bool dummy)                { _handle = handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Raw handle access. Allows easy duplication of Handles. This can be very unsafe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // since duplicates is only valid as long as original handle is alive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  oop* raw_value()                               { return _handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  static oop raw_resolve(oop *handle)            { return handle == NULL ? (oop)NULL : *handle; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
// Specific Handles for different oop types
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#define DEF_HANDLE(type, is_a)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  class type##Handle: public Handle {            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
   protected:                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    type##Oop    obj() const                     { return (type##Oop)Handle::obj(); } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    type##Oop    non_null_obj() const            { return (type##Oop)Handle::non_null_obj(); } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
   public:                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    /* Constructors */                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    type##Handle ()                              : Handle()                 {} \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    type##Handle (type##Oop obj) : Handle((oop)obj) {                         \
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13728
diff changeset
   113
      assert(is_null() || ((oop)obj)->is_a(),                                 \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
             "illegal type");                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    }                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    type##Handle (Thread* thread, type##Oop obj) : Handle(thread, (oop)obj) { \
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13728
diff changeset
   117
      assert(is_null() || ((oop)obj)->is_a(), "illegal type");                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    }                                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    /* Operators for ease of use */              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    type##Oop    operator () () const            { return obj(); } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    type##Oop    operator -> () const            { return non_null_obj(); } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
DEF_HANDLE(instance         , is_instance         )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
DEF_HANDLE(array            , is_array            )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
DEF_HANDLE(objArray         , is_objArray         )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
DEF_HANDLE(typeArray        , is_typeArray        )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
//------------------------------------------------------------------------------------------------------------------------
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   132
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   133
// Metadata Handles.  Unlike oop Handles these are needed to prevent metadata
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   134
// from being reclaimed by RedefineClasses.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   136
// Specific Handles for different oop types
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   137
#define DEF_METADATA_HANDLE(name, type)          \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   138
  class name##Handle;                            \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   139
  class name##Handle {                           \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   140
    type*     _value;                            \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   141
    Thread*   _thread;                           \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   142
   protected:                                    \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   143
    type*        obj() const                     { return _value; } \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   144
    type*        non_null_obj() const            { assert(_value != NULL, "resolving NULL _value"); return _value; } \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   145
                                                 \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
   public:                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    /* Constructors */                           \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   148
    name##Handle () : _value(NULL), _thread(NULL) {}   \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   149
    name##Handle (type* obj);                    \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   150
    name##Handle (Thread* thread, type* obj);    \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   151
                                                 \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   152
    name##Handle (const name##Handle &h);        \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   153
    name##Handle& operator=(const name##Handle &s); \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   154
                                                 \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   155
    /* Destructor */                             \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   156
    ~name##Handle ();                            \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   157
    void remove();                               \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
                                                 \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   159
    /* Operators for ease of use */              \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   160
    type*        operator () () const            { return obj(); } \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   161
    type*        operator -> () const            { return non_null_obj(); } \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
                                                 \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   163
    bool    operator == (type* o) const          { return obj() == o; } \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   164
    bool    operator == (const name##Handle& h) const  { return obj() == h.obj(); } \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
                                                 \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   166
    /* Null checks */                            \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   167
    bool    is_null() const                      { return _value == NULL; } \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   168
    bool    not_null() const                     { return _value != NULL; } \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   172
DEF_METADATA_HANDLE(method, Method)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   173
DEF_METADATA_HANDLE(constantPool, ConstantPool)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   174
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   175
// Writing this class explicitly, since DEF_METADATA_HANDLE(klass) doesn't
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   176
// provide the necessary Klass* <-> Klass* conversions. This Klass
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   177
// could be removed when we don't have the Klass* typedef anymore.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   178
class KlassHandle {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   179
  Klass* _value;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   180
 protected:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   181
   Klass* obj() const          { return _value; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   182
   Klass* non_null_obj() const { assert(_value != NULL, "resolving NULL _value"); return _value; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   183
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   184
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   185
   KlassHandle()                                 : _value(NULL) {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   186
   KlassHandle(const Klass* obj)                 : _value(const_cast<Klass *>(obj)) {};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   187
   KlassHandle(Thread* thread, const Klass* obj) : _value(const_cast<Klass *>(obj)) {};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   188
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   189
   Klass* operator () () const { return obj(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   190
   Klass* operator -> () const { return non_null_obj(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   191
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   192
   bool operator == (Klass* o) const             { return obj() == o; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   193
   bool operator == (const KlassHandle& h) const { return obj() == h.obj(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   194
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   195
    bool is_null() const  { return _value == NULL; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   196
    bool not_null() const { return _value != NULL; }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   197
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   198
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   199
class instanceKlassHandle : public KlassHandle {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   200
 public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   201
  /* Constructors */
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   202
  instanceKlassHandle () : KlassHandle() {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   203
  instanceKlassHandle (const Klass* k) : KlassHandle(k) {
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13728
diff changeset
   204
    assert(k == NULL || k->oop_is_instance(),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   205
           "illegal type");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   206
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   207
  instanceKlassHandle (Thread* thread, const Klass* k) : KlassHandle(thread, k) {
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13728
diff changeset
   208
    assert(k == NULL || k->oop_is_instance(),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   209
           "illegal type");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   210
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   211
  /* Access to klass part */
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   212
  InstanceKlass*       operator () () const { return (InstanceKlass*)obj(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   213
  InstanceKlass*       operator -> () const { return (InstanceKlass*)obj(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   214
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// Thread local handle area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
class HandleArea: public Arena {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  friend class HandleMark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  friend class NoHandleMark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  friend class ResetNoHandleMark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  int _handle_mark_nesting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  int _no_handle_mark_nesting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  HandleArea* _prev;          // link to outer (older) area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  HandleArea(HandleArea* prev) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    debug_only(_handle_mark_nesting    = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    debug_only(_no_handle_mark_nesting = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    _prev = prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // Handle allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  oop* real_allocate_handle(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    oop* handle = (oop*) (UseMallocOnly ? internal_malloc_4(oopSize) : Amalloc_4(oopSize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    oop* handle = (oop*) Amalloc_4(oopSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    *handle = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    return handle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  oop* allocate_handle(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  oop* allocate_handle(oop obj) { return real_allocate_handle(obj); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // Garbage collection support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // Number of handles in use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  size_t used() const     { return Arena::used() / oopSize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  debug_only(bool no_handle_mark_active() { return _no_handle_mark_nesting > 0; })
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// Handles are allocated in a (growable) thread local handle area. Deallocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
// is managed using a HandleMark. It should normally not be necessary to use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
// HandleMarks manually.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
// A HandleMark constructor will record the current handle area top, and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// desctructor will reset the top, destroying all handles allocated in between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// The following code will therefore NOT work:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
//   Handle h;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
//   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
//     HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
//     h = Handle(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
//   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
//   h()->print();       // WRONG, h destroyed by HandleMark destructor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
// If h has to be preserved, it can be converted to an oop or a local JNI handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
// across the HandleMark boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
17026
72b2233861f1 8010992: Remove calls to global ::operator new[] and new
minqi
parents: 14120
diff changeset
   283
// The only special case for HandleMark is when a Thread is created, the first
72b2233861f1 8010992: Remove calls to global ::operator new[] and new
minqi
parents: 14120
diff changeset
   284
// HandleMark of the Thread is allocated in heap.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
17026
72b2233861f1 8010992: Remove calls to global ::operator new[] and new
minqi
parents: 14120
diff changeset
   286
class HandleMark : public StackObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  Thread *_thread;              // thread that owns this mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  HandleArea *_area;            // saved handle area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  Chunk *_chunk;                // saved arena chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  char *_hwm, *_max;            // saved arena info
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 8921
diff changeset
   292
  size_t _size_in_bytes;        // size of handle area
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // Link to previous active HandleMark in thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  HandleMark* _previous_handle_mark;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  void set_previous_handle_mark(HandleMark* mark) { _previous_handle_mark = mark; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  HandleMark* previous_handle_mark() const        { return _previous_handle_mark; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 14078
diff changeset
   299
  size_t size_in_bytes() const { return _size_in_bytes; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  HandleMark();                            // see handles_inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  HandleMark(Thread* thread)                      { initialize(thread); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  ~HandleMark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
17026
72b2233861f1 8010992: Remove calls to global ::operator new[] and new
minqi
parents: 14120
diff changeset
   305
  void initialize(Thread* thread);                // common code for constructors
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // Functions used by HandleMarkCleaner
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // called in the constructor of HandleMarkCleaner
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  void push();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // called in the destructor of HandleMarkCleaner
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  void pop_and_restore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
//------------------------------------------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
// A NoHandleMark stack object will verify that no handles are allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// in its scope. Enabled in debug mode only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
class NoHandleMark: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  NoHandleMark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  ~NoHandleMark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  NoHandleMark()  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  ~NoHandleMark() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
class ResetNoHandleMark: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  int _no_handle_mark_nesting;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  ResetNoHandleMark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  ~ResetNoHandleMark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  ResetNoHandleMark()  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  ~ResetNoHandleMark() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   340
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   341
#endif // SHARE_VM_RUNTIME_HANDLES_HPP