27
28 #include "ci/ciType.hpp"
29 #include "oops/klass.hpp"
30
31 // ciKlass
32 //
33 // This class and its subclasses represent Klass*s in the
34 // HotSpot virtual machine. In the vm, each Klass* contains an
35 // embedded Klass object. ciKlass is subclassed to explicitly
36 // represent the kind of Klass embedded in the Klass*. For
37 // example, a Klass* with an embedded ObjArrayKlass object is
38 // represented in the ciObject hierarchy by the class
39 // ciObjArrayKlass.
40 class ciKlass : public ciType {
41 CI_PACKAGE_ACCESS
42 friend class ciEnv;
43 friend class ciField;
44 friend class ciMethod;
45 friend class ciMethodData;
46 friend class ciObjArrayKlass;
47 friend class ciSignature;
48 friend class ciReceiverTypeData;
49
50 private:
51 ciSymbol* _name;
52 jint _layout_helper;
53
54 protected:
55 ciKlass(Klass* k, ciSymbol* name);
56 ciKlass(ciSymbol* name, BasicType bt);
57
58 Klass* get_Klass() const {
59 Klass* k = (Klass*)_metadata;
60 assert(k != nullptr, "illegal use of unloaded klass");
61 return k;
62 }
63
64 // Certain subklasses have an associated class loader.
65 virtual oop loader() { return nullptr; }
66 virtual jobject loader_handle() { return nullptr; }
67
68 virtual oop protection_domain() { return nullptr; }
90
91 // Is this ciObject the ciInstanceKlass representing java.lang.Object()?
92 virtual bool is_java_lang_Object() const { return false; }
93
94 // Get the shared parent of two klasses.
95 ciKlass* least_common_ancestor(ciKlass* k);
96
97 virtual bool is_interface() {
98 return false;
99 }
100
101 virtual bool is_abstract() {
102 return false;
103 }
104
105 // Does this type (array, class, interface) have no subtypes?
106 virtual bool is_leaf_type() {
107 return false;
108 }
109
110 bool is_in_encoding_range() {
111 Klass* k = get_Klass();
112 bool is_in_encoding_range = CompressedKlassPointers::is_encodable(k);
113 assert(is_in_encoding_range || k->is_interface() || k->is_abstract(), "sanity");
114 return is_in_encoding_range;
115 }
116
117 // Attempt to get a klass using this ciKlass's loader.
118 ciKlass* find_klass(ciSymbol* klass_name);
119 // Note: To find a class from its name string, use ciSymbol::make,
120 // but consider adding to vmSymbols.hpp instead.
121
122 // Get the instance of java.lang.Class corresponding to this klass.
123 ciInstance* java_mirror();
124
125 // Fetch Klass::modifier_flags.
126 jint modifier_flags();
127
128 // Fetch Klass::access_flags.
129 jint access_flags();
130
131 // Fetch Klass::misc_flags.
132 klass_flags_t misc_flags();
133
134 // What kind of ciObject is this?
135 bool is_klass() const { return true; }
136
137 virtual ciKlass* exact_klass() = 0;
138
139 void print_name_on(outputStream* st);
140
141 const char* external_name() const;
142 };
143
144 #endif // SHARE_CI_CIKLASS_HPP
|
27
28 #include "ci/ciType.hpp"
29 #include "oops/klass.hpp"
30
31 // ciKlass
32 //
33 // This class and its subclasses represent Klass*s in the
34 // HotSpot virtual machine. In the vm, each Klass* contains an
35 // embedded Klass object. ciKlass is subclassed to explicitly
36 // represent the kind of Klass embedded in the Klass*. For
37 // example, a Klass* with an embedded ObjArrayKlass object is
38 // represented in the ciObject hierarchy by the class
39 // ciObjArrayKlass.
40 class ciKlass : public ciType {
41 CI_PACKAGE_ACCESS
42 friend class ciEnv;
43 friend class ciField;
44 friend class ciMethod;
45 friend class ciMethodData;
46 friend class ciObjArrayKlass;
47 friend class ciReceiverTypeData;
48 friend class ciSignature;
49 friend class ciFlatArrayKlass;
50 friend class ciArrayKlass;
51
52 private:
53 ciSymbol* _name;
54 jint _layout_helper;
55
56 protected:
57 ciKlass(Klass* k, ciSymbol* name);
58 ciKlass(ciSymbol* name, BasicType bt);
59
60 Klass* get_Klass() const {
61 Klass* k = (Klass*)_metadata;
62 assert(k != nullptr, "illegal use of unloaded klass");
63 return k;
64 }
65
66 // Certain subklasses have an associated class loader.
67 virtual oop loader() { return nullptr; }
68 virtual jobject loader_handle() { return nullptr; }
69
70 virtual oop protection_domain() { return nullptr; }
92
93 // Is this ciObject the ciInstanceKlass representing java.lang.Object()?
94 virtual bool is_java_lang_Object() const { return false; }
95
96 // Get the shared parent of two klasses.
97 ciKlass* least_common_ancestor(ciKlass* k);
98
99 virtual bool is_interface() {
100 return false;
101 }
102
103 virtual bool is_abstract() {
104 return false;
105 }
106
107 // Does this type (array, class, interface) have no subtypes?
108 virtual bool is_leaf_type() {
109 return false;
110 }
111
112 virtual bool can_be_inline_klass(bool is_exact = false) {
113 return false;
114 }
115
116 virtual bool can_be_inline_array_klass() {
117 return EnableValhalla && is_java_lang_Object();
118 }
119
120 bool is_in_encoding_range() {
121 Klass* k = get_Klass();
122 bool is_in_encoding_range = CompressedKlassPointers::is_encodable(k);
123 assert(is_in_encoding_range || k->is_interface() || k->is_abstract(), "sanity");
124 return is_in_encoding_range;
125 }
126
127 // Attempt to get a klass using this ciKlass's loader.
128 ciKlass* find_klass(ciSymbol* klass_name);
129 // Note: To find a class from its name string, use ciSymbol::make,
130 // but consider adding to vmSymbols.hpp instead.
131
132 // Get the instance of java.lang.Class corresponding to this klass.
133 ciInstance* java_mirror();
134
135 // Fetch Klass::modifier_flags.
136 jint modifier_flags();
137
138 // Fetch Klass::access_flags.
139 jint access_flags();
140
141 markWord prototype_header() const;
142
143 // Fetch Klass::misc_flags.
144 klass_flags_t misc_flags();
145
146 // What kind of ciObject is this?
147 bool is_klass() const { return true; }
148
149 virtual ciKlass* exact_klass() = 0;
150
151 void print_name_on(outputStream* st);
152
153 const char* external_name() const;
154 };
155
156 #endif // SHARE_CI_CIKLASS_HPP
|