1 /*
2  * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #include "precompiled.hpp"
26 #include "gc/shared/barrierSet.hpp"
27 #include "gc/shared/c2/barrierSetC2.hpp"
28 #include "gc/shared/c2/cardTableBarrierSetC2.hpp"
29 #include "opto/arraycopynode.hpp"
30 #include "opto/graphKit.hpp"
31 #include "runtime/sharedRuntime.hpp"
32 #include "utilities/macros.hpp"
33 
ArrayCopyNode(Compile * C,bool alloc_tightly_coupled,bool has_negative_length_guard)34 ArrayCopyNode::ArrayCopyNode(Compile* C, bool alloc_tightly_coupled, bool has_negative_length_guard)
35   : CallNode(arraycopy_type(), NULL, TypePtr::BOTTOM),
36     _kind(None),
37     _alloc_tightly_coupled(alloc_tightly_coupled),
38     _has_negative_length_guard(has_negative_length_guard),
39     _arguments_validated(false),
40     _src_type(TypeOopPtr::BOTTOM),
41     _dest_type(TypeOopPtr::BOTTOM) {
42   init_class_id(Class_ArrayCopy);
43   init_flags(Flag_is_macro);
44   C->add_macro_node(this);
45 }
46 
size_of() const47 uint ArrayCopyNode::size_of() const { return sizeof(*this); }
48 
make(GraphKit * kit,bool may_throw,Node * src,Node * src_offset,Node * dest,Node * dest_offset,Node * length,bool alloc_tightly_coupled,bool has_negative_length_guard,Node * src_klass,Node * dest_klass,Node * src_length,Node * dest_length)49 ArrayCopyNode* ArrayCopyNode::make(GraphKit* kit, bool may_throw,
50                                    Node* src, Node* src_offset,
51                                    Node* dest, Node* dest_offset,
52                                    Node* length,
53                                    bool alloc_tightly_coupled,
54                                    bool has_negative_length_guard,
55                                    Node* src_klass, Node* dest_klass,
56                                    Node* src_length, Node* dest_length) {
57 
58   ArrayCopyNode* ac = new ArrayCopyNode(kit->C, alloc_tightly_coupled, has_negative_length_guard);
59   Node* prev_mem = kit->set_predefined_input_for_runtime_call(ac);
60 
61   ac->init_req(ArrayCopyNode::Src, src);
62   ac->init_req(ArrayCopyNode::SrcPos, src_offset);
63   ac->init_req(ArrayCopyNode::Dest, dest);
64   ac->init_req(ArrayCopyNode::DestPos, dest_offset);
65   ac->init_req(ArrayCopyNode::Length, length);
66   ac->init_req(ArrayCopyNode::SrcLen, src_length);
67   ac->init_req(ArrayCopyNode::DestLen, dest_length);
68   ac->init_req(ArrayCopyNode::SrcKlass, src_klass);
69   ac->init_req(ArrayCopyNode::DestKlass, dest_klass);
70 
71   if (may_throw) {
72     ac->set_req(TypeFunc::I_O , kit->i_o());
73     kit->add_safepoint_edges(ac, false);
74   }
75 
76   return ac;
77 }
78 
connect_outputs(GraphKit * kit)79 void ArrayCopyNode::connect_outputs(GraphKit* kit) {
80   kit->set_all_memory_call(this, true);
81   kit->set_control(kit->gvn().transform(new ProjNode(this,TypeFunc::Control)));
82   kit->set_i_o(kit->gvn().transform(new ProjNode(this, TypeFunc::I_O)));
83   kit->make_slow_call_ex(this, kit->env()->Throwable_klass(), true);
84   kit->set_all_memory_call(this);
85 }
86 
87 #ifndef PRODUCT
88 const char* ArrayCopyNode::_kind_names[] = {"arraycopy", "arraycopy, validated arguments", "clone", "oop array clone", "CopyOf", "CopyOfRange"};
89 
dump_spec(outputStream * st) const90 void ArrayCopyNode::dump_spec(outputStream *st) const {
91   CallNode::dump_spec(st);
92   st->print(" (%s%s)", _kind_names[_kind], _alloc_tightly_coupled ? ", tightly coupled allocation" : "");
93 }
94 
dump_compact_spec(outputStream * st) const95 void ArrayCopyNode::dump_compact_spec(outputStream* st) const {
96   st->print("%s%s", _kind_names[_kind], _alloc_tightly_coupled ? ",tight" : "");
97 }
98 #endif
99 
get_length_if_constant(PhaseGVN * phase) const100 intptr_t ArrayCopyNode::get_length_if_constant(PhaseGVN *phase) const {
101   // check that length is constant
102   Node* length = in(ArrayCopyNode::Length);
103   const Type* length_type = phase->type(length);
104 
105   if (length_type == Type::TOP) {
106     return -1;
107   }
108 
109   assert(is_clonebasic() || is_arraycopy() || is_copyof() || is_copyofrange(), "unexpected array copy type");
110 
111   return is_clonebasic() ? length->find_intptr_t_con(-1) : length->find_int_con(-1);
112 }
113 
get_count(PhaseGVN * phase) const114 int ArrayCopyNode::get_count(PhaseGVN *phase) const {
115   Node* src = in(ArrayCopyNode::Src);
116   const Type* src_type = phase->type(src);
117 
118   if (is_clonebasic()) {
119     if (src_type->isa_instptr()) {
120       const TypeInstPtr* inst_src = src_type->is_instptr();
121       ciInstanceKlass* ik = inst_src->klass()->as_instance_klass();
122       // ciInstanceKlass::nof_nonstatic_fields() doesn't take injected
123       // fields into account. They are rare anyway so easier to simply
124       // skip instances with injected fields.
125       if ((!inst_src->klass_is_exact() && (ik->is_interface() || ik->has_subklass())) || ik->has_injected_fields()) {
126         return -1;
127       }
128       int nb_fields = ik->nof_nonstatic_fields();
129       return nb_fields;
130     } else {
131       const TypeAryPtr* ary_src = src_type->isa_aryptr();
132       assert (ary_src != NULL, "not an array or instance?");
133       // clone passes a length as a rounded number of longs. If we're
134       // cloning an array we'll do it element by element. If the
135       // length input to ArrayCopyNode is constant, length of input
136       // array must be too.
137 
138       assert((get_length_if_constant(phase) == -1) == !ary_src->size()->is_con() ||
139              phase->is_IterGVN() || StressReflectiveCode, "inconsistent");
140 
141       if (ary_src->size()->is_con()) {
142         return ary_src->size()->get_con();
143       }
144       return -1;
145     }
146   }
147 
148   return get_length_if_constant(phase);
149 }
150 
load(BarrierSetC2 * bs,PhaseGVN * phase,Node * & ctl,MergeMemNode * mem,Node * adr,const TypePtr * adr_type,const Type * type,BasicType bt)151 Node* ArrayCopyNode::load(BarrierSetC2* bs, PhaseGVN *phase, Node*& ctl, MergeMemNode* mem, Node* adr, const TypePtr* adr_type, const Type *type, BasicType bt) {
152   DecoratorSet decorators = C2_READ_ACCESS | C2_CONTROL_DEPENDENT_LOAD | IN_HEAP | C2_ARRAY_COPY;
153   C2AccessValuePtr addr(adr, adr_type);
154   C2OptAccess access(*phase, ctl, mem, decorators, bt, adr->in(AddPNode::Base), addr);
155   Node* res = bs->load_at(access, type);
156   ctl = access.ctl();
157   return res;
158 }
159 
store(BarrierSetC2 * bs,PhaseGVN * phase,Node * & ctl,MergeMemNode * mem,Node * adr,const TypePtr * adr_type,Node * val,const Type * type,BasicType bt)160 void ArrayCopyNode::store(BarrierSetC2* bs, PhaseGVN *phase, Node*& ctl, MergeMemNode* mem, Node* adr, const TypePtr* adr_type, Node* val, const Type *type, BasicType bt) {
161   DecoratorSet decorators = C2_WRITE_ACCESS | IN_HEAP | C2_ARRAY_COPY;
162   if (is_alloc_tightly_coupled()) {
163     decorators |= C2_TIGHTLY_COUPLED_ALLOC;
164   }
165   C2AccessValuePtr addr(adr, adr_type);
166   C2AccessValue value(val, type);
167   C2OptAccess access(*phase, ctl, mem, decorators, bt, adr->in(AddPNode::Base), addr);
168   bs->store_at(access, value);
169   ctl = access.ctl();
170 }
171 
172 
try_clone_instance(PhaseGVN * phase,bool can_reshape,int count)173 Node* ArrayCopyNode::try_clone_instance(PhaseGVN *phase, bool can_reshape, int count) {
174   if (!is_clonebasic()) {
175     return NULL;
176   }
177 
178   Node* src = in(ArrayCopyNode::Src);
179   Node* dest = in(ArrayCopyNode::Dest);
180   Node* ctl = in(TypeFunc::Control);
181   Node* in_mem = in(TypeFunc::Memory);
182 
183   const Type* src_type = phase->type(src);
184 
185   assert(src->is_AddP(), "should be base + off");
186   assert(dest->is_AddP(), "should be base + off");
187   Node* base_src = src->in(AddPNode::Base);
188   Node* base_dest = dest->in(AddPNode::Base);
189 
190   MergeMemNode* mem = MergeMemNode::make(in_mem);
191 
192   const TypeInstPtr* inst_src = src_type->isa_instptr();
193 
194   if (inst_src == NULL) {
195     return NULL;
196   }
197 
198   if (!inst_src->klass_is_exact()) {
199     ciInstanceKlass* ik = inst_src->klass()->as_instance_klass();
200     assert(!ik->is_interface() && !ik->has_subklass(), "inconsistent klass hierarchy");
201     phase->C->dependencies()->assert_leaf_type(ik);
202   }
203 
204   ciInstanceKlass* ik = inst_src->klass()->as_instance_klass();
205   assert(ik->nof_nonstatic_fields() <= ArrayCopyLoadStoreMaxElem, "too many fields");
206 
207   BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
208   for (int i = 0; i < count; i++) {
209     ciField* field = ik->nonstatic_field_at(i);
210     int fieldidx = phase->C->alias_type(field)->index();
211     const TypePtr* adr_type = phase->C->alias_type(field)->adr_type();
212     Node* off = phase->MakeConX(field->offset());
213     Node* next_src = phase->transform(new AddPNode(base_src,base_src,off));
214     Node* next_dest = phase->transform(new AddPNode(base_dest,base_dest,off));
215     BasicType bt = field->layout_type();
216 
217     const Type *type;
218     if (bt == T_OBJECT) {
219       if (!field->type()->is_loaded()) {
220         type = TypeInstPtr::BOTTOM;
221       } else {
222         ciType* field_klass = field->type();
223         type = TypeOopPtr::make_from_klass(field_klass->as_klass());
224       }
225     } else {
226       type = Type::get_const_basic_type(bt);
227     }
228 
229     Node* v = load(bs, phase, ctl, mem, next_src, adr_type, type, bt);
230     store(bs, phase, ctl, mem, next_dest, adr_type, v, type, bt);
231   }
232 
233   if (!finish_transform(phase, can_reshape, ctl, mem)) {
234     // Return NodeSentinel to indicate that the transform failed
235     return NodeSentinel;
236   }
237 
238   return mem;
239 }
240 
prepare_array_copy(PhaseGVN * phase,bool can_reshape,Node * & adr_src,Node * & base_src,Node * & adr_dest,Node * & base_dest,BasicType & copy_type,const Type * & value_type,bool & disjoint_bases)241 bool ArrayCopyNode::prepare_array_copy(PhaseGVN *phase, bool can_reshape,
242                                        Node*& adr_src,
243                                        Node*& base_src,
244                                        Node*& adr_dest,
245                                        Node*& base_dest,
246                                        BasicType& copy_type,
247                                        const Type*& value_type,
248                                        bool& disjoint_bases) {
249   Node* src = in(ArrayCopyNode::Src);
250   Node* dest = in(ArrayCopyNode::Dest);
251   const Type* src_type = phase->type(src);
252   const TypeAryPtr* ary_src = src_type->isa_aryptr();
253 
254   if (is_arraycopy() || is_copyofrange() || is_copyof()) {
255     const Type* dest_type = phase->type(dest);
256     const TypeAryPtr* ary_dest = dest_type->isa_aryptr();
257     Node* src_offset = in(ArrayCopyNode::SrcPos);
258     Node* dest_offset = in(ArrayCopyNode::DestPos);
259 
260     // newly allocated object is guaranteed to not overlap with source object
261     disjoint_bases = is_alloc_tightly_coupled();
262 
263     if (ary_src  == NULL || ary_src->klass()  == NULL ||
264         ary_dest == NULL || ary_dest->klass() == NULL) {
265       // We don't know if arguments are arrays
266       return false;
267     }
268 
269     BasicType src_elem  = ary_src->klass()->as_array_klass()->element_type()->basic_type();
270     BasicType dest_elem = ary_dest->klass()->as_array_klass()->element_type()->basic_type();
271     if (is_reference_type(src_elem))   src_elem  = T_OBJECT;
272     if (is_reference_type(dest_elem))  dest_elem = T_OBJECT;
273 
274     if (src_elem != dest_elem || dest_elem == T_VOID) {
275       // We don't know if arguments are arrays of the same type
276       return false;
277     }
278 
279     BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
280     if (bs->array_copy_requires_gc_barriers(is_alloc_tightly_coupled(), dest_elem, false, BarrierSetC2::Optimization)) {
281       // It's an object array copy but we can't emit the card marking
282       // that is needed
283       return false;
284     }
285 
286     value_type = ary_src->elem();
287 
288     base_src = src;
289     base_dest = dest;
290 
291     uint shift  = exact_log2(type2aelembytes(dest_elem));
292     uint header = arrayOopDesc::base_offset_in_bytes(dest_elem);
293 
294     adr_src = src;
295     adr_dest = dest;
296 
297     src_offset = Compile::conv_I2X_index(phase, src_offset, ary_src->size());
298     dest_offset = Compile::conv_I2X_index(phase, dest_offset, ary_dest->size());
299     if (src_offset->is_top() || dest_offset->is_top()) {
300       // Offset is out of bounds (the ArrayCopyNode will be removed)
301       return false;
302     }
303 
304     Node* src_scale = phase->transform(new LShiftXNode(src_offset, phase->intcon(shift)));
305     Node* dest_scale = phase->transform(new LShiftXNode(dest_offset, phase->intcon(shift)));
306 
307     adr_src = phase->transform(new AddPNode(base_src, adr_src, src_scale));
308     adr_dest = phase->transform(new AddPNode(base_dest, adr_dest, dest_scale));
309 
310     adr_src = new AddPNode(base_src, adr_src, phase->MakeConX(header));
311     adr_dest = new AddPNode(base_dest, adr_dest, phase->MakeConX(header));
312 
313     adr_src = phase->transform(adr_src);
314     adr_dest = phase->transform(adr_dest);
315 
316     copy_type = dest_elem;
317   } else {
318     assert(ary_src != NULL, "should be a clone");
319     assert(is_clonebasic(), "should be");
320 
321     disjoint_bases = true;
322     assert(src->is_AddP(), "should be base + off");
323     assert(dest->is_AddP(), "should be base + off");
324     adr_src = src;
325     base_src = src->in(AddPNode::Base);
326     adr_dest = dest;
327     base_dest = dest->in(AddPNode::Base);
328 
329     assert(phase->type(src->in(AddPNode::Offset))->is_intptr_t()->get_con() == phase->type(dest->in(AddPNode::Offset))->is_intptr_t()->get_con(), "same start offset?");
330     BasicType elem = ary_src->klass()->as_array_klass()->element_type()->basic_type();
331     if (is_reference_type(elem))  elem = T_OBJECT;
332 
333     BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
334     if (bs->array_copy_requires_gc_barriers(true, elem, true, BarrierSetC2::Optimization)) {
335       return false;
336     }
337 
338     int diff = arrayOopDesc::base_offset_in_bytes(elem) - phase->type(src->in(AddPNode::Offset))->is_intptr_t()->get_con();
339     assert(diff >= 0, "clone should not start after 1st array element");
340     if (diff > 0) {
341       adr_src = phase->transform(new AddPNode(base_src, adr_src, phase->MakeConX(diff)));
342       adr_dest = phase->transform(new AddPNode(base_dest, adr_dest, phase->MakeConX(diff)));
343     }
344 
345     copy_type = elem;
346     value_type = ary_src->elem();
347   }
348   return true;
349 }
350 
get_address_type(PhaseGVN * phase,const TypePtr * atp,Node * n)351 const TypePtr* ArrayCopyNode::get_address_type(PhaseGVN* phase, const TypePtr* atp, Node* n) {
352   if (atp == TypeOopPtr::BOTTOM) {
353     atp = phase->type(n)->isa_ptr();
354   }
355   // adjust atp to be the correct array element address type
356   return atp->add_offset(Type::OffsetBot);
357 }
358 
array_copy_test_overlap(PhaseGVN * phase,bool can_reshape,bool disjoint_bases,int count,Node * & forward_ctl,Node * & backward_ctl)359 void ArrayCopyNode::array_copy_test_overlap(PhaseGVN *phase, bool can_reshape, bool disjoint_bases, int count, Node*& forward_ctl, Node*& backward_ctl) {
360   Node* ctl = in(TypeFunc::Control);
361   if (!disjoint_bases && count > 1) {
362     Node* src_offset = in(ArrayCopyNode::SrcPos);
363     Node* dest_offset = in(ArrayCopyNode::DestPos);
364     assert(src_offset != NULL && dest_offset != NULL, "should be");
365     Node* cmp = phase->transform(new CmpINode(src_offset, dest_offset));
366     Node *bol = phase->transform(new BoolNode(cmp, BoolTest::lt));
367     IfNode *iff = new IfNode(ctl, bol, PROB_FAIR, COUNT_UNKNOWN);
368 
369     phase->transform(iff);
370 
371     forward_ctl = phase->transform(new IfFalseNode(iff));
372     backward_ctl = phase->transform(new IfTrueNode(iff));
373   } else {
374     forward_ctl = ctl;
375   }
376 }
377 
array_copy_forward(PhaseGVN * phase,bool can_reshape,Node * & forward_ctl,MergeMemNode * mm,const TypePtr * atp_src,const TypePtr * atp_dest,Node * adr_src,Node * base_src,Node * adr_dest,Node * base_dest,BasicType copy_type,const Type * value_type,int count)378 Node* ArrayCopyNode::array_copy_forward(PhaseGVN *phase,
379                                         bool can_reshape,
380                                         Node*& forward_ctl,
381                                         MergeMemNode* mm,
382                                         const TypePtr* atp_src,
383                                         const TypePtr* atp_dest,
384                                         Node* adr_src,
385                                         Node* base_src,
386                                         Node* adr_dest,
387                                         Node* base_dest,
388                                         BasicType copy_type,
389                                         const Type* value_type,
390                                         int count) {
391   if (!forward_ctl->is_top()) {
392     // copy forward
393     mm = mm->clone()->as_MergeMem();
394 
395     if (count > 0) {
396       BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
397       Node* v = load(bs, phase, forward_ctl, mm, adr_src, atp_src, value_type, copy_type);
398       store(bs, phase, forward_ctl, mm, adr_dest, atp_dest, v, value_type, copy_type);
399       for (int i = 1; i < count; i++) {
400         Node* off  = phase->MakeConX(type2aelembytes(copy_type) * i);
401         Node* next_src = phase->transform(new AddPNode(base_src,adr_src,off));
402         Node* next_dest = phase->transform(new AddPNode(base_dest,adr_dest,off));
403         v = load(bs, phase, forward_ctl, mm, next_src, atp_src, value_type, copy_type);
404         store(bs, phase, forward_ctl, mm, next_dest, atp_dest, v, value_type, copy_type);
405       }
406     } else if(can_reshape) {
407       PhaseIterGVN* igvn = phase->is_IterGVN();
408       igvn->_worklist.push(adr_src);
409       igvn->_worklist.push(adr_dest);
410     }
411     return mm;
412   }
413   return phase->C->top();
414 }
415 
array_copy_backward(PhaseGVN * phase,bool can_reshape,Node * & backward_ctl,MergeMemNode * mm,const TypePtr * atp_src,const TypePtr * atp_dest,Node * adr_src,Node * base_src,Node * adr_dest,Node * base_dest,BasicType copy_type,const Type * value_type,int count)416 Node* ArrayCopyNode::array_copy_backward(PhaseGVN *phase,
417                                          bool can_reshape,
418                                          Node*& backward_ctl,
419                                          MergeMemNode* mm,
420                                          const TypePtr* atp_src,
421                                          const TypePtr* atp_dest,
422                                          Node* adr_src,
423                                          Node* base_src,
424                                          Node* adr_dest,
425                                          Node* base_dest,
426                                          BasicType copy_type,
427                                          const Type* value_type,
428                                          int count) {
429   if (!backward_ctl->is_top()) {
430     // copy backward
431     mm = mm->clone()->as_MergeMem();
432 
433     BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
434     assert(copy_type != T_OBJECT || !bs->array_copy_requires_gc_barriers(false, T_OBJECT, false, BarrierSetC2::Optimization), "only tightly coupled allocations for object arrays");
435 
436     if (count > 0) {
437       for (int i = count-1; i >= 1; i--) {
438         Node* off  = phase->MakeConX(type2aelembytes(copy_type) * i);
439         Node* next_src = phase->transform(new AddPNode(base_src,adr_src,off));
440         Node* next_dest = phase->transform(new AddPNode(base_dest,adr_dest,off));
441         Node* v = load(bs, phase, backward_ctl, mm, next_src, atp_src, value_type, copy_type);
442         store(bs, phase, backward_ctl, mm, next_dest, atp_dest, v, value_type, copy_type);
443       }
444       Node* v = load(bs, phase, backward_ctl, mm, adr_src, atp_src, value_type, copy_type);
445       store(bs, phase, backward_ctl, mm, adr_dest, atp_dest, v, value_type, copy_type);
446     } else if(can_reshape) {
447       PhaseIterGVN* igvn = phase->is_IterGVN();
448       igvn->_worklist.push(adr_src);
449       igvn->_worklist.push(adr_dest);
450     }
451     return phase->transform(mm);
452   }
453   return phase->C->top();
454 }
455 
finish_transform(PhaseGVN * phase,bool can_reshape,Node * ctl,Node * mem)456 bool ArrayCopyNode::finish_transform(PhaseGVN *phase, bool can_reshape,
457                                      Node* ctl, Node *mem) {
458   if (can_reshape) {
459     PhaseIterGVN* igvn = phase->is_IterGVN();
460     igvn->set_delay_transform(false);
461     if (is_clonebasic()) {
462       Node* out_mem = proj_out(TypeFunc::Memory);
463 
464       BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
465       if (out_mem->outcnt() != 1 || !out_mem->raw_out(0)->is_MergeMem() ||
466           out_mem->raw_out(0)->outcnt() != 1 || !out_mem->raw_out(0)->raw_out(0)->is_MemBar()) {
467         assert(bs->array_copy_requires_gc_barriers(true, T_OBJECT, true, BarrierSetC2::Optimization), "can only happen with card marking");
468         return false;
469       }
470 
471       igvn->replace_node(out_mem->raw_out(0), mem);
472 
473       Node* out_ctl = proj_out(TypeFunc::Control);
474       igvn->replace_node(out_ctl, ctl);
475     } else {
476       // replace fallthrough projections of the ArrayCopyNode by the
477       // new memory, control and the input IO.
478       CallProjections callprojs;
479       extract_projections(&callprojs, true, false);
480 
481       if (callprojs.fallthrough_ioproj != NULL) {
482         igvn->replace_node(callprojs.fallthrough_ioproj, in(TypeFunc::I_O));
483       }
484       if (callprojs.fallthrough_memproj != NULL) {
485         igvn->replace_node(callprojs.fallthrough_memproj, mem);
486       }
487       if (callprojs.fallthrough_catchproj != NULL) {
488         igvn->replace_node(callprojs.fallthrough_catchproj, ctl);
489       }
490 
491       // The ArrayCopyNode is not disconnected. It still has the
492       // projections for the exception case. Replace current
493       // ArrayCopyNode with a dummy new one with a top() control so
494       // that this part of the graph stays consistent but is
495       // eventually removed.
496 
497       set_req(0, phase->C->top());
498       remove_dead_region(phase, can_reshape);
499     }
500   } else {
501     if (in(TypeFunc::Control) != ctl) {
502       // we can't return new memory and control from Ideal at parse time
503       assert(!is_clonebasic() || UseShenandoahGC, "added control for clone?");
504       phase->record_for_igvn(this);
505       return false;
506     }
507   }
508   return true;
509 }
510 
511 
Ideal(PhaseGVN * phase,bool can_reshape)512 Node *ArrayCopyNode::Ideal(PhaseGVN *phase, bool can_reshape) {
513   if (remove_dead_region(phase, can_reshape))  return this;
514 
515   if (StressArrayCopyMacroNode && !can_reshape) {
516     phase->record_for_igvn(this);
517     return NULL;
518   }
519 
520   // See if it's a small array copy and we can inline it as
521   // loads/stores
522   // Here we can only do:
523   // - arraycopy if all arguments were validated before and we don't
524   // need card marking
525   // - clone for which we don't need to do card marking
526 
527   if (!is_clonebasic() && !is_arraycopy_validated() &&
528       !is_copyofrange_validated() && !is_copyof_validated()) {
529     return NULL;
530   }
531 
532   assert(in(TypeFunc::Control) != NULL &&
533          in(TypeFunc::Memory) != NULL &&
534          in(ArrayCopyNode::Src) != NULL &&
535          in(ArrayCopyNode::Dest) != NULL &&
536          in(ArrayCopyNode::Length) != NULL &&
537          ((in(ArrayCopyNode::SrcPos) != NULL && in(ArrayCopyNode::DestPos) != NULL) ||
538           is_clonebasic()), "broken inputs");
539 
540   if (in(TypeFunc::Control)->is_top() ||
541       in(TypeFunc::Memory)->is_top() ||
542       phase->type(in(ArrayCopyNode::Src)) == Type::TOP ||
543       phase->type(in(ArrayCopyNode::Dest)) == Type::TOP ||
544       (in(ArrayCopyNode::SrcPos) != NULL && in(ArrayCopyNode::SrcPos)->is_top()) ||
545       (in(ArrayCopyNode::DestPos) != NULL && in(ArrayCopyNode::DestPos)->is_top())) {
546     return NULL;
547   }
548 
549   int count = get_count(phase);
550 
551   if (count < 0 || count > ArrayCopyLoadStoreMaxElem) {
552     return NULL;
553   }
554 
555   Node* mem = try_clone_instance(phase, can_reshape, count);
556   if (mem != NULL) {
557     return (mem == NodeSentinel) ? NULL : mem;
558   }
559 
560   Node* adr_src = NULL;
561   Node* base_src = NULL;
562   Node* adr_dest = NULL;
563   Node* base_dest = NULL;
564   BasicType copy_type = T_ILLEGAL;
565   const Type* value_type = NULL;
566   bool disjoint_bases = false;
567 
568   if (!prepare_array_copy(phase, can_reshape,
569                           adr_src, base_src, adr_dest, base_dest,
570                           copy_type, value_type, disjoint_bases)) {
571     return NULL;
572   }
573 
574   Node* src = in(ArrayCopyNode::Src);
575   Node* dest = in(ArrayCopyNode::Dest);
576   const TypePtr* atp_src = get_address_type(phase, _src_type, src);
577   const TypePtr* atp_dest = get_address_type(phase, _dest_type, dest);
578 
579   Node *in_mem = in(TypeFunc::Memory);
580   if (!in_mem->is_MergeMem()) {
581     in_mem = MergeMemNode::make(in_mem);
582   }
583 
584 
585   if (can_reshape) {
586     assert(!phase->is_IterGVN()->delay_transform(), "cannot delay transforms");
587     phase->is_IterGVN()->set_delay_transform(true);
588   }
589 
590   Node* backward_ctl = phase->C->top();
591   Node* forward_ctl = phase->C->top();
592   array_copy_test_overlap(phase, can_reshape, disjoint_bases, count, forward_ctl, backward_ctl);
593 
594   Node* forward_mem = array_copy_forward(phase, can_reshape, forward_ctl,
595                                          in_mem->as_MergeMem(),
596                                          atp_src, atp_dest,
597                                          adr_src, base_src, adr_dest, base_dest,
598                                          copy_type, value_type, count);
599 
600   Node* backward_mem = array_copy_backward(phase, can_reshape, backward_ctl,
601                                            in_mem->as_MergeMem(),
602                                            atp_src, atp_dest,
603                                            adr_src, base_src, adr_dest, base_dest,
604                                            copy_type, value_type, count);
605 
606   Node* ctl = NULL;
607   if (!forward_ctl->is_top() && !backward_ctl->is_top()) {
608     ctl = new RegionNode(3);
609     ctl->init_req(1, forward_ctl);
610     ctl->init_req(2, backward_ctl);
611     ctl = phase->transform(ctl);
612     MergeMemNode* forward_mm = forward_mem->as_MergeMem();
613     MergeMemNode* backward_mm = backward_mem->as_MergeMem();
614     for (MergeMemStream mms(forward_mm, backward_mm); mms.next_non_empty2(); ) {
615       if (mms.memory() != mms.memory2()) {
616         Node* phi = new PhiNode(ctl, Type::MEMORY, phase->C->get_adr_type(mms.alias_idx()));
617         phi->init_req(1, mms.memory());
618         phi->init_req(2, mms.memory2());
619         phi = phase->transform(phi);
620         mms.set_memory(phi);
621       }
622     }
623     mem = forward_mem;
624   } else if (!forward_ctl->is_top()) {
625     ctl = forward_ctl;
626     mem = forward_mem;
627   } else {
628     assert(!backward_ctl->is_top(), "no copy?");
629     ctl = backward_ctl;
630     mem = backward_mem;
631   }
632 
633   if (can_reshape) {
634     assert(phase->is_IterGVN()->delay_transform(), "should be delaying transforms");
635     phase->is_IterGVN()->set_delay_transform(false);
636   }
637 
638   if (!finish_transform(phase, can_reshape, ctl, mem)) {
639     return NULL;
640   }
641 
642   return mem;
643 }
644 
may_modify(const TypeOopPtr * t_oop,PhaseTransform * phase)645 bool ArrayCopyNode::may_modify(const TypeOopPtr *t_oop, PhaseTransform *phase) {
646   Node* dest = in(ArrayCopyNode::Dest);
647   if (dest->is_top()) {
648     return false;
649   }
650   const TypeOopPtr* dest_t = phase->type(dest)->is_oopptr();
651   assert(!dest_t->is_known_instance() || _dest_type->is_known_instance(), "result of EA not recorded");
652   assert(in(ArrayCopyNode::Src)->is_top() || !phase->type(in(ArrayCopyNode::Src))->is_oopptr()->is_known_instance() ||
653          _src_type->is_known_instance(), "result of EA not recorded");
654 
655   if (_dest_type != TypeOopPtr::BOTTOM || t_oop->is_known_instance()) {
656     assert(_dest_type == TypeOopPtr::BOTTOM || _dest_type->is_known_instance(), "result of EA is known instance");
657     return t_oop->instance_id() == _dest_type->instance_id();
658   }
659 
660   return CallNode::may_modify_arraycopy_helper(dest_t, t_oop, phase);
661 }
662 
may_modify_helper(const TypeOopPtr * t_oop,Node * n,PhaseTransform * phase,CallNode * & call)663 bool ArrayCopyNode::may_modify_helper(const TypeOopPtr *t_oop, Node* n, PhaseTransform *phase, CallNode*& call) {
664   if (n != NULL &&
665       n->is_Call() &&
666       n->as_Call()->may_modify(t_oop, phase) &&
667       (n->as_Call()->is_ArrayCopy() || n->as_Call()->is_call_to_arraycopystub())) {
668     call = n->as_Call();
669     return true;
670   }
671   return false;
672 }
673 
may_modify(const TypeOopPtr * t_oop,MemBarNode * mb,PhaseTransform * phase,ArrayCopyNode * & ac)674 bool ArrayCopyNode::may_modify(const TypeOopPtr *t_oop, MemBarNode* mb, PhaseTransform *phase, ArrayCopyNode*& ac) {
675 
676   Node* c = mb->in(0);
677 
678   BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
679   // step over g1 gc barrier if we're at e.g. a clone with ReduceInitialCardMarks off
680   c = bs->step_over_gc_barrier(c);
681 
682   CallNode* call = NULL;
683   guarantee(c != NULL, "step_over_gc_barrier failed, there must be something to step to.");
684   if (c->is_Region()) {
685     for (uint i = 1; i < c->req(); i++) {
686       if (c->in(i) != NULL) {
687         Node* n = c->in(i)->in(0);
688         if (may_modify_helper(t_oop, n, phase, call)) {
689           ac = call->isa_ArrayCopy();
690           assert(c == mb->in(0), "only for clone");
691           return true;
692         }
693       }
694     }
695   } else if (may_modify_helper(t_oop, c->in(0), phase, call)) {
696     ac = call->isa_ArrayCopy();
697 #ifdef ASSERT
698     bool use_ReduceInitialCardMarks = BarrierSet::barrier_set()->is_a(BarrierSet::CardTableBarrierSet) &&
699       static_cast<CardTableBarrierSetC2*>(bs)->use_ReduceInitialCardMarks();
700     assert(c == mb->in(0) || (ac != NULL && ac->is_clonebasic() && !use_ReduceInitialCardMarks), "only for clone");
701 #endif
702     return true;
703   }
704 
705   return false;
706 }
707 
708 // Does this array copy modify offsets between offset_lo and offset_hi
709 // in the destination array
710 // if must_modify is false, return true if the copy could write
711 // between offset_lo and offset_hi
712 // if must_modify is true, return true if the copy is guaranteed to
713 // write between offset_lo and offset_hi
modifies(intptr_t offset_lo,intptr_t offset_hi,PhaseTransform * phase,bool must_modify) const714 bool ArrayCopyNode::modifies(intptr_t offset_lo, intptr_t offset_hi, PhaseTransform* phase, bool must_modify) const {
715   assert(_kind == ArrayCopy || _kind == CopyOf || _kind == CopyOfRange, "only for real array copies");
716 
717   Node* dest = in(Dest);
718   Node* dest_pos = in(DestPos);
719   Node* len = in(Length);
720 
721   const TypeInt *dest_pos_t = phase->type(dest_pos)->isa_int();
722   const TypeInt *len_t = phase->type(len)->isa_int();
723   const TypeAryPtr* ary_t = phase->type(dest)->isa_aryptr();
724 
725   if (dest_pos_t == NULL || len_t == NULL || ary_t == NULL) {
726     return !must_modify;
727   }
728 
729   BasicType ary_elem = ary_t->klass()->as_array_klass()->element_type()->basic_type();
730   uint header = arrayOopDesc::base_offset_in_bytes(ary_elem);
731   uint elemsize = type2aelembytes(ary_elem);
732 
733   jlong dest_pos_plus_len_lo = (((jlong)dest_pos_t->_lo) + len_t->_lo) * elemsize + header;
734   jlong dest_pos_plus_len_hi = (((jlong)dest_pos_t->_hi) + len_t->_hi) * elemsize + header;
735   jlong dest_pos_lo = ((jlong)dest_pos_t->_lo) * elemsize + header;
736   jlong dest_pos_hi = ((jlong)dest_pos_t->_hi) * elemsize + header;
737 
738   if (must_modify) {
739     if (offset_lo >= dest_pos_hi && offset_hi < dest_pos_plus_len_lo) {
740       return true;
741     }
742   } else {
743     if (offset_hi >= dest_pos_lo && offset_lo < dest_pos_plus_len_hi) {
744       return true;
745     }
746   }
747   return false;
748 }
749