@@ -42,193 +42,190 @@ class Conv2BNode : public Node {
42
42
virtual uint ideal_reg () const { return Op_RegI; }
43
43
};
44
44
45
+ class ConvertNode : public TypeNode {
46
+ protected:
47
+ ConvertNode (const Type* t, Node* input) : TypeNode(t, 2 ) {
48
+ init_class_id (Class_Convert);
49
+ init_req (1 , input);
50
+ }
51
+ public:
52
+ virtual const Type* in_type () const = 0;
53
+ virtual uint ideal_reg () const ;
54
+
55
+ // Create a convert node for a given input and output type.
56
+ // Conversions to and from half float are specified via T_SHORT.
57
+ static Node* create_convert (BasicType source, BasicType target, Node* input);
58
+ };
59
+
45
60
// The conversions operations are all Alpha sorted. Please keep it that way!
46
61
// ------------------------------ConvD2FNode------------------------------------
47
62
// Convert double to float
48
- class ConvD2FNode : public Node {
63
+ class ConvD2FNode : public ConvertNode {
49
64
public:
50
- ConvD2FNode ( Node *in1 ) : Node( 0 ,in1) {}
65
+ ConvD2FNode (Node* in1 ) : ConvertNode(Type::FLOAT ,in1) {}
51
66
virtual int Opcode () const ;
52
- virtual const Type * bottom_type () const { return Type::FLOAT ; }
67
+ virtual const Type* in_type () const { return Type::DOUBLE ; }
53
68
virtual const Type* Value (PhaseGVN* phase) const ;
54
69
virtual Node* Identity (PhaseGVN* phase);
55
- virtual Node *Ideal (PhaseGVN *phase, bool can_reshape);
56
- virtual uint ideal_reg () const { return Op_RegF; }
70
+ virtual Node* Ideal (PhaseGVN* phase, bool can_reshape);
57
71
};
58
72
59
73
// ------------------------------ConvD2INode------------------------------------
60
74
// Convert Double to Integer
61
- class ConvD2INode : public Node {
75
+ class ConvD2INode : public ConvertNode {
62
76
public:
63
- ConvD2INode ( Node *in1 ) : Node( 0 ,in1) {}
77
+ ConvD2INode (Node* in1 ) : ConvertNode(TypeInt::INT ,in1) {}
64
78
virtual int Opcode () const ;
65
- virtual const Type * bottom_type () const { return TypeInt::INT ; }
79
+ virtual const Type* in_type () const { return Type::DOUBLE ; }
66
80
virtual const Type* Value (PhaseGVN* phase) const ;
67
81
virtual Node* Identity (PhaseGVN* phase);
68
- virtual Node *Ideal (PhaseGVN *phase, bool can_reshape);
69
- virtual uint ideal_reg () const { return Op_RegI; }
82
+ virtual Node* Ideal (PhaseGVN* phase, bool can_reshape);
70
83
};
71
84
72
85
// ------------------------------ConvD2LNode------------------------------------
73
86
// Convert Double to Long
74
- class ConvD2LNode : public Node {
87
+ class ConvD2LNode : public ConvertNode {
75
88
public:
76
- ConvD2LNode ( Node *dbl ) : Node( 0 ,dbl ) {}
89
+ ConvD2LNode (Node* in1 ) : ConvertNode(TypeLong::LONG, in1 ) {}
77
90
virtual int Opcode () const ;
78
- virtual const Type * bottom_type () const { return TypeLong::LONG ; }
91
+ virtual const Type* in_type () const { return Type::DOUBLE ; }
79
92
virtual const Type* Value (PhaseGVN* phase) const ;
80
93
virtual Node* Identity (PhaseGVN* phase);
81
- virtual Node *Ideal (PhaseGVN *phase, bool can_reshape);
82
- virtual uint ideal_reg () const { return Op_RegL; }
83
- };
84
-
85
- class RoundDNode : public Node {
86
- public:
87
- RoundDNode ( Node *dbl ) : Node(0 ,dbl) {}
88
- virtual int Opcode () const ;
89
- virtual const Type *bottom_type () const { return TypeLong::LONG; }
90
- virtual uint ideal_reg () const { return Op_RegL; }
94
+ virtual Node* Ideal (PhaseGVN* phase, bool can_reshape);
91
95
};
92
96
93
97
// ------------------------------ConvF2DNode------------------------------------
94
98
// Convert Float to a Double.
95
- class ConvF2DNode : public Node {
99
+ class ConvF2DNode : public ConvertNode {
96
100
public:
97
- ConvF2DNode ( Node *in1 ) : Node( 0 ,in1) {}
101
+ ConvF2DNode (Node* in1 ) : ConvertNode(Type::DOUBLE ,in1) {}
98
102
virtual int Opcode () const ;
99
- virtual const Type * bottom_type () const { return Type::DOUBLE ; }
103
+ virtual const Type* in_type () const { return Type::FLOAT ; }
100
104
virtual const Type* Value (PhaseGVN* phase) const ;
101
- virtual uint ideal_reg () const { return Op_RegD; }
102
105
};
103
106
104
107
// ------------------------------ConvF2HFNode------------------------------------
105
108
// Convert Float to Halffloat
106
- class ConvF2HFNode : public Node {
109
+ class ConvF2HFNode : public ConvertNode {
107
110
public:
108
- ConvF2HFNode ( Node *in1 ) : Node( 0 , in1) {}
111
+ ConvF2HFNode (Node* in1 ) : ConvertNode(TypeInt::SHORT, in1) {}
109
112
virtual int Opcode () const ;
110
- virtual const Type * bottom_type () const { return TypeInt::SHORT ; }
113
+ virtual const Type* in_type () const { return TypeInt::FLOAT ; }
111
114
virtual const Type* Value (PhaseGVN* phase) const ;
112
- virtual uint ideal_reg () const { return Op_RegI; }
113
115
};
114
116
115
117
// ------------------------------ConvF2INode------------------------------------
116
118
// Convert float to integer
117
- class ConvF2INode : public Node {
118
- public:
119
- ConvF2INode ( Node *in1 ) : Node( 0 , in1) {}
119
+ class ConvF2INode : public ConvertNode {
120
+ public:
121
+ ConvF2INode (Node* in1 ) : ConvertNode(TypeInt::INT, in1) {}
120
122
virtual int Opcode () const ;
121
- virtual const Type * bottom_type () const { return TypeInt::INT ; }
123
+ virtual const Type* in_type () const { return TypeInt::FLOAT ; }
122
124
virtual const Type* Value (PhaseGVN* phase) const ;
123
125
virtual Node* Identity (PhaseGVN* phase);
124
- virtual Node *Ideal (PhaseGVN *phase, bool can_reshape);
125
- virtual uint ideal_reg () const { return Op_RegI; }
126
+ virtual Node* Ideal (PhaseGVN* phase, bool can_reshape);
126
127
};
127
128
128
-
129
129
// ------------------------------ConvF2LNode------------------------------------
130
130
// Convert float to long
131
- class ConvF2LNode : public Node {
132
- public:
133
- ConvF2LNode ( Node *in1 ) : Node( 0 , in1) {}
131
+ class ConvF2LNode : public ConvertNode {
132
+ public:
133
+ ConvF2LNode (Node* in1 ) : ConvertNode(TypeLong::LONG, in1) {}
134
134
virtual int Opcode () const ;
135
- virtual const Type * bottom_type () const { return TypeLong::LONG ; }
135
+ virtual const Type* in_type () const { return TypeInt::FLOAT ; }
136
136
virtual const Type* Value (PhaseGVN* phase) const ;
137
137
virtual Node* Identity (PhaseGVN* phase);
138
- virtual Node *Ideal (PhaseGVN *phase, bool can_reshape);
139
- virtual uint ideal_reg () const { return Op_RegL; }
138
+ virtual Node* Ideal (PhaseGVN* phase, bool can_reshape);
140
139
};
141
140
142
141
// ------------------------------ConvHF2FNode------------------------------------
143
142
// Convert Halffloat to float
144
- class ConvHF2FNode : public Node {
145
- public:
146
- ConvHF2FNode ( Node *in1 ) : Node( 0 , in1) {}
143
+ class ConvHF2FNode : public ConvertNode {
144
+ public:
145
+ ConvHF2FNode (Node* in1 ) : ConvertNode(Type::FLOAT, in1) {}
147
146
virtual int Opcode () const ;
148
- virtual const Type * bottom_type () const { return Type::FLOAT ; }
147
+ virtual const Type* in_type () const { return TypeInt::SHORT ; }
149
148
virtual const Type* Value (PhaseGVN* phase) const ;
150
- virtual uint ideal_reg () const { return Op_RegF; }
151
149
};
152
150
153
151
// ------------------------------ConvI2DNode------------------------------------
154
152
// Convert Integer to Double
155
- class ConvI2DNode : public Node {
156
- public:
157
- ConvI2DNode ( Node *in1 ) : Node( 0 , in1) {}
153
+ class ConvI2DNode : public ConvertNode {
154
+ public:
155
+ ConvI2DNode (Node* in1 ) : ConvertNode(Type::DOUBLE, in1) {}
158
156
virtual int Opcode () const ;
159
- virtual const Type * bottom_type () const { return Type::DOUBLE ; }
157
+ virtual const Type* in_type () const { return TypeInt::INT ; }
160
158
virtual const Type* Value (PhaseGVN* phase) const ;
161
- virtual uint ideal_reg () const { return Op_RegD; }
162
159
};
163
160
164
161
// ------------------------------ConvI2FNode------------------------------------
165
162
// Convert Integer to Float
166
- class ConvI2FNode : public Node {
167
- public:
168
- ConvI2FNode ( Node *in1 ) : Node( 0 , in1) {}
163
+ class ConvI2FNode : public ConvertNode {
164
+ public:
165
+ ConvI2FNode (Node* in1 ) : ConvertNode(Type::FLOAT, in1) {}
169
166
virtual int Opcode () const ;
170
- virtual const Type * bottom_type () const { return Type::FLOAT ; }
167
+ virtual const Type* in_type () const { return TypeInt::INT ; }
171
168
virtual const Type* Value (PhaseGVN* phase) const ;
172
169
virtual Node* Identity (PhaseGVN* phase);
173
- virtual uint ideal_reg () const { return Op_RegF; }
174
- };
175
-
176
- class RoundFNode : public Node {
177
- public:
178
- RoundFNode ( Node *in1 ) : Node(0 ,in1) {}
179
- virtual int Opcode () const ;
180
- virtual const Type *bottom_type () const { return TypeInt::INT; }
181
- virtual uint ideal_reg () const { return Op_RegI; }
182
170
};
183
171
184
172
// ------------------------------ConvI2LNode------------------------------------
185
173
// Convert integer to long
186
- class ConvI2LNode : public TypeNode {
174
+ class ConvI2LNode : public ConvertNode {
187
175
public:
188
- ConvI2LNode (Node *in1, const TypeLong* t = TypeLong::INT)
189
- : TypeNode(t, 2 )
190
- { init_req (1 , in1); }
176
+ ConvI2LNode (Node* in1, const TypeLong* t = TypeLong::INT) : ConvertNode(t, in1) {}
191
177
virtual int Opcode () const ;
178
+ virtual const Type* in_type () const { return TypeInt::INT; }
192
179
virtual const Type* Value (PhaseGVN* phase) const ;
193
- virtual Node * Ideal (PhaseGVN * phase, bool can_reshape);
180
+ virtual Node* Ideal (PhaseGVN* phase, bool can_reshape);
194
181
virtual Node* Identity (PhaseGVN* phase);
195
- virtual uint ideal_reg () const { return Op_RegL; }
196
182
};
197
183
198
184
// ------------------------------ConvL2DNode------------------------------------
199
185
// Convert Long to Double
200
- class ConvL2DNode : public Node {
201
- public:
202
- ConvL2DNode ( Node *in1 ) : Node( 0 , in1) {}
186
+ class ConvL2DNode : public ConvertNode {
187
+ public:
188
+ ConvL2DNode (Node* in1 ) : ConvertNode(Type::DOUBLE, in1) {}
203
189
virtual int Opcode () const ;
204
- virtual const Type * bottom_type () const { return Type::DOUBLE ; }
190
+ virtual const Type* in_type () const { return TypeLong::LONG ; }
205
191
virtual const Type* Value (PhaseGVN* phase) const ;
206
- virtual uint ideal_reg () const { return Op_RegD; }
207
192
};
208
193
209
194
// ------------------------------ConvL2FNode------------------------------------
210
195
// Convert Long to Float
211
- class ConvL2FNode : public Node {
212
- public:
213
- ConvL2FNode ( Node *in1 ) : Node( 0 , in1) {}
196
+ class ConvL2FNode : public ConvertNode {
197
+ public:
198
+ ConvL2FNode (Node* in1 ) : ConvertNode(Type::FLOAT, in1) {}
214
199
virtual int Opcode () const ;
215
- virtual const Type * bottom_type () const { return Type::FLOAT ; }
200
+ virtual const Type* in_type () const { return TypeLong::LONG ; }
216
201
virtual const Type* Value (PhaseGVN* phase) const ;
217
- virtual uint ideal_reg () const { return Op_RegF; }
218
202
};
219
203
220
204
// ------------------------------ConvL2INode------------------------------------
221
205
// Convert long to integer
222
- class ConvL2INode : public TypeNode {
206
+ class ConvL2INode : public ConvertNode {
223
207
public:
224
- ConvL2INode (Node *in1, const TypeInt* t = TypeInt::INT)
225
- : TypeNode(t, 2 ) {
226
- init_req (1 , in1);
227
- }
208
+ ConvL2INode (Node* in1, const TypeInt* t = TypeInt::INT) : ConvertNode(t, in1) {}
228
209
virtual int Opcode () const ;
210
+ virtual const Type* in_type () const { return TypeLong::LONG; }
229
211
virtual Node* Identity (PhaseGVN* phase);
230
212
virtual const Type* Value (PhaseGVN* phase) const ;
231
- virtual Node *Ideal (PhaseGVN *phase, bool can_reshape);
213
+ virtual Node* Ideal (PhaseGVN* phase, bool can_reshape);
214
+ };
215
+
216
+ class RoundDNode : public Node {
217
+ public:
218
+ RoundDNode (Node* in1) : Node(nullptr , in1) {}
219
+ virtual int Opcode () const ;
220
+ virtual const Type* bottom_type () const { return TypeLong::LONG; }
221
+ virtual uint ideal_reg () const { return Op_RegL; }
222
+ };
223
+
224
+ class RoundFNode : public Node {
225
+ public:
226
+ RoundFNode (Node* in1) : Node(nullptr , in1) {}
227
+ virtual int Opcode () const ;
228
+ virtual const Type* bottom_type () const { return TypeInt::INT; }
232
229
virtual uint ideal_reg () const { return Op_RegI; }
233
230
};
234
231
0 commit comments