annotate src/share/vm/opto/subnode.hpp @ 4710:41406797186b

7113012: G1: rename not-fully-young GCs as "mixed" Summary: Renamed partially-young GCs as mixed and fully-young GCs as young. Change all external output that includes those terms (GC log and GC ergo log) as well as any comments, fields, methods, etc. The changeset also includes very minor code tidying up (added some curly brackets). Reviewed-by: johnc, brutisso
author tonyp
date Fri, 16 Dec 2011 02:14:27 -0500
parents f1d6640088a1
children ae9241bbce4a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1396
diff changeset
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1396
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1396
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: 1396
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_OPTO_SUBNODE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_OPTO_SUBNODE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "opto/node.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "opto/opcodes.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "opto/type.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
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 //------------------------------SUBNode----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // Class SUBTRACTION functionality. This covers all the usual 'subtract'
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // behaviors. Subtract-integer, -float, -double, binary xor, compare-integer,
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // -float, and -double are all inherited from this class. The compare
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // functions behave like subtract functions, except that all negative answers
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // are compressed into -1, and all positive answers compressed to 1.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class SubNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 SubNode( Node *in1, Node *in2 ) : Node(0,in1,in2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 init_class_id(Class_Sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // Handle algebraic identities here. If we have an identity, return the Node
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // we are equivalent to. We look for "add of zero" as an identity.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Compute a new Type for this node. Basically we just do the pre-check,
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // then call the virtual add() to set the type.
a61af66fc99e Initial load
duke
parents:
diff changeset
52 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // Supplied function returns the subtractend of the inputs.
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // This also type-checks the inputs for sanity. Guaranteed never to
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // be passed a TOP or BOTTOM type, these are filtered out by a pre-check.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 virtual const Type *sub( const Type *, const Type * ) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Supplied function to return the additive identity type.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // This is returned whenever the subtracts inputs are the same.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 virtual const Type *add_id() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 };
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // NOTE: SubINode should be taken away and replaced by add and negate
a61af66fc99e Initial load
duke
parents:
diff changeset
67 //------------------------------SubINode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Subtract 2 integers
a61af66fc99e Initial load
duke
parents:
diff changeset
69 class SubINode : public SubNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
71 SubINode( Node *in1, Node *in2 ) : SubNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
72 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 virtual const Type *sub( const Type *, const Type * ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 const Type *add_id() const { return TypeInt::ZERO; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 };
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 //------------------------------SubLNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Subtract 2 integers
a61af66fc99e Initial load
duke
parents:
diff changeset
82 class SubLNode : public SubNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
84 SubLNode( Node *in1, Node *in2 ) : SubNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
85 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 virtual const Type *sub( const Type *, const Type * ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 const Type *add_id() const { return TypeLong::ZERO; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 const Type *bottom_type() const { return TypeLong::LONG; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 virtual uint ideal_reg() const { return Op_RegL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 };
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // NOTE: SubFPNode should be taken away and replaced by add and negate
a61af66fc99e Initial load
duke
parents:
diff changeset
94 //------------------------------SubFPNode--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Subtract 2 floats or doubles
a61af66fc99e Initial load
duke
parents:
diff changeset
96 class SubFPNode : public SubNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
98 SubFPNode( Node *in1, Node *in2 ) : SubNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
99 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
100 const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 };
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // NOTE: SubFNode should be taken away and replaced by add and negate
a61af66fc99e Initial load
duke
parents:
diff changeset
104 //------------------------------SubFNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Subtract 2 doubles
a61af66fc99e Initial load
duke
parents:
diff changeset
106 class SubFNode : public SubFPNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
108 SubFNode( Node *in1, Node *in2 ) : SubFPNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
109 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 virtual const Type *sub( const Type *, const Type * ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 const Type *add_id() const { return TypeF::ZERO; }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 const Type *bottom_type() const { return Type::FLOAT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 virtual uint ideal_reg() const { return Op_RegF; }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 };
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // NOTE: SubDNode should be taken away and replaced by add and negate
a61af66fc99e Initial load
duke
parents:
diff changeset
118 //------------------------------SubDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Subtract 2 doubles
a61af66fc99e Initial load
duke
parents:
diff changeset
120 class SubDNode : public SubFPNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
122 SubDNode( Node *in1, Node *in2 ) : SubFPNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
123 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 virtual const Type *sub( const Type *, const Type * ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 const Type *add_id() const { return TypeD::ZERO; }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
128 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 };
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 //------------------------------CmpNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // Compare 2 values, returning condition codes (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
133 class CmpNode : public SubNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
135 CmpNode( Node *in1, Node *in2 ) : SubNode(in1,in2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 init_class_id(Class_Cmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138 virtual Node *Identity( PhaseTransform *phase );
a61af66fc99e Initial load
duke
parents:
diff changeset
139 const Type *add_id() const { return TypeInt::ZERO; }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 const Type *bottom_type() const { return TypeInt::CC; }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 virtual uint ideal_reg() const { return Op_RegFlags; }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 };
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 //------------------------------CmpINode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Compare 2 signed values, returning condition codes (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
146 class CmpINode : public CmpNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
148 CmpINode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
149 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 virtual const Type *sub( const Type *, const Type * ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 };
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 //------------------------------CmpUNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // Compare 2 unsigned values (integer or pointer), returning condition codes (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
156 class CmpUNode : public CmpNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
158 CmpUNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
159 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 virtual const Type *sub( const Type *, const Type * ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 };
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 //------------------------------CmpPNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // Compare 2 pointer values, returning condition codes (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
165 class CmpPNode : public CmpNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
167 CmpPNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
168 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 virtual const Type *sub( const Type *, const Type * ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 };
a61af66fc99e Initial load
duke
parents:
diff changeset
172
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
173 //------------------------------CmpNNode--------------------------------------
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
174 // Compare 2 narrow oop values, returning condition codes (-1, 0 or 1).
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
175 class CmpNNode : public CmpNode {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
176 public:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
177 CmpNNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
178 virtual int Opcode() const;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
179 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
180 virtual const Type *sub( const Type *, const Type * ) const;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
181 };
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
182
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 //------------------------------CmpLNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // Compare 2 long values, returning condition codes (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
185 class CmpLNode : public CmpNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
187 CmpLNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
188 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 virtual const Type *sub( const Type *, const Type * ) 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 //------------------------------CmpL3Node--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // Compare 2 long values, returning integer value (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
194 class CmpL3Node : public CmpLNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
196 CmpL3Node( Node *in1, Node *in2 ) : CmpLNode(in1,in2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // Since it is not consumed by Bools, it is not really a Cmp.
a61af66fc99e Initial load
duke
parents:
diff changeset
198 init_class_id(Class_Sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
201 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
202 };
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 //------------------------------CmpFNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Compare 2 float values, returning condition codes (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // This implements the Java bytecode fcmpl, so unordered returns -1.
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // Operands may not commute.
a61af66fc99e Initial load
duke
parents:
diff changeset
208 class CmpFNode : public CmpNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
210 CmpFNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
211 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 virtual const Type *sub( const Type *, const Type * ) const { ShouldNotReachHere(); return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 };
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 //------------------------------CmpF3Node--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // Compare 2 float values, returning integer value (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // This implements the Java bytecode fcmpl, so unordered returns -1.
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // Operands may not commute.
a61af66fc99e Initial load
duke
parents:
diff changeset
220 class CmpF3Node : public CmpFNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
222 CmpF3Node( Node *in1, Node *in2 ) : CmpFNode(in1,in2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Since it is not consumed by Bools, it is not really a Cmp.
a61af66fc99e Initial load
duke
parents:
diff changeset
224 init_class_id(Class_Sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // Since it is not consumed by Bools, it is not really a Cmp.
a61af66fc99e Initial load
duke
parents:
diff changeset
228 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 };
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 //------------------------------CmpDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // Compare 2 double values, returning condition codes (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // This implements the Java bytecode dcmpl, so unordered returns -1.
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // Operands may not commute.
a61af66fc99e Initial load
duke
parents:
diff changeset
236 class CmpDNode : public CmpNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
238 CmpDNode( Node *in1, Node *in2 ) : CmpNode(in1,in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
239 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 virtual const Type *sub( const Type *, const Type * ) const { ShouldNotReachHere(); return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
241 const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 };
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 //------------------------------CmpD3Node--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Compare 2 double values, returning integer value (-1, 0 or 1).
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // This implements the Java bytecode dcmpl, so unordered returns -1.
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // Operands may not commute.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 class CmpD3Node : public CmpDNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
251 CmpD3Node( Node *in1, Node *in2 ) : CmpDNode(in1,in2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // Since it is not consumed by Bools, it is not really a Cmp.
a61af66fc99e Initial load
duke
parents:
diff changeset
253 init_class_id(Class_Sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
257 };
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 //------------------------------BoolTest---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // Convert condition codes to a boolean test value (0 or -1).
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // We pick the values as 3 bits; the low order 2 bits we compare against the
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // condition codes, the high bit flips the sense of the result.
a61af66fc99e Initial load
duke
parents:
diff changeset
264 struct BoolTest VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 enum mask { eq = 0, ne = 4, le = 5, ge = 7, lt = 3, gt = 1, illegal = 8 };
a61af66fc99e Initial load
duke
parents:
diff changeset
266 mask _test;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 BoolTest( mask btm ) : _test(btm) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
268 const Type *cc2logical( const Type *CC ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // Commute the test. I use a small table lookup. The table is created as
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // a simple char array where each element is the ASCII version of a 'mask'
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // enum from above.
a61af66fc99e Initial load
duke
parents:
diff changeset
272 mask commute( ) const { return mask("038147858"[_test]-'0'); }
a61af66fc99e Initial load
duke
parents:
diff changeset
273 mask negate( ) const { return mask(_test^4); }
a61af66fc99e Initial load
duke
parents:
diff changeset
274 bool is_canonical( ) const { return (_test == BoolTest::ne || _test == BoolTest::lt || _test == BoolTest::le); }
a61af66fc99e Initial load
duke
parents:
diff changeset
275 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
276 void dump_on(outputStream *st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
278 };
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 //------------------------------BoolNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // A Node to convert a Condition Codes to a Logical result.
a61af66fc99e Initial load
duke
parents:
diff changeset
282 class BoolNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 virtual uint hash() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
284 virtual uint cmp( const Node &n ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
285 virtual uint size_of() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
287 const BoolTest _test;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 BoolNode( Node *cc, BoolTest::mask t): _test(t), Node(0,cc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 init_class_id(Class_Bool);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // Convert an arbitrary int value to a Bool or other suitable predicate.
a61af66fc99e Initial load
duke
parents:
diff changeset
292 static Node* make_predicate(Node* test_value, PhaseGVN* phase);
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // Convert self back to an integer value.
a61af66fc99e Initial load
duke
parents:
diff changeset
294 Node* as_int_value(PhaseGVN* phase);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // Invert sense of self, returning new Bool.
a61af66fc99e Initial load
duke
parents:
diff changeset
296 BoolNode* negate(PhaseGVN* phase);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
299 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 virtual const Type *bottom_type() const { return TypeInt::BOOL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
301 uint match_edge(uint idx) const { return 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
302 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 bool is_counted_loop_exit_test();
a61af66fc99e Initial load
duke
parents:
diff changeset
305 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
306 virtual void dump_spec(outputStream *st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
308 };
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 //------------------------------AbsNode----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // Abstract class for absolute value. Mostly used to get a handy wrapper
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // for finding this pattern in the graph.
a61af66fc99e Initial load
duke
parents:
diff changeset
313 class AbsNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
315 AbsNode( Node *value ) : Node(0,value) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
316 };
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 //------------------------------AbsINode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // Absolute value an integer. Since a naive graph involves control flow, we
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // "match" it in the ideal world (so the control flow can be removed).
a61af66fc99e Initial load
duke
parents:
diff changeset
321 class AbsINode : public AbsNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
323 AbsINode( Node *in1 ) : AbsNode(in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
324 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
326 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
327 };
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 //------------------------------AbsFNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // Absolute value a float, a common float-point idiom with a cheap hardware
a61af66fc99e Initial load
duke
parents:
diff changeset
331 // implemention on most chips. Since a naive graph involves control flow, we
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // "match" it in the ideal world (so the control flow can be removed).
a61af66fc99e Initial load
duke
parents:
diff changeset
333 class AbsFNode : public AbsNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
335 AbsFNode( Node *in1 ) : AbsNode(in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
336 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 const Type *bottom_type() const { return Type::FLOAT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
338 virtual uint ideal_reg() const { return Op_RegF; }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 };
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 //------------------------------AbsDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // Absolute value a double, a common float-point idiom with a cheap hardware
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // implemention on most chips. Since a naive graph involves control flow, we
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // "match" it in the ideal world (so the control flow can be removed).
a61af66fc99e Initial load
duke
parents:
diff changeset
345 class AbsDNode : public AbsNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
346 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
347 AbsDNode( Node *in1 ) : AbsNode(in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
348 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
350 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
351 };
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354 //------------------------------CmpLTMaskNode----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // If p < q, return -1 else return 0. Nice for flow-free idioms.
a61af66fc99e Initial load
duke
parents:
diff changeset
356 class CmpLTMaskNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
357 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
358 CmpLTMaskNode( Node *p, Node *q ) : Node(0, p, q) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
359 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
361 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
362 };
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 //------------------------------NegNode----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
366 class NegNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
368 NegNode( Node *in1 ) : Node(0,in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
369 };
a61af66fc99e Initial load
duke
parents:
diff changeset
370
a61af66fc99e Initial load
duke
parents:
diff changeset
371 //------------------------------NegFNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // Negate value a float. Negating 0.0 returns -0.0, but subtracting from
a61af66fc99e Initial load
duke
parents:
diff changeset
373 // zero returns +0.0 (per JVM spec on 'fneg' bytecode). As subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // cannot be used to replace negation we have to implement negation as ideal
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // node; note that negation and addition can replace subtraction.
a61af66fc99e Initial load
duke
parents:
diff changeset
376 class NegFNode : public NegNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
378 NegFNode( Node *in1 ) : NegNode(in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
379 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 const Type *bottom_type() const { return Type::FLOAT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
381 virtual uint ideal_reg() const { return Op_RegF; }
a61af66fc99e Initial load
duke
parents:
diff changeset
382 };
a61af66fc99e Initial load
duke
parents:
diff changeset
383
a61af66fc99e Initial load
duke
parents:
diff changeset
384 //------------------------------NegDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // Negate value a double. Negating 0.0 returns -0.0, but subtracting from
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // zero returns +0.0 (per JVM spec on 'dneg' bytecode). As subtraction
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // cannot be used to replace negation we have to implement negation as ideal
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // node; note that negation and addition can replace subtraction.
a61af66fc99e Initial load
duke
parents:
diff changeset
389 class NegDNode : public NegNode {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
391 NegDNode( Node *in1 ) : NegNode(in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
392 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
394 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
395 };
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397 //------------------------------CosDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // Cosinus of a double
a61af66fc99e Initial load
duke
parents:
diff changeset
399 class CosDNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
401 CosDNode( Node *in1 ) : Node(0, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
402 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
403 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
404 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
405 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
406 };
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 //------------------------------CosDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // Sinus of a double
a61af66fc99e Initial load
duke
parents:
diff changeset
410 class SinDNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
411 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
412 SinDNode( Node *in1 ) : Node(0, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
413 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
415 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
416 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
417 };
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420 //------------------------------TanDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // tangens of a double
a61af66fc99e Initial load
duke
parents:
diff changeset
422 class TanDNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
423 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
424 TanDNode(Node *in1 ) : Node(0, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
425 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
426 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
427 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
428 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
429 };
a61af66fc99e Initial load
duke
parents:
diff changeset
430
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 //------------------------------AtanDNode--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // arcus tangens of a double
a61af66fc99e Initial load
duke
parents:
diff changeset
434 class AtanDNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
436 AtanDNode(Node *c, Node *in1, Node *in2 ) : Node(c, in1, in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
437 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
439 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
440 };
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 //------------------------------SqrtDNode--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // square root a double
a61af66fc99e Initial load
duke
parents:
diff changeset
445 class SqrtDNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
446 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
447 SqrtDNode(Node *c, Node *in1 ) : Node(c, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
448 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
449 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
450 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
451 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
452 };
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 //------------------------------ExpDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // Exponentiate a double
a61af66fc99e Initial load
duke
parents:
diff changeset
456 class ExpDNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
457 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
458 ExpDNode( Node *c, Node *in1 ) : Node(c, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
459 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
460 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
461 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
463 };
a61af66fc99e Initial load
duke
parents:
diff changeset
464
a61af66fc99e Initial load
duke
parents:
diff changeset
465 //------------------------------LogDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // Log_e of a double
a61af66fc99e Initial load
duke
parents:
diff changeset
467 class LogDNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
468 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
469 LogDNode( Node *in1 ) : Node(0, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
470 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
472 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
473 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
474 };
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 //------------------------------Log10DNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
477 // Log_10 of a double
a61af66fc99e Initial load
duke
parents:
diff changeset
478 class Log10DNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
479 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
480 Log10DNode( Node *in1 ) : Node(0, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
481 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
482 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
483 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
484 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
485 };
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 //------------------------------PowDNode---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // Raise a double to a double power
a61af66fc99e Initial load
duke
parents:
diff changeset
489 class PowDNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
491 PowDNode(Node *c, Node *in1, Node *in2 ) : Node(c, in1, in2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
492 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
493 const Type *bottom_type() const { return Type::DOUBLE; }
a61af66fc99e Initial load
duke
parents:
diff changeset
494 virtual uint ideal_reg() const { return Op_RegD; }
a61af66fc99e Initial load
duke
parents:
diff changeset
495 virtual const Type *Value( PhaseTransform *phase ) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
496 };
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498 //-------------------------------ReverseBytesINode--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // reverse bytes of an integer
a61af66fc99e Initial load
duke
parents:
diff changeset
500 class ReverseBytesINode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
501 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
502 ReverseBytesINode(Node *c, Node *in1) : Node(c, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
503 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
504 const Type *bottom_type() const { return TypeInt::INT; }
a61af66fc99e Initial load
duke
parents:
diff changeset
505 virtual uint ideal_reg() const { return Op_RegI; }
a61af66fc99e Initial load
duke
parents:
diff changeset
506 };
a61af66fc99e Initial load
duke
parents:
diff changeset
507
a61af66fc99e Initial load
duke
parents:
diff changeset
508 //-------------------------------ReverseBytesLNode--------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // reverse bytes of a long
a61af66fc99e Initial load
duke
parents:
diff changeset
510 class ReverseBytesLNode : public Node {
a61af66fc99e Initial load
duke
parents:
diff changeset
511 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
512 ReverseBytesLNode(Node *c, Node *in1) : Node(c, in1) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
513 virtual int Opcode() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
514 const Type *bottom_type() const { return TypeLong::LONG; }
a61af66fc99e Initial load
duke
parents:
diff changeset
515 virtual uint ideal_reg() const { return Op_RegL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
516 };
1396
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
517
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
518 //-------------------------------ReverseBytesUSNode--------------------------------
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
519 // reverse bytes of an unsigned short / char
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
520 class ReverseBytesUSNode : public Node {
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
521 public:
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
522 ReverseBytesUSNode(Node *c, Node *in1) : Node(c, in1) {}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
523 virtual int Opcode() const;
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
524 const Type *bottom_type() const { return TypeInt::CHAR; }
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
525 virtual uint ideal_reg() const { return Op_RegI; }
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
526 };
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
527
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
528 //-------------------------------ReverseBytesSNode--------------------------------
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
529 // reverse bytes of a short
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
530 class ReverseBytesSNode : public Node {
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
531 public:
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
532 ReverseBytesSNode(Node *c, Node *in1) : Node(c, in1) {}
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
533 virtual int Opcode() const;
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
534 const Type *bottom_type() const { return TypeInt::SHORT; }
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
535 virtual uint ideal_reg() const { return Op_RegI; }
d7f654633cfe 6946040: add intrinsic for short and char reverseBytes
never
parents: 196
diff changeset
536 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
537
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
538 #endif // SHARE_VM_OPTO_SUBNODE_HPP