author | pliden |
Fri, 13 Sep 2019 08:40:09 +0200 | |
changeset 58125 | 9b4717ca9bd1 |
parent 55583 | 82fae48799e4 |
child 58372 | 43c4fb8ba96b |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53041
diff
changeset
|
2 |
* Copyright (c) 1997, 2019, 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:
4450
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4450
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:
4450
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53041
diff
changeset
|
25 |
#ifndef SHARE_OPTO_TYPE_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53041
diff
changeset
|
26 |
#define SHARE_OPTO_TYPE_HPP |
7397 | 27 |
|
28 |
#include "opto/adlcVMDeps.hpp" |
|
29 |
#include "runtime/handles.hpp" |
|
30 |
||
1 | 31 |
// Portions of code courtesy of Clifford Click |
32 |
||
33 |
// Optimization - Graph Style |
|
34 |
||
35 |
||
36 |
// This class defines a Type lattice. The lattice is used in the constant |
|
37 |
// propagation algorithms, and for some type-checking of the iloc code. |
|
38 |
// Basic types include RSD's (lower bound, upper bound, stride for integers), |
|
39 |
// float & double precision constants, sets of data-labels and code-labels. |
|
40 |
// The complete lattice is described below. Subtypes have no relationship to |
|
41 |
// up or down in the lattice; that is entirely determined by the behavior of |
|
42 |
// the MEET/JOIN functions. |
|
43 |
||
44 |
class Dict; |
|
45 |
class Type; |
|
46 |
class TypeD; |
|
47 |
class TypeF; |
|
48 |
class TypeInt; |
|
49 |
class TypeLong; |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
50 |
class TypeNarrowPtr; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
51 |
class TypeNarrowOop; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
52 |
class TypeNarrowKlass; |
1 | 53 |
class TypeAry; |
54 |
class TypeTuple; |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
55 |
class TypeVect; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
56 |
class TypeVectS; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
57 |
class TypeVectD; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
58 |
class TypeVectX; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
59 |
class TypeVectY; |
30624 | 60 |
class TypeVectZ; |
1 | 61 |
class TypePtr; |
62 |
class TypeRawPtr; |
|
63 |
class TypeOopPtr; |
|
64 |
class TypeInstPtr; |
|
65 |
class TypeAryPtr; |
|
21202
0356e40b1017
8027140: Assertion in compiler when running bigapps/Kitchensink/stability
roland
parents:
21105
diff
changeset
|
66 |
class TypeKlassPtr; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
67 |
class TypeMetadataPtr; |
1 | 68 |
|
69 |
//------------------------------Type------------------------------------------- |
|
70 |
// Basic Type object, represents a set of primitive Values. |
|
71 |
// Types are hash-cons'd into a private class dictionary, so only one of each |
|
72 |
// different kind of Type exists. Types are never modified after creation, so |
|
73 |
// all their interesting fields are constant. |
|
74 |
class Type { |
|
10547 | 75 |
friend class VMStructs; |
76 |
||
1 | 77 |
public: |
78 |
enum TYPES { |
|
79 |
Bad=0, // Type check |
|
80 |
Control, // Control of code (not in lattice) |
|
81 |
Top, // Top of the lattice |
|
82 |
Int, // Integer range (lo-hi) |
|
83 |
Long, // Long integer range (lo-hi) |
|
84 |
Half, // Placeholder half of doubleword |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
85 |
NarrowOop, // Compressed oop pointer |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
86 |
NarrowKlass, // Compressed klass pointer |
1 | 87 |
|
88 |
Tuple, // Method signature or object layout |
|
89 |
Array, // Array types |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
90 |
VectorS, // 32bit Vector types |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
91 |
VectorD, // 64bit Vector types |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
92 |
VectorX, // 128bit Vector types |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
93 |
VectorY, // 256bit Vector types |
30624 | 94 |
VectorZ, // 512bit Vector types |
1 | 95 |
|
96 |
AnyPtr, // Any old raw, klass, inst, or array pointer |
|
97 |
RawPtr, // Raw (non-oop) pointers |
|
98 |
OopPtr, // Any and all Java heap entities |
|
99 |
InstPtr, // Instance pointers (non-array objects) |
|
100 |
AryPtr, // Array pointers |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
101 |
// (Ptr order matters: See is_ptr, isa_ptr, is_oopptr, isa_oopptr.) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
102 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
103 |
MetadataPtr, // Generic metadata |
1 | 104 |
KlassPtr, // Klass pointers |
105 |
||
106 |
Function, // Function signature |
|
107 |
Abio, // Abstract I/O |
|
108 |
Return_Address, // Subroutine return address |
|
109 |
Memory, // Abstract store |
|
110 |
FloatTop, // No float value |
|
111 |
FloatCon, // Floating point constant |
|
112 |
FloatBot, // Any float value |
|
113 |
DoubleTop, // No double value |
|
114 |
DoubleCon, // Double precision constant |
|
115 |
DoubleBot, // Any double value |
|
116 |
Bottom, // Bottom of lattice |
|
117 |
lastype // Bogus ending type (not in lattice) |
|
118 |
}; |
|
119 |
||
120 |
// Signal values for offsets from a base pointer |
|
121 |
enum OFFSET_SIGNALS { |
|
122 |
OffsetTop = -2000000000, // undefined offset |
|
123 |
OffsetBot = -2000000001 // any possible offset |
|
124 |
}; |
|
125 |
||
126 |
// Min and max WIDEN values. |
|
127 |
enum WIDEN { |
|
128 |
WidenMin = 0, |
|
129 |
WidenMax = 3 |
|
130 |
}; |
|
131 |
||
132 |
private: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
133 |
typedef struct { |
46378 | 134 |
TYPES dual_type; |
135 |
BasicType basic_type; |
|
136 |
const char* msg; |
|
137 |
bool isa_oop; |
|
138 |
uint ideal_reg; |
|
139 |
relocInfo::relocType reloc; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
140 |
} TypeInfo; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
141 |
|
1 | 142 |
// Dictionary of types shared among compilations. |
143 |
static Dict* _shared_type_dict; |
|
46378 | 144 |
static const TypeInfo _type_info[]; |
1 | 145 |
|
146 |
static int uhash( const Type *const t ); |
|
147 |
// Structural equality check. Assumes that cmp() has already compared |
|
148 |
// the _base types and thus knows it can cast 't' appropriately. |
|
149 |
virtual bool eq( const Type *t ) const; |
|
150 |
||
151 |
// Top-level hash-table of types |
|
152 |
static Dict *type_dict() { |
|
153 |
return Compile::current()->type_dict(); |
|
154 |
} |
|
155 |
||
156 |
// DUAL operation: reflect around lattice centerline. Used instead of |
|
157 |
// join to ensure my lattice is symmetric up and down. Dual is computed |
|
158 |
// lazily, on demand, and cached in _dual. |
|
159 |
const Type *_dual; // Cached dual value |
|
160 |
// Table for efficient dualing of base types |
|
161 |
static const TYPES dual_type[lastype]; |
|
162 |
||
21099 | 163 |
#ifdef ASSERT |
164 |
// One type is interface, the other is oop |
|
165 |
virtual bool interface_vs_oop_helper(const Type *t) const; |
|
166 |
#endif |
|
167 |
||
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
168 |
const Type *meet_helper(const Type *t, bool include_speculative) const; |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
169 |
|
1 | 170 |
protected: |
171 |
// Each class of type is also identified by its base. |
|
172 |
const TYPES _base; // Enum of Types type |
|
173 |
||
174 |
Type( TYPES t ) : _dual(NULL), _base(t) {} // Simple types |
|
175 |
// ~Type(); // Use fast deallocation |
|
176 |
const Type *hashcons(); // Hash-cons the type |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
177 |
virtual const Type *filter_helper(const Type *kills, bool include_speculative) const; |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
178 |
const Type *join_helper(const Type *t, bool include_speculative) const { |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
179 |
return dual()->meet_helper(t->dual(), include_speculative)->dual(); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
180 |
} |
1 | 181 |
|
182 |
public: |
|
183 |
||
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
17383
diff
changeset
|
184 |
inline void* operator new( size_t x ) throw() { |
1 | 185 |
Compile* compile = Compile::current(); |
186 |
compile->set_type_last_size(x); |
|
55583
82fae48799e4
8227173: Minor cleanup of unused code in compile.hpp
thartmann
parents:
53623
diff
changeset
|
187 |
return compile->type_arena()->Amalloc_D(x); |
1 | 188 |
} |
189 |
inline void operator delete( void* ptr ) { |
|
190 |
Compile* compile = Compile::current(); |
|
191 |
compile->type_arena()->Afree(ptr,compile->type_last_size()); |
|
192 |
} |
|
193 |
||
194 |
// Initialize the type system for a particular compilation. |
|
195 |
static void Initialize(Compile* compile); |
|
196 |
||
197 |
// Initialize the types shared by all compilations. |
|
198 |
static void Initialize_shared(Compile* compile); |
|
199 |
||
200 |
TYPES base() const { |
|
201 |
assert(_base > Bad && _base < lastype, "sanity"); |
|
202 |
return _base; |
|
203 |
} |
|
204 |
||
205 |
// Create a new hash-consd type |
|
206 |
static const Type *make(enum TYPES); |
|
207 |
// Test for equivalence of types |
|
208 |
static int cmp( const Type *const t1, const Type *const t2 ); |
|
209 |
// Test for higher or equal in lattice |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
210 |
// Variant that drops the speculative part of the types |
40880
74222f8c095e
8162101: C2: Handle "wide" aliases for unsafe accesses
vlivanov
parents:
40871
diff
changeset
|
211 |
bool higher_equal(const Type *t) const { |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
212 |
return !cmp(meet(t),t->remove_speculative()); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
213 |
} |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
214 |
// Variant that keeps the speculative part of the types |
40880
74222f8c095e
8162101: C2: Handle "wide" aliases for unsafe accesses
vlivanov
parents:
40871
diff
changeset
|
215 |
bool higher_equal_speculative(const Type *t) const { |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
216 |
return !cmp(meet_speculative(t),t); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
217 |
} |
1 | 218 |
|
219 |
// MEET operation; lower in lattice. |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
220 |
// Variant that drops the speculative part of the types |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
221 |
const Type *meet(const Type *t) const { |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
222 |
return meet_helper(t, false); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
223 |
} |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
224 |
// Variant that keeps the speculative part of the types |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
225 |
const Type *meet_speculative(const Type *t) const { |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
226 |
return meet_helper(t, true)->cleanup_speculative(); |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
227 |
} |
1 | 228 |
// WIDEN: 'widens' for Ints and other range types |
4012
579b7bad9983
6885584: A particular class structure causes large allocation spike for jit
never
parents:
3911
diff
changeset
|
229 |
virtual const Type *widen( const Type *old, const Type* limit ) const { return this; } |
1 | 230 |
// NARROW: complement for widen, used by pessimistic phases |
231 |
virtual const Type *narrow( const Type *old ) const { return this; } |
|
232 |
||
233 |
// DUAL operation: reflect around lattice centerline. Used instead of |
|
234 |
// join to ensure my lattice is symmetric up and down. |
|
235 |
const Type *dual() const { return _dual; } |
|
236 |
||
237 |
// Compute meet dependent on base type |
|
238 |
virtual const Type *xmeet( const Type *t ) const; |
|
239 |
virtual const Type *xdual() const; // Compute dual right now. |
|
240 |
||
241 |
// JOIN operation; higher in lattice. Done by finding the dual of the |
|
242 |
// meet of the dual of the 2 inputs. |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
243 |
// Variant that drops the speculative part of the types |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
244 |
const Type *join(const Type *t) const { |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
245 |
return join_helper(t, false); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
246 |
} |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
247 |
// Variant that keeps the speculative part of the types |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
248 |
const Type *join_speculative(const Type *t) const { |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
249 |
return join_helper(t, true)->cleanup_speculative(); |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
250 |
} |
1 | 251 |
|
252 |
// Modified version of JOIN adapted to the needs Node::Value. |
|
253 |
// Normalizes all empty values to TOP. Does not kill _widen bits. |
|
254 |
// Currently, it also works around limitations involving interface types. |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
255 |
// Variant that drops the speculative part of the types |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
256 |
const Type *filter(const Type *kills) const { |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
257 |
return filter_helper(kills, false); |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
258 |
} |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
259 |
// Variant that keeps the speculative part of the types |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
260 |
const Type *filter_speculative(const Type *kills) const { |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
261 |
return filter_helper(kills, true)->cleanup_speculative(); |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
262 |
} |
1 | 263 |
|
3173
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
264 |
#ifdef ASSERT |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
265 |
// One type is interface, the other is oop |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
266 |
virtual bool interface_vs_oop(const Type *t) const; |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
267 |
#endif |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
268 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
269 |
// Returns true if this pointer points at memory which contains a |
589 | 270 |
// compressed oop references. |
271 |
bool is_ptr_to_narrowoop() const; |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
272 |
bool is_ptr_to_narrowklass() const; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
273 |
|
17383 | 274 |
bool is_ptr_to_boxing_obj() const; |
275 |
||
276 |
||
1 | 277 |
// Convenience access |
278 |
float getf() const; |
|
279 |
double getd() const; |
|
280 |
||
281 |
const TypeInt *is_int() const; |
|
282 |
const TypeInt *isa_int() const; // Returns NULL if not an Int |
|
283 |
const TypeLong *is_long() const; |
|
284 |
const TypeLong *isa_long() const; // Returns NULL if not a Long |
|
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
285 |
const TypeD *isa_double() const; // Returns NULL if not a Double{Top,Con,Bot} |
1 | 286 |
const TypeD *is_double_constant() const; // Asserts it is a DoubleCon |
287 |
const TypeD *isa_double_constant() const; // Returns NULL if not a DoubleCon |
|
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
288 |
const TypeF *isa_float() const; // Returns NULL if not a Float{Top,Con,Bot} |
1 | 289 |
const TypeF *is_float_constant() const; // Asserts it is a FloatCon |
290 |
const TypeF *isa_float_constant() const; // Returns NULL if not a FloatCon |
|
291 |
const TypeTuple *is_tuple() const; // Collection of fields, NOT a pointer |
|
292 |
const TypeAry *is_ary() const; // Array, NOT array pointer |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
293 |
const TypeVect *is_vect() const; // Vector |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
294 |
const TypeVect *isa_vect() const; // Returns NULL if not a Vector |
1 | 295 |
const TypePtr *is_ptr() const; // Asserts it is a ptr type |
296 |
const TypePtr *isa_ptr() const; // Returns NULL if not ptr type |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
297 |
const TypeRawPtr *isa_rawptr() const; // NOT Java oop |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
298 |
const TypeRawPtr *is_rawptr() const; // Asserts is rawptr |
589 | 299 |
const TypeNarrowOop *is_narrowoop() const; // Java-style GC'd pointer |
300 |
const TypeNarrowOop *isa_narrowoop() const; // Returns NULL if not oop ptr type |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
301 |
const TypeNarrowKlass *is_narrowklass() const; // compressed klass pointer |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
302 |
const TypeNarrowKlass *isa_narrowklass() const;// Returns NULL if not oop ptr type |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
303 |
const TypeOopPtr *isa_oopptr() const; // Returns NULL if not oop ptr type |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
304 |
const TypeOopPtr *is_oopptr() const; // Java-style GC'd pointer |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
305 |
const TypeInstPtr *isa_instptr() const; // Returns NULL if not InstPtr |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
306 |
const TypeInstPtr *is_instptr() const; // Instance |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
307 |
const TypeAryPtr *isa_aryptr() const; // Returns NULL if not AryPtr |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
308 |
const TypeAryPtr *is_aryptr() const; // Array oop |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
309 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
310 |
const TypeMetadataPtr *isa_metadataptr() const; // Returns NULL if not oop ptr type |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
311 |
const TypeMetadataPtr *is_metadataptr() const; // Java-style GC'd pointer |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
312 |
const TypeKlassPtr *isa_klassptr() const; // Returns NULL if not KlassPtr |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
313 |
const TypeKlassPtr *is_klassptr() const; // assert if not KlassPtr |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
314 |
|
1 | 315 |
virtual bool is_finite() const; // Has a finite value |
316 |
virtual bool is_nan() const; // Is not a number (NaN) |
|
317 |
||
767
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
318 |
// Returns this ptr type or the equivalent ptr type for this compressed pointer. |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
319 |
const TypePtr* make_ptr() const; |
3180
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
320 |
|
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
321 |
// Returns this oopptr type or the equivalent oopptr type for this compressed pointer. |
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
322 |
// Asserts if the underlying type is not an oopptr or narrowoop. |
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
323 |
const TypeOopPtr* make_oopptr() const; |
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
324 |
|
767
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
325 |
// Returns this compressed pointer or the equivalent compressed version |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
326 |
// of this pointer type. |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
327 |
const TypeNarrowOop* make_narrowoop() const; |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
328 |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
329 |
// Returns this compressed klass pointer or the equivalent |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
330 |
// compressed version of this pointer type. |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
331 |
const TypeNarrowKlass* make_narrowklass() const; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
332 |
|
1 | 333 |
// Special test for register pressure heuristic |
334 |
bool is_floatingpoint() const; // True if Float or Double base type |
|
335 |
||
336 |
// Do you have memory, directly or through a tuple? |
|
337 |
bool has_memory( ) const; |
|
338 |
||
339 |
// TRUE if type is a singleton |
|
340 |
virtual bool singleton(void) const; |
|
341 |
||
342 |
// TRUE if type is above the lattice centerline, and is therefore vacuous |
|
343 |
virtual bool empty(void) const; |
|
344 |
||
345 |
// Return a hash for this type. The hash function is public so ConNode |
|
346 |
// (constants) can hash on their constant, which is represented by a Type. |
|
347 |
virtual int hash() const; |
|
348 |
||
349 |
// Map ideal registers (machine types) to ideal types |
|
350 |
static const Type *mreg2type[]; |
|
351 |
||
352 |
// Printing, statistics |
|
353 |
#ifndef PRODUCT |
|
354 |
void dump_on(outputStream *st) const; |
|
355 |
void dump() const { |
|
356 |
dump_on(tty); |
|
357 |
} |
|
358 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
|
359 |
static void dump_stats(); |
|
40881
a4955213b573
8155635: C2: Mixed unsafe accesses break alias analysis
vlivanov
parents:
40880
diff
changeset
|
360 |
|
a4955213b573
8155635: C2: Mixed unsafe accesses break alias analysis
vlivanov
parents:
40880
diff
changeset
|
361 |
static const char* str(const Type* t); |
1 | 362 |
#endif |
363 |
void typerr(const Type *t) const; // Mixing types error |
|
364 |
||
365 |
// Create basic type |
|
366 |
static const Type* get_const_basic_type(BasicType type) { |
|
367 |
assert((uint)type <= T_CONFLICT && _const_basic_type[type] != NULL, "bad type"); |
|
368 |
return _const_basic_type[type]; |
|
369 |
} |
|
370 |
||
34202
5d19ca9c25a8
8141551: C2 can not handle returns with inccompatible interface arrays
simonis
parents:
31857
diff
changeset
|
371 |
// For two instance arrays of same dimension, return the base element types. |
5d19ca9c25a8
8141551: C2 can not handle returns with inccompatible interface arrays
simonis
parents:
31857
diff
changeset
|
372 |
// Otherwise or if the arrays have different dimensions, return NULL. |
5d19ca9c25a8
8141551: C2 can not handle returns with inccompatible interface arrays
simonis
parents:
31857
diff
changeset
|
373 |
static void get_arrays_base_elements(const Type *a1, const Type *a2, |
5d19ca9c25a8
8141551: C2 can not handle returns with inccompatible interface arrays
simonis
parents:
31857
diff
changeset
|
374 |
const TypeInstPtr **e1, const TypeInstPtr **e2); |
5d19ca9c25a8
8141551: C2 can not handle returns with inccompatible interface arrays
simonis
parents:
31857
diff
changeset
|
375 |
|
1 | 376 |
// Mapping to the array element's basic type. |
377 |
BasicType array_element_basic_type() const; |
|
378 |
||
379 |
// Create standard type for a ciType: |
|
380 |
static const Type* get_const_type(ciType* type); |
|
381 |
||
382 |
// Create standard zero value: |
|
383 |
static const Type* get_zero_type(BasicType type) { |
|
384 |
assert((uint)type <= T_CONFLICT && _zero_type[type] != NULL, "bad type"); |
|
385 |
return _zero_type[type]; |
|
386 |
} |
|
387 |
||
388 |
// Report if this is a zero value (not top). |
|
389 |
bool is_zero_type() const { |
|
390 |
BasicType type = basic_type(); |
|
391 |
if (type == T_VOID || type >= T_CONFLICT) |
|
392 |
return false; |
|
393 |
else |
|
394 |
return (this == _zero_type[type]); |
|
395 |
} |
|
396 |
||
397 |
// Convenience common pre-built types. |
|
398 |
static const Type *ABIO; |
|
399 |
static const Type *BOTTOM; |
|
400 |
static const Type *CONTROL; |
|
401 |
static const Type *DOUBLE; |
|
402 |
static const Type *FLOAT; |
|
403 |
static const Type *HALF; |
|
404 |
static const Type *MEMORY; |
|
405 |
static const Type *MULTI; |
|
406 |
static const Type *RETURN_ADDRESS; |
|
407 |
static const Type *TOP; |
|
408 |
||
409 |
// Mapping from compiler type to VM BasicType |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
410 |
BasicType basic_type() const { return _type_info[_base].basic_type; } |
46378 | 411 |
uint ideal_reg() const { return _type_info[_base].ideal_reg; } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
412 |
const char* msg() const { return _type_info[_base].msg; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
413 |
bool isa_oop_ptr() const { return _type_info[_base].isa_oop; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
414 |
relocInfo::relocType reloc() const { return _type_info[_base].reloc; } |
1 | 415 |
|
416 |
// Mapping from CI type system to compiler type: |
|
417 |
static const Type* get_typeflow_type(ciType* type); |
|
418 |
||
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
419 |
static const Type* make_from_constant(ciConstant constant, |
38030
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
420 |
bool require_constant = false, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
421 |
int stable_dimension = 0, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
422 |
bool is_narrow = false, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
423 |
bool is_autobox_cache = false); |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
424 |
|
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
425 |
static const Type* make_constant_from_field(ciInstance* holder, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
426 |
int off, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
427 |
bool is_unsigned_load, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
428 |
BasicType loadbt); |
31857
adbf29d9ca43
8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents:
30624
diff
changeset
|
429 |
|
38030
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
430 |
static const Type* make_constant_from_field(ciField* field, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
431 |
ciInstance* holder, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
432 |
BasicType loadbt, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
433 |
bool is_unsigned_load); |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
434 |
|
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
435 |
static const Type* make_constant_from_array_element(ciArray* array, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
436 |
int off, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
437 |
int stable_dimension, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
438 |
BasicType loadbt, |
93f24e7b3c43
8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents:
34202
diff
changeset
|
439 |
bool is_unsigned_load); |
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
440 |
|
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
441 |
// Speculative type helper methods. See TypePtr. |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
442 |
virtual const TypePtr* speculative() const { return NULL; } |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
443 |
virtual ciKlass* speculative_type() const { return NULL; } |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
444 |
virtual ciKlass* speculative_type_not_null() const { return NULL; } |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
445 |
virtual bool speculative_maybe_null() const { return true; } |
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
46378
diff
changeset
|
446 |
virtual bool speculative_always_null() const { return true; } |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
447 |
virtual const Type* remove_speculative() const { return this; } |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
448 |
virtual const Type* cleanup_speculative() const { return this; } |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
449 |
virtual bool would_improve_type(ciKlass* exact_kls, int inline_depth) const { return exact_kls != NULL; } |
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
46378
diff
changeset
|
450 |
virtual bool would_improve_ptr(ProfilePtrKind ptr_kind) const { return ptr_kind == ProfileAlwaysNull || ptr_kind == ProfileNeverNull; } |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
451 |
const Type* maybe_remove_speculative(bool include_speculative) const; |
21099 | 452 |
|
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
453 |
virtual bool maybe_null() const { return true; } |
22928
b2bb101a9ae3
8031754: Type speculation should favor profile data from outermost inlined method
roland
parents:
22911
diff
changeset
|
454 |
|
1 | 455 |
private: |
456 |
// support arrays |
|
457 |
static const BasicType _basic_type[]; |
|
458 |
static const Type* _zero_type[T_CONFLICT+1]; |
|
459 |
static const Type* _const_basic_type[T_CONFLICT+1]; |
|
460 |
}; |
|
461 |
||
462 |
//------------------------------TypeF------------------------------------------ |
|
463 |
// Class of Float-Constant Types. |
|
464 |
class TypeF : public Type { |
|
465 |
TypeF( float f ) : Type(FloatCon), _f(f) {}; |
|
466 |
public: |
|
467 |
virtual bool eq( const Type *t ) const; |
|
468 |
virtual int hash() const; // Type specific hashing |
|
469 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
470 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
471 |
public: |
|
472 |
const float _f; // Float constant |
|
473 |
||
474 |
static const TypeF *make(float f); |
|
475 |
||
476 |
virtual bool is_finite() const; // Has a finite value |
|
477 |
virtual bool is_nan() const; // Is not a number (NaN) |
|
478 |
||
479 |
virtual const Type *xmeet( const Type *t ) const; |
|
480 |
virtual const Type *xdual() const; // Compute dual right now. |
|
481 |
// Convenience common pre-built types. |
|
482 |
static const TypeF *ZERO; // positive zero only |
|
483 |
static const TypeF *ONE; |
|
53041 | 484 |
static const TypeF *POS_INF; |
485 |
static const TypeF *NEG_INF; |
|
1 | 486 |
#ifndef PRODUCT |
487 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
|
488 |
#endif |
|
489 |
}; |
|
490 |
||
491 |
//------------------------------TypeD------------------------------------------ |
|
492 |
// Class of Double-Constant Types. |
|
493 |
class TypeD : public Type { |
|
494 |
TypeD( double d ) : Type(DoubleCon), _d(d) {}; |
|
495 |
public: |
|
496 |
virtual bool eq( const Type *t ) const; |
|
497 |
virtual int hash() const; // Type specific hashing |
|
498 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
499 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
500 |
public: |
|
501 |
const double _d; // Double constant |
|
502 |
||
503 |
static const TypeD *make(double d); |
|
504 |
||
505 |
virtual bool is_finite() const; // Has a finite value |
|
506 |
virtual bool is_nan() const; // Is not a number (NaN) |
|
507 |
||
508 |
virtual const Type *xmeet( const Type *t ) const; |
|
509 |
virtual const Type *xdual() const; // Compute dual right now. |
|
510 |
// Convenience common pre-built types. |
|
511 |
static const TypeD *ZERO; // positive zero only |
|
512 |
static const TypeD *ONE; |
|
53041 | 513 |
static const TypeD *POS_INF; |
514 |
static const TypeD *NEG_INF; |
|
1 | 515 |
#ifndef PRODUCT |
516 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
|
517 |
#endif |
|
518 |
}; |
|
519 |
||
520 |
//------------------------------TypeInt---------------------------------------- |
|
521 |
// Class of integer ranges, the set of integers between a lower bound and an |
|
522 |
// upper bound, inclusive. |
|
523 |
class TypeInt : public Type { |
|
524 |
TypeInt( jint lo, jint hi, int w ); |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
525 |
protected: |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
526 |
virtual const Type *filter_helper(const Type *kills, bool include_speculative) const; |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
527 |
|
1 | 528 |
public: |
22911
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
529 |
typedef jint NativeType; |
1 | 530 |
virtual bool eq( const Type *t ) const; |
531 |
virtual int hash() const; // Type specific hashing |
|
532 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
533 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
534 |
const jint _lo, _hi; // Lower bound, upper bound |
|
535 |
const short _widen; // Limit on times we widen this sucker |
|
536 |
||
537 |
static const TypeInt *make(jint lo); |
|
538 |
// must always specify w |
|
539 |
static const TypeInt *make(jint lo, jint hi, int w); |
|
540 |
||
541 |
// Check for single integer |
|
542 |
int is_con() const { return _lo==_hi; } |
|
543 |
bool is_con(int i) const { return is_con() && _lo == i; } |
|
544 |
jint get_con() const { assert( is_con(), "" ); return _lo; } |
|
545 |
||
546 |
virtual bool is_finite() const; // Has a finite value |
|
547 |
||
548 |
virtual const Type *xmeet( const Type *t ) const; |
|
549 |
virtual const Type *xdual() const; // Compute dual right now. |
|
4012
579b7bad9983
6885584: A particular class structure causes large allocation spike for jit
never
parents:
3911
diff
changeset
|
550 |
virtual const Type *widen( const Type *t, const Type* limit_type ) const; |
1 | 551 |
virtual const Type *narrow( const Type *t ) const; |
552 |
// Do not kill _widen bits. |
|
553 |
// Convenience common pre-built types. |
|
554 |
static const TypeInt *MINUS_1; |
|
555 |
static const TypeInt *ZERO; |
|
556 |
static const TypeInt *ONE; |
|
557 |
static const TypeInt *BOOL; |
|
558 |
static const TypeInt *CC; |
|
559 |
static const TypeInt *CC_LT; // [-1] == MINUS_1 |
|
560 |
static const TypeInt *CC_GT; // [1] == ONE |
|
561 |
static const TypeInt *CC_EQ; // [0] == ZERO |
|
562 |
static const TypeInt *CC_LE; // [-1,0] |
|
563 |
static const TypeInt *CC_GE; // [0,1] == BOOL (!) |
|
564 |
static const TypeInt *BYTE; |
|
2150 | 565 |
static const TypeInt *UBYTE; |
1 | 566 |
static const TypeInt *CHAR; |
567 |
static const TypeInt *SHORT; |
|
568 |
static const TypeInt *POS; |
|
569 |
static const TypeInt *POS1; |
|
570 |
static const TypeInt *INT; |
|
571 |
static const TypeInt *SYMINT; // symmetric range [-max_jint..max_jint] |
|
22911
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
572 |
static const TypeInt *TYPE_DOMAIN; // alias for TypeInt::INT |
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
573 |
|
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
574 |
static const TypeInt *as_self(const Type *t) { return t->is_int(); } |
1 | 575 |
#ifndef PRODUCT |
576 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
|
577 |
#endif |
|
578 |
}; |
|
579 |
||
580 |
||
581 |
//------------------------------TypeLong--------------------------------------- |
|
582 |
// Class of long integer ranges, the set of integers between a lower bound and |
|
583 |
// an upper bound, inclusive. |
|
584 |
class TypeLong : public Type { |
|
585 |
TypeLong( jlong lo, jlong hi, int w ); |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
586 |
protected: |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
587 |
// Do not kill _widen bits. |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
588 |
virtual const Type *filter_helper(const Type *kills, bool include_speculative) const; |
1 | 589 |
public: |
22911
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
590 |
typedef jlong NativeType; |
1 | 591 |
virtual bool eq( const Type *t ) const; |
592 |
virtual int hash() const; // Type specific hashing |
|
593 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
594 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
595 |
public: |
|
596 |
const jlong _lo, _hi; // Lower bound, upper bound |
|
597 |
const short _widen; // Limit on times we widen this sucker |
|
598 |
||
599 |
static const TypeLong *make(jlong lo); |
|
600 |
// must always specify w |
|
601 |
static const TypeLong *make(jlong lo, jlong hi, int w); |
|
602 |
||
603 |
// Check for single integer |
|
604 |
int is_con() const { return _lo==_hi; } |
|
392 | 605 |
bool is_con(int i) const { return is_con() && _lo == i; } |
1 | 606 |
jlong get_con() const { assert( is_con(), "" ); return _lo; } |
607 |
||
22853
308672304981
8028767: PPC64: (part 121): smaller shared changes needed to build C2
goetz
parents:
21202
diff
changeset
|
608 |
// Check for positive 32-bit value. |
308672304981
8028767: PPC64: (part 121): smaller shared changes needed to build C2
goetz
parents:
21202
diff
changeset
|
609 |
int is_positive_int() const { return _lo >= 0 && _hi <= (jlong)max_jint; } |
308672304981
8028767: PPC64: (part 121): smaller shared changes needed to build C2
goetz
parents:
21202
diff
changeset
|
610 |
|
1 | 611 |
virtual bool is_finite() const; // Has a finite value |
612 |
||
22911
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
613 |
|
1 | 614 |
virtual const Type *xmeet( const Type *t ) const; |
615 |
virtual const Type *xdual() const; // Compute dual right now. |
|
4012
579b7bad9983
6885584: A particular class structure causes large allocation spike for jit
never
parents:
3911
diff
changeset
|
616 |
virtual const Type *widen( const Type *t, const Type* limit_type ) const; |
1 | 617 |
virtual const Type *narrow( const Type *t ) const; |
618 |
// Convenience common pre-built types. |
|
619 |
static const TypeLong *MINUS_1; |
|
620 |
static const TypeLong *ZERO; |
|
621 |
static const TypeLong *ONE; |
|
622 |
static const TypeLong *POS; |
|
623 |
static const TypeLong *LONG; |
|
624 |
static const TypeLong *INT; // 32-bit subrange [min_jint..max_jint] |
|
625 |
static const TypeLong *UINT; // 32-bit unsigned [0..max_juint] |
|
22911
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
626 |
static const TypeLong *TYPE_DOMAIN; // alias for TypeLong::LONG |
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
627 |
|
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
628 |
// static convenience methods. |
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
629 |
static const TypeLong *as_self(const Type *t) { return t->is_long(); } |
ff49c48c887d
8027754: Enable loop optimizations for loops with MathExact inside
rbackman
parents:
22873
diff
changeset
|
630 |
|
1 | 631 |
#ifndef PRODUCT |
632 |
virtual void dump2( Dict &d, uint, outputStream *st ) const;// Specialized per-Type dumping |
|
633 |
#endif |
|
634 |
}; |
|
635 |
||
636 |
//------------------------------TypeTuple-------------------------------------- |
|
637 |
// Class of Tuple Types, essentially type collections for function signatures |
|
638 |
// and class layouts. It happens to also be a fast cache for the HotSpot |
|
639 |
// signature types. |
|
640 |
class TypeTuple : public Type { |
|
641 |
TypeTuple( uint cnt, const Type **fields ) : Type(Tuple), _cnt(cnt), _fields(fields) { } |
|
25911 | 642 |
|
643 |
const uint _cnt; // Count of fields |
|
644 |
const Type ** const _fields; // Array of field types |
|
645 |
||
1 | 646 |
public: |
647 |
virtual bool eq( const Type *t ) const; |
|
648 |
virtual int hash() const; // Type specific hashing |
|
649 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
650 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
651 |
||
652 |
// Accessors: |
|
653 |
uint cnt() const { return _cnt; } |
|
654 |
const Type* field_at(uint i) const { |
|
655 |
assert(i < _cnt, "oob"); |
|
656 |
return _fields[i]; |
|
657 |
} |
|
658 |
void set_field_at(uint i, const Type* t) { |
|
659 |
assert(i < _cnt, "oob"); |
|
660 |
_fields[i] = t; |
|
661 |
} |
|
662 |
||
663 |
static const TypeTuple *make( uint cnt, const Type **fields ); |
|
664 |
static const TypeTuple *make_range(ciSignature *sig); |
|
665 |
static const TypeTuple *make_domain(ciInstanceKlass* recv, ciSignature *sig); |
|
666 |
||
667 |
// Subroutine call type with space allocated for argument types |
|
26310
c78739f05ded
8051415: TypeTuple::make_domain() and TypeTuple::make_range() allocate too much memory
zmajo
parents:
25911
diff
changeset
|
668 |
// Memory for Control, I_O, Memory, FramePtr, and ReturnAdr is allocated implicitly |
1 | 669 |
static const Type **fields( uint arg_cnt ); |
670 |
||
671 |
virtual const Type *xmeet( const Type *t ) const; |
|
672 |
virtual const Type *xdual() const; // Compute dual right now. |
|
673 |
// Convenience common pre-built types. |
|
674 |
static const TypeTuple *IFBOTH; |
|
675 |
static const TypeTuple *IFFALSE; |
|
676 |
static const TypeTuple *IFTRUE; |
|
677 |
static const TypeTuple *IFNEITHER; |
|
678 |
static const TypeTuple *LOOPBODY; |
|
679 |
static const TypeTuple *MEMBAR; |
|
680 |
static const TypeTuple *STORECONDITIONAL; |
|
681 |
static const TypeTuple *START_I2C; |
|
682 |
static const TypeTuple *INT_PAIR; |
|
683 |
static const TypeTuple *LONG_PAIR; |
|
20289 | 684 |
static const TypeTuple *INT_CC_PAIR; |
21105
47618ee96ed5
8026844: Various Math functions needs intrinsification
rbackman
parents:
21099
diff
changeset
|
685 |
static const TypeTuple *LONG_CC_PAIR; |
1 | 686 |
#ifndef PRODUCT |
687 |
virtual void dump2( Dict &d, uint, outputStream *st ) const; // Specialized per-Type dumping |
|
688 |
#endif |
|
689 |
}; |
|
690 |
||
691 |
//------------------------------TypeAry---------------------------------------- |
|
692 |
// Class of Array Types |
|
693 |
class TypeAry : public Type { |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
694 |
TypeAry(const Type* elem, const TypeInt* size, bool stable) : Type(Array), |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
695 |
_elem(elem), _size(size), _stable(stable) {} |
1 | 696 |
public: |
697 |
virtual bool eq( const Type *t ) const; |
|
698 |
virtual int hash() const; // Type specific hashing |
|
699 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
700 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
701 |
||
702 |
private: |
|
703 |
const Type *_elem; // Element type of array |
|
704 |
const TypeInt *_size; // Elements in array |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
705 |
const bool _stable; // Are elements @Stable? |
1 | 706 |
friend class TypeAryPtr; |
707 |
||
708 |
public: |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
709 |
static const TypeAry* make(const Type* elem, const TypeInt* size, bool stable = false); |
1 | 710 |
|
711 |
virtual const Type *xmeet( const Type *t ) const; |
|
712 |
virtual const Type *xdual() const; // Compute dual right now. |
|
713 |
bool ary_must_be_exact() const; // true if arrays of such are never generic |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
714 |
virtual const Type* remove_speculative() const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
715 |
virtual const Type* cleanup_speculative() const; |
3173
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
716 |
#ifdef ASSERT |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
717 |
// One type is interface, the other is oop |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
718 |
virtual bool interface_vs_oop(const Type *t) const; |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
719 |
#endif |
1 | 720 |
#ifndef PRODUCT |
721 |
virtual void dump2( Dict &d, uint, outputStream *st ) const; // Specialized per-Type dumping |
|
722 |
#endif |
|
723 |
}; |
|
724 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
725 |
//------------------------------TypeVect--------------------------------------- |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
726 |
// Class of Vector Types |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
727 |
class TypeVect : public Type { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
728 |
const Type* _elem; // Vector's element type |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
729 |
const uint _length; // Elements in vector (power of 2) |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
730 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
731 |
protected: |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
732 |
TypeVect(TYPES t, const Type* elem, uint length) : Type(t), |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
733 |
_elem(elem), _length(length) {} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
734 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
735 |
public: |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
736 |
const Type* element_type() const { return _elem; } |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
737 |
BasicType element_basic_type() const { return _elem->array_element_basic_type(); } |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
738 |
uint length() const { return _length; } |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
739 |
uint length_in_bytes() const { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
740 |
return _length * type2aelembytes(element_basic_type()); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
741 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
742 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
743 |
virtual bool eq(const Type *t) const; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
744 |
virtual int hash() const; // Type specific hashing |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
745 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
746 |
virtual bool empty(void) const; // TRUE if type is vacuous |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
747 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
748 |
static const TypeVect *make(const BasicType elem_bt, uint length) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
749 |
// Use bottom primitive type. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
750 |
return make(get_const_basic_type(elem_bt), length); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
751 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
752 |
// Used directly by Replicate nodes to construct singleton vector. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
753 |
static const TypeVect *make(const Type* elem, uint length); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
754 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
755 |
virtual const Type *xmeet( const Type *t) const; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
756 |
virtual const Type *xdual() const; // Compute dual right now. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
757 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
758 |
static const TypeVect *VECTS; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
759 |
static const TypeVect *VECTD; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
760 |
static const TypeVect *VECTX; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
761 |
static const TypeVect *VECTY; |
30624 | 762 |
static const TypeVect *VECTZ; |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
763 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
764 |
#ifndef PRODUCT |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
765 |
virtual void dump2(Dict &d, uint, outputStream *st) const; // Specialized per-Type dumping |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
766 |
#endif |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
767 |
}; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
768 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
769 |
class TypeVectS : public TypeVect { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
770 |
friend class TypeVect; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
771 |
TypeVectS(const Type* elem, uint length) : TypeVect(VectorS, elem, length) {} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
772 |
}; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
773 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
774 |
class TypeVectD : public TypeVect { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
775 |
friend class TypeVect; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
776 |
TypeVectD(const Type* elem, uint length) : TypeVect(VectorD, elem, length) {} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
777 |
}; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
778 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
779 |
class TypeVectX : public TypeVect { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
780 |
friend class TypeVect; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
781 |
TypeVectX(const Type* elem, uint length) : TypeVect(VectorX, elem, length) {} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
782 |
}; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
783 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
784 |
class TypeVectY : public TypeVect { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
785 |
friend class TypeVect; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
786 |
TypeVectY(const Type* elem, uint length) : TypeVect(VectorY, elem, length) {} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
787 |
}; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
788 |
|
30624 | 789 |
class TypeVectZ : public TypeVect { |
790 |
friend class TypeVect; |
|
791 |
TypeVectZ(const Type* elem, uint length) : TypeVect(VectorZ, elem, length) {} |
|
792 |
}; |
|
793 |
||
1 | 794 |
//------------------------------TypePtr---------------------------------------- |
795 |
// Class of machine Pointer Types: raw data, instances or arrays. |
|
796 |
// If the _base enum is AnyPtr, then this refers to all of the above. |
|
797 |
// Otherwise the _base will indicate which subset of pointers is affected, |
|
798 |
// and the class will be inherited from. |
|
799 |
class TypePtr : public Type { |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
800 |
friend class TypeNarrowPtr; |
1 | 801 |
public: |
802 |
enum PTR { TopPTR, AnyNull, Constant, Null, NotNull, BotPTR, lastPTR }; |
|
803 |
protected: |
|
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
804 |
TypePtr(TYPES t, PTR ptr, int offset, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
805 |
const TypePtr* speculative = NULL, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
806 |
int inline_depth = InlineDepthBottom) : |
51333
f6641fcf7b7e
8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents:
47216
diff
changeset
|
807 |
Type(t), _speculative(speculative), _inline_depth(inline_depth), _offset(offset), |
f6641fcf7b7e
8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents:
47216
diff
changeset
|
808 |
_ptr(ptr) {} |
1 | 809 |
static const PTR ptr_meet[lastPTR][lastPTR]; |
810 |
static const PTR ptr_dual[lastPTR]; |
|
811 |
static const char * const ptr_msg[lastPTR]; |
|
812 |
||
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
813 |
enum { |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
814 |
InlineDepthBottom = INT_MAX, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
815 |
InlineDepthTop = -InlineDepthBottom |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
816 |
}; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
817 |
|
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
818 |
// Extra type information profiling gave us. We propagate it the |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
819 |
// same way the rest of the type info is propagated. If we want to |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
820 |
// use it, then we have to emit a guard: this part of the type is |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
821 |
// not something we know but something we speculate about the type. |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
822 |
const TypePtr* _speculative; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
823 |
// For speculative types, we record at what inlining depth the |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
824 |
// profiling point that provided the data is. We want to favor |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
825 |
// profile data coming from outer scopes which are likely better for |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
826 |
// the current compilation. |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
827 |
int _inline_depth; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
828 |
|
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
829 |
// utility methods to work on the speculative part of the type |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
830 |
const TypePtr* dual_speculative() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
831 |
const TypePtr* xmeet_speculative(const TypePtr* other) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
832 |
bool eq_speculative(const TypePtr* other) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
833 |
int hash_speculative() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
834 |
const TypePtr* add_offset_speculative(intptr_t offset) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
835 |
#ifndef PRODUCT |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
836 |
void dump_speculative(outputStream *st) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
837 |
#endif |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
838 |
|
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
839 |
// utility methods to work on the inline depth of the type |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
840 |
int dual_inline_depth() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
841 |
int meet_inline_depth(int depth) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
842 |
#ifndef PRODUCT |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
843 |
void dump_inline_depth(outputStream *st) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
844 |
#endif |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
845 |
|
1 | 846 |
public: |
847 |
const int _offset; // Offset into oop, with TOP & BOT |
|
848 |
const PTR _ptr; // Pointer equivalence class |
|
849 |
||
850 |
const int offset() const { return _offset; } |
|
851 |
const PTR ptr() const { return _ptr; } |
|
852 |
||
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
853 |
static const TypePtr *make(TYPES t, PTR ptr, int offset, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
854 |
const TypePtr* speculative = NULL, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
855 |
int inline_depth = InlineDepthBottom); |
1 | 856 |
|
857 |
// Return a 'ptr' version of this type |
|
858 |
virtual const Type *cast_to_ptr_type(PTR ptr) const; |
|
859 |
||
860 |
virtual intptr_t get_con() const; |
|
861 |
||
1068
720698d9c89b
6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
781
diff
changeset
|
862 |
int xadd_offset( intptr_t offset ) const; |
720698d9c89b
6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
781
diff
changeset
|
863 |
virtual const TypePtr *add_offset( intptr_t offset ) const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
864 |
virtual bool eq(const Type *t) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
865 |
virtual int hash() const; // Type specific hashing |
1 | 866 |
|
867 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
868 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
869 |
virtual const Type *xmeet( const Type *t ) const; |
|
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
870 |
virtual const Type *xmeet_helper( const Type *t ) const; |
1 | 871 |
int meet_offset( int offset ) const; |
872 |
int dual_offset( ) const; |
|
873 |
virtual const Type *xdual() const; // Compute dual right now. |
|
874 |
||
875 |
// meet, dual and join over pointer equivalence sets |
|
876 |
PTR meet_ptr( const PTR in_ptr ) const { return ptr_meet[in_ptr][ptr()]; } |
|
877 |
PTR dual_ptr() const { return ptr_dual[ptr()]; } |
|
878 |
||
879 |
// This is textually confusing unless one recalls that |
|
880 |
// join(t) == dual()->meet(t->dual())->dual(). |
|
881 |
PTR join_ptr( const PTR in_ptr ) const { |
|
882 |
return ptr_dual[ ptr_meet[ ptr_dual[in_ptr] ] [ dual_ptr() ] ]; |
|
883 |
} |
|
884 |
||
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
885 |
// Speculative type helper methods. |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
886 |
virtual const TypePtr* speculative() const { return _speculative; } |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
887 |
int inline_depth() const { return _inline_depth; } |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
888 |
virtual ciKlass* speculative_type() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
889 |
virtual ciKlass* speculative_type_not_null() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
890 |
virtual bool speculative_maybe_null() const; |
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
46378
diff
changeset
|
891 |
virtual bool speculative_always_null() const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
892 |
virtual const Type* remove_speculative() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
893 |
virtual const Type* cleanup_speculative() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
894 |
virtual bool would_improve_type(ciKlass* exact_kls, int inline_depth) const; |
46542
73dd19b96b5d
8181211: C2: Use profiling data to optimize on/off heap unsafe accesses
roland
parents:
46378
diff
changeset
|
895 |
virtual bool would_improve_ptr(ProfilePtrKind maybe_null) const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
896 |
virtual const TypePtr* with_inline_depth(int depth) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
897 |
|
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
898 |
virtual bool maybe_null() const { return meet_ptr(Null) == ptr(); } |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
899 |
|
1 | 900 |
// Tests for relation to centerline of type lattice: |
901 |
static bool above_centerline(PTR ptr) { return (ptr <= AnyNull); } |
|
902 |
static bool below_centerline(PTR ptr) { return (ptr >= NotNull); } |
|
903 |
// Convenience common pre-built types. |
|
904 |
static const TypePtr *NULL_PTR; |
|
905 |
static const TypePtr *NOTNULL; |
|
906 |
static const TypePtr *BOTTOM; |
|
907 |
#ifndef PRODUCT |
|
908 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
|
909 |
#endif |
|
910 |
}; |
|
911 |
||
912 |
//------------------------------TypeRawPtr------------------------------------- |
|
913 |
// Class of raw pointers, pointers to things other than Oops. Examples |
|
914 |
// include the stack pointer, top of heap, card-marking area, handles, etc. |
|
915 |
class TypeRawPtr : public TypePtr { |
|
916 |
protected: |
|
917 |
TypeRawPtr( PTR ptr, address bits ) : TypePtr(RawPtr,ptr,0), _bits(bits){} |
|
918 |
public: |
|
919 |
virtual bool eq( const Type *t ) const; |
|
920 |
virtual int hash() const; // Type specific hashing |
|
921 |
||
922 |
const address _bits; // Constant value, if applicable |
|
923 |
||
924 |
static const TypeRawPtr *make( PTR ptr ); |
|
925 |
static const TypeRawPtr *make( address bits ); |
|
926 |
||
927 |
// Return a 'ptr' version of this type |
|
928 |
virtual const Type *cast_to_ptr_type(PTR ptr) const; |
|
929 |
||
930 |
virtual intptr_t get_con() const; |
|
931 |
||
1068
720698d9c89b
6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
781
diff
changeset
|
932 |
virtual const TypePtr *add_offset( intptr_t offset ) const; |
1 | 933 |
|
934 |
virtual const Type *xmeet( const Type *t ) const; |
|
935 |
virtual const Type *xdual() const; // Compute dual right now. |
|
936 |
// Convenience common pre-built types. |
|
937 |
static const TypeRawPtr *BOTTOM; |
|
938 |
static const TypeRawPtr *NOTNULL; |
|
939 |
#ifndef PRODUCT |
|
940 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
|
941 |
#endif |
|
942 |
}; |
|
943 |
||
944 |
//------------------------------TypeOopPtr------------------------------------- |
|
40047
124ad42f6e96
8160360: Mismatched field loads are folded in LoadNode::Value
vlivanov
parents:
38030
diff
changeset
|
945 |
// Some kind of oop (Java pointer), either instance or array. |
1 | 946 |
class TypeOopPtr : public TypePtr { |
947 |
protected: |
|
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
948 |
TypeOopPtr(TYPES t, PTR ptr, ciKlass* k, bool xk, ciObject* o, int offset, int instance_id, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
949 |
const TypePtr* speculative, int inline_depth); |
1 | 950 |
public: |
951 |
virtual bool eq( const Type *t ) const; |
|
952 |
virtual int hash() const; // Type specific hashing |
|
953 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
954 |
enum { |
|
769 | 955 |
InstanceTop = -1, // undefined instance |
956 |
InstanceBot = 0 // any possible instance |
|
1 | 957 |
}; |
958 |
protected: |
|
959 |
||
960 |
// Oop is NULL, unless this is a constant oop. |
|
961 |
ciObject* _const_oop; // Constant oop |
|
962 |
// If _klass is NULL, then so is _sig. This is an unloaded klass. |
|
963 |
ciKlass* _klass; // Klass object |
|
964 |
// Does the type exclude subclasses of the klass? (Inexact == polymorphic.) |
|
965 |
bool _klass_is_exact; |
|
589 | 966 |
bool _is_ptr_to_narrowoop; |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
967 |
bool _is_ptr_to_narrowklass; |
17383 | 968 |
bool _is_ptr_to_boxed_value; |
1 | 969 |
|
769 | 970 |
// If not InstanceTop or InstanceBot, indicates that this is |
971 |
// a particular instance of this type which is distinct. |
|
40871
82848b0654f8
8038348: Instance field load is replaced by wrong data Phi
thartmann
parents:
40047
diff
changeset
|
972 |
// This is the node index of the allocation node creating this instance. |
769 | 973 |
int _instance_id; |
1 | 974 |
|
975 |
static const TypeOopPtr* make_from_klass_common(ciKlass* klass, bool klass_change, bool try_for_exact); |
|
976 |
||
769 | 977 |
int dual_instance_id() const; |
978 |
int meet_instance_id(int uid) const; |
|
1 | 979 |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
980 |
// Do not allow interface-vs.-noninterface joins to collapse to top. |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
981 |
virtual const Type *filter_helper(const Type *kills, bool include_speculative) const; |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
982 |
|
1 | 983 |
public: |
984 |
// Creates a type given a klass. Correctly handles multi-dimensional arrays |
|
985 |
// Respects UseUniqueSubclasses. |
|
986 |
// If the klass is final, the resulting type will be exact. |
|
987 |
static const TypeOopPtr* make_from_klass(ciKlass* klass) { |
|
988 |
return make_from_klass_common(klass, true, false); |
|
989 |
} |
|
990 |
// Same as before, but will produce an exact type, even if |
|
991 |
// the klass is not final, as long as it has exactly one implementation. |
|
992 |
static const TypeOopPtr* make_from_klass_unique(ciKlass* klass) { |
|
993 |
return make_from_klass_common(klass, true, true); |
|
994 |
} |
|
995 |
// Same as before, but does not respects UseUniqueSubclasses. |
|
996 |
// Use this only for creating array element types. |
|
997 |
static const TypeOopPtr* make_from_klass_raw(ciKlass* klass) { |
|
998 |
return make_from_klass_common(klass, false, false); |
|
999 |
} |
|
1000 |
// Creates a singleton type given an object. |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3805
diff
changeset
|
1001 |
// If the object cannot be rendered as a constant, |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3805
diff
changeset
|
1002 |
// may return a non-singleton type. |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3805
diff
changeset
|
1003 |
// If require_constant, produce a NULL if a singleton is not possible. |
17383 | 1004 |
static const TypeOopPtr* make_from_constant(ciObject* o, |
31857
adbf29d9ca43
8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents:
30624
diff
changeset
|
1005 |
bool require_constant = false); |
1 | 1006 |
|
1007 |
// Make a generic (unclassed) pointer to an oop. |
|
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1008 |
static const TypeOopPtr* make(PTR ptr, int offset, int instance_id, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1009 |
const TypePtr* speculative = NULL, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1010 |
int inline_depth = InlineDepthBottom); |
1 | 1011 |
|
1012 |
ciObject* const_oop() const { return _const_oop; } |
|
1013 |
virtual ciKlass* klass() const { return _klass; } |
|
1014 |
bool klass_is_exact() const { return _klass_is_exact; } |
|
589 | 1015 |
|
1016 |
// Returns true if this pointer points at memory which contains a |
|
1017 |
// compressed oop references. |
|
1018 |
bool is_ptr_to_narrowoop_nv() const { return _is_ptr_to_narrowoop; } |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1019 |
bool is_ptr_to_narrowklass_nv() const { return _is_ptr_to_narrowklass; } |
17383 | 1020 |
bool is_ptr_to_boxed_value() const { return _is_ptr_to_boxed_value; } |
769 | 1021 |
bool is_known_instance() const { return _instance_id > 0; } |
1022 |
int instance_id() const { return _instance_id; } |
|
1023 |
bool is_known_instance_field() const { return is_known_instance() && _offset >= 0; } |
|
1 | 1024 |
|
1025 |
virtual intptr_t get_con() const; |
|
1026 |
||
1027 |
virtual const Type *cast_to_ptr_type(PTR ptr) const; |
|
1028 |
||
1029 |
virtual const Type *cast_to_exactness(bool klass_is_exact) const; |
|
1030 |
||
769 | 1031 |
virtual const TypeOopPtr *cast_to_instance_id(int instance_id) const; |
1 | 1032 |
|
52925
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1033 |
virtual const TypeOopPtr *cast_to_nonconst() const; |
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1034 |
|
1 | 1035 |
// corresponding pointer to klass, for a given instance |
1036 |
const TypeKlassPtr* as_klass_type() const; |
|
1037 |
||
1068
720698d9c89b
6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
781
diff
changeset
|
1038 |
virtual const TypePtr *add_offset( intptr_t offset ) const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1039 |
|
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1040 |
// Speculative type helper methods. |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1041 |
virtual const Type* remove_speculative() const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1042 |
virtual const Type* cleanup_speculative() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1043 |
virtual bool would_improve_type(ciKlass* exact_kls, int inline_depth) const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1044 |
virtual const TypePtr* with_inline_depth(int depth) const; |
1 | 1045 |
|
53623 | 1046 |
virtual const TypePtr* with_instance_id(int instance_id) const; |
1047 |
||
1 | 1048 |
virtual const Type *xdual() const; // Compute dual right now. |
21099 | 1049 |
// the core of the computation of the meet for TypeOopPtr and for its subclasses |
1050 |
virtual const Type *xmeet_helper(const Type *t) const; |
|
1 | 1051 |
|
1052 |
// Convenience common pre-built type. |
|
1053 |
static const TypeOopPtr *BOTTOM; |
|
1054 |
#ifndef PRODUCT |
|
1055 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
|
1056 |
#endif |
|
1057 |
}; |
|
1058 |
||
1059 |
//------------------------------TypeInstPtr------------------------------------ |
|
1060 |
// Class of Java object pointers, pointing either to non-array Java instances |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1061 |
// or to a Klass* (including array klasses). |
1 | 1062 |
class TypeInstPtr : public TypeOopPtr { |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1063 |
TypeInstPtr(PTR ptr, ciKlass* k, bool xk, ciObject* o, int offset, int instance_id, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1064 |
const TypePtr* speculative, int inline_depth); |
1 | 1065 |
virtual bool eq( const Type *t ) const; |
1066 |
virtual int hash() const; // Type specific hashing |
|
1067 |
||
1068 |
ciSymbol* _name; // class name |
|
1069 |
||
1070 |
public: |
|
1071 |
ciSymbol* name() const { return _name; } |
|
1072 |
||
1073 |
bool is_loaded() const { return _klass->is_loaded(); } |
|
1074 |
||
1075 |
// Make a pointer to a constant oop. |
|
1076 |
static const TypeInstPtr *make(ciObject* o) { |
|
21099 | 1077 |
return make(TypePtr::Constant, o->klass(), true, o, 0, InstanceBot); |
1 | 1078 |
} |
1079 |
// Make a pointer to a constant oop with offset. |
|
1080 |
static const TypeInstPtr *make(ciObject* o, int offset) { |
|
21099 | 1081 |
return make(TypePtr::Constant, o->klass(), true, o, offset, InstanceBot); |
1 | 1082 |
} |
1083 |
||
1084 |
// Make a pointer to some value of type klass. |
|
1085 |
static const TypeInstPtr *make(PTR ptr, ciKlass* klass) { |
|
21099 | 1086 |
return make(ptr, klass, false, NULL, 0, InstanceBot); |
1 | 1087 |
} |
1088 |
||
1089 |
// Make a pointer to some non-polymorphic value of exactly type klass. |
|
1090 |
static const TypeInstPtr *make_exact(PTR ptr, ciKlass* klass) { |
|
21099 | 1091 |
return make(ptr, klass, true, NULL, 0, InstanceBot); |
1 | 1092 |
} |
1093 |
||
1094 |
// Make a pointer to some value of type klass with offset. |
|
1095 |
static const TypeInstPtr *make(PTR ptr, ciKlass* klass, int offset) { |
|
21099 | 1096 |
return make(ptr, klass, false, NULL, offset, InstanceBot); |
1 | 1097 |
} |
1098 |
||
1099 |
// Make a pointer to an oop. |
|
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1100 |
static const TypeInstPtr *make(PTR ptr, ciKlass* k, bool xk, ciObject* o, int offset, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1101 |
int instance_id = InstanceBot, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1102 |
const TypePtr* speculative = NULL, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1103 |
int inline_depth = InlineDepthBottom); |
1 | 1104 |
|
17383 | 1105 |
/** Create constant type for a constant boxed value */ |
1106 |
const Type* get_const_boxed_value() const; |
|
1107 |
||
1 | 1108 |
// If this is a java.lang.Class constant, return the type for it or NULL. |
1109 |
// Pass to Type::get_const_type to turn it to a type, which will usually |
|
1110 |
// be a TypeInstPtr, but may also be a TypeInt::INT for int.class, etc. |
|
1111 |
ciType* java_mirror_type() const; |
|
1112 |
||
1113 |
virtual const Type *cast_to_ptr_type(PTR ptr) const; |
|
1114 |
||
1115 |
virtual const Type *cast_to_exactness(bool klass_is_exact) const; |
|
1116 |
||
769 | 1117 |
virtual const TypeOopPtr *cast_to_instance_id(int instance_id) const; |
1 | 1118 |
|
52925
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1119 |
virtual const TypeOopPtr *cast_to_nonconst() const; |
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1120 |
|
1068
720698d9c89b
6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
781
diff
changeset
|
1121 |
virtual const TypePtr *add_offset( intptr_t offset ) const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1122 |
|
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1123 |
// Speculative type helper methods. |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1124 |
virtual const Type* remove_speculative() const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1125 |
virtual const TypePtr* with_inline_depth(int depth) const; |
53623 | 1126 |
virtual const TypePtr* with_instance_id(int instance_id) const; |
1 | 1127 |
|
21099 | 1128 |
// the core of the computation of the meet of 2 types |
1129 |
virtual const Type *xmeet_helper(const Type *t) const; |
|
1 | 1130 |
virtual const TypeInstPtr *xmeet_unloaded( const TypeInstPtr *t ) const; |
1131 |
virtual const Type *xdual() const; // Compute dual right now. |
|
1132 |
||
1133 |
// Convenience common pre-built types. |
|
1134 |
static const TypeInstPtr *NOTNULL; |
|
1135 |
static const TypeInstPtr *BOTTOM; |
|
1136 |
static const TypeInstPtr *MIRROR; |
|
1137 |
static const TypeInstPtr *MARK; |
|
1138 |
static const TypeInstPtr *KLASS; |
|
1139 |
#ifndef PRODUCT |
|
1140 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping |
|
1141 |
#endif |
|
1142 |
}; |
|
1143 |
||
1144 |
//------------------------------TypeAryPtr------------------------------------- |
|
1145 |
// Class of Java array pointers |
|
1146 |
class TypeAryPtr : public TypeOopPtr { |
|
17383 | 1147 |
TypeAryPtr( PTR ptr, ciObject* o, const TypeAry *ary, ciKlass* k, bool xk, |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1148 |
int offset, int instance_id, bool is_autobox_cache, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1149 |
const TypePtr* speculative, int inline_depth) |
22928
b2bb101a9ae3
8031754: Type speculation should favor profile data from outermost inlined method
roland
parents:
22911
diff
changeset
|
1150 |
: TypeOopPtr(AryPtr,ptr,k,xk,o,offset, instance_id, speculative, inline_depth), |
17383 | 1151 |
_ary(ary), |
1152 |
_is_autobox_cache(is_autobox_cache) |
|
1153 |
{ |
|
6431 | 1154 |
#ifdef ASSERT |
1155 |
if (k != NULL) { |
|
1156 |
// Verify that specified klass and TypeAryPtr::klass() follow the same rules. |
|
1157 |
ciKlass* ck = compute_klass(true); |
|
6462 | 1158 |
if (k != ck) { |
6431 | 1159 |
this->dump(); tty->cr(); |
1160 |
tty->print(" k: "); |
|
1161 |
k->print(); tty->cr(); |
|
1162 |
tty->print("ck: "); |
|
1163 |
if (ck != NULL) ck->print(); |
|
1164 |
else tty->print("<NULL>"); |
|
1165 |
tty->cr(); |
|
1166 |
assert(false, "unexpected TypeAryPtr::_klass"); |
|
1167 |
} |
|
1168 |
} |
|
1169 |
#endif |
|
1170 |
} |
|
1 | 1171 |
virtual bool eq( const Type *t ) const; |
1172 |
virtual int hash() const; // Type specific hashing |
|
1173 |
const TypeAry *_ary; // Array we point into |
|
17383 | 1174 |
const bool _is_autobox_cache; |
1 | 1175 |
|
6431 | 1176 |
ciKlass* compute_klass(DEBUG_ONLY(bool verify = false)) const; |
1177 |
||
1 | 1178 |
public: |
1179 |
// Accessors |
|
1180 |
ciKlass* klass() const; |
|
1181 |
const TypeAry* ary() const { return _ary; } |
|
1182 |
const Type* elem() const { return _ary->_elem; } |
|
1183 |
const TypeInt* size() const { return _ary->_size; } |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
1184 |
bool is_stable() const { return _ary->_stable; } |
1 | 1185 |
|
17383 | 1186 |
bool is_autobox_cache() const { return _is_autobox_cache; } |
1187 |
||
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1188 |
static const TypeAryPtr *make(PTR ptr, const TypeAry *ary, ciKlass* k, bool xk, int offset, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1189 |
int instance_id = InstanceBot, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1190 |
const TypePtr* speculative = NULL, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1191 |
int inline_depth = InlineDepthBottom); |
1 | 1192 |
// Constant pointer to array |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1193 |
static const TypeAryPtr *make(PTR ptr, ciObject* o, const TypeAry *ary, ciKlass* k, bool xk, int offset, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1194 |
int instance_id = InstanceBot, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1195 |
const TypePtr* speculative = NULL, |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1196 |
int inline_depth = InlineDepthBottom, bool is_autobox_cache = false); |
1 | 1197 |
|
1198 |
// Return a 'ptr' version of this type |
|
1199 |
virtual const Type *cast_to_ptr_type(PTR ptr) const; |
|
1200 |
||
1201 |
virtual const Type *cast_to_exactness(bool klass_is_exact) const; |
|
1202 |
||
769 | 1203 |
virtual const TypeOopPtr *cast_to_instance_id(int instance_id) const; |
1 | 1204 |
|
52925
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1205 |
virtual const TypeOopPtr *cast_to_nonconst() const; |
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1206 |
|
1 | 1207 |
virtual const TypeAryPtr* cast_to_size(const TypeInt* size) const; |
1398
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1068
diff
changeset
|
1208 |
virtual const TypeInt* narrow_size_type(const TypeInt* size) const; |
1 | 1209 |
|
1210 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
1068
720698d9c89b
6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
781
diff
changeset
|
1211 |
virtual const TypePtr *add_offset( intptr_t offset ) const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1212 |
|
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1213 |
// Speculative type helper methods. |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1214 |
virtual const Type* remove_speculative() const; |
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1215 |
virtual const TypePtr* with_inline_depth(int depth) const; |
53623 | 1216 |
virtual const TypePtr* with_instance_id(int instance_id) const; |
1 | 1217 |
|
21099 | 1218 |
// the core of the computation of the meet of 2 types |
1219 |
virtual const Type *xmeet_helper(const Type *t) const; |
|
1 | 1220 |
virtual const Type *xdual() const; // Compute dual right now. |
1221 |
||
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
1222 |
const TypeAryPtr* cast_to_stable(bool stable, int stable_dimension = 1) const; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
1223 |
int stable_dimension() const; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19696
diff
changeset
|
1224 |
|
31857
adbf29d9ca43
8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents:
30624
diff
changeset
|
1225 |
const TypeAryPtr* cast_to_autobox_cache(bool cache) const; |
adbf29d9ca43
8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents:
30624
diff
changeset
|
1226 |
|
1 | 1227 |
// Convenience common pre-built types. |
1228 |
static const TypeAryPtr *RANGE; |
|
1229 |
static const TypeAryPtr *OOPS; |
|
589 | 1230 |
static const TypeAryPtr *NARROWOOPS; |
1 | 1231 |
static const TypeAryPtr *BYTES; |
1232 |
static const TypeAryPtr *SHORTS; |
|
1233 |
static const TypeAryPtr *CHARS; |
|
1234 |
static const TypeAryPtr *INTS; |
|
1235 |
static const TypeAryPtr *LONGS; |
|
1236 |
static const TypeAryPtr *FLOATS; |
|
1237 |
static const TypeAryPtr *DOUBLES; |
|
1238 |
// selects one of the above: |
|
1239 |
static const TypeAryPtr *get_array_body_type(BasicType elem) { |
|
1240 |
assert((uint)elem <= T_CONFLICT && _array_body_type[elem] != NULL, "bad elem type"); |
|
1241 |
return _array_body_type[elem]; |
|
1242 |
} |
|
1243 |
static const TypeAryPtr *_array_body_type[T_CONFLICT+1]; |
|
1244 |
// sharpen the type of an int which is used as an array size |
|
3173
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
1245 |
#ifdef ASSERT |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
1246 |
// One type is interface, the other is oop |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
1247 |
virtual bool interface_vs_oop(const Type *t) const; |
c15503e54406
6837094: False positive for "meet not symmetric" failure
kvn
parents:
2154
diff
changeset
|
1248 |
#endif |
1 | 1249 |
#ifndef PRODUCT |
1250 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping |
|
1251 |
#endif |
|
1252 |
}; |
|
1253 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1254 |
//------------------------------TypeMetadataPtr------------------------------------- |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1255 |
// Some kind of metadata, either Method*, MethodData* or CPCacheOop |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1256 |
class TypeMetadataPtr : public TypePtr { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1257 |
protected: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1258 |
TypeMetadataPtr(PTR ptr, ciMetadata* metadata, int offset); |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1259 |
// Do not allow interface-vs.-noninterface joins to collapse to top. |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1260 |
virtual const Type *filter_helper(const Type *kills, bool include_speculative) const; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1261 |
public: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1262 |
virtual bool eq( const Type *t ) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1263 |
virtual int hash() const; // Type specific hashing |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1264 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1265 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1266 |
private: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1267 |
ciMetadata* _metadata; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1268 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1269 |
public: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1270 |
static const TypeMetadataPtr* make(PTR ptr, ciMetadata* m, int offset); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1271 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1272 |
static const TypeMetadataPtr* make(ciMethod* m); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1273 |
static const TypeMetadataPtr* make(ciMethodData* m); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1274 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1275 |
ciMetadata* metadata() const { return _metadata; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1276 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1277 |
virtual const Type *cast_to_ptr_type(PTR ptr) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1278 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1279 |
virtual const TypePtr *add_offset( intptr_t offset ) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1280 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1281 |
virtual const Type *xmeet( const Type *t ) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1282 |
virtual const Type *xdual() const; // Compute dual right now. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1283 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1284 |
virtual intptr_t get_con() const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1285 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1286 |
// Convenience common pre-built types. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1287 |
static const TypeMetadataPtr *BOTTOM; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1288 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1289 |
#ifndef PRODUCT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1290 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1291 |
#endif |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1292 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1293 |
|
1 | 1294 |
//------------------------------TypeKlassPtr----------------------------------- |
1295 |
// Class of Java Klass pointers |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1296 |
class TypeKlassPtr : public TypePtr { |
1 | 1297 |
TypeKlassPtr( PTR ptr, ciKlass* klass, int offset ); |
1298 |
||
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1299 |
protected: |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1300 |
virtual const Type *filter_helper(const Type *kills, bool include_speculative) const; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1301 |
public: |
1 | 1302 |
virtual bool eq( const Type *t ) const; |
1303 |
virtual int hash() const; // Type specific hashing |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1304 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1305 |
private: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1306 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1307 |
static const TypeKlassPtr* make_from_klass_common(ciKlass* klass, bool klass_change, bool try_for_exact); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1308 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1309 |
ciKlass* _klass; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1310 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1311 |
// Does the type exclude subclasses of the klass? (Inexact == polymorphic.) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1312 |
bool _klass_is_exact; |
1 | 1313 |
|
1314 |
public: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1315 |
ciSymbol* name() const { return klass()->name(); } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1316 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1317 |
ciKlass* klass() const { return _klass; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1318 |
bool klass_is_exact() const { return _klass_is_exact; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1319 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1320 |
bool is_loaded() const { return klass()->is_loaded(); } |
1 | 1321 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1322 |
// Creates a type given a klass. Correctly handles multi-dimensional arrays |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1323 |
// Respects UseUniqueSubclasses. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1324 |
// If the klass is final, the resulting type will be exact. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1325 |
static const TypeKlassPtr* make_from_klass(ciKlass* klass) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1326 |
return make_from_klass_common(klass, true, false); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1327 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1328 |
// Same as before, but will produce an exact type, even if |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1329 |
// the klass is not final, as long as it has exactly one implementation. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1330 |
static const TypeKlassPtr* make_from_klass_unique(ciKlass* klass) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1331 |
return make_from_klass_common(klass, true, true); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1332 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1333 |
// Same as before, but does not respects UseUniqueSubclasses. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1334 |
// Use this only for creating array element types. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1335 |
static const TypeKlassPtr* make_from_klass_raw(ciKlass* klass) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1336 |
return make_from_klass_common(klass, false, false); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1337 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1338 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1339 |
// Make a generic (unclassed) pointer to metadata. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1340 |
static const TypeKlassPtr* make(PTR ptr, int offset); |
2019 | 1341 |
|
1 | 1342 |
// ptr to klass 'k' |
1343 |
static const TypeKlassPtr *make( ciKlass* k ) { return make( TypePtr::Constant, k, 0); } |
|
1344 |
// ptr to klass 'k' with offset |
|
1345 |
static const TypeKlassPtr *make( ciKlass* k, int offset ) { return make( TypePtr::Constant, k, offset); } |
|
1346 |
// ptr to klass 'k' or sub-klass |
|
1347 |
static const TypeKlassPtr *make( PTR ptr, ciKlass* k, int offset); |
|
1348 |
||
1349 |
virtual const Type *cast_to_ptr_type(PTR ptr) const; |
|
1350 |
||
1351 |
virtual const Type *cast_to_exactness(bool klass_is_exact) const; |
|
1352 |
||
1353 |
// corresponding pointer to instance, for a given class |
|
1354 |
const TypeOopPtr* as_instance_type() const; |
|
1355 |
||
1068
720698d9c89b
6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents:
781
diff
changeset
|
1356 |
virtual const TypePtr *add_offset( intptr_t offset ) const; |
1 | 1357 |
virtual const Type *xmeet( const Type *t ) const; |
1358 |
virtual const Type *xdual() const; // Compute dual right now. |
|
1359 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1360 |
virtual intptr_t get_con() const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1361 |
|
1 | 1362 |
// Convenience common pre-built types. |
1363 |
static const TypeKlassPtr* OBJECT; // Not-null object klass or below |
|
1364 |
static const TypeKlassPtr* OBJECT_OR_NULL; // Maybe-null version of same |
|
1365 |
#ifndef PRODUCT |
|
1366 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping |
|
1367 |
#endif |
|
1368 |
}; |
|
1369 |
||
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1370 |
class TypeNarrowPtr : public Type { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1371 |
protected: |
3180
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
1372 |
const TypePtr* _ptrtype; // Could be TypePtr::NULL_PTR |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1373 |
|
51333
f6641fcf7b7e
8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents:
47216
diff
changeset
|
1374 |
TypeNarrowPtr(TYPES t, const TypePtr* ptrtype): Type(t), |
f6641fcf7b7e
8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents:
47216
diff
changeset
|
1375 |
_ptrtype(ptrtype) { |
3180
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
1376 |
assert(ptrtype->offset() == 0 || |
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
1377 |
ptrtype->offset() == OffsetBot || |
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
1378 |
ptrtype->offset() == OffsetTop, "no real offsets"); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1379 |
} |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1380 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1381 |
virtual const TypeNarrowPtr *isa_same_narrowptr(const Type *t) const = 0; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1382 |
virtual const TypeNarrowPtr *is_same_narrowptr(const Type *t) const = 0; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1383 |
virtual const TypeNarrowPtr *make_same_narrowptr(const TypePtr *t) const = 0; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1384 |
virtual const TypeNarrowPtr *make_hash_same_narrowptr(const TypePtr *t) const = 0; |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1385 |
// Do not allow interface-vs.-noninterface joins to collapse to top. |
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1386 |
virtual const Type *filter_helper(const Type *kills, bool include_speculative) const; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1387 |
public: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1388 |
virtual bool eq( const Type *t ) const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1389 |
virtual int hash() const; // Type specific hashing |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1390 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1391 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1392 |
virtual const Type *xmeet( const Type *t ) const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1393 |
virtual const Type *xdual() const; // Compute dual right now. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1394 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1395 |
virtual intptr_t get_con() const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1396 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1397 |
virtual bool empty(void) const; // TRUE if type is vacuous |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1398 |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1399 |
// returns the equivalent ptr type for this compressed pointer |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1400 |
const TypePtr *get_ptrtype() const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1401 |
return _ptrtype; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1402 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1403 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1404 |
#ifndef PRODUCT |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1405 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1406 |
#endif |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1407 |
}; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1408 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1409 |
//------------------------------TypeNarrowOop---------------------------------- |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1410 |
// A compressed reference to some kind of Oop. This type wraps around |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1411 |
// a preexisting TypeOopPtr and forwards most of it's operations to |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1412 |
// the underlying type. It's only real purpose is to track the |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1413 |
// oopness of the compressed oop value when we expose the conversion |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1414 |
// between the normal and the compressed form. |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1415 |
class TypeNarrowOop : public TypeNarrowPtr { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1416 |
protected: |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1417 |
TypeNarrowOop( const TypePtr* ptrtype): TypeNarrowPtr(NarrowOop, ptrtype) { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1418 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1419 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1420 |
virtual const TypeNarrowPtr *isa_same_narrowptr(const Type *t) const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1421 |
return t->isa_narrowoop(); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1422 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1423 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1424 |
virtual const TypeNarrowPtr *is_same_narrowptr(const Type *t) const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1425 |
return t->is_narrowoop(); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1426 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1427 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1428 |
virtual const TypeNarrowPtr *make_same_narrowptr(const TypePtr *t) const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1429 |
return new TypeNarrowOop(t); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1430 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1431 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1432 |
virtual const TypeNarrowPtr *make_hash_same_narrowptr(const TypePtr *t) const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1433 |
return (const TypeNarrowPtr*)((new TypeNarrowOop(t))->hashcons()); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1434 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1435 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1436 |
public: |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1437 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1438 |
static const TypeNarrowOop *make( const TypePtr* type); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1439 |
|
8728
3f1bcd33068e
6962931: move interned strings out of the perm gen
jcoomes
parents:
7397
diff
changeset
|
1440 |
static const TypeNarrowOop* make_from_constant(ciObject* con, bool require_constant = false) { |
3f1bcd33068e
6962931: move interned strings out of the perm gen
jcoomes
parents:
7397
diff
changeset
|
1441 |
return make(TypeOopPtr::make_from_constant(con, require_constant)); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1442 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1443 |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1444 |
static const TypeNarrowOop *BOTTOM; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1445 |
static const TypeNarrowOop *NULL_PTR; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1446 |
|
23525
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1447 |
virtual const Type* remove_speculative() const; |
e3eb08ead679
8031755: Type speculation should be used to optimize explicit null checks
roland
parents:
23495
diff
changeset
|
1448 |
virtual const Type* cleanup_speculative() const; |
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
21202
diff
changeset
|
1449 |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1450 |
#ifndef PRODUCT |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1451 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1452 |
#endif |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1453 |
}; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1454 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1455 |
//------------------------------TypeNarrowKlass---------------------------------- |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1456 |
// A compressed reference to klass pointer. This type wraps around a |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1457 |
// preexisting TypeKlassPtr and forwards most of it's operations to |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1458 |
// the underlying type. |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1459 |
class TypeNarrowKlass : public TypeNarrowPtr { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1460 |
protected: |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1461 |
TypeNarrowKlass( const TypePtr* ptrtype): TypeNarrowPtr(NarrowKlass, ptrtype) { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1462 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1463 |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1464 |
virtual const TypeNarrowPtr *isa_same_narrowptr(const Type *t) const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1465 |
return t->isa_narrowklass(); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1466 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1467 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1468 |
virtual const TypeNarrowPtr *is_same_narrowptr(const Type *t) const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1469 |
return t->is_narrowklass(); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1470 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1471 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1472 |
virtual const TypeNarrowPtr *make_same_narrowptr(const TypePtr *t) const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1473 |
return new TypeNarrowKlass(t); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1474 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1475 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1476 |
virtual const TypeNarrowPtr *make_hash_same_narrowptr(const TypePtr *t) const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1477 |
return (const TypeNarrowPtr*)((new TypeNarrowKlass(t))->hashcons()); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1478 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1479 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1480 |
public: |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1481 |
static const TypeNarrowKlass *make( const TypePtr* type); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1482 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1483 |
// static const TypeNarrowKlass *BOTTOM; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1484 |
static const TypeNarrowKlass *NULL_PTR; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1485 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1486 |
#ifndef PRODUCT |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1487 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1488 |
#endif |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1489 |
}; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1490 |
|
1 | 1491 |
//------------------------------TypeFunc--------------------------------------- |
1492 |
// Class of Array Types |
|
1493 |
class TypeFunc : public Type { |
|
1494 |
TypeFunc( const TypeTuple *domain, const TypeTuple *range ) : Type(Function), _domain(domain), _range(range) {} |
|
1495 |
virtual bool eq( const Type *t ) const; |
|
1496 |
virtual int hash() const; // Type specific hashing |
|
1497 |
virtual bool singleton(void) const; // TRUE if type is a singleton |
|
1498 |
virtual bool empty(void) const; // TRUE if type is vacuous |
|
25911 | 1499 |
|
1500 |
const TypeTuple* const _domain; // Domain of inputs |
|
1501 |
const TypeTuple* const _range; // Range of results |
|
1502 |
||
1 | 1503 |
public: |
1504 |
// Constants are shared among ADLC and VM |
|
1505 |
enum { Control = AdlcVMDeps::Control, |
|
1506 |
I_O = AdlcVMDeps::I_O, |
|
1507 |
Memory = AdlcVMDeps::Memory, |
|
1508 |
FramePtr = AdlcVMDeps::FramePtr, |
|
1509 |
ReturnAdr = AdlcVMDeps::ReturnAdr, |
|
1510 |
Parms = AdlcVMDeps::Parms |
|
1511 |
}; |
|
1512 |
||
1513 |
||
1514 |
// Accessors: |
|
1515 |
const TypeTuple* domain() const { return _domain; } |
|
1516 |
const TypeTuple* range() const { return _range; } |
|
1517 |
||
1518 |
static const TypeFunc *make(ciMethod* method); |
|
1519 |
static const TypeFunc *make(ciSignature signature, const Type* extra); |
|
1520 |
static const TypeFunc *make(const TypeTuple* domain, const TypeTuple* range); |
|
1521 |
||
1522 |
virtual const Type *xmeet( const Type *t ) const; |
|
1523 |
virtual const Type *xdual() const; // Compute dual right now. |
|
1524 |
||
1525 |
BasicType return_type() const; |
|
1526 |
||
1527 |
#ifndef PRODUCT |
|
1528 |
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping |
|
1529 |
#endif |
|
1530 |
// Convenience common pre-built types. |
|
1531 |
}; |
|
1532 |
||
1533 |
//------------------------------accessors-------------------------------------- |
|
589 | 1534 |
inline bool Type::is_ptr_to_narrowoop() const { |
1535 |
#ifdef _LP64 |
|
1536 |
return (isa_oopptr() != NULL && is_oopptr()->is_ptr_to_narrowoop_nv()); |
|
1537 |
#else |
|
1538 |
return false; |
|
1539 |
#endif |
|
1540 |
} |
|
1541 |
||
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1542 |
inline bool Type::is_ptr_to_narrowklass() const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1543 |
#ifdef _LP64 |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1544 |
return (isa_oopptr() != NULL && is_oopptr()->is_ptr_to_narrowklass_nv()); |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1545 |
#else |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1546 |
return false; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1547 |
#endif |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1548 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1549 |
|
1 | 1550 |
inline float Type::getf() const { |
1551 |
assert( _base == FloatCon, "Not a FloatCon" ); |
|
1552 |
return ((TypeF*)this)->_f; |
|
1553 |
} |
|
1554 |
||
1555 |
inline double Type::getd() const { |
|
1556 |
assert( _base == DoubleCon, "Not a DoubleCon" ); |
|
1557 |
return ((TypeD*)this)->_d; |
|
1558 |
} |
|
1559 |
||
1560 |
inline const TypeInt *Type::is_int() const { |
|
1561 |
assert( _base == Int, "Not an Int" ); |
|
1562 |
return (TypeInt*)this; |
|
1563 |
} |
|
1564 |
||
1565 |
inline const TypeInt *Type::isa_int() const { |
|
1566 |
return ( _base == Int ? (TypeInt*)this : NULL); |
|
1567 |
} |
|
1568 |
||
1569 |
inline const TypeLong *Type::is_long() const { |
|
1570 |
assert( _base == Long, "Not a Long" ); |
|
1571 |
return (TypeLong*)this; |
|
1572 |
} |
|
1573 |
||
1574 |
inline const TypeLong *Type::isa_long() const { |
|
1575 |
return ( _base == Long ? (TypeLong*)this : NULL); |
|
1576 |
} |
|
1577 |
||
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1578 |
inline const TypeF *Type::isa_float() const { |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1579 |
return ((_base == FloatTop || |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1580 |
_base == FloatCon || |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1581 |
_base == FloatBot) ? (TypeF*)this : NULL); |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1582 |
} |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1583 |
|
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1584 |
inline const TypeF *Type::is_float_constant() const { |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1585 |
assert( _base == FloatCon, "Not a Float" ); |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1586 |
return (TypeF*)this; |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1587 |
} |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1588 |
|
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1589 |
inline const TypeF *Type::isa_float_constant() const { |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1590 |
return ( _base == FloatCon ? (TypeF*)this : NULL); |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1591 |
} |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1592 |
|
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1593 |
inline const TypeD *Type::isa_double() const { |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1594 |
return ((_base == DoubleTop || |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1595 |
_base == DoubleCon || |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1596 |
_base == DoubleBot) ? (TypeD*)this : NULL); |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1597 |
} |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1598 |
|
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1599 |
inline const TypeD *Type::is_double_constant() const { |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1600 |
assert( _base == DoubleCon, "Not a Double" ); |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1601 |
return (TypeD*)this; |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1602 |
} |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1603 |
|
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1604 |
inline const TypeD *Type::isa_double_constant() const { |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1605 |
return ( _base == DoubleCon ? (TypeD*)this : NULL); |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1606 |
} |
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
13969
diff
changeset
|
1607 |
|
1 | 1608 |
inline const TypeTuple *Type::is_tuple() const { |
1609 |
assert( _base == Tuple, "Not a Tuple" ); |
|
1610 |
return (TypeTuple*)this; |
|
1611 |
} |
|
1612 |
||
1613 |
inline const TypeAry *Type::is_ary() const { |
|
1614 |
assert( _base == Array , "Not an Array" ); |
|
1615 |
return (TypeAry*)this; |
|
1616 |
} |
|
1617 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
1618 |
inline const TypeVect *Type::is_vect() const { |
30624 | 1619 |
assert( _base >= VectorS && _base <= VectorZ, "Not a Vector" ); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
1620 |
return (TypeVect*)this; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
1621 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
1622 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
1623 |
inline const TypeVect *Type::isa_vect() const { |
30624 | 1624 |
return (_base >= VectorS && _base <= VectorZ) ? (TypeVect*)this : NULL; |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
1625 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
10547
diff
changeset
|
1626 |
|
1 | 1627 |
inline const TypePtr *Type::is_ptr() const { |
1628 |
// AnyPtr is the first Ptr and KlassPtr the last, with no non-ptrs between. |
|
1629 |
assert(_base >= AnyPtr && _base <= KlassPtr, "Not a pointer"); |
|
1630 |
return (TypePtr*)this; |
|
1631 |
} |
|
1632 |
||
1633 |
inline const TypePtr *Type::isa_ptr() const { |
|
1634 |
// AnyPtr is the first Ptr and KlassPtr the last, with no non-ptrs between. |
|
1635 |
return (_base >= AnyPtr && _base <= KlassPtr) ? (TypePtr*)this : NULL; |
|
1636 |
} |
|
1637 |
||
1638 |
inline const TypeOopPtr *Type::is_oopptr() const { |
|
1639 |
// OopPtr is the first and KlassPtr the last, with no non-oops between. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1640 |
assert(_base >= OopPtr && _base <= AryPtr, "Not a Java pointer" ) ; |
1 | 1641 |
return (TypeOopPtr*)this; |
1642 |
} |
|
1643 |
||
1644 |
inline const TypeOopPtr *Type::isa_oopptr() const { |
|
1645 |
// OopPtr is the first and KlassPtr the last, with no non-oops between. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1646 |
return (_base >= OopPtr && _base <= AryPtr) ? (TypeOopPtr*)this : NULL; |
1 | 1647 |
} |
1648 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1649 |
inline const TypeRawPtr *Type::isa_rawptr() const { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1650 |
return (_base == RawPtr) ? (TypeRawPtr*)this : NULL; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1651 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1652 |
|
1 | 1653 |
inline const TypeRawPtr *Type::is_rawptr() const { |
1654 |
assert( _base == RawPtr, "Not a raw pointer" ); |
|
1655 |
return (TypeRawPtr*)this; |
|
1656 |
} |
|
1657 |
||
1658 |
inline const TypeInstPtr *Type::isa_instptr() const { |
|
1659 |
return (_base == InstPtr) ? (TypeInstPtr*)this : NULL; |
|
1660 |
} |
|
1661 |
||
1662 |
inline const TypeInstPtr *Type::is_instptr() const { |
|
1663 |
assert( _base == InstPtr, "Not an object pointer" ); |
|
1664 |
return (TypeInstPtr*)this; |
|
1665 |
} |
|
1666 |
||
1667 |
inline const TypeAryPtr *Type::isa_aryptr() const { |
|
1668 |
return (_base == AryPtr) ? (TypeAryPtr*)this : NULL; |
|
1669 |
} |
|
1670 |
||
1671 |
inline const TypeAryPtr *Type::is_aryptr() const { |
|
1672 |
assert( _base == AryPtr, "Not an array pointer" ); |
|
1673 |
return (TypeAryPtr*)this; |
|
1674 |
} |
|
1675 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1676 |
inline const TypeNarrowOop *Type::is_narrowoop() const { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1677 |
// OopPtr is the first and KlassPtr the last, with no non-oops between. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1678 |
assert(_base == NarrowOop, "Not a narrow oop" ) ; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1679 |
return (TypeNarrowOop*)this; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1680 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1681 |
|
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1682 |
inline const TypeNarrowOop *Type::isa_narrowoop() const { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1683 |
// OopPtr is the first and KlassPtr the last, with no non-oops between. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1684 |
return (_base == NarrowOop) ? (TypeNarrowOop*)this : NULL; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1685 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
237
diff
changeset
|
1686 |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1687 |
inline const TypeNarrowKlass *Type::is_narrowklass() const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1688 |
assert(_base == NarrowKlass, "Not a narrow oop" ) ; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1689 |
return (TypeNarrowKlass*)this; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1690 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1691 |
|
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1692 |
inline const TypeNarrowKlass *Type::isa_narrowklass() const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1693 |
return (_base == NarrowKlass) ? (TypeNarrowKlass*)this : NULL; |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1694 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1695 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1696 |
inline const TypeMetadataPtr *Type::is_metadataptr() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1697 |
// MetadataPtr is the first and CPCachePtr the last |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1698 |
assert(_base == MetadataPtr, "Not a metadata pointer" ) ; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1699 |
return (TypeMetadataPtr*)this; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1700 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1701 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1702 |
inline const TypeMetadataPtr *Type::isa_metadataptr() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1703 |
return (_base == MetadataPtr) ? (TypeMetadataPtr*)this : NULL; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1704 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13104
diff
changeset
|
1705 |
|
1 | 1706 |
inline const TypeKlassPtr *Type::isa_klassptr() const { |
1707 |
return (_base == KlassPtr) ? (TypeKlassPtr*)this : NULL; |
|
1708 |
} |
|
1709 |
||
1710 |
inline const TypeKlassPtr *Type::is_klassptr() const { |
|
1711 |
assert( _base == KlassPtr, "Not a klass pointer" ); |
|
1712 |
return (TypeKlassPtr*)this; |
|
1713 |
} |
|
1714 |
||
767
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
1715 |
inline const TypePtr* Type::make_ptr() const { |
3180
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
1716 |
return (_base == NarrowOop) ? is_narrowoop()->get_ptrtype() : |
31857
adbf29d9ca43
8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents:
30624
diff
changeset
|
1717 |
((_base == NarrowKlass) ? is_narrowklass()->get_ptrtype() : |
adbf29d9ca43
8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents:
30624
diff
changeset
|
1718 |
isa_ptr()); |
767
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
1719 |
} |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
1720 |
|
3180
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
1721 |
inline const TypeOopPtr* Type::make_oopptr() const { |
31857
adbf29d9ca43
8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents:
30624
diff
changeset
|
1722 |
return (_base == NarrowOop) ? is_narrowoop()->get_ptrtype()->isa_oopptr() : isa_oopptr(); |
3180
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
1723 |
} |
c589129153a4
6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents:
3173
diff
changeset
|
1724 |
|
767
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
1725 |
inline const TypeNarrowOop* Type::make_narrowoop() const { |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
1726 |
return (_base == NarrowOop) ? is_narrowoop() : |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
1727 |
(isa_ptr() ? TypeNarrowOop::make(is_ptr()) : NULL); |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
1728 |
} |
64fb1fd7186d
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents:
589
diff
changeset
|
1729 |
|
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1730 |
inline const TypeNarrowKlass* Type::make_narrowklass() const { |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1731 |
return (_base == NarrowKlass) ? is_narrowklass() : |
31857
adbf29d9ca43
8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents:
30624
diff
changeset
|
1732 |
(isa_ptr() ? TypeNarrowKlass::make(is_ptr()) : NULL); |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1733 |
} |
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
1734 |
|
1 | 1735 |
inline bool Type::is_floatingpoint() const { |
1736 |
if( (_base == FloatCon) || (_base == FloatBot) || |
|
1737 |
(_base == DoubleCon) || (_base == DoubleBot) ) |
|
1738 |
return true; |
|
1739 |
return false; |
|
1740 |
} |
|
1741 |
||
17383 | 1742 |
inline bool Type::is_ptr_to_boxing_obj() const { |
1743 |
const TypeInstPtr* tp = isa_instptr(); |
|
1744 |
return (tp != NULL) && (tp->offset() == 0) && |
|
1745 |
tp->klass()->is_instance_klass() && |
|
1746 |
tp->klass()->as_instance_klass()->is_box_klass(); |
|
1747 |
} |
|
1748 |
||
1 | 1749 |
|
1750 |
// =============================================================== |
|
1751 |
// Things that need to be 64-bits in the 64-bit build but |
|
1752 |
// 32-bits in the 32-bit build. Done this way to get full |
|
1753 |
// optimization AND strong typing. |
|
1754 |
#ifdef _LP64 |
|
1755 |
||
1756 |
// For type queries and asserts |
|
1757 |
#define is_intptr_t is_long |
|
1758 |
#define isa_intptr_t isa_long |
|
1759 |
#define find_intptr_t_type find_long_type |
|
1760 |
#define find_intptr_t_con find_long_con |
|
1761 |
#define TypeX TypeLong |
|
1762 |
#define Type_X Type::Long |
|
1763 |
#define TypeX_X TypeLong::LONG |
|
1764 |
#define TypeX_ZERO TypeLong::ZERO |
|
1765 |
// For 'ideal_reg' machine registers |
|
1766 |
#define Op_RegX Op_RegL |
|
1767 |
// For phase->intcon variants |
|
1768 |
#define MakeConX longcon |
|
1769 |
#define ConXNode ConLNode |
|
1770 |
// For array index arithmetic |
|
1771 |
#define MulXNode MulLNode |
|
1772 |
#define AndXNode AndLNode |
|
1773 |
#define OrXNode OrLNode |
|
1774 |
#define CmpXNode CmpLNode |
|
1775 |
#define SubXNode SubLNode |
|
1776 |
#define LShiftXNode LShiftLNode |
|
1777 |
// For object size computation: |
|
1778 |
#define AddXNode AddLNode |
|
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1779 |
#define RShiftXNode RShiftLNode |
1 | 1780 |
// For card marks and hashcodes |
1781 |
#define URShiftXNode URShiftLNode |
|
1500
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
1782 |
// UseOptoBiasInlining |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
1783 |
#define XorXNode XorLNode |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
1784 |
#define StoreXConditionalNode StoreLConditionalNode |
52925
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1785 |
#define LoadXNode LoadLNode |
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1786 |
#define StoreXNode StoreLNode |
1 | 1787 |
// Opcodes |
1788 |
#define Op_LShiftX Op_LShiftL |
|
1789 |
#define Op_AndX Op_AndL |
|
1790 |
#define Op_AddX Op_AddL |
|
1791 |
#define Op_SubX Op_SubL |
|
3268
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
3180
diff
changeset
|
1792 |
#define Op_XorX Op_XorL |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
3180
diff
changeset
|
1793 |
#define Op_URShiftX Op_URShiftL |
1 | 1794 |
// conversions |
1795 |
#define ConvI2X(x) ConvI2L(x) |
|
1796 |
#define ConvL2X(x) (x) |
|
1797 |
#define ConvX2I(x) ConvL2I(x) |
|
1798 |
#define ConvX2L(x) (x) |
|
23495
f222fac90da2
6653795: C2 intrinsic for Unsafe.getAddress performs pointer sign extension on 32-bit systems
poonam
parents:
22928
diff
changeset
|
1799 |
#define ConvX2UL(x) (x) |
1 | 1800 |
|
1801 |
#else |
|
1802 |
||
1803 |
// For type queries and asserts |
|
1804 |
#define is_intptr_t is_int |
|
1805 |
#define isa_intptr_t isa_int |
|
1806 |
#define find_intptr_t_type find_int_type |
|
1807 |
#define find_intptr_t_con find_int_con |
|
1808 |
#define TypeX TypeInt |
|
1809 |
#define Type_X Type::Int |
|
1810 |
#define TypeX_X TypeInt::INT |
|
1811 |
#define TypeX_ZERO TypeInt::ZERO |
|
1812 |
// For 'ideal_reg' machine registers |
|
1813 |
#define Op_RegX Op_RegI |
|
1814 |
// For phase->intcon variants |
|
1815 |
#define MakeConX intcon |
|
1816 |
#define ConXNode ConINode |
|
1817 |
// For array index arithmetic |
|
1818 |
#define MulXNode MulINode |
|
1819 |
#define AndXNode AndINode |
|
1820 |
#define OrXNode OrINode |
|
1821 |
#define CmpXNode CmpINode |
|
1822 |
#define SubXNode SubINode |
|
1823 |
#define LShiftXNode LShiftINode |
|
1824 |
// For object size computation: |
|
1825 |
#define AddXNode AddINode |
|
190
e9a0a9dcd4f6
6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents:
1
diff
changeset
|
1826 |
#define RShiftXNode RShiftINode |
1 | 1827 |
// For card marks and hashcodes |
1828 |
#define URShiftXNode URShiftINode |
|
1500
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
1829 |
// UseOptoBiasInlining |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
1830 |
#define XorXNode XorINode |
bea9a90f3e8f
6462850: generate biased locking code in C2 ideal graph
kvn
parents:
1398
diff
changeset
|
1831 |
#define StoreXConditionalNode StoreIConditionalNode |
52925
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1832 |
#define LoadXNode LoadINode |
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
51333
diff
changeset
|
1833 |
#define StoreXNode StoreINode |
1 | 1834 |
// Opcodes |
1835 |
#define Op_LShiftX Op_LShiftI |
|
1836 |
#define Op_AndX Op_AndI |
|
1837 |
#define Op_AddX Op_AddI |
|
1838 |
#define Op_SubX Op_SubI |
|
3268
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
3180
diff
changeset
|
1839 |
#define Op_XorX Op_XorI |
f034e0c86895
6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents:
3180
diff
changeset
|
1840 |
#define Op_URShiftX Op_URShiftI |
1 | 1841 |
// conversions |
1842 |
#define ConvI2X(x) (x) |
|
1843 |
#define ConvL2X(x) ConvL2I(x) |
|
1844 |
#define ConvX2I(x) (x) |
|
1845 |
#define ConvX2L(x) ConvI2L(x) |
|
23495
f222fac90da2
6653795: C2 intrinsic for Unsafe.getAddress performs pointer sign extension on 32-bit systems
poonam
parents:
22928
diff
changeset
|
1846 |
#define ConvX2UL(x) ConvI2UL(x) |
1 | 1847 |
|
1848 |
#endif |
|
7397 | 1849 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53041
diff
changeset
|
1850 |
#endif // SHARE_OPTO_TYPE_HPP |