equal
deleted
inserted
replaced
53 } |
53 } |
54 return NULL; |
54 return NULL; |
55 } |
55 } |
56 |
56 |
57 //------------------------------Value------------------------------------------ |
57 //------------------------------Value------------------------------------------ |
58 const Type* StrIntrinsicNode::Value(PhaseTransform* phase) const { |
58 const Type* StrIntrinsicNode::Value(PhaseGVN* phase) const { |
59 if (in(0) && phase->type(in(0)) == Type::TOP) return Type::TOP; |
59 if (in(0) && phase->type(in(0)) == Type::TOP) return Type::TOP; |
60 return bottom_type(); |
60 return bottom_type(); |
61 } |
61 } |
62 |
62 |
63 uint StrIntrinsicNode::size_of() const { return sizeof(*this); } |
63 uint StrIntrinsicNode::size_of() const { return sizeof(*this); } |
91 Node* EncodeISOArrayNode::Ideal(PhaseGVN* phase, bool can_reshape) { |
91 Node* EncodeISOArrayNode::Ideal(PhaseGVN* phase, bool can_reshape) { |
92 return remove_dead_region(phase, can_reshape) ? this : NULL; |
92 return remove_dead_region(phase, can_reshape) ? this : NULL; |
93 } |
93 } |
94 |
94 |
95 //------------------------------Value------------------------------------------ |
95 //------------------------------Value------------------------------------------ |
96 const Type* EncodeISOArrayNode::Value(PhaseTransform* phase) const { |
96 const Type* EncodeISOArrayNode::Value(PhaseGVN* phase) const { |
97 if (in(0) && phase->type(in(0)) == Type::TOP) return Type::TOP; |
97 if (in(0) && phase->type(in(0)) == Type::TOP) return Type::TOP; |
98 return bottom_type(); |
98 return bottom_type(); |
99 } |
99 } |
100 |
100 |