annotate src/share/vm/opto/type.hpp @ 17810:62c54fcc0a35

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