author | stefank |
Fri, 13 Feb 2015 14:37:35 +0100 | |
changeset 29081 | c61eb4914428 |
parent 14488 | ab48109f7d1b |
child 33611 | 9abd65805e19 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
2 |
* Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4571
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4571
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:
4571
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_SERVICES_SERVICEUTIL_HPP |
26 |
#define SHARE_VM_SERVICES_SERVICEUTIL_HPP |
|
27 |
||
28 |
#include "classfile/systemDictionary.hpp" |
|
29 |
#include "oops/objArrayOop.hpp" |
|
30 |
||
1 | 31 |
// |
32 |
// Serviceability utility functions. |
|
33 |
// (Shared by MM and JVMTI). |
|
34 |
// |
|
35 |
class ServiceUtil : public AllStatic { |
|
36 |
public: |
|
37 |
||
38 |
// Return true if oop represents an object that is "visible" |
|
39 |
// to the java world. |
|
40 |
static inline bool visible_oop(oop o) { |
|
41 |
// the sentinel for deleted handles isn't visible |
|
42 |
if (o == JNIHandles::deleted_handle()) { |
|
43 |
return false; |
|
44 |
} |
|
45 |
||
46 |
// instance |
|
47 |
if (o->is_instance()) { |
|
48 |
// instance objects are visible |
|
4571 | 49 |
if (o->klass() != SystemDictionary::Class_klass()) { |
1 | 50 |
return true; |
51 |
} |
|
52 |
if (java_lang_Class::is_primitive(o)) { |
|
53 |
return true; |
|
54 |
} |
|
55 |
// java.lang.Classes are visible |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
56 |
Klass* k = java_lang_Class::as_Klass(o); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
57 |
if (k->is_klass()) { |
1 | 58 |
// if it's a class for an object, an object array, or |
59 |
// primitive (type) array then it's visible. |
|
14488 | 60 |
if (k->oop_is_instance()) { |
1 | 61 |
return true; |
62 |
} |
|
14488 | 63 |
if (k->oop_is_objArray()) { |
1 | 64 |
return true; |
65 |
} |
|
14488 | 66 |
if (k->oop_is_typeArray()) { |
1 | 67 |
return true; |
68 |
} |
|
69 |
} |
|
70 |
return false; |
|
71 |
} |
|
72 |
// object arrays are visible if they aren't system object arrays |
|
73 |
if (o->is_objArray()) { |
|
74 |
return true; |
|
75 |
} |
|
76 |
// type arrays are visible |
|
77 |
if (o->is_typeArray()) { |
|
78 |
return true; |
|
79 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
80 |
// everything else (Method*s, ...) aren't visible |
1 | 81 |
return false; |
82 |
}; // end of visible_oop() |
|
83 |
||
84 |
}; |
|
7397 | 85 |
|
86 |
#endif // SHARE_VM_SERVICES_SERVICEUTIL_HPP |