src/share/vm/oops/oopsHierarchy.hpp

Fri, 20 Sep 2013 09:30:02 -0400

author
coleenp
date
Fri, 20 Sep 2013 09:30:02 -0400
changeset 5749
4f9a42c33738
parent 5528
740e263c80c6
child 5784
190899198332
permissions
-rw-r--r--

8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
Summary: Need to refetch each method from InstanceKlass after all safepoints. Removed leaky PreviousVersionInfo code.
Reviewed-by: dcubed, sspitsyn

duke@435 1 /*
hseigel@5528 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_OOPS_OOPSHIERARCHY_HPP
stefank@2314 26 #define SHARE_VM_OOPS_OOPSHIERARCHY_HPP
stefank@2314 27
stefank@2314 28 #include "runtime/globals.hpp"
stefank@2314 29 #include "utilities/globalDefinitions.hpp"
stefank@2314 30
duke@435 31 // OBJECT hierarchy
duke@435 32 // This hierarchy is a representation hierarchy, i.e. if A is a superclass
duke@435 33 // of B, A's representation is a prefix of B's representation.
duke@435 34
coleenp@548 35 typedef juint narrowOop; // Offset instead of address for an oop within a java object
hseigel@5528 36
hseigel@5528 37 // If compressed klass pointers then use narrowKlass.
hseigel@5528 38 typedef juint narrowKlass;
hseigel@5528 39
ysr@1280 40 typedef void* OopOrNarrowOopStar;
coleenp@4037 41 typedef class markOopDesc* markOop;
coleenp@548 42
duke@435 43 #ifndef CHECK_UNHANDLED_OOPS
duke@435 44
coleenp@548 45 typedef class oopDesc* oop;
duke@435 46 typedef class instanceOopDesc* instanceOop;
coleenp@548 47 typedef class arrayOopDesc* arrayOop;
coleenp@548 48 typedef class objArrayOopDesc* objArrayOop;
coleenp@548 49 typedef class typeArrayOopDesc* typeArrayOop;
duke@435 50
duke@435 51 #else
duke@435 52
duke@435 53 // When CHECK_UNHANDLED_OOPS is defined, an "oop" is a class with a
duke@435 54 // carefully chosen set of constructors and conversion operators to go
duke@435 55 // to and from the underlying oopDesc pointer type.
duke@435 56 //
duke@435 57 // Because oop and its subclasses <type>Oop are class types, arbitrary
duke@435 58 // conversions are not accepted by the compiler, and you may get a message
duke@435 59 // about overloading ambiguity (between long and int is common when converting
duke@435 60 // from a constant in 64 bit mode), or unable to convert from type to 'oop'.
duke@435 61 // Applying a cast to one of these conversion operators first will get to the
duke@435 62 // underlying oopDesc* type if appropriate.
duke@435 63 // Converting NULL to oop to Handle implicit is no longer accepted by the
duke@435 64 // compiler because there are too many steps in the conversion. Use Handle()
duke@435 65 // instead, which generates less code anyway.
duke@435 66
duke@435 67 class Thread;
duke@435 68 class PromotedObject;
duke@435 69
duke@435 70
duke@435 71 class oop {
duke@435 72 oopDesc* _o;
duke@435 73
duke@435 74 void register_oop();
duke@435 75 void unregister_oop();
duke@435 76
duke@435 77 // friend class markOop;
duke@435 78 public:
duke@435 79 void set_obj(const void* p) {
duke@435 80 raw_set_obj(p);
duke@435 81 if (CheckUnhandledOops) register_oop();
duke@435 82 }
duke@435 83 void raw_set_obj(const void* p) { _o = (oopDesc*)p; }
duke@435 84
duke@435 85 oop() { set_obj(NULL); }
duke@435 86 oop(const volatile oop& o) { set_obj(o.obj()); }
duke@435 87 oop(const void* p) { set_obj(p); }
duke@435 88 oop(intptr_t i) { set_obj((void *)i); }
duke@435 89 #ifdef _LP64
duke@435 90 oop(int i) { set_obj((void *)i); }
duke@435 91 #endif
duke@435 92 ~oop() {
duke@435 93 if (CheckUnhandledOops) unregister_oop();
duke@435 94 }
duke@435 95
duke@435 96 oopDesc* obj() const volatile { return _o; }
duke@435 97
duke@435 98 // General access
duke@435 99 oopDesc* operator->() const { return obj(); }
duke@435 100 bool operator==(const oop o) const { return obj() == o.obj(); }
duke@435 101 bool operator==(void *p) const { return obj() == p; }
coleenp@4037 102 bool operator!=(const volatile oop o) const { return obj() != o.obj(); }
duke@435 103 bool operator!=(void *p) const { return obj() != p; }
duke@435 104 bool operator==(intptr_t p) const { return obj() == (oopDesc*)p; }
duke@435 105 bool operator!=(intptr_t p) const { return obj() != (oopDesc*)p; }
duke@435 106
duke@435 107 bool operator<(oop o) const { return obj() < o.obj(); }
duke@435 108 bool operator>(oop o) const { return obj() > o.obj(); }
duke@435 109 bool operator<=(oop o) const { return obj() <= o.obj(); }
duke@435 110 bool operator>=(oop o) const { return obj() >= o.obj(); }
duke@435 111 bool operator!() const { return !obj(); }
duke@435 112
duke@435 113 // Cast
duke@435 114 operator void* () const { return (void *)obj(); }
duke@435 115 operator HeapWord* () const { return (HeapWord*)obj(); }
duke@435 116 operator oopDesc* () const { return obj(); }
duke@435 117 operator intptr_t* () const { return (intptr_t*)obj(); }
duke@435 118 operator PromotedObject* () const { return (PromotedObject*)obj(); }
duke@435 119 operator markOop () const { return markOop(obj()); }
duke@435 120
duke@435 121 operator address () const { return (address)obj(); }
coleenp@4037 122 operator intptr_t () const volatile { return (intptr_t)obj(); }
duke@435 123
duke@435 124 // from javaCalls.cpp
duke@435 125 operator jobject () const { return (jobject)obj(); }
duke@435 126 // from javaClasses.cpp
duke@435 127 operator JavaThread* () const { return (JavaThread*)obj(); }
xlu@948 128
xlu@948 129 #ifndef _LP64
duke@435 130 // from jvm.cpp
duke@435 131 operator jlong* () const { return (jlong*)obj(); }
xlu@948 132 #endif
duke@435 133
duke@435 134 // from parNewGeneration and other things that want to get to the end of
coleenp@4142 135 // an oop for stuff (like ObjArrayKlass.cpp)
duke@435 136 operator oop* () const { return (oop *)obj(); }
duke@435 137 };
duke@435 138
duke@435 139 #define DEF_OOP(type) \
duke@435 140 class type##OopDesc; \
duke@435 141 class type##Oop : public oop { \
duke@435 142 public: \
duke@435 143 type##Oop() : oop() {} \
duke@435 144 type##Oop(const volatile oop& o) : oop(o) {} \
duke@435 145 type##Oop(const void* p) : oop(p) {} \
duke@435 146 operator type##OopDesc* () const { return (type##OopDesc*)obj(); } \
duke@435 147 type##OopDesc* operator->() const { \
duke@435 148 return (type##OopDesc*)obj(); \
duke@435 149 } \
coleenp@4037 150 };
duke@435 151
duke@435 152 DEF_OOP(instance);
duke@435 153 DEF_OOP(array);
duke@435 154 DEF_OOP(objArray);
duke@435 155 DEF_OOP(typeArray);
duke@435 156
duke@435 157 #endif // CHECK_UNHANDLED_OOPS
duke@435 158
coleenp@4037 159 // The metadata hierarchy is separate from the oop hierarchy
coleenp@4037 160
coleenp@4037 161 // class MetaspaceObj
coleenp@4037 162 class ConstMethod;
coleenp@4037 163 class ConstantPoolCache;
coleenp@4037 164 class MethodData;
coleenp@4037 165 // class Metadata
coleenp@4037 166 class Method;
coleenp@4037 167 class ConstantPool;
coleenp@4037 168 // class CHeapObj
coleenp@4037 169 class CompiledICHolder;
coleenp@4037 170
coleenp@4037 171
duke@435 172 // The klass hierarchy is separate from the oop hierarchy.
duke@435 173
duke@435 174 class Klass;
coleenp@4037 175 class InstanceKlass;
coleenp@4047 176 class InstanceMirrorKlass;
coleenp@4047 177 class InstanceClassLoaderKlass;
coleenp@4047 178 class InstanceRefKlass;
coleenp@4142 179 class ArrayKlass;
coleenp@4142 180 class ObjArrayKlass;
coleenp@4142 181 class TypeArrayKlass;
stefank@2314 182
stefank@2314 183 #endif // SHARE_VM_OOPS_OOPSHIERARCHY_HPP

mercurial