annotate src/share/vm/ci/ciType.hpp @ 3938:e6b1331a51d2

7086585: make Java field injection more flexible Reviewed-by: jrose, twisti, kvn, coleenp
author never
date Sat, 10 Sep 2011 17:29:02 -0700
parents f95d63e2154a
children da91efe96a93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_CI_CITYPE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_CI_CITYPE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "ci/ciObject.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/klassOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // ciType
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // This class represents either a class (T_OBJECT), array (T_ARRAY),
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // or one of the primitive types such as T_INT.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class ciType : public ciObject {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 CI_PACKAGE_ACCESS
a61af66fc99e Initial load
duke
parents:
diff changeset
37 friend class ciKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 friend class ciReturnAddress;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
41 BasicType _basic_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 ciType(BasicType t); // for the primitive types only
a61af66fc99e Initial load
duke
parents:
diff changeset
44 ciType(KlassHandle k); // for subclasses (reference types)
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ciType(ciKlass* klass); // for unloaded types
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 const char* type_string() { return "ciType"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 void print_impl(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // Distinguished instances of primitive ciTypes..
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static ciType* _basic_types[T_CONFLICT+1];
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 BasicType basic_type() const { return _basic_type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Returns true iff the types are identical, or if both are klasses
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // and the is_subtype_of relation holds between the klasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 bool is_subtype_of(ciType* type);
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Get the instance of java.lang.Class corresponding to this type.
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // There are mirrors for instance, array, and primitive types (incl. void).
a61af66fc99e Initial load
duke
parents:
diff changeset
63 virtual ciInstance* java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // Get the class which "boxes" (or "wraps") values of this type.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Example: short is boxed by java.lang.Short, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Returns self if it is a reference type.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Returns NULL for void, since null is used in such cases.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 ciKlass* box_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // Returns true if this is not a klass or array (i.e., not a reference type).
a61af66fc99e Initial load
duke
parents:
diff changeset
72 bool is_primitive_type() const { return basic_type() != T_OBJECT && basic_type() != T_ARRAY; }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 int size() const { return type2size[basic_type()]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 bool is_void() const { return basic_type() == T_VOID; }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool is_one_word() const { return size() == 1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 bool is_two_word() const { return size() == 2; }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // What kind of ciObject is this?
a61af66fc99e Initial load
duke
parents:
diff changeset
79 bool is_type() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 bool is_classless() const { return is_primitive_type(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 virtual void print_name_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 void print_name() {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 print_name_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 static ciType* make(BasicType t);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 };
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // ciReturnAddress
a61af66fc99e Initial load
duke
parents:
diff changeset
92 //
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // This class represents the type of a specific return address in the
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
95 class ciReturnAddress : public ciType {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 CI_PACKAGE_ACCESS
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // The bci of this return address.
a61af66fc99e Initial load
duke
parents:
diff changeset
100 int _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ciReturnAddress(int bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 const char* type_string() { return "ciReturnAddress"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void print_impl(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
109 bool is_return_address() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 int bci() { return _bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static ciReturnAddress* make(int bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
115
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
116 #endif // SHARE_VM_CI_CITYPE_HPP