annotate src/share/vm/opto/connode.hpp @ 39:76256d272075

6667612: (Escape Analysis) disable loop cloning if it has a scalar replaceable allocation Summary: Cloning an allocation will not allow scalar replacement since memory operations could not be associated with one allocation. Reviewed-by: rasbold
author kvn
date Thu, 06 Mar 2008 10:53:33 -0800
parents a61af66fc99e
children ba764ed4b6f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class PhaseTransform;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class MachNode;
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 //------------------------------ConNode----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Simple constants
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class ConNode : public TypeNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
32 ConNode( const Type *t ) : TypeNode(t,1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 init_req(0, (Node*)Compile::current()->root());
a61af66fc99e Initial load
duke
parents:
diff changeset
34 init_flags(Flag_is_Con);
a61af66fc99e Initial load
duke
parents:
diff changeset
35 }
a61af66fc99e Initial load
duke
parents:
diff changeset
36 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 virtual uint hash() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 virtual const RegMask &out_RegMask() const { return RegMask::Empty; }
a61af66fc99e Initial load
duke
parents:
diff changeset
39 virtual const RegMask &in_RegMask(uint) const { return RegMask::Empty; }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Polymorphic factory method:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static ConNode* make( Compile* C, const Type *t );
a61af66fc99e Initial load
duke
parents:
diff changeset
43 };
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 //------------------------------ConINode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // Simple integer constants
a61af66fc99e Initial load
duke
parents:
diff changeset
47 class ConINode : public ConNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
49 ConINode( const TypeInt *t ) : ConNode(t) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
50 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // Factory method:
a61af66fc99e Initial load
duke
parents:
diff changeset
53 static ConINode* make( Compile* C, int con ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 return new (C, 1) ConINode( TypeInt::make(con) );
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 };
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 //------------------------------ConPNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Simple pointer constants
a61af66fc99e Initial load
duke
parents:
diff changeset
61 class ConPNode : public ConNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
63 ConPNode( const TypePtr *t ) : ConNode(t) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
64 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Factory methods:
a61af66fc99e Initial load
duke
parents:
diff changeset
67 static ConPNode* make( Compile *C ,address con ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 if (con == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
69 return new (C, 1) ConPNode( TypePtr::NULL_PTR ) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 else
a61af66fc99e Initial load
duke
parents:
diff changeset
71 return new (C, 1) ConPNode( TypeRawPtr::make(con) );
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static ConPNode* make( Compile *C, ciObject* con ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 return new (C, 1) ConPNode( TypeOopPtr::make_from_constant(con) );
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 };
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 //------------------------------ConLNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Simple long constants
a61af66fc99e Initial load
duke
parents:
diff changeset
83 class ConLNode : public ConNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
85 ConLNode( const TypeLong *t ) : ConNode(t) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
86 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Factory method:
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static ConLNode* make( Compile *C ,jlong con ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 return new (C, 1) ConLNode( TypeLong::make(con) );
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 };
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 //------------------------------ConFNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Simple float constants
a61af66fc99e Initial load
duke
parents:
diff changeset
97 class ConFNode : public ConNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
99 ConFNode( const TypeF *t ) : ConNode(t) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
100 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Factory method:
a61af66fc99e Initial load
duke
parents:
diff changeset
103 static ConFNode* make( Compile *C, float con ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return new (C, 1) ConFNode( TypeF::make(con) );
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 };
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 //------------------------------ConDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // Simple double constants
a61af66fc99e Initial load
duke
parents:
diff changeset
111 class ConDNode : public ConNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
113 ConDNode( const TypeD *t ) : ConNode(t) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
114 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // Factory method:
a61af66fc99e Initial load
duke
parents:
diff changeset
117 static ConDNode* make( Compile *C, double con ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 return new (C, 1) ConDNode( TypeD::make(con) );
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 };
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 //------------------------------BinaryNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Place holder for the 2 conditional inputs to a CMove. CMove needs 4
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // inputs: the Bool (for the lt/gt/eq/ne bits), the flags (result of some
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // compare), and the 2 values to select between. The Matcher requires a
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // binary tree so we break it down like this:
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // (CMove (Binary bol cmp) (Binary src1 src2))
a61af66fc99e Initial load
duke
parents:
diff changeset
129 class BinaryNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
131 BinaryNode( Node *n1, Node *n2 ) : Node(0,n1,n2) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 virtual uint ideal_reg() const { return 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 };
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 //------------------------------CMoveNode--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Conditional move
a61af66fc99e Initial load
duke
parents:
diff changeset
138 class CMoveNode : public TypeNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
140 enum { Control, // When is it safe to do this cmove?
a61af66fc99e Initial load
duke
parents:
diff changeset
141 Condition, // Condition controlling the cmove
a61af66fc99e Initial load
duke
parents:
diff changeset
142 IfFalse, // Value if condition is false
a61af66fc99e Initial load
duke
parents:
diff changeset
143 IfTrue }; // Value if condition is true
a61af66fc99e Initial load
duke
parents:
diff changeset
144 CMoveNode( Node *bol, Node *left, Node *right, const Type *t ) : TypeNode(t,4)
a61af66fc99e Initial load
duke
parents:
diff changeset
145 {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 init_class_id(Class_CMove);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // all inputs are nullified in Node::Node(int)
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // init_req(Control,NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
149 init_req(Condition,bol);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 init_req(IfFalse,left);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 init_req(IfTrue,right);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
156 static CMoveNode *make( Compile *C, Node *c, Node *bol, Node *left, Node *right, const Type *t );
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Helper function to spot cmove graph shapes
a61af66fc99e Initial load
duke
parents:
diff changeset
158 static Node *is_cmove_id( PhaseTransform *phase, Node *cmp, Node *t, Node *f, BoolNode *b );
a61af66fc99e Initial load
duke
parents:
diff changeset
159 };
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 //------------------------------CMoveDNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
162 class CMoveDNode : public CMoveNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
164 CMoveDNode( Node *bol, Node *left, Node *right, const Type* t) : CMoveNode(bol,left,right,t){}
a61af66fc99e Initial load
duke
parents:
diff changeset
165 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 };
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 //------------------------------CMoveFNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
170 class CMoveFNode : public CMoveNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
172 CMoveFNode( Node *bol, Node *left, Node *right, const Type* t ) : CMoveNode(bol,left,right,t) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
173 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 };
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 //------------------------------CMoveINode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
178 class CMoveINode : public CMoveNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
180 CMoveINode( Node *bol, Node *left, Node *right, const TypeInt *ti ) : CMoveNode(bol,left,right,ti){}
a61af66fc99e Initial load
duke
parents:
diff changeset
181 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 };
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 //------------------------------CMoveLNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
186 class CMoveLNode : public CMoveNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
188 CMoveLNode(Node *bol, Node *left, Node *right, const TypeLong *tl ) : CMoveNode(bol,left,right,tl){}
a61af66fc99e Initial load
duke
parents:
diff changeset
189 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
190 };
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 //------------------------------CMovePNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
193 class CMovePNode : public CMoveNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
195 CMovePNode( Node *c, Node *bol, Node *left, Node *right, const TypePtr* t ) : CMoveNode(bol,left,right,t) { init_req(Control,c); }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 };
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 //------------------------------ConstraintCastNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // cast to a different range
a61af66fc99e Initial load
duke
parents:
diff changeset
201 class ConstraintCastNode: public TypeNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
203 ConstraintCastNode (Node *n, const Type *t ): TypeNode(t,2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 init_class_id(Class_ConstraintCast);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 init_req(1, n);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
208 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 virtual uint ideal_reg() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 virtual Node *Ideal_DU_postCCP( PhaseCCP * );
a61af66fc99e Initial load
duke
parents:
diff changeset
213 };
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 //------------------------------CastIINode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // cast integer to integer (different range)
a61af66fc99e Initial load
duke
parents:
diff changeset
217 class CastIINode: public ConstraintCastNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
219 CastIINode (Node *n, const Type *t ): ConstraintCastNode(n,t) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
220 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
222 };
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 //------------------------------CastPPNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // cast pointer to pointer (different type)
a61af66fc99e Initial load
duke
parents:
diff changeset
226 class CastPPNode: public ConstraintCastNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
228 CastPPNode (Node *n, const Type *t ): ConstraintCastNode(n, t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // Only CastPP is safe. CastII can cause optimizer loops.
a61af66fc99e Initial load
duke
parents:
diff changeset
230 init_flags(Flag_is_dead_loop_safe);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
232 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 virtual uint ideal_reg() const { return Op_RegP; }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 virtual Node *Ideal_DU_postCCP( PhaseCCP * );
a61af66fc99e Initial load
duke
parents:
diff changeset
235 };
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 //------------------------------CheckCastPPNode--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // for _checkcast, cast pointer to pointer (different type), without JOIN,
a61af66fc99e Initial load
duke
parents:
diff changeset
239 class CheckCastPPNode: public TypeNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
241 CheckCastPPNode( Node *c, Node *n, const Type *t ) : TypeNode(t,2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 init_class_id(Class_CheckCastPP);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 init_flags(Flag_is_dead_loop_safe);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 init_req(0, c);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 init_req(1, n);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
248 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 virtual uint ideal_reg() const { return Op_RegP; }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // No longer remove CheckCast after CCP as it gives me a place to hang
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // the proper address type - which is required to compute anti-deps.
a61af66fc99e Initial load
duke
parents:
diff changeset
254 //virtual Node *Ideal_DU_postCCP( PhaseCCP * );
a61af66fc99e Initial load
duke
parents:
diff changeset
255 };
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 //------------------------------Conv2BNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // Convert int/pointer to a Boolean. Map zero to zero, all else to 1.
a61af66fc99e Initial load
duke
parents:
diff changeset
259 class Conv2BNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
260 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
261 Conv2BNode( Node *i ) : Node(0,i) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
262 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 virtual const Type *bottom_type() const { return TypeInt::BOOL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
264 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
265 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
267 };
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // The conversions operations are all Alpha sorted. Please keep it that way!
a61af66fc99e Initial load
duke
parents:
diff changeset
270 //------------------------------ConvD2FNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // Convert double to float
a61af66fc99e Initial load
duke
parents:
diff changeset
272 class ConvD2FNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
274 ConvD2FNode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
275 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 virtual const Type *bottom_type() const { return Type::FLOAT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
277 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
279 virtual uint ideal_reg() const { return Op_RegF; }
a61af66fc99e Initial load
duke
parents:
diff changeset
280 };
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 //------------------------------ConvD2INode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // Convert Double to Integer
a61af66fc99e Initial load
duke
parents:
diff changeset
284 class ConvD2INode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
286 ConvD2INode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
287 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 virtual const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
289 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
291 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
292 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
293 };
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 //------------------------------ConvD2LNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // Convert Double to Long
a61af66fc99e Initial load
duke
parents:
diff changeset
297 class ConvD2LNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
299 ConvD2LNode( Node *dbl ) : Node(0,dbl) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
300 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 virtual const Type *bottom_type() const { return TypeLong::LONG; }
a61af66fc99e Initial load
duke
parents:
diff changeset
302 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
304 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 virtual uint ideal_reg() const { return Op_RegL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
306 };
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 //------------------------------ConvF2DNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // Convert Float to a Double.
a61af66fc99e Initial load
duke
parents:
diff changeset
310 class ConvF2DNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
312 ConvF2DNode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
313 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
314 virtual const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
315 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
316 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 };
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 //------------------------------ConvF2INode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // Convert float to integer
a61af66fc99e Initial load
duke
parents:
diff changeset
321 class ConvF2INode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
323 ConvF2INode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
324 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 virtual const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
326 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
328 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
329 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
330 };
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 //------------------------------ConvF2LNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // Convert float to long
a61af66fc99e Initial load
duke
parents:
diff changeset
334 class ConvF2LNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
336 ConvF2LNode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
337 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
338 virtual const Type *bottom_type() const { return TypeLong::LONG; }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
340 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
341 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 virtual uint ideal_reg() const { return Op_RegL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
343 };
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 //------------------------------ConvI2DNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // Convert Integer to Double
a61af66fc99e Initial load
duke
parents:
diff changeset
347 class ConvI2DNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
348 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
349 ConvI2DNode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
350 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 virtual const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
352 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
354 };
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 //------------------------------ConvI2FNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // Convert Integer to Float
a61af66fc99e Initial load
duke
parents:
diff changeset
358 class ConvI2FNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
360 ConvI2FNode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
361 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
362 virtual const Type *bottom_type() const { return Type::FLOAT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
363 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
364 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
365 virtual uint ideal_reg() const { return Op_RegF; }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 };
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 //------------------------------ConvI2LNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // Convert integer to long
a61af66fc99e Initial load
duke
parents:
diff changeset
370 class ConvI2LNode : public TypeNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
372 ConvI2LNode(Node *in1, const TypeLong* t = TypeLong::INT)
a61af66fc99e Initial load
duke
parents:
diff changeset
373 : TypeNode(t, 2)
a61af66fc99e Initial load
duke
parents:
diff changeset
374 { init_req(1, in1); }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
376 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 virtual uint ideal_reg() const { return Op_RegL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
379 };
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 //------------------------------ConvL2DNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // Convert Long to Double
a61af66fc99e Initial load
duke
parents:
diff changeset
383 class ConvL2DNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
385 ConvL2DNode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
386 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
387 virtual const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
388 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
389 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 };
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 //------------------------------ConvL2FNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // Convert Long to Float
a61af66fc99e Initial load
duke
parents:
diff changeset
394 class ConvL2FNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
395 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
396 ConvL2FNode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
397 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
398 virtual const Type *bottom_type() const { return Type::FLOAT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
399 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
400 virtual uint ideal_reg() const { return Op_RegF; }
a61af66fc99e Initial load
duke
parents:
diff changeset
401 };
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 //------------------------------ConvL2INode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
404 // Convert long to integer
a61af66fc99e Initial load
duke
parents:
diff changeset
405 class ConvL2INode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
407 ConvL2INode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
408 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 virtual const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
410 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
411 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
413 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
414 };
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 //------------------------------CastX2PNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // convert a machine-pointer-sized integer to a raw pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
418 class CastX2PNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
419 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
420 CastX2PNode( Node *n ) : Node(NULL, n) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
421 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
422 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
423 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
424 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
425 virtual uint ideal_reg() const { return Op_RegP; }
a61af66fc99e Initial load
duke
parents:
diff changeset
426 virtual const Type *bottom_type() const { return TypeRawPtr::BOTTOM; }
a61af66fc99e Initial load
duke
parents:
diff changeset
427 };
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 //------------------------------CastP2XNode-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // Used in both 32-bit and 64-bit land.
a61af66fc99e Initial load
duke
parents:
diff changeset
431 // Used for card-marks and unsafe pointer math.
a61af66fc99e Initial load
duke
parents:
diff changeset
432 class CastP2XNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
433 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
434 CastP2XNode( Node *ctrl, Node *n ) : Node(ctrl, n) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
435 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
437 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
438 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
439 virtual uint ideal_reg() const { return Op_RegX; }
a61af66fc99e Initial load
duke
parents:
diff changeset
440 virtual const Type *bottom_type() const { return TypeX_X; }
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // Return false to keep node from moving away from an associated card mark.
a61af66fc99e Initial load
duke
parents:
diff changeset
442 virtual bool depends_only_on_test() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
443 };
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 //------------------------------MemMoveNode------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
446 // Memory to memory move. Inserted very late, after allocation.
a61af66fc99e Initial load
duke
parents:
diff changeset
447 class MemMoveNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
448 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
449 MemMoveNode( Node *dst, Node *src ) : Node(0,dst,src) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
450 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
451 };
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 //------------------------------ThreadLocalNode--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // Ideal Node which returns the base of ThreadLocalStorage.
a61af66fc99e Initial load
duke
parents:
diff changeset
455 class ThreadLocalNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
457 ThreadLocalNode( ) : Node((Node*)Compile::current()->root()) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
458 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
459 virtual const Type *bottom_type() const { return TypeRawPtr::BOTTOM;}
a61af66fc99e Initial load
duke
parents:
diff changeset
460 virtual uint ideal_reg() const { return Op_RegP; }
a61af66fc99e Initial load
duke
parents:
diff changeset
461 };
a61af66fc99e Initial load
duke
parents:
diff changeset
462
a61af66fc99e Initial load
duke
parents:
diff changeset
463 //------------------------------LoadReturnPCNode-------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
464 class LoadReturnPCNode: public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
466 LoadReturnPCNode(Node *c) : Node(c) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
467 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
468 virtual uint ideal_reg() const { return Op_RegP; }
a61af66fc99e Initial load
duke
parents:
diff changeset
469 };
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 //-----------------------------RoundFloatNode----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
473 class RoundFloatNode: public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
474 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
475 RoundFloatNode(Node* c, Node *in1): Node(c, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
476 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 virtual const Type *bottom_type() const { return Type::FLOAT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
478 virtual uint ideal_reg() const { return Op_RegF; }
a61af66fc99e Initial load
duke
parents:
diff changeset
479 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
480 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
481 };
a61af66fc99e Initial load
duke
parents:
diff changeset
482
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 //-----------------------------RoundDoubleNode---------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
485 class RoundDoubleNode: public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
486 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
487 RoundDoubleNode(Node* c, Node *in1): Node(c, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
488 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
489 virtual const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
490 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
491 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
492 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
493 };
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 //------------------------------Opaque1Node------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // A node to prevent unwanted optimizations. Allows constant folding.
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // Stops value-numbering, Ideal calls or Identity functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
498 class Opaque1Node : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
499 virtual uint hash() const ; // { return NO_HASH; }
a61af66fc99e Initial load
duke
parents:
diff changeset
500 virtual uint cmp( const Node &n ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
501 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
502 Opaque1Node( Node *n ) : Node(0,n) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // Special version for the pre-loop to hold the original loop limit
a61af66fc99e Initial load
duke
parents:
diff changeset
504 // which is consumed by range check elimination.
a61af66fc99e Initial load
duke
parents:
diff changeset
505 Opaque1Node( Node *n, Node* orig_limit ) : Node(0,n,orig_limit) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
506 Node* original_loop_limit() { return req()==3 ? in(2) : NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
507 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
508 virtual const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
509 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
510 };
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512 //------------------------------Opaque2Node------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // A node to prevent unwanted optimizations. Allows constant folding. Stops
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // value-numbering, most Ideal calls or Identity functions. This Node is
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // specifically designed to prevent the pre-increment value of a loop trip
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // counter from being live out of the bottom of the loop (hence causing the
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // pre- and post-increment values both being live and thus requiring an extra
a61af66fc99e Initial load
duke
parents:
diff changeset
518 // temp register and an extra move). If we "accidentally" optimize through
a61af66fc99e Initial load
duke
parents:
diff changeset
519 // this kind of a Node, we'll get slightly pessimal, but correct, code. Thus
a61af66fc99e Initial load
duke
parents:
diff changeset
520 // it's OK to be slightly sloppy on optimizations here.
a61af66fc99e Initial load
duke
parents:
diff changeset
521 class Opaque2Node : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
522 virtual uint hash() const ; // { return NO_HASH; }
a61af66fc99e Initial load
duke
parents:
diff changeset
523 virtual uint cmp( const Node &n ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
524 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
525 Opaque2Node( Node *n ) : Node(0,n) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
526 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 virtual const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
528 };
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530 //----------------------PartialSubtypeCheckNode--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // The 2nd slow-half of a subtype check. Scan the subklass's 2ndary superklass
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // array for an instance of the superklass. Set a hidden internal cache on a
a61af66fc99e Initial load
duke
parents:
diff changeset
533 // hit (cache is checked with exposed code in gen_subtype_check()). Return
a61af66fc99e Initial load
duke
parents:
diff changeset
534 // not zero for a miss or zero for a hit.
a61af66fc99e Initial load
duke
parents:
diff changeset
535 class PartialSubtypeCheckNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
536 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
537 PartialSubtypeCheckNode(Node* c, Node* sub, Node* super) : Node(c,sub,super) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
538 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
539 virtual const Type *bottom_type() const { return TypeRawPtr::BOTTOM; }
a61af66fc99e Initial load
duke
parents:
diff changeset
540 virtual uint ideal_reg() const { return Op_RegP; }
a61af66fc99e Initial load
duke
parents:
diff changeset
541 };
a61af66fc99e Initial load
duke
parents:
diff changeset
542
a61af66fc99e Initial load
duke
parents:
diff changeset
543 //
a61af66fc99e Initial load
duke
parents:
diff changeset
544 class MoveI2FNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
545 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
546 MoveI2FNode( Node *value ) : Node(0,value) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
547 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
548 virtual const Type *bottom_type() const { return Type::FLOAT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
549 virtual uint ideal_reg() const { return Op_RegF; }
a61af66fc99e Initial load
duke
parents:
diff changeset
550 virtual const Type* Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
551 };
a61af66fc99e Initial load
duke
parents:
diff changeset
552
a61af66fc99e Initial load
duke
parents:
diff changeset
553 class MoveL2DNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
554 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
555 MoveL2DNode( Node *value ) : Node(0,value) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
556 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
557 virtual const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
558 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
559 virtual const Type* Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 };
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 class MoveF2INode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
563 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
564 MoveF2INode( Node *value ) : Node(0,value) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
565 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
566 virtual const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
567 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
568 virtual const Type* Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
569 };
a61af66fc99e Initial load
duke
parents:
diff changeset
570
a61af66fc99e Initial load
duke
parents:
diff changeset
571 class MoveD2LNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
572 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
573 MoveD2LNode( Node *value ) : Node(0,value) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
574 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
575 virtual const Type *bottom_type() const { return TypeLong::LONG; }
a61af66fc99e Initial load
duke
parents:
diff changeset
576 virtual uint ideal_reg() const { return Op_RegL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
577 virtual const Type* Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
578 };