1 /*
2 * Copyright (c) 1997, 2026, 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 "asm/macroAssembler.hpp"
26 #include "asm/macroAssembler.inline.hpp"
27 #include "ci/ciReplay.hpp"
28 #include "classfile/javaClasses.hpp"
29 #include "code/aotCodeCache.hpp"
30 #include "code/exceptionHandlerTable.hpp"
31 #include "code/nmethod.hpp"
32 #include "compiler/compilationFailureInfo.hpp"
33 #include "compiler/compilationMemoryStatistic.hpp"
34 #include "compiler/compileBroker.hpp"
35 #include "compiler/compileLog.hpp"
36 #include "compiler/compiler_globals.hpp"
37 #include "compiler/compilerDefinitions.hpp"
38 #include "compiler/compilerOracle.hpp"
39 #include "compiler/disassembler.hpp"
40 #include "compiler/oopMap.hpp"
41 #include "gc/shared/barrierSet.hpp"
42 #include "gc/shared/c2/barrierSetC2.hpp"
43 #include "jfr/jfrEvents.hpp"
44 #include "jvm_io.h"
45 #include "memory/allocation.hpp"
46 #include "memory/arena.hpp"
47 #include "memory/resourceArea.hpp"
48 #include "opto/addnode.hpp"
49 #include "opto/block.hpp"
50 #include "opto/c2compiler.hpp"
51 #include "opto/callGenerator.hpp"
52 #include "opto/callnode.hpp"
53 #include "opto/castnode.hpp"
54 #include "opto/cfgnode.hpp"
55 #include "opto/chaitin.hpp"
56 #include "opto/compile.hpp"
57 #include "opto/connode.hpp"
58 #include "opto/convertnode.hpp"
59 #include "opto/divnode.hpp"
60 #include "opto/escape.hpp"
61 #include "opto/idealGraphPrinter.hpp"
62 #include "opto/locknode.hpp"
63 #include "opto/loopnode.hpp"
64 #include "opto/machnode.hpp"
65 #include "opto/macro.hpp"
66 #include "opto/matcher.hpp"
67 #include "opto/mathexactnode.hpp"
68 #include "opto/memnode.hpp"
69 #include "opto/mulnode.hpp"
70 #include "opto/narrowptrnode.hpp"
71 #include "opto/node.hpp"
72 #include "opto/opaquenode.hpp"
73 #include "opto/opcodes.hpp"
74 #include "opto/output.hpp"
75 #include "opto/parse.hpp"
76 #include "opto/phaseX.hpp"
77 #include "opto/rootnode.hpp"
78 #include "opto/runtime.hpp"
79 #include "opto/stringopts.hpp"
80 #include "opto/type.hpp"
81 #include "opto/vector.hpp"
82 #include "opto/vectornode.hpp"
83 #include "runtime/globals_extension.hpp"
84 #include "runtime/sharedRuntime.hpp"
85 #include "runtime/signature.hpp"
86 #include "runtime/stubRoutines.hpp"
87 #include "runtime/timer.hpp"
88 #include "utilities/align.hpp"
89 #include "utilities/copy.hpp"
90 #include "utilities/hashTable.hpp"
91 #include "utilities/macros.hpp"
92
93 // -------------------- Compile::mach_constant_base_node -----------------------
94 // Constant table base node singleton.
95 MachConstantBaseNode* Compile::mach_constant_base_node() {
96 if (_mach_constant_base_node == nullptr) {
97 _mach_constant_base_node = new MachConstantBaseNode();
98 _mach_constant_base_node->add_req(C->root());
99 }
100 return _mach_constant_base_node;
101 }
102
103
104 /// Support for intrinsics.
105
106 // Return the index at which m must be inserted (or already exists).
107 // The sort order is by the address of the ciMethod, with is_virtual as minor key.
108 class IntrinsicDescPair {
109 private:
110 ciMethod* _m;
111 bool _is_virtual;
112 public:
113 IntrinsicDescPair(ciMethod* m, bool is_virtual) : _m(m), _is_virtual(is_virtual) {}
114 static int compare(IntrinsicDescPair* const& key, CallGenerator* const& elt) {
115 ciMethod* m= elt->method();
116 ciMethod* key_m = key->_m;
117 if (key_m < m) return -1;
118 else if (key_m > m) return 1;
119 else {
120 bool is_virtual = elt->is_virtual();
121 bool key_virtual = key->_is_virtual;
122 if (key_virtual < is_virtual) return -1;
123 else if (key_virtual > is_virtual) return 1;
124 else return 0;
125 }
126 }
127 };
128 int Compile::intrinsic_insertion_index(ciMethod* m, bool is_virtual, bool& found) {
129 #ifdef ASSERT
130 for (int i = 1; i < _intrinsics.length(); i++) {
131 CallGenerator* cg1 = _intrinsics.at(i-1);
132 CallGenerator* cg2 = _intrinsics.at(i);
133 assert(cg1->method() != cg2->method()
134 ? cg1->method() < cg2->method()
135 : cg1->is_virtual() < cg2->is_virtual(),
136 "compiler intrinsics list must stay sorted");
137 }
138 #endif
139 IntrinsicDescPair pair(m, is_virtual);
140 return _intrinsics.find_sorted<IntrinsicDescPair*, IntrinsicDescPair::compare>(&pair, found);
141 }
142
143 void Compile::register_intrinsic(CallGenerator* cg) {
144 bool found = false;
145 int index = intrinsic_insertion_index(cg->method(), cg->is_virtual(), found);
146 assert(!found, "registering twice");
147 _intrinsics.insert_before(index, cg);
148 assert(find_intrinsic(cg->method(), cg->is_virtual()) == cg, "registration worked");
149 }
150
151 CallGenerator* Compile::find_intrinsic(ciMethod* m, bool is_virtual) {
152 assert(m->is_loaded(), "don't try this on unloaded methods");
153 if (_intrinsics.length() > 0) {
154 bool found = false;
155 int index = intrinsic_insertion_index(m, is_virtual, found);
156 if (found) {
157 return _intrinsics.at(index);
158 }
159 }
160 // Lazily create intrinsics for intrinsic IDs well-known in the runtime.
161 if (m->intrinsic_id() != vmIntrinsics::_none &&
162 m->intrinsic_id() <= vmIntrinsics::LAST_COMPILER_INLINE) {
163 CallGenerator* cg = make_vm_intrinsic(m, is_virtual);
164 if (cg != nullptr) {
165 // Save it for next time:
166 register_intrinsic(cg);
167 return cg;
168 } else {
169 gather_intrinsic_statistics(m->intrinsic_id(), is_virtual, _intrinsic_disabled);
170 }
171 }
172 return nullptr;
173 }
174
175 // Compile::make_vm_intrinsic is defined in library_call.cpp.
176
177 #ifndef PRODUCT
178 // statistics gathering...
179
180 juint Compile::_intrinsic_hist_count[vmIntrinsics::number_of_intrinsics()] = {0};
181 jubyte Compile::_intrinsic_hist_flags[vmIntrinsics::number_of_intrinsics()] = {0};
182
183 inline int as_int(vmIntrinsics::ID id) {
184 return vmIntrinsics::as_int(id);
185 }
186
187 bool Compile::gather_intrinsic_statistics(vmIntrinsics::ID id, bool is_virtual, int flags) {
188 assert(id > vmIntrinsics::_none && id < vmIntrinsics::ID_LIMIT, "oob");
189 int oflags = _intrinsic_hist_flags[as_int(id)];
190 assert(flags != 0, "what happened?");
191 if (is_virtual) {
192 flags |= _intrinsic_virtual;
193 }
194 bool changed = (flags != oflags);
195 if ((flags & _intrinsic_worked) != 0) {
196 juint count = (_intrinsic_hist_count[as_int(id)] += 1);
197 if (count == 1) {
198 changed = true; // first time
199 }
200 // increment the overall count also:
201 _intrinsic_hist_count[as_int(vmIntrinsics::_none)] += 1;
202 }
203 if (changed) {
204 if (((oflags ^ flags) & _intrinsic_virtual) != 0) {
205 // Something changed about the intrinsic's virtuality.
206 if ((flags & _intrinsic_virtual) != 0) {
207 // This is the first use of this intrinsic as a virtual call.
208 if (oflags != 0) {
209 // We already saw it as a non-virtual, so note both cases.
210 flags |= _intrinsic_both;
211 }
212 } else if ((oflags & _intrinsic_both) == 0) {
213 // This is the first use of this intrinsic as a non-virtual
214 flags |= _intrinsic_both;
215 }
216 }
217 _intrinsic_hist_flags[as_int(id)] = (jubyte) (oflags | flags);
218 }
219 // update the overall flags also:
220 _intrinsic_hist_flags[as_int(vmIntrinsics::_none)] |= (jubyte) flags;
221 return changed;
222 }
223
224 static char* format_flags(int flags, char* buf) {
225 buf[0] = 0;
226 if ((flags & Compile::_intrinsic_worked) != 0) strcat(buf, ",worked");
227 if ((flags & Compile::_intrinsic_failed) != 0) strcat(buf, ",failed");
228 if ((flags & Compile::_intrinsic_disabled) != 0) strcat(buf, ",disabled");
229 if ((flags & Compile::_intrinsic_virtual) != 0) strcat(buf, ",virtual");
230 if ((flags & Compile::_intrinsic_both) != 0) strcat(buf, ",nonvirtual");
231 if (buf[0] == 0) strcat(buf, ",");
232 assert(buf[0] == ',', "must be");
233 return &buf[1];
234 }
235
236 void Compile::print_intrinsic_statistics() {
237 char flagsbuf[100];
238 ttyLocker ttyl;
239 if (xtty != nullptr) xtty->head("statistics type='intrinsic'");
240 tty->print_cr("Compiler intrinsic usage:");
241 juint total = _intrinsic_hist_count[as_int(vmIntrinsics::_none)];
242 if (total == 0) total = 1; // avoid div0 in case of no successes
243 #define PRINT_STAT_LINE(name, c, f) \
244 tty->print_cr(" %4d (%4.1f%%) %s (%s)", (int)(c), ((c) * 100.0) / total, name, f);
245 for (auto id : EnumRange<vmIntrinsicID>{}) {
246 int flags = _intrinsic_hist_flags[as_int(id)];
247 juint count = _intrinsic_hist_count[as_int(id)];
248 if ((flags | count) != 0) {
249 PRINT_STAT_LINE(vmIntrinsics::name_at(id), count, format_flags(flags, flagsbuf));
250 }
251 }
252 PRINT_STAT_LINE("total", total, format_flags(_intrinsic_hist_flags[as_int(vmIntrinsics::_none)], flagsbuf));
253 if (xtty != nullptr) xtty->tail("statistics");
254 }
255
256 void Compile::print_statistics() {
257 { ttyLocker ttyl;
258 if (xtty != nullptr) xtty->head("statistics type='opto'");
259 Parse::print_statistics();
260 PhaseStringOpts::print_statistics();
261 PhaseCCP::print_statistics();
262 PhaseRegAlloc::print_statistics();
263 PhaseOutput::print_statistics();
264 PhasePeephole::print_statistics();
265 PhaseIdealLoop::print_statistics();
266 ConnectionGraph::print_statistics();
267 PhaseMacroExpand::print_statistics();
268 if (xtty != nullptr) xtty->tail("statistics");
269 }
270 if (_intrinsic_hist_flags[as_int(vmIntrinsics::_none)] != 0) {
271 // put this under its own <statistics> element.
272 print_intrinsic_statistics();
273 }
274 }
275 #endif //PRODUCT
276
277 void Compile::gvn_replace_by(Node* n, Node* nn) {
278 for (DUIterator_Last imin, i = n->last_outs(imin); i >= imin; ) {
279 Node* use = n->last_out(i);
280 bool is_in_table = initial_gvn()->hash_delete(use);
281 uint uses_found = 0;
282 for (uint j = 0; j < use->len(); j++) {
283 if (use->in(j) == n) {
284 if (j < use->req())
285 use->set_req(j, nn);
286 else
287 use->set_prec(j, nn);
288 uses_found++;
289 }
290 }
291 if (is_in_table) {
292 // reinsert into table
293 initial_gvn()->hash_find_insert(use);
294 }
295 record_for_igvn(use);
296 PhaseIterGVN::add_users_of_use_to_worklist(nn, use, *_igvn_worklist);
297 i -= uses_found; // we deleted 1 or more copies of this edge
298 }
299 }
300
301
302 // Identify all nodes that are reachable from below, useful.
303 // Use breadth-first pass that records state in a Unique_Node_List,
304 // recursive traversal is slower.
305 void Compile::identify_useful_nodes(Unique_Node_List &useful) {
306 int estimated_worklist_size = live_nodes();
307 useful.map( estimated_worklist_size, nullptr ); // preallocate space
308
309 // Initialize worklist
310 if (root() != nullptr) { useful.push(root()); }
311 // If 'top' is cached, declare it useful to preserve cached node
312 if (cached_top_node()) { useful.push(cached_top_node()); }
313
314 // Push all useful nodes onto the list, breadthfirst
315 for( uint next = 0; next < useful.size(); ++next ) {
316 assert( next < unique(), "Unique useful nodes < total nodes");
317 Node *n = useful.at(next);
318 uint max = n->len();
319 for( uint i = 0; i < max; ++i ) {
320 Node *m = n->in(i);
321 if (not_a_node(m)) continue;
322 useful.push(m);
323 }
324 }
325 }
326
327 // Update dead_node_list with any missing dead nodes using useful
328 // list. Consider all non-useful nodes to be useless i.e., dead nodes.
329 void Compile::update_dead_node_list(Unique_Node_List &useful) {
330 uint max_idx = unique();
331 VectorSet& useful_node_set = useful.member_set();
332
333 for (uint node_idx = 0; node_idx < max_idx; node_idx++) {
334 // If node with index node_idx is not in useful set,
335 // mark it as dead in dead node list.
336 if (!useful_node_set.test(node_idx)) {
337 record_dead_node(node_idx);
338 }
339 }
340 }
341
342 void Compile::remove_useless_late_inlines(GrowableArray<CallGenerator*>* inlines, Unique_Node_List &useful) {
343 int shift = 0;
344 for (int i = 0; i < inlines->length(); i++) {
345 CallGenerator* cg = inlines->at(i);
346 if (useful.member(cg->call_node())) {
347 if (shift > 0) {
348 inlines->at_put(i - shift, cg);
349 }
350 } else {
351 shift++; // skip over the dead element
352 }
353 }
354 if (shift > 0) {
355 inlines->trunc_to(inlines->length() - shift); // remove last elements from compacted array
356 }
357 }
358
359 void Compile::remove_useless_late_inlines(GrowableArray<CallGenerator*>* inlines, Node* dead) {
360 assert(dead != nullptr && dead->is_Call(), "sanity");
361 int found = 0;
362 for (int i = 0; i < inlines->length(); i++) {
363 if (inlines->at(i)->call_node() == dead) {
364 inlines->remove_at(i);
365 found++;
366 NOT_DEBUG( break; ) // elements are unique, so exit early
367 }
368 }
369 assert(found <= 1, "not unique");
370 }
371
372 template<typename N, ENABLE_IF_SDEFN(std::is_base_of<Node, N>::value)>
373 void Compile::remove_useless_nodes(GrowableArray<N*>& node_list, Unique_Node_List& useful) {
374 for (int i = node_list.length() - 1; i >= 0; i--) {
375 N* node = node_list.at(i);
376 if (!useful.member(node)) {
377 node_list.delete_at(i); // replaces i-th with last element which is known to be useful (already processed)
378 }
379 }
380 }
381
382 void Compile::remove_useless_node(Node* dead) {
383 remove_modified_node(dead);
384
385 // Constant node that has no out-edges and has only one in-edge from
386 // root is usually dead. However, sometimes reshaping walk makes
387 // it reachable by adding use edges. So, we will NOT count Con nodes
388 // as dead to be conservative about the dead node count at any
389 // given time.
390 if (!dead->is_Con()) {
391 record_dead_node(dead->_idx);
392 }
393 if (dead->is_macro()) {
394 remove_macro_node(dead);
395 }
396 if (dead->is_expensive()) {
397 remove_expensive_node(dead);
398 }
399 if (dead->is_OpaqueTemplateAssertionPredicate()) {
400 remove_template_assertion_predicate_opaque(dead->as_OpaqueTemplateAssertionPredicate());
401 }
402 if (dead->is_ParsePredicate()) {
403 remove_parse_predicate(dead->as_ParsePredicate());
404 }
405 if (dead->for_post_loop_opts_igvn()) {
406 remove_from_post_loop_opts_igvn(dead);
407 }
408 if (dead->for_merge_stores_igvn()) {
409 remove_from_merge_stores_igvn(dead);
410 }
411 if (dead->is_Call()) {
412 remove_useless_late_inlines( &_late_inlines, dead);
413 remove_useless_late_inlines( &_string_late_inlines, dead);
414 remove_useless_late_inlines( &_boxing_late_inlines, dead);
415 remove_useless_late_inlines(&_vector_reboxing_late_inlines, dead);
416
417 if (dead->is_CallStaticJava()) {
418 remove_unstable_if_trap(dead->as_CallStaticJava(), false);
419 }
420 }
421 BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
422 bs->unregister_potential_barrier_node(dead);
423 }
424
425 // Disconnect all useless nodes by disconnecting those at the boundary.
426 void Compile::disconnect_useless_nodes(Unique_Node_List& useful, Unique_Node_List& worklist, const Unique_Node_List* root_and_safepoints) {
427 uint next = 0;
428 while (next < useful.size()) {
429 Node *n = useful.at(next++);
430 if (n->is_SafePoint()) {
431 // We're done with a parsing phase. Replaced nodes are not valid
432 // beyond that point.
433 n->as_SafePoint()->delete_replaced_nodes();
434 }
435 // Use raw traversal of out edges since this code removes out edges
436 int max = n->outcnt();
437 for (int j = 0; j < max; ++j) {
438 Node* child = n->raw_out(j);
439 if (!useful.member(child)) {
440 assert(!child->is_top() || child != top(),
441 "If top is cached in Compile object it is in useful list");
442 // Only need to remove this out-edge to the useless node
443 n->raw_del_out(j);
444 --j;
445 --max;
446 if (child->is_data_proj_of_pure_function(n)) {
447 worklist.push(n);
448 }
449 }
450 }
451 if (n->outcnt() == 1 && n->has_special_unique_user()) {
452 assert(useful.member(n->unique_out()), "do not push a useless node");
453 worklist.push(n->unique_out());
454 }
455 }
456
457 remove_useless_nodes(_macro_nodes, useful); // remove useless macro nodes
458 remove_useless_nodes(_parse_predicates, useful); // remove useless Parse Predicate nodes
459 // Remove useless Template Assertion Predicate opaque nodes
460 remove_useless_nodes(_template_assertion_predicate_opaques, useful);
461 remove_useless_nodes(_expensive_nodes, useful); // remove useless expensive nodes
462 remove_useless_nodes(_for_post_loop_igvn, useful); // remove useless node recorded for post loop opts IGVN pass
463 remove_useless_nodes(_for_merge_stores_igvn, useful); // remove useless node recorded for merge stores IGVN pass
464 remove_useless_unstable_if_traps(useful); // remove useless unstable_if traps
465 remove_useless_coarsened_locks(useful); // remove useless coarsened locks nodes
466 #ifdef ASSERT
467 if (_modified_nodes != nullptr) {
468 _modified_nodes->remove_useless_nodes(useful.member_set());
469 }
470 #endif
471
472 BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
473 bs->eliminate_useless_gc_barriers(useful, this);
474 // clean up the late inline lists
475 remove_useless_late_inlines( &_late_inlines, useful);
476 remove_useless_late_inlines( &_string_late_inlines, useful);
477 remove_useless_late_inlines( &_boxing_late_inlines, useful);
478 remove_useless_late_inlines(&_vector_reboxing_late_inlines, useful);
479 DEBUG_ONLY(verify_graph_edges(true /*check for no_dead_code*/, root_and_safepoints);)
480 }
481
482 // ============================================================================
483 //------------------------------CompileWrapper---------------------------------
484 class CompileWrapper : public StackObj {
485 Compile *const _compile;
486 public:
487 CompileWrapper(Compile* compile);
488
489 ~CompileWrapper();
490 };
491
492 CompileWrapper::CompileWrapper(Compile* compile) : _compile(compile) {
493 // the Compile* pointer is stored in the current ciEnv:
494 ciEnv* env = compile->env();
495 assert(env == ciEnv::current(), "must already be a ciEnv active");
496 assert(env->compiler_data() == nullptr, "compile already active?");
497 env->set_compiler_data(compile);
498 assert(compile == Compile::current(), "sanity");
499
500 compile->set_type_dict(nullptr);
501 compile->set_clone_map(new Dict(cmpkey, hashkey, _compile->comp_arena()));
502 compile->clone_map().set_clone_idx(0);
503 compile->set_type_last_size(0);
504 compile->set_last_tf(nullptr, nullptr);
505 compile->set_indexSet_arena(nullptr);
506 compile->set_indexSet_free_block_list(nullptr);
507 compile->init_type_arena();
508 Type::Initialize(compile);
509 _compile->begin_method();
510 _compile->clone_map().set_debug(_compile->has_method() && _compile->directive()->CloneMapDebugOption);
511 }
512 CompileWrapper::~CompileWrapper() {
513 // simulate crash during compilation
514 assert(CICrashAt < 0 || _compile->compile_id() != CICrashAt, "just as planned");
515
516 _compile->end_method();
517 _compile->env()->set_compiler_data(nullptr);
518 }
519
520
521 //----------------------------print_compile_messages---------------------------
522 void Compile::print_compile_messages() {
523 #ifndef PRODUCT
524 // Check if recompiling
525 if (!subsume_loads() && PrintOpto) {
526 // Recompiling without allowing machine instructions to subsume loads
527 tty->print_cr("*********************************************************");
528 tty->print_cr("** Bailout: Recompile without subsuming loads **");
529 tty->print_cr("*********************************************************");
530 }
531 if ((do_escape_analysis() != DoEscapeAnalysis) && PrintOpto) {
532 // Recompiling without escape analysis
533 tty->print_cr("*********************************************************");
534 tty->print_cr("** Bailout: Recompile without escape analysis **");
535 tty->print_cr("*********************************************************");
536 }
537 if (do_iterative_escape_analysis() != DoEscapeAnalysis && PrintOpto) {
538 // Recompiling without iterative escape analysis
539 tty->print_cr("*********************************************************");
540 tty->print_cr("** Bailout: Recompile without iterative escape analysis**");
541 tty->print_cr("*********************************************************");
542 }
543 if (do_reduce_allocation_merges() != ReduceAllocationMerges && PrintOpto) {
544 // Recompiling without reducing allocation merges
545 tty->print_cr("*********************************************************");
546 tty->print_cr("** Bailout: Recompile without reduce allocation merges **");
547 tty->print_cr("*********************************************************");
548 }
549 if ((eliminate_boxing() != EliminateAutoBox) && PrintOpto) {
550 // Recompiling without boxing elimination
551 tty->print_cr("*********************************************************");
552 tty->print_cr("** Bailout: Recompile without boxing elimination **");
553 tty->print_cr("*********************************************************");
554 }
555 if ((do_locks_coarsening() != EliminateLocks) && PrintOpto) {
556 // Recompiling without locks coarsening
557 tty->print_cr("*********************************************************");
558 tty->print_cr("** Bailout: Recompile without locks coarsening **");
559 tty->print_cr("*********************************************************");
560 }
561 if (env()->break_at_compile()) {
562 // Open the debugger when compiling this method.
563 tty->print("### Breaking when compiling: ");
564 method()->print_short_name();
565 tty->cr();
566 BREAKPOINT;
567 }
568
569 if( PrintOpto ) {
570 if (is_osr_compilation()) {
571 tty->print("[OSR]%3d", _compile_id);
572 } else {
573 tty->print("%3d", _compile_id);
574 }
575 }
576 #endif
577 }
578
579 #ifndef PRODUCT
580 void Compile::print_phase(const char* phase_name) {
581 tty->print_cr("%u.\t%s", ++_phase_counter, phase_name);
582 }
583
584 void Compile::print_ideal_ir(const char* compile_phase_name) const {
585 // keep the following output all in one block
586 // This output goes directly to the tty, not the compiler log.
587 // To enable tools to match it up with the compilation activity,
588 // be sure to tag this tty output with the compile ID.
589
590 // Node dumping can cause a safepoint, which can break the tty lock.
591 // Buffer all node dumps, so that all safepoints happen before we lock.
592 ResourceMark rm;
593 stringStream ss;
594
595 if (_output == nullptr) {
596 ss.print_cr("AFTER: %s", compile_phase_name);
597 // Print out all nodes in ascending order of index.
598 // It is important that we traverse both inputs and outputs of nodes,
599 // so that we reach all nodes that are connected to Root.
600 root()->dump_bfs(MaxNodeLimit, nullptr, "-+S$", &ss);
601 } else {
602 // Dump the node blockwise if we have a scheduling
603 _output->print_scheduling(&ss);
604 }
605
606 // Check that the lock is not broken by a safepoint.
607 NoSafepointVerifier nsv;
608 ttyLocker ttyl;
609 if (xtty != nullptr) {
610 xtty->head("ideal compile_id='%d'%s compile_phase='%s'",
611 compile_id(),
612 is_osr_compilation() ? " compile_kind='osr'" : "",
613 compile_phase_name);
614 }
615
616 tty->print("%s", ss.as_string());
617
618 if (xtty != nullptr) {
619 xtty->tail("ideal");
620 }
621 }
622 #endif
623
624 // ============================================================================
625 //------------------------------Compile standard-------------------------------
626
627 // Compile a method. entry_bci is -1 for normal compilations and indicates
628 // the continuation bci for on stack replacement.
629
630
631 Compile::Compile(ciEnv* ci_env, ciMethod* target, int osr_bci,
632 Options options, DirectiveSet* directive)
633 : Phase(Compiler),
634 _compile_id(ci_env->compile_id()),
635 _options(options),
636 _method(target),
637 _entry_bci(osr_bci),
638 _ilt(nullptr),
639 _stub_function(nullptr),
640 _stub_name(nullptr),
641 _stub_id(StubId::NO_STUBID),
642 _stub_entry_point(nullptr),
643 _max_node_limit(MaxNodeLimit),
644 _post_loop_opts_phase(false),
645 _merge_stores_phase(false),
646 _allow_macro_nodes(true),
647 _inlining_progress(false),
648 _inlining_incrementally(false),
649 _do_cleanup(false),
650 _has_reserved_stack_access(target->has_reserved_stack_access()),
651 #ifndef PRODUCT
652 _igv_idx(0),
653 _trace_opto_output(directive->TraceOptoOutputOption),
654 #endif
655 _clinit_barrier_on_entry(false),
656 _stress_seed(0),
657 _comp_arena(mtCompiler, Arena::Tag::tag_comp),
658 _barrier_set_state(BarrierSet::barrier_set()->barrier_set_c2()->create_barrier_state(comp_arena())),
659 _env(ci_env),
660 _directive(directive),
661 _log(ci_env->log()),
662 _first_failure_details(nullptr),
663 _intrinsics(comp_arena(), 0, 0, nullptr),
664 _macro_nodes(comp_arena(), 8, 0, nullptr),
665 _parse_predicates(comp_arena(), 8, 0, nullptr),
666 _template_assertion_predicate_opaques(comp_arena(), 8, 0, nullptr),
667 _expensive_nodes(comp_arena(), 8, 0, nullptr),
668 _for_post_loop_igvn(comp_arena(), 8, 0, nullptr),
669 _for_merge_stores_igvn(comp_arena(), 8, 0, nullptr),
670 _unstable_if_traps(comp_arena(), 8, 0, nullptr),
671 _coarsened_locks(comp_arena(), 8, 0, nullptr),
672 _congraph(nullptr),
673 NOT_PRODUCT(_igv_printer(nullptr) COMMA)
674 _unique(0),
675 _dead_node_count(0),
676 _dead_node_list(comp_arena()),
677 _node_arena_one(mtCompiler, Arena::Tag::tag_node),
678 _node_arena_two(mtCompiler, Arena::Tag::tag_node),
679 _node_arena(&_node_arena_one),
680 _mach_constant_base_node(nullptr),
681 _Compile_types(mtCompiler, Arena::Tag::tag_type),
682 _initial_gvn(nullptr),
683 _igvn_worklist(nullptr),
684 _types(nullptr),
685 _node_hash(nullptr),
686 _late_inlines(comp_arena(), 2, 0, nullptr),
687 _string_late_inlines(comp_arena(), 2, 0, nullptr),
688 _boxing_late_inlines(comp_arena(), 2, 0, nullptr),
689 _vector_reboxing_late_inlines(comp_arena(), 2, 0, nullptr),
690 _late_inlines_pos(0),
691 _has_mh_late_inlines(false),
692 _oom(false),
693 _replay_inline_data(nullptr),
694 _inline_printer(this),
695 _java_calls(0),
696 _inner_loops(0),
697 _FIRST_STACK_mask(comp_arena()),
698 _interpreter_frame_size(0),
699 _regmask_arena(mtCompiler, Arena::Tag::tag_regmask),
700 _output(nullptr)
701 #ifndef PRODUCT
702 ,
703 _in_dump_cnt(0)
704 #endif
705 {
706 C = this;
707 CompileWrapper cw(this);
708
709 TraceTime t1("Total compilation time", &_t_totalCompilation, CITime, CITimeVerbose);
710 TraceTime t2(nullptr, &_t_methodCompilation, CITime, false);
711
712 #if defined(SUPPORT_ASSEMBLY) || defined(SUPPORT_ABSTRACT_ASSEMBLY)
713 bool print_opto_assembly = directive->PrintOptoAssemblyOption;
714 // We can always print a disassembly, either abstract (hex dump) or
715 // with the help of a suitable hsdis library. Thus, we should not
716 // couple print_assembly and print_opto_assembly controls.
717 // But: always print opto and regular assembly on compile command 'print'.
718 bool print_assembly = directive->PrintAssemblyOption;
719 set_print_assembly(print_opto_assembly || print_assembly);
720 #else
721 set_print_assembly(false); // must initialize.
722 #endif
723
724 #ifndef PRODUCT
725 set_parsed_irreducible_loop(false);
726 #endif
727
728 if (directive->ReplayInlineOption) {
729 _replay_inline_data = ciReplay::load_inline_data(method(), entry_bci(), ci_env->comp_level());
730 }
731 set_print_inlining(directive->PrintInliningOption || PrintOptoInlining);
732 set_print_intrinsics(directive->PrintIntrinsicsOption);
733 set_has_irreducible_loop(true); // conservative until build_loop_tree() reset it
734
735 if (ProfileTraps) {
736 // Make sure the method being compiled gets its own MDO,
737 // so we can at least track the decompile_count().
738 method()->ensure_method_data();
739 }
740
741 if (StressLCM || StressGCM || StressIGVN || StressCCP ||
742 StressIncrementalInlining || StressMacroExpansion ||
743 StressMacroElimination || StressUnstableIfTraps ||
744 StressBailout || StressLoopPeeling) {
745 initialize_stress_seed(directive);
746 }
747
748 Init(/*do_aliasing=*/ true);
749
750 print_compile_messages();
751
752 _ilt = InlineTree::build_inline_tree_root();
753
754 // Even if NO memory addresses are used, MergeMem nodes must have at least 1 slice
755 assert(num_alias_types() >= AliasIdxRaw, "");
756
757 #define MINIMUM_NODE_HASH 1023
758
759 // GVN that will be run immediately on new nodes
760 uint estimated_size = method()->code_size()*4+64;
761 estimated_size = (estimated_size < MINIMUM_NODE_HASH ? MINIMUM_NODE_HASH : estimated_size);
762 _igvn_worklist = new (comp_arena()) Unique_Node_List(comp_arena());
763 _types = new (comp_arena()) Type_Array(comp_arena());
764 _node_hash = new (comp_arena()) NodeHash(comp_arena(), estimated_size);
765 PhaseGVN gvn;
766 set_initial_gvn(&gvn);
767
768 { // Scope for timing the parser
769 TracePhase tp(_t_parser);
770
771 // Put top into the hash table ASAP.
772 initial_gvn()->transform(top());
773
774 // Set up tf(), start(), and find a CallGenerator.
775 CallGenerator* cg = nullptr;
776 if (is_osr_compilation()) {
777 const TypeTuple *domain = StartOSRNode::osr_domain();
778 const TypeTuple *range = TypeTuple::make_range(method()->signature());
779 init_tf(TypeFunc::make(domain, range));
780 StartNode* s = new StartOSRNode(root(), domain);
781 initial_gvn()->set_type_bottom(s);
782 verify_start(s);
783 cg = CallGenerator::for_osr(method(), entry_bci());
784 } else {
785 // Normal case.
786 init_tf(TypeFunc::make(method()));
787 StartNode* s = new StartNode(root(), tf()->domain());
788 initial_gvn()->set_type_bottom(s);
789 verify_start(s);
790 float past_uses = method()->interpreter_invocation_count();
791 float expected_uses = past_uses;
792 cg = CallGenerator::for_inline(method(), expected_uses);
793 }
794 if (failing()) return;
795 if (cg == nullptr) {
796 const char* reason = InlineTree::check_can_parse(method());
797 assert(reason != nullptr, "expect reason for parse failure");
798 stringStream ss;
799 ss.print("cannot parse method: %s", reason);
800 record_method_not_compilable(ss.as_string());
801 return;
802 }
803
804 gvn.set_type(root(), root()->bottom_type());
805
806 JVMState* jvms = build_start_state(start(), tf());
807 if ((jvms = cg->generate(jvms)) == nullptr) {
808 assert(failure_reason() != nullptr, "expect reason for parse failure");
809 stringStream ss;
810 ss.print("method parse failed: %s", failure_reason());
811 record_method_not_compilable(ss.as_string() DEBUG_ONLY(COMMA true));
812 return;
813 }
814 GraphKit kit(jvms);
815
816 if (!kit.stopped()) {
817 // Accept return values, and transfer control we know not where.
818 // This is done by a special, unique ReturnNode bound to root.
819 return_values(kit.jvms());
820 }
821
822 if (kit.has_exceptions()) {
823 // Any exceptions that escape from this call must be rethrown
824 // to whatever caller is dynamically above us on the stack.
825 // This is done by a special, unique RethrowNode bound to root.
826 rethrow_exceptions(kit.transfer_exceptions_into_jvms());
827 }
828
829 assert(IncrementalInline || (_late_inlines.length() == 0 && !has_mh_late_inlines()), "incremental inlining is off");
830
831 if (_late_inlines.length() == 0 && !has_mh_late_inlines() && !failing() && has_stringbuilder()) {
832 inline_string_calls(true);
833 }
834
835 if (failing()) return;
836
837 // Remove clutter produced by parsing.
838 if (!failing()) {
839 ResourceMark rm;
840 PhaseRemoveUseless pru(initial_gvn(), *igvn_worklist());
841 }
842 }
843
844 // Note: Large methods are capped off in do_one_bytecode().
845 if (failing()) return;
846
847 // After parsing, node notes are no longer automagic.
848 // They must be propagated by register_new_node_with_optimizer(),
849 // clone(), or the like.
850 set_default_node_notes(nullptr);
851
852 #ifndef PRODUCT
853 if (should_print_igv(1)) {
854 _igv_printer->print_inlining();
855 }
856 #endif
857
858 if (failing()) return;
859 NOT_PRODUCT( verify_graph_edges(); )
860
861 // Now optimize
862 Optimize();
863 if (failing()) return;
864 NOT_PRODUCT( verify_graph_edges(); )
865
866 #ifndef PRODUCT
867 if (should_print_ideal()) {
868 print_ideal_ir("PrintIdeal");
869 }
870 #endif
871
872 #ifdef ASSERT
873 BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
874 bs->verify_gc_barriers(this, BarrierSetC2::BeforeCodeGen);
875 #endif
876
877 // Dump compilation data to replay it.
878 if (directive->DumpReplayOption) {
879 env()->dump_replay_data(_compile_id);
880 }
881 if (directive->DumpInlineOption && (ilt() != nullptr)) {
882 env()->dump_inline_data(_compile_id);
883 }
884
885 // Now that we know the size of all the monitors we can add a fixed slot
886 // for the original deopt pc.
887 int next_slot = fixed_slots() + (sizeof(address) / VMRegImpl::stack_slot_size);
888 set_fixed_slots(next_slot);
889
890 // Compute when to use implicit null checks. Used by matching trap based
891 // nodes and NullCheck optimization.
892 set_allowed_deopt_reasons();
893
894 // Now generate code
895 Code_Gen();
896 }
897
898 //------------------------------Compile----------------------------------------
899 // Compile a runtime stub
900 Compile::Compile(ciEnv* ci_env,
901 TypeFunc_generator generator,
902 address stub_function,
903 const char* stub_name,
904 StubId stub_id,
905 int is_fancy_jump,
906 bool pass_tls,
907 bool return_pc,
908 DirectiveSet* directive)
909 : Phase(Compiler),
910 _compile_id(0),
911 _options(Options::for_runtime_stub()),
912 _method(nullptr),
913 _entry_bci(InvocationEntryBci),
914 _stub_function(stub_function),
915 _stub_name(stub_name),
916 _stub_id(stub_id),
917 _stub_entry_point(nullptr),
918 _max_node_limit(MaxNodeLimit),
919 _post_loop_opts_phase(false),
920 _merge_stores_phase(false),
921 _allow_macro_nodes(true),
922 _inlining_progress(false),
923 _inlining_incrementally(false),
924 _has_reserved_stack_access(false),
925 #ifndef PRODUCT
926 _igv_idx(0),
927 _trace_opto_output(directive->TraceOptoOutputOption),
928 #endif
929 _clinit_barrier_on_entry(false),
930 _stress_seed(0),
931 _comp_arena(mtCompiler, Arena::Tag::tag_comp),
932 _barrier_set_state(BarrierSet::barrier_set()->barrier_set_c2()->create_barrier_state(comp_arena())),
933 _env(ci_env),
934 _directive(directive),
935 _log(ci_env->log()),
936 _first_failure_details(nullptr),
937 _for_post_loop_igvn(comp_arena(), 8, 0, nullptr),
938 _for_merge_stores_igvn(comp_arena(), 8, 0, nullptr),
939 _congraph(nullptr),
940 NOT_PRODUCT(_igv_printer(nullptr) COMMA)
941 _unique(0),
942 _dead_node_count(0),
943 _dead_node_list(comp_arena()),
944 _node_arena_one(mtCompiler, Arena::Tag::tag_node),
945 _node_arena_two(mtCompiler, Arena::Tag::tag_node),
946 _node_arena(&_node_arena_one),
947 _mach_constant_base_node(nullptr),
948 _Compile_types(mtCompiler, Arena::Tag::tag_type),
949 _initial_gvn(nullptr),
950 _igvn_worklist(nullptr),
951 _types(nullptr),
952 _node_hash(nullptr),
953 _has_mh_late_inlines(false),
954 _oom(false),
955 _replay_inline_data(nullptr),
956 _inline_printer(this),
957 _java_calls(0),
958 _inner_loops(0),
959 _FIRST_STACK_mask(comp_arena()),
960 _interpreter_frame_size(0),
961 _regmask_arena(mtCompiler, Arena::Tag::tag_regmask),
962 _output(nullptr),
963 #ifndef PRODUCT
964 _in_dump_cnt(0),
965 #endif
966 _allowed_reasons(0) {
967 C = this;
968
969 // try to reuse an existing stub
970 {
971 BlobId blob_id = StubInfo::blob(_stub_id);
972 CodeBlob* blob = AOTCodeCache::load_code_blob(AOTCodeEntry::C2Blob, blob_id);
973 if (blob != nullptr) {
974 RuntimeStub* rs = blob->as_runtime_stub();
975 _stub_entry_point = rs->entry_point();
976 return;
977 }
978 }
979
980 TraceTime t1(nullptr, &_t_totalCompilation, CITime, false);
981 TraceTime t2(nullptr, &_t_stubCompilation, CITime, false);
982
983 #ifndef PRODUCT
984 set_print_assembly(PrintFrameConverterAssembly);
985 set_parsed_irreducible_loop(false);
986 #else
987 set_print_assembly(false); // Must initialize.
988 #endif
989 set_has_irreducible_loop(false); // no loops
990
991 CompileWrapper cw(this);
992 Init(/*do_aliasing=*/ false);
993 init_tf((*generator)());
994
995 _igvn_worklist = new (comp_arena()) Unique_Node_List(comp_arena());
996 _types = new (comp_arena()) Type_Array(comp_arena());
997 _node_hash = new (comp_arena()) NodeHash(comp_arena(), 255);
998
999 if (StressLCM || StressGCM || StressBailout) {
1000 initialize_stress_seed(directive);
1001 }
1002
1003 {
1004 PhaseGVN gvn;
1005 set_initial_gvn(&gvn); // not significant, but GraphKit guys use it pervasively
1006 gvn.transform(top());
1007
1008 GraphKit kit;
1009 kit.gen_stub(stub_function, stub_name, is_fancy_jump, pass_tls, return_pc);
1010 }
1011
1012 NOT_PRODUCT( verify_graph_edges(); )
1013
1014 Code_Gen();
1015 }
1016
1017 Compile::~Compile() {
1018 delete _first_failure_details;
1019 };
1020
1021 //------------------------------Init-------------------------------------------
1022 // Prepare for a single compilation
1023 void Compile::Init(bool aliasing) {
1024 _do_aliasing = aliasing;
1025 _unique = 0;
1026 _regalloc = nullptr;
1027
1028 _tf = nullptr; // filled in later
1029 _top = nullptr; // cached later
1030 _matcher = nullptr; // filled in later
1031 _cfg = nullptr; // filled in later
1032
1033 _node_note_array = nullptr;
1034 _default_node_notes = nullptr;
1035 DEBUG_ONLY( _modified_nodes = nullptr; ) // Used in Optimize()
1036
1037 _immutable_memory = nullptr; // filled in at first inquiry
1038
1039 #ifdef ASSERT
1040 _phase_optimize_finished = false;
1041 _phase_verify_ideal_loop = false;
1042 _exception_backedge = false;
1043 _type_verify = nullptr;
1044 #endif
1045
1046 // Globally visible Nodes
1047 // First set TOP to null to give safe behavior during creation of RootNode
1048 set_cached_top_node(nullptr);
1049 set_root(new RootNode());
1050 // Now that you have a Root to point to, create the real TOP
1051 set_cached_top_node( new ConNode(Type::TOP) );
1052 set_recent_alloc(nullptr, nullptr);
1053
1054 // Create Debug Information Recorder to record scopes, oopmaps, etc.
1055 env()->set_oop_recorder(new OopRecorder(env()->arena()));
1056 env()->set_debug_info(new DebugInformationRecorder(env()->oop_recorder()));
1057 env()->set_dependencies(new Dependencies(env()));
1058
1059 _fixed_slots = 0;
1060 set_has_split_ifs(false);
1061 set_has_loops(false); // first approximation
1062 set_has_stringbuilder(false);
1063 set_has_boxed_value(false);
1064 _trap_can_recompile = false; // no traps emitted yet
1065 _major_progress = true; // start out assuming good things will happen
1066 set_has_unsafe_access(false);
1067 set_max_vector_size(0);
1068 set_clear_upper_avx(false); //false as default for clear upper bits of ymm registers
1069 Copy::zero_to_bytes(_trap_hist, sizeof(_trap_hist));
1070 set_decompile_count(0);
1071
1072 #ifndef PRODUCT
1073 _phase_counter = 0;
1074 Copy::zero_to_bytes(_igv_phase_iter, sizeof(_igv_phase_iter));
1075 #endif
1076
1077 set_do_freq_based_layout(_directive->BlockLayoutByFrequencyOption);
1078 _loop_opts_cnt = LoopOptsCount;
1079 set_do_inlining(Inline);
1080 set_max_inline_size(MaxInlineSize);
1081 set_freq_inline_size(FreqInlineSize);
1082 set_do_scheduling(OptoScheduling);
1083
1084 set_do_vector_loop(false);
1085 set_has_monitors(false);
1086 set_has_scoped_access(false);
1087
1088 if (AllowVectorizeOnDemand) {
1089 if (has_method() && _directive->VectorizeOption) {
1090 set_do_vector_loop(true);
1091 NOT_PRODUCT(if (do_vector_loop() && Verbose) {tty->print("Compile::Init: do vectorized loops (SIMD like) for method %s\n", method()->name()->as_quoted_ascii());})
1092 } else if (has_method() && method()->name() != nullptr &&
1093 method()->intrinsic_id() == vmIntrinsics::_forEachRemaining) {
1094 set_do_vector_loop(true);
1095 }
1096 }
1097 set_use_cmove(UseCMoveUnconditionally /* || do_vector_loop()*/); //TODO: consider do_vector_loop() mandate use_cmove unconditionally
1098 NOT_PRODUCT(if (use_cmove() && Verbose && has_method()) {tty->print("Compile::Init: use CMove without profitability tests for method %s\n", method()->name()->as_quoted_ascii());})
1099
1100 _max_node_limit = _directive->MaxNodeLimitOption;
1101
1102 if (VM_Version::supports_fast_class_init_checks() && has_method() && !is_osr_compilation() && method()->needs_clinit_barrier()) {
1103 set_clinit_barrier_on_entry(true);
1104 }
1105 if (debug_info()->recording_non_safepoints()) {
1106 set_node_note_array(new(comp_arena()) GrowableArray<Node_Notes*>
1107 (comp_arena(), 8, 0, nullptr));
1108 set_default_node_notes(Node_Notes::make(this));
1109 }
1110
1111 const int grow_ats = 16;
1112 _max_alias_types = grow_ats;
1113 _alias_types = NEW_ARENA_ARRAY(comp_arena(), AliasType*, grow_ats);
1114 AliasType* ats = NEW_ARENA_ARRAY(comp_arena(), AliasType, grow_ats);
1115 Copy::zero_to_bytes(ats, sizeof(AliasType)*grow_ats);
1116 {
1117 for (int i = 0; i < grow_ats; i++) _alias_types[i] = &ats[i];
1118 }
1119 // Initialize the first few types.
1120 _alias_types[AliasIdxTop]->Init(AliasIdxTop, nullptr);
1121 _alias_types[AliasIdxBot]->Init(AliasIdxBot, TypePtr::BOTTOM);
1122 _alias_types[AliasIdxRaw]->Init(AliasIdxRaw, TypeRawPtr::BOTTOM);
1123 _num_alias_types = AliasIdxRaw+1;
1124 // Zero out the alias type cache.
1125 Copy::zero_to_bytes(_alias_cache, sizeof(_alias_cache));
1126 // A null adr_type hits in the cache right away. Preload the right answer.
1127 probe_alias_cache(nullptr)->_index = AliasIdxTop;
1128 }
1129
1130 #ifdef ASSERT
1131 // Verify that the current StartNode is valid.
1132 void Compile::verify_start(StartNode* s) const {
1133 assert(failing_internal() || s == start(), "should be StartNode");
1134 }
1135 #endif
1136
1137 /**
1138 * Return the 'StartNode'. We must not have a pending failure, since the ideal graph
1139 * can be in an inconsistent state, i.e., we can get segmentation faults when traversing
1140 * the ideal graph.
1141 */
1142 StartNode* Compile::start() const {
1143 assert (!failing_internal() || C->failure_is_artificial(), "Must not have pending failure. Reason is: %s", failure_reason());
1144 for (DUIterator_Fast imax, i = root()->fast_outs(imax); i < imax; i++) {
1145 Node* start = root()->fast_out(i);
1146 if (start->is_Start()) {
1147 return start->as_Start();
1148 }
1149 }
1150 fatal("Did not find Start node!");
1151 return nullptr;
1152 }
1153
1154 //-------------------------------immutable_memory-------------------------------------
1155 // Access immutable memory
1156 Node* Compile::immutable_memory() {
1157 if (_immutable_memory != nullptr) {
1158 return _immutable_memory;
1159 }
1160 StartNode* s = start();
1161 for (DUIterator_Fast imax, i = s->fast_outs(imax); true; i++) {
1162 Node *p = s->fast_out(i);
1163 if (p != s && p->as_Proj()->_con == TypeFunc::Memory) {
1164 _immutable_memory = p;
1165 return _immutable_memory;
1166 }
1167 }
1168 ShouldNotReachHere();
1169 return nullptr;
1170 }
1171
1172 //----------------------set_cached_top_node------------------------------------
1173 // Install the cached top node, and make sure Node::is_top works correctly.
1174 void Compile::set_cached_top_node(Node* tn) {
1175 if (tn != nullptr) verify_top(tn);
1176 Node* old_top = _top;
1177 _top = tn;
1178 // Calling Node::setup_is_top allows the nodes the chance to adjust
1179 // their _out arrays.
1180 if (_top != nullptr) _top->setup_is_top();
1181 if (old_top != nullptr) old_top->setup_is_top();
1182 assert(_top == nullptr || top()->is_top(), "");
1183 }
1184
1185 #ifdef ASSERT
1186 uint Compile::count_live_nodes_by_graph_walk() {
1187 Unique_Node_List useful(comp_arena());
1188 // Get useful node list by walking the graph.
1189 identify_useful_nodes(useful);
1190 return useful.size();
1191 }
1192
1193 void Compile::print_missing_nodes() {
1194
1195 // Return if CompileLog is null and PrintIdealNodeCount is false.
1196 if ((_log == nullptr) && (! PrintIdealNodeCount)) {
1197 return;
1198 }
1199
1200 // This is an expensive function. It is executed only when the user
1201 // specifies VerifyIdealNodeCount option or otherwise knows the
1202 // additional work that needs to be done to identify reachable nodes
1203 // by walking the flow graph and find the missing ones using
1204 // _dead_node_list.
1205
1206 Unique_Node_List useful(comp_arena());
1207 // Get useful node list by walking the graph.
1208 identify_useful_nodes(useful);
1209
1210 uint l_nodes = C->live_nodes();
1211 uint l_nodes_by_walk = useful.size();
1212
1213 if (l_nodes != l_nodes_by_walk) {
1214 if (_log != nullptr) {
1215 _log->begin_head("mismatched_nodes count='%d'", abs((int) (l_nodes - l_nodes_by_walk)));
1216 _log->stamp();
1217 _log->end_head();
1218 }
1219 VectorSet& useful_member_set = useful.member_set();
1220 int last_idx = l_nodes_by_walk;
1221 for (int i = 0; i < last_idx; i++) {
1222 if (useful_member_set.test(i)) {
1223 if (_dead_node_list.test(i)) {
1224 if (_log != nullptr) {
1225 _log->elem("mismatched_node_info node_idx='%d' type='both live and dead'", i);
1226 }
1227 if (PrintIdealNodeCount) {
1228 // Print the log message to tty
1229 tty->print_cr("mismatched_node idx='%d' both live and dead'", i);
1230 useful.at(i)->dump();
1231 }
1232 }
1233 }
1234 else if (! _dead_node_list.test(i)) {
1235 if (_log != nullptr) {
1236 _log->elem("mismatched_node_info node_idx='%d' type='neither live nor dead'", i);
1237 }
1238 if (PrintIdealNodeCount) {
1239 // Print the log message to tty
1240 tty->print_cr("mismatched_node idx='%d' type='neither live nor dead'", i);
1241 }
1242 }
1243 }
1244 if (_log != nullptr) {
1245 _log->tail("mismatched_nodes");
1246 }
1247 }
1248 }
1249 void Compile::record_modified_node(Node* n) {
1250 if (_modified_nodes != nullptr && !_inlining_incrementally && !n->is_Con()) {
1251 _modified_nodes->push(n);
1252 }
1253 }
1254
1255 void Compile::remove_modified_node(Node* n) {
1256 if (_modified_nodes != nullptr) {
1257 _modified_nodes->remove(n);
1258 }
1259 }
1260 #endif
1261
1262 #ifndef PRODUCT
1263 void Compile::verify_top(Node* tn) const {
1264 if (tn != nullptr) {
1265 assert(tn->is_Con(), "top node must be a constant");
1266 assert(((ConNode*)tn)->type() == Type::TOP, "top node must have correct type");
1267 assert(tn->in(0) != nullptr, "must have live top node");
1268 }
1269 }
1270 #endif
1271
1272
1273 ///-------------------Managing Per-Node Debug & Profile Info-------------------
1274
1275 void Compile::grow_node_notes(GrowableArray<Node_Notes*>* arr, int grow_by) {
1276 guarantee(arr != nullptr, "");
1277 int num_blocks = arr->length();
1278 if (grow_by < num_blocks) grow_by = num_blocks;
1279 int num_notes = grow_by * _node_notes_block_size;
1280 Node_Notes* notes = NEW_ARENA_ARRAY(node_arena(), Node_Notes, num_notes);
1281 Copy::zero_to_bytes(notes, num_notes * sizeof(Node_Notes));
1282 while (num_notes > 0) {
1283 arr->append(notes);
1284 notes += _node_notes_block_size;
1285 num_notes -= _node_notes_block_size;
1286 }
1287 assert(num_notes == 0, "exact multiple, please");
1288 }
1289
1290 bool Compile::copy_node_notes_to(Node* dest, Node* source) {
1291 if (source == nullptr || dest == nullptr) return false;
1292
1293 if (dest->is_Con())
1294 return false; // Do not push debug info onto constants.
1295
1296 #ifdef ASSERT
1297 // Leave a bread crumb trail pointing to the original node:
1298 if (dest != nullptr && dest != source && dest->debug_orig() == nullptr) {
1299 dest->set_debug_orig(source);
1300 }
1301 #endif
1302
1303 if (node_note_array() == nullptr)
1304 return false; // Not collecting any notes now.
1305
1306 // This is a copy onto a pre-existing node, which may already have notes.
1307 // If both nodes have notes, do not overwrite any pre-existing notes.
1308 Node_Notes* source_notes = node_notes_at(source->_idx);
1309 if (source_notes == nullptr || source_notes->is_clear()) return false;
1310 Node_Notes* dest_notes = node_notes_at(dest->_idx);
1311 if (dest_notes == nullptr || dest_notes->is_clear()) {
1312 return set_node_notes_at(dest->_idx, source_notes);
1313 }
1314
1315 Node_Notes merged_notes = (*source_notes);
1316 // The order of operations here ensures that dest notes will win...
1317 merged_notes.update_from(dest_notes);
1318 return set_node_notes_at(dest->_idx, &merged_notes);
1319 }
1320
1321
1322 //--------------------------allow_range_check_smearing-------------------------
1323 // Gating condition for coalescing similar range checks.
1324 // Sometimes we try 'speculatively' replacing a series of a range checks by a
1325 // single covering check that is at least as strong as any of them.
1326 // If the optimization succeeds, the simplified (strengthened) range check
1327 // will always succeed. If it fails, we will deopt, and then give up
1328 // on the optimization.
1329 bool Compile::allow_range_check_smearing() const {
1330 // If this method has already thrown a range-check,
1331 // assume it was because we already tried range smearing
1332 // and it failed.
1333 uint already_trapped = trap_count(Deoptimization::Reason_range_check);
1334 return !already_trapped;
1335 }
1336
1337
1338 //------------------------------flatten_alias_type-----------------------------
1339 const TypePtr *Compile::flatten_alias_type( const TypePtr *tj ) const {
1340 assert(do_aliasing(), "Aliasing should be enabled");
1341 int offset = tj->offset();
1342 TypePtr::PTR ptr = tj->ptr();
1343
1344 // Known instance (scalarizable allocation) alias only with itself.
1345 bool is_known_inst = tj->isa_oopptr() != nullptr &&
1346 tj->is_oopptr()->is_known_instance();
1347
1348 // Process weird unsafe references.
1349 if (offset == Type::OffsetBot && (tj->isa_instptr() /*|| tj->isa_klassptr()*/)) {
1350 assert(InlineUnsafeOps || StressReflectiveCode, "indeterminate pointers come only from unsafe ops");
1351 assert(!is_known_inst, "scalarizable allocation should not have unsafe references");
1352 tj = TypeOopPtr::BOTTOM;
1353 ptr = tj->ptr();
1354 offset = tj->offset();
1355 }
1356
1357 // Array pointers need some flattening
1358 const TypeAryPtr* ta = tj->isa_aryptr();
1359 if (ta && ta->is_stable()) {
1360 // Erase stability property for alias analysis.
1361 tj = ta = ta->cast_to_stable(false);
1362 }
1363 if( ta && is_known_inst ) {
1364 if ( offset != Type::OffsetBot &&
1365 offset > arrayOopDesc::length_offset_in_bytes() ) {
1366 offset = Type::OffsetBot; // Flatten constant access into array body only
1367 tj = ta = ta->
1368 remove_speculative()->
1369 cast_to_ptr_type(ptr)->
1370 with_offset(offset);
1371 }
1372 } else if (ta != nullptr) {
1373 // Common slices
1374 if (offset == arrayOopDesc::length_offset_in_bytes()) {
1375 return TypeAryPtr::RANGE;
1376 } else if (offset == oopDesc::klass_offset_in_bytes()) {
1377 return TypeInstPtr::KLASS;
1378 } else if (offset == oopDesc::mark_offset_in_bytes()) {
1379 return TypeInstPtr::MARK;
1380 }
1381
1382 // Remove size and stability
1383 const TypeAry* normalized_ary = TypeAry::make(ta->elem(), TypeInt::POS, false);
1384 // Remove ptr, const_oop, and offset
1385 if (ta->elem() == Type::BOTTOM) {
1386 // Bottom array (meet of int[] and byte[] for example), accesses to it will be done with
1387 // Unsafe. This should alias with all arrays. For now just leave it as it is (this is
1388 // incorrect, see JDK-8331133).
1389 tj = ta = TypeAryPtr::make(TypePtr::BotPTR, nullptr, normalized_ary, nullptr, false, Type::OffsetBot);
1390 } else if (ta->elem()->make_oopptr() != nullptr) {
1391 // Object arrays, all of them share the same slice
1392 const TypeAry* tary = TypeAry::make(TypeInstPtr::BOTTOM, TypeInt::POS, false);
1393 tj = ta = TypeAryPtr::make(TypePtr::BotPTR, nullptr, tary, nullptr, false, Type::OffsetBot);
1394 } else {
1395 // Primitive arrays
1396 tj = ta = TypeAryPtr::make(TypePtr::BotPTR, nullptr, normalized_ary, ta->exact_klass(), true, Type::OffsetBot);
1397 }
1398
1399 // Arrays of bytes and of booleans both use 'bastore' and 'baload' so
1400 // cannot be distinguished by bytecode alone.
1401 if (ta->elem() == TypeInt::BOOL) {
1402 tj = ta = TypeAryPtr::BYTES;
1403 }
1404 }
1405
1406 // Oop pointers need some flattening
1407 const TypeInstPtr *to = tj->isa_instptr();
1408 if (to && to != TypeOopPtr::BOTTOM) {
1409 ciInstanceKlass* ik = to->instance_klass();
1410 if( ptr == TypePtr::Constant ) {
1411 if (ik != ciEnv::current()->Class_klass() ||
1412 offset < ik->layout_helper_size_in_bytes()) {
1413 // No constant oop pointers (such as Strings); they alias with
1414 // unknown strings.
1415 assert(!is_known_inst, "not scalarizable allocation");
1416 tj = to = to->
1417 cast_to_instance_id(TypeOopPtr::InstanceBot)->
1418 remove_speculative()->
1419 cast_to_ptr_type(TypePtr::BotPTR)->
1420 cast_to_exactness(false);
1421 }
1422 } else if( is_known_inst ) {
1423 tj = to; // Keep NotNull and klass_is_exact for instance type
1424 } else if( ptr == TypePtr::NotNull || to->klass_is_exact() ) {
1425 // During the 2nd round of IterGVN, NotNull castings are removed.
1426 // Make sure the Bottom and NotNull variants alias the same.
1427 // Also, make sure exact and non-exact variants alias the same.
1428 tj = to = to->
1429 remove_speculative()->
1430 cast_to_instance_id(TypeOopPtr::InstanceBot)->
1431 cast_to_ptr_type(TypePtr::BotPTR)->
1432 cast_to_exactness(false);
1433 }
1434 if (to->speculative() != nullptr) {
1435 tj = to = to->remove_speculative();
1436 }
1437 // Canonicalize the holder of this field
1438 if (offset >= 0 && offset < instanceOopDesc::base_offset_in_bytes()) {
1439 // First handle header references such as a LoadKlassNode, even if the
1440 // object's klass is unloaded at compile time (4965979).
1441 if (!is_known_inst) { // Do it only for non-instance types
1442 tj = to = TypeInstPtr::make(TypePtr::BotPTR, env()->Object_klass(), false, nullptr, offset);
1443 }
1444 } else if (offset < 0 || offset >= ik->layout_helper_size_in_bytes()) {
1445 // Static fields are in the space above the normal instance
1446 // fields in the java.lang.Class instance.
1447 if (ik != ciEnv::current()->Class_klass()) {
1448 to = nullptr;
1449 tj = TypeOopPtr::BOTTOM;
1450 offset = tj->offset();
1451 }
1452 } else {
1453 ciInstanceKlass *canonical_holder = ik->get_canonical_holder(offset);
1454 assert(offset < canonical_holder->layout_helper_size_in_bytes(), "");
1455 assert(tj->offset() == offset, "no change to offset expected");
1456 bool xk = to->klass_is_exact();
1457 int instance_id = to->instance_id();
1458
1459 // If the input type's class is the holder: if exact, the type only includes interfaces implemented by the holder
1460 // but if not exact, it may include extra interfaces: build new type from the holder class to make sure only
1461 // its interfaces are included.
1462 if (xk && ik->equals(canonical_holder)) {
1463 assert(tj == TypeInstPtr::make(to->ptr(), canonical_holder, is_known_inst, nullptr, offset, instance_id), "exact type should be canonical type");
1464 } else {
1465 assert(xk || !is_known_inst, "Known instance should be exact type");
1466 tj = to = TypeInstPtr::make(to->ptr(), canonical_holder, is_known_inst, nullptr, offset, instance_id);
1467 }
1468 }
1469 }
1470
1471 // Klass pointers to object array klasses need some flattening
1472 const TypeKlassPtr *tk = tj->isa_klassptr();
1473 if( tk ) {
1474 // If we are referencing a field within a Klass, we need
1475 // to assume the worst case of an Object. Both exact and
1476 // inexact types must flatten to the same alias class so
1477 // use NotNull as the PTR.
1478 if ( offset == Type::OffsetBot || (offset >= 0 && (size_t)offset < sizeof(Klass)) ) {
1479 tj = tk = TypeInstKlassPtr::make(TypePtr::NotNull,
1480 env()->Object_klass(),
1481 offset);
1482 }
1483
1484 if (tk->isa_aryklassptr() && tk->is_aryklassptr()->elem()->isa_klassptr()) {
1485 ciKlass* k = ciObjArrayKlass::make(env()->Object_klass());
1486 if (!k || !k->is_loaded()) { // Only fails for some -Xcomp runs
1487 tj = tk = TypeInstKlassPtr::make(TypePtr::NotNull, env()->Object_klass(), offset);
1488 } else {
1489 tj = tk = TypeAryKlassPtr::make(TypePtr::NotNull, tk->is_aryklassptr()->elem(), k, offset);
1490 }
1491 }
1492
1493 // Check for precise loads from the primary supertype array and force them
1494 // to the supertype cache alias index. Check for generic array loads from
1495 // the primary supertype array and also force them to the supertype cache
1496 // alias index. Since the same load can reach both, we need to merge
1497 // these 2 disparate memories into the same alias class. Since the
1498 // primary supertype array is read-only, there's no chance of confusion
1499 // where we bypass an array load and an array store.
1500 int primary_supers_offset = in_bytes(Klass::primary_supers_offset());
1501 if (offset == Type::OffsetBot ||
1502 (offset >= primary_supers_offset &&
1503 offset < (int)(primary_supers_offset + Klass::primary_super_limit() * wordSize)) ||
1504 offset == (int)in_bytes(Klass::secondary_super_cache_offset())) {
1505 offset = in_bytes(Klass::secondary_super_cache_offset());
1506 tj = tk = tk->with_offset(offset);
1507 }
1508 }
1509
1510 // Flatten all Raw pointers together.
1511 if (tj->base() == Type::RawPtr)
1512 tj = TypeRawPtr::BOTTOM;
1513
1514 if (tj->base() == Type::AnyPtr)
1515 tj = TypePtr::BOTTOM; // An error, which the caller must check for.
1516
1517 offset = tj->offset();
1518 assert( offset != Type::OffsetTop, "Offset has fallen from constant" );
1519
1520 assert( (offset != Type::OffsetBot && tj->base() != Type::AryPtr) ||
1521 (offset == Type::OffsetBot && tj->base() == Type::AryPtr) ||
1522 (offset == Type::OffsetBot && tj == TypeOopPtr::BOTTOM) ||
1523 (offset == Type::OffsetBot && tj == TypePtr::BOTTOM) ||
1524 (offset == oopDesc::mark_offset_in_bytes() && tj->base() == Type::AryPtr) ||
1525 (offset == oopDesc::klass_offset_in_bytes() && tj->base() == Type::AryPtr) ||
1526 (offset == arrayOopDesc::length_offset_in_bytes() && tj->base() == Type::AryPtr),
1527 "For oops, klasses, raw offset must be constant; for arrays the offset is never known" );
1528 assert( tj->ptr() != TypePtr::TopPTR &&
1529 tj->ptr() != TypePtr::AnyNull &&
1530 tj->ptr() != TypePtr::Null, "No imprecise addresses" );
1531 // assert( tj->ptr() != TypePtr::Constant ||
1532 // tj->base() == Type::RawPtr ||
1533 // tj->base() == Type::KlassPtr, "No constant oop addresses" );
1534
1535 return tj;
1536 }
1537
1538 void Compile::AliasType::Init(int i, const TypePtr* at) {
1539 assert(AliasIdxTop <= i && i < Compile::current()->_max_alias_types, "Invalid alias index");
1540 _index = i;
1541 _adr_type = at;
1542 _field = nullptr;
1543 _element = nullptr;
1544 _is_rewritable = true; // default
1545 const TypeOopPtr *atoop = (at != nullptr) ? at->isa_oopptr() : nullptr;
1546 if (atoop != nullptr && atoop->is_known_instance()) {
1547 const TypeOopPtr *gt = atoop->cast_to_instance_id(TypeOopPtr::InstanceBot);
1548 _general_index = Compile::current()->get_alias_index(gt);
1549 } else {
1550 _general_index = 0;
1551 }
1552 }
1553
1554 BasicType Compile::AliasType::basic_type() const {
1555 if (element() != nullptr) {
1556 const Type* element = adr_type()->is_aryptr()->elem();
1557 return element->isa_narrowoop() ? T_OBJECT : element->array_element_basic_type();
1558 } if (field() != nullptr) {
1559 return field()->layout_type();
1560 } else {
1561 return T_ILLEGAL; // unknown
1562 }
1563 }
1564
1565 //---------------------------------print_on------------------------------------
1566 #ifndef PRODUCT
1567 void Compile::AliasType::print_on(outputStream* st) {
1568 if (index() < 10)
1569 st->print("@ <%d> ", index());
1570 else st->print("@ <%d>", index());
1571 st->print(is_rewritable() ? " " : " RO");
1572 int offset = adr_type()->offset();
1573 if (offset == Type::OffsetBot)
1574 st->print(" +any");
1575 else st->print(" +%-3d", offset);
1576 st->print(" in ");
1577 adr_type()->dump_on(st);
1578 const TypeOopPtr* tjp = adr_type()->isa_oopptr();
1579 if (field() != nullptr && tjp) {
1580 if (tjp->is_instptr()->instance_klass() != field()->holder() ||
1581 tjp->offset() != field()->offset_in_bytes()) {
1582 st->print(" != ");
1583 field()->print();
1584 st->print(" ***");
1585 }
1586 }
1587 }
1588
1589 void print_alias_types() {
1590 Compile* C = Compile::current();
1591 tty->print_cr("--- Alias types, AliasIdxBot .. %d", C->num_alias_types()-1);
1592 for (int idx = Compile::AliasIdxBot; idx < C->num_alias_types(); idx++) {
1593 C->alias_type(idx)->print_on(tty);
1594 tty->cr();
1595 }
1596 }
1597 #endif
1598
1599
1600 //----------------------------probe_alias_cache--------------------------------
1601 Compile::AliasCacheEntry* Compile::probe_alias_cache(const TypePtr* adr_type) {
1602 intptr_t key = (intptr_t) adr_type;
1603 key ^= key >> logAliasCacheSize;
1604 return &_alias_cache[key & right_n_bits(logAliasCacheSize)];
1605 }
1606
1607
1608 //-----------------------------grow_alias_types--------------------------------
1609 void Compile::grow_alias_types() {
1610 const int old_ats = _max_alias_types; // how many before?
1611 const int new_ats = old_ats; // how many more?
1612 const int grow_ats = old_ats+new_ats; // how many now?
1613 _max_alias_types = grow_ats;
1614 _alias_types = REALLOC_ARENA_ARRAY(comp_arena(), AliasType*, _alias_types, old_ats, grow_ats);
1615 AliasType* ats = NEW_ARENA_ARRAY(comp_arena(), AliasType, new_ats);
1616 Copy::zero_to_bytes(ats, sizeof(AliasType)*new_ats);
1617 for (int i = 0; i < new_ats; i++) _alias_types[old_ats+i] = &ats[i];
1618 }
1619
1620
1621 //--------------------------------find_alias_type------------------------------
1622 Compile::AliasType* Compile::find_alias_type(const TypePtr* adr_type, bool no_create, ciField* original_field) {
1623 if (!do_aliasing()) {
1624 return alias_type(AliasIdxBot);
1625 }
1626
1627 AliasCacheEntry* ace = probe_alias_cache(adr_type);
1628 if (ace->_adr_type == adr_type) {
1629 return alias_type(ace->_index);
1630 }
1631
1632 // Handle special cases.
1633 if (adr_type == nullptr) return alias_type(AliasIdxTop);
1634 if (adr_type == TypePtr::BOTTOM) return alias_type(AliasIdxBot);
1635
1636 // Do it the slow way.
1637 const TypePtr* flat = flatten_alias_type(adr_type);
1638
1639 #ifdef ASSERT
1640 {
1641 ResourceMark rm;
1642 assert(flat == flatten_alias_type(flat), "not idempotent: adr_type = %s; flat = %s => %s",
1643 Type::str(adr_type), Type::str(flat), Type::str(flatten_alias_type(flat)));
1644 assert(flat != TypePtr::BOTTOM, "cannot alias-analyze an untyped ptr: adr_type = %s",
1645 Type::str(adr_type));
1646 if (flat->isa_oopptr() && !flat->isa_klassptr()) {
1647 const TypeOopPtr* foop = flat->is_oopptr();
1648 // Scalarizable allocations have exact klass always.
1649 bool exact = !foop->klass_is_exact() || foop->is_known_instance();
1650 const TypePtr* xoop = foop->cast_to_exactness(exact)->is_ptr();
1651 assert(foop == flatten_alias_type(xoop), "exactness must not affect alias type: foop = %s; xoop = %s",
1652 Type::str(foop), Type::str(xoop));
1653 }
1654 }
1655 #endif
1656
1657 int idx = AliasIdxTop;
1658 for (int i = 0; i < num_alias_types(); i++) {
1659 if (alias_type(i)->adr_type() == flat) {
1660 idx = i;
1661 break;
1662 }
1663 }
1664
1665 if (idx == AliasIdxTop) {
1666 if (no_create) return nullptr;
1667 // Grow the array if necessary.
1668 if (_num_alias_types == _max_alias_types) grow_alias_types();
1669 // Add a new alias type.
1670 idx = _num_alias_types++;
1671 _alias_types[idx]->Init(idx, flat);
1672 if (flat == TypeInstPtr::KLASS) alias_type(idx)->set_rewritable(false);
1673 if (flat == TypeAryPtr::RANGE) alias_type(idx)->set_rewritable(false);
1674 if (flat->isa_instptr()) {
1675 if (flat->offset() == java_lang_Class::klass_offset()
1676 && flat->is_instptr()->instance_klass() == env()->Class_klass())
1677 alias_type(idx)->set_rewritable(false);
1678 }
1679 if (flat->isa_aryptr()) {
1680 #ifdef ASSERT
1681 const int header_size_min = arrayOopDesc::base_offset_in_bytes(T_BYTE);
1682 // (T_BYTE has the weakest alignment and size restrictions...)
1683 assert(flat->offset() < header_size_min, "array body reference must be OffsetBot");
1684 #endif
1685 if (flat->offset() == TypePtr::OffsetBot) {
1686 alias_type(idx)->set_element(flat->is_aryptr()->elem());
1687 }
1688 }
1689 if (flat->isa_klassptr()) {
1690 if (UseCompactObjectHeaders) {
1691 if (flat->offset() == in_bytes(Klass::prototype_header_offset()))
1692 alias_type(idx)->set_rewritable(false);
1693 }
1694 if (flat->offset() == in_bytes(Klass::super_check_offset_offset()))
1695 alias_type(idx)->set_rewritable(false);
1696 if (flat->offset() == in_bytes(Klass::misc_flags_offset()))
1697 alias_type(idx)->set_rewritable(false);
1698 if (flat->offset() == in_bytes(Klass::java_mirror_offset()))
1699 alias_type(idx)->set_rewritable(false);
1700 if (flat->offset() == in_bytes(Klass::secondary_super_cache_offset()))
1701 alias_type(idx)->set_rewritable(false);
1702 }
1703
1704 if (flat->isa_instklassptr()) {
1705 if (flat->offset() == in_bytes(InstanceKlass::access_flags_offset())) {
1706 alias_type(idx)->set_rewritable(false);
1707 }
1708 }
1709 // %%% (We would like to finalize JavaThread::threadObj_offset(),
1710 // but the base pointer type is not distinctive enough to identify
1711 // references into JavaThread.)
1712
1713 // Check for final fields.
1714 const TypeInstPtr* tinst = flat->isa_instptr();
1715 if (tinst && tinst->offset() >= instanceOopDesc::base_offset_in_bytes()) {
1716 ciField* field;
1717 if (tinst->const_oop() != nullptr &&
1718 tinst->instance_klass() == ciEnv::current()->Class_klass() &&
1719 tinst->offset() >= (tinst->instance_klass()->layout_helper_size_in_bytes())) {
1720 // static field
1721 ciInstanceKlass* k = tinst->const_oop()->as_instance()->java_lang_Class_klass()->as_instance_klass();
1722 field = k->get_field_by_offset(tinst->offset(), true);
1723 } else {
1724 ciInstanceKlass *k = tinst->instance_klass();
1725 field = k->get_field_by_offset(tinst->offset(), false);
1726 }
1727 assert(field == nullptr ||
1728 original_field == nullptr ||
1729 (field->holder() == original_field->holder() &&
1730 field->offset_in_bytes() == original_field->offset_in_bytes() &&
1731 field->is_static() == original_field->is_static()), "wrong field?");
1732 // Set field() and is_rewritable() attributes.
1733 if (field != nullptr) alias_type(idx)->set_field(field);
1734 }
1735 }
1736
1737 // Fill the cache for next time.
1738 ace->_adr_type = adr_type;
1739 ace->_index = idx;
1740 assert(alias_type(adr_type) == alias_type(idx), "type must be installed");
1741
1742 // Might as well try to fill the cache for the flattened version, too.
1743 AliasCacheEntry* face = probe_alias_cache(flat);
1744 if (face->_adr_type == nullptr) {
1745 face->_adr_type = flat;
1746 face->_index = idx;
1747 assert(alias_type(flat) == alias_type(idx), "flat type must work too");
1748 }
1749
1750 return alias_type(idx);
1751 }
1752
1753
1754 Compile::AliasType* Compile::alias_type(ciField* field) {
1755 const TypeOopPtr* t;
1756 if (field->is_static())
1757 t = TypeInstPtr::make(field->holder()->java_mirror());
1758 else
1759 t = TypeOopPtr::make_from_klass_raw(field->holder());
1760 AliasType* atp = alias_type(t->add_offset(field->offset_in_bytes()), field);
1761 assert((field->is_final() || field->is_stable()) == !atp->is_rewritable(), "must get the rewritable bits correct");
1762 return atp;
1763 }
1764
1765
1766 //------------------------------have_alias_type--------------------------------
1767 bool Compile::have_alias_type(const TypePtr* adr_type) {
1768 AliasCacheEntry* ace = probe_alias_cache(adr_type);
1769 if (ace->_adr_type == adr_type) {
1770 return true;
1771 }
1772
1773 // Handle special cases.
1774 if (adr_type == nullptr) return true;
1775 if (adr_type == TypePtr::BOTTOM) return true;
1776
1777 return find_alias_type(adr_type, true, nullptr) != nullptr;
1778 }
1779
1780 //-----------------------------must_alias--------------------------------------
1781 // True if all values of the given address type are in the given alias category.
1782 bool Compile::must_alias(const TypePtr* adr_type, int alias_idx) {
1783 if (alias_idx == AliasIdxBot) return true; // the universal category
1784 if (adr_type == nullptr) return true; // null serves as TypePtr::TOP
1785 if (alias_idx == AliasIdxTop) return false; // the empty category
1786 if (adr_type->base() == Type::AnyPtr) return false; // TypePtr::BOTTOM or its twins
1787
1788 // the only remaining possible overlap is identity
1789 int adr_idx = get_alias_index(adr_type);
1790 assert(adr_idx != AliasIdxBot && adr_idx != AliasIdxTop, "");
1791 assert(adr_idx == alias_idx ||
1792 (alias_type(alias_idx)->adr_type() != TypeOopPtr::BOTTOM
1793 && adr_type != TypeOopPtr::BOTTOM),
1794 "should not be testing for overlap with an unsafe pointer");
1795 return adr_idx == alias_idx;
1796 }
1797
1798 //------------------------------can_alias--------------------------------------
1799 // True if any values of the given address type are in the given alias category.
1800 bool Compile::can_alias(const TypePtr* adr_type, int alias_idx) {
1801 if (alias_idx == AliasIdxTop) return false; // the empty category
1802 if (adr_type == nullptr) return false; // null serves as TypePtr::TOP
1803 // Known instance doesn't alias with bottom memory
1804 if (alias_idx == AliasIdxBot) return !adr_type->is_known_instance(); // the universal category
1805 if (adr_type->base() == Type::AnyPtr) return !C->get_adr_type(alias_idx)->is_known_instance(); // TypePtr::BOTTOM or its twins
1806
1807 // the only remaining possible overlap is identity
1808 int adr_idx = get_alias_index(adr_type);
1809 assert(adr_idx != AliasIdxBot && adr_idx != AliasIdxTop, "");
1810 return adr_idx == alias_idx;
1811 }
1812
1813 // Mark all ParsePredicateNodes as useless. They will later be removed from the graph in IGVN together with their
1814 // uncommon traps if no Runtime Predicates were created from the Parse Predicates.
1815 void Compile::mark_parse_predicate_nodes_useless(PhaseIterGVN& igvn) {
1816 if (parse_predicate_count() == 0) {
1817 return;
1818 }
1819 for (int i = 0; i < parse_predicate_count(); i++) {
1820 ParsePredicateNode* parse_predicate = _parse_predicates.at(i);
1821 parse_predicate->mark_useless(igvn);
1822 }
1823 _parse_predicates.clear();
1824 }
1825
1826 void Compile::record_for_post_loop_opts_igvn(Node* n) {
1827 if (!n->for_post_loop_opts_igvn()) {
1828 assert(!_for_post_loop_igvn.contains(n), "duplicate");
1829 n->add_flag(Node::NodeFlags::Flag_for_post_loop_opts_igvn);
1830 _for_post_loop_igvn.append(n);
1831 }
1832 }
1833
1834 void Compile::remove_from_post_loop_opts_igvn(Node* n) {
1835 n->remove_flag(Node::NodeFlags::Flag_for_post_loop_opts_igvn);
1836 _for_post_loop_igvn.remove(n);
1837 }
1838
1839 void Compile::process_for_post_loop_opts_igvn(PhaseIterGVN& igvn) {
1840 // Verify that all previous optimizations produced a valid graph
1841 // at least to this point, even if no loop optimizations were done.
1842 PhaseIdealLoop::verify(igvn);
1843
1844 if (_print_phase_loop_opts) {
1845 print_method(PHASE_AFTER_LOOP_OPTS, 2);
1846 }
1847 C->set_post_loop_opts_phase(); // no more loop opts allowed
1848
1849 assert(!C->major_progress(), "not cleared");
1850
1851 if (_for_post_loop_igvn.length() > 0) {
1852 while (_for_post_loop_igvn.length() > 0) {
1853 Node* n = _for_post_loop_igvn.pop();
1854 n->remove_flag(Node::NodeFlags::Flag_for_post_loop_opts_igvn);
1855 igvn._worklist.push(n);
1856 }
1857 igvn.optimize();
1858 if (failing()) return;
1859 assert(_for_post_loop_igvn.length() == 0, "no more delayed nodes allowed");
1860 assert(C->parse_predicate_count() == 0, "all parse predicates should have been removed now");
1861
1862 // Sometimes IGVN sets major progress (e.g., when processing loop nodes).
1863 if (C->major_progress()) {
1864 C->clear_major_progress(); // ensure that major progress is now clear
1865 }
1866 }
1867 }
1868
1869 void Compile::record_for_merge_stores_igvn(Node* n) {
1870 if (!n->for_merge_stores_igvn()) {
1871 assert(!_for_merge_stores_igvn.contains(n), "duplicate");
1872 n->add_flag(Node::NodeFlags::Flag_for_merge_stores_igvn);
1873 _for_merge_stores_igvn.append(n);
1874 }
1875 }
1876
1877 void Compile::remove_from_merge_stores_igvn(Node* n) {
1878 n->remove_flag(Node::NodeFlags::Flag_for_merge_stores_igvn);
1879 _for_merge_stores_igvn.remove(n);
1880 }
1881
1882 // We need to wait with merging stores until RangeCheck smearing has removed the RangeChecks during
1883 // the post loops IGVN phase. If we do it earlier, then there may still be some RangeChecks between
1884 // the stores, and we merge the wrong sequence of stores.
1885 // Example:
1886 // StoreI RangeCheck StoreI StoreI RangeCheck StoreI
1887 // Apply MergeStores:
1888 // StoreI RangeCheck [ StoreL ] RangeCheck StoreI
1889 // Remove more RangeChecks:
1890 // StoreI [ StoreL ] StoreI
1891 // But now it would have been better to do this instead:
1892 // [ StoreL ] [ StoreL ]
1893 //
1894 // Note: we allow stores to merge in this dedicated IGVN round, and any later IGVN round,
1895 // since we never unset _merge_stores_phase.
1896 void Compile::process_for_merge_stores_igvn(PhaseIterGVN& igvn) {
1897 C->set_merge_stores_phase();
1898
1899 if (_for_merge_stores_igvn.length() > 0) {
1900 while (_for_merge_stores_igvn.length() > 0) {
1901 Node* n = _for_merge_stores_igvn.pop();
1902 n->remove_flag(Node::NodeFlags::Flag_for_merge_stores_igvn);
1903 igvn._worklist.push(n);
1904 }
1905 igvn.optimize();
1906 if (failing()) return;
1907 assert(_for_merge_stores_igvn.length() == 0, "no more delayed nodes allowed");
1908 print_method(PHASE_AFTER_MERGE_STORES, 3);
1909 }
1910 }
1911
1912 void Compile::record_unstable_if_trap(UnstableIfTrap* trap) {
1913 if (OptimizeUnstableIf) {
1914 _unstable_if_traps.append(trap);
1915 }
1916 }
1917
1918 void Compile::remove_useless_unstable_if_traps(Unique_Node_List& useful) {
1919 for (int i = _unstable_if_traps.length() - 1; i >= 0; i--) {
1920 UnstableIfTrap* trap = _unstable_if_traps.at(i);
1921 Node* n = trap->uncommon_trap();
1922 if (!useful.member(n)) {
1923 _unstable_if_traps.delete_at(i); // replaces i-th with last element which is known to be useful (already processed)
1924 }
1925 }
1926 }
1927
1928 // Remove the unstable if trap associated with 'unc' from candidates. It is either dead
1929 // or fold-compares case. Return true if succeed or not found.
1930 //
1931 // In rare cases, the found trap has been processed. It is too late to delete it. Return
1932 // false and ask fold-compares to yield.
1933 //
1934 // 'fold-compares' may use the uncommon_trap of the dominating IfNode to cover the fused
1935 // IfNode. This breaks the unstable_if trap invariant: control takes the unstable path
1936 // when deoptimization does happen.
1937 bool Compile::remove_unstable_if_trap(CallStaticJavaNode* unc, bool yield) {
1938 for (int i = 0; i < _unstable_if_traps.length(); ++i) {
1939 UnstableIfTrap* trap = _unstable_if_traps.at(i);
1940 if (trap->uncommon_trap() == unc) {
1941 if (yield && trap->modified()) {
1942 return false;
1943 }
1944 _unstable_if_traps.delete_at(i);
1945 break;
1946 }
1947 }
1948 return true;
1949 }
1950
1951 // Re-calculate unstable_if traps with the liveness of next_bci, which points to the unlikely path.
1952 // It needs to be done after igvn because fold-compares may fuse uncommon_traps and before renumbering.
1953 void Compile::process_for_unstable_if_traps(PhaseIterGVN& igvn) {
1954 for (int i = _unstable_if_traps.length() - 1; i >= 0; --i) {
1955 UnstableIfTrap* trap = _unstable_if_traps.at(i);
1956 CallStaticJavaNode* unc = trap->uncommon_trap();
1957 int next_bci = trap->next_bci();
1958 bool modified = trap->modified();
1959
1960 if (next_bci != -1 && !modified) {
1961 assert(!_dead_node_list.test(unc->_idx), "changing a dead node!");
1962 JVMState* jvms = unc->jvms();
1963 ciMethod* method = jvms->method();
1964 ciBytecodeStream iter(method);
1965
1966 iter.force_bci(jvms->bci());
1967 assert(next_bci == iter.next_bci() || next_bci == iter.get_dest(), "wrong next_bci at unstable_if");
1968 Bytecodes::Code c = iter.cur_bc();
1969 Node* lhs = nullptr;
1970 Node* rhs = nullptr;
1971 if (c == Bytecodes::_if_acmpeq || c == Bytecodes::_if_acmpne) {
1972 lhs = unc->peek_operand(0);
1973 rhs = unc->peek_operand(1);
1974 } else if (c == Bytecodes::_ifnull || c == Bytecodes::_ifnonnull) {
1975 lhs = unc->peek_operand(0);
1976 }
1977
1978 ResourceMark rm;
1979 const MethodLivenessResult& live_locals = method->liveness_at_bci(next_bci);
1980 assert(live_locals.is_valid(), "broken liveness info");
1981 int len = (int)live_locals.size();
1982
1983 for (int i = 0; i < len; i++) {
1984 Node* local = unc->local(jvms, i);
1985 // kill local using the liveness of next_bci.
1986 // give up when the local looks like an operand to secure reexecution.
1987 if (!live_locals.at(i) && !local->is_top() && local != lhs && local!= rhs) {
1988 uint idx = jvms->locoff() + i;
1989 #ifdef ASSERT
1990 if (PrintOpto && Verbose) {
1991 tty->print("[unstable_if] kill local#%d: ", idx);
1992 local->dump();
1993 tty->cr();
1994 }
1995 #endif
1996 igvn.replace_input_of(unc, idx, top());
1997 modified = true;
1998 }
1999 }
2000 }
2001
2002 // keep the mondified trap for late query
2003 if (modified) {
2004 trap->set_modified();
2005 } else {
2006 _unstable_if_traps.delete_at(i);
2007 }
2008 }
2009 igvn.optimize();
2010 }
2011
2012 // StringOpts and late inlining of string methods
2013 void Compile::inline_string_calls(bool parse_time) {
2014 {
2015 // remove useless nodes to make the usage analysis simpler
2016 ResourceMark rm;
2017 PhaseRemoveUseless pru(initial_gvn(), *igvn_worklist());
2018 }
2019
2020 {
2021 ResourceMark rm;
2022 print_method(PHASE_BEFORE_STRINGOPTS, 3);
2023 PhaseStringOpts pso(initial_gvn());
2024 print_method(PHASE_AFTER_STRINGOPTS, 3);
2025 }
2026
2027 // now inline anything that we skipped the first time around
2028 if (!parse_time) {
2029 _late_inlines_pos = _late_inlines.length();
2030 }
2031
2032 while (_string_late_inlines.length() > 0) {
2033 CallGenerator* cg = _string_late_inlines.pop();
2034 cg->do_late_inline();
2035 if (failing()) return;
2036 }
2037 _string_late_inlines.trunc_to(0);
2038 }
2039
2040 // Late inlining of boxing methods
2041 void Compile::inline_boxing_calls(PhaseIterGVN& igvn) {
2042 if (_boxing_late_inlines.length() > 0) {
2043 assert(has_boxed_value(), "inconsistent");
2044
2045 set_inlining_incrementally(true);
2046
2047 igvn_worklist()->ensure_empty(); // should be done with igvn
2048
2049 _late_inlines_pos = _late_inlines.length();
2050
2051 while (_boxing_late_inlines.length() > 0) {
2052 CallGenerator* cg = _boxing_late_inlines.pop();
2053 cg->do_late_inline();
2054 if (failing()) return;
2055 }
2056 _boxing_late_inlines.trunc_to(0);
2057
2058 inline_incrementally_cleanup(igvn);
2059
2060 set_inlining_incrementally(false);
2061 }
2062 }
2063
2064 bool Compile::inline_incrementally_one() {
2065 assert(IncrementalInline, "incremental inlining should be on");
2066 assert(_late_inlines.length() > 0, "should have been checked by caller");
2067
2068 TracePhase tp(_t_incrInline_inline);
2069
2070 set_inlining_progress(false);
2071 set_do_cleanup(false);
2072
2073 for (int i = 0; i < _late_inlines.length(); i++) {
2074 _late_inlines_pos = i+1;
2075 CallGenerator* cg = _late_inlines.at(i);
2076 bool is_scheduled_for_igvn_before = C->igvn_worklist()->member(cg->call_node());
2077 bool does_dispatch = cg->is_virtual_late_inline() || cg->is_mh_late_inline();
2078 if (inlining_incrementally() || does_dispatch) { // a call can be either inlined or strength-reduced to a direct call
2079 if (should_stress_inlining()) {
2080 // randomly add repeated inline attempt if stress-inlining
2081 cg->call_node()->set_generator(cg);
2082 C->igvn_worklist()->push(cg->call_node());
2083 continue;
2084 }
2085 cg->do_late_inline();
2086 assert(_late_inlines.at(i) == cg, "no insertions before current position allowed");
2087 if (failing()) {
2088 return false;
2089 } else if (inlining_progress()) {
2090 _late_inlines_pos = i+1; // restore the position in case new elements were inserted
2091 print_method(PHASE_INCREMENTAL_INLINE_STEP, 3, cg->call_node());
2092 break; // process one call site at a time
2093 } else {
2094 bool is_scheduled_for_igvn_after = C->igvn_worklist()->member(cg->call_node());
2095 if (!is_scheduled_for_igvn_before && is_scheduled_for_igvn_after) {
2096 // Avoid potential infinite loop if node already in the IGVN list
2097 assert(false, "scheduled for IGVN during inlining attempt");
2098 } else {
2099 // Ensure call node has not disappeared from IGVN worklist during a failed inlining attempt
2100 assert(!is_scheduled_for_igvn_before || is_scheduled_for_igvn_after, "call node removed from IGVN list during inlining pass");
2101 cg->call_node()->set_generator(cg);
2102 }
2103 }
2104 } else {
2105 // Ignore late inline direct calls when inlining is not allowed.
2106 // They are left in the late inline list when node budget is exhausted until the list is fully drained.
2107 }
2108 }
2109 // Remove processed elements.
2110 _late_inlines.remove_till(_late_inlines_pos);
2111 _late_inlines_pos = 0;
2112
2113 assert(inlining_progress() || _late_inlines.length() == 0, "no progress");
2114
2115 bool needs_cleanup = do_cleanup() || over_inlining_cutoff();
2116
2117 set_inlining_progress(false);
2118 set_do_cleanup(false);
2119
2120 bool force_cleanup = directive()->IncrementalInlineForceCleanupOption;
2121 return (_late_inlines.length() > 0) && !needs_cleanup && !force_cleanup;
2122 }
2123
2124 void Compile::inline_incrementally_cleanup(PhaseIterGVN& igvn) {
2125 {
2126 TracePhase tp(_t_incrInline_pru);
2127 ResourceMark rm;
2128 PhaseRemoveUseless pru(initial_gvn(), *igvn_worklist());
2129 }
2130 {
2131 TracePhase tp(_t_incrInline_igvn);
2132 igvn.reset();
2133 igvn.optimize();
2134 if (failing()) return;
2135 }
2136 print_method(PHASE_INCREMENTAL_INLINE_CLEANUP, 3);
2137 }
2138
2139 template<typename E>
2140 static void shuffle_array(Compile& C, GrowableArray<E>& array) {
2141 if (array.length() < 2) {
2142 return;
2143 }
2144 for (uint i = array.length() - 1; i >= 1; i--) {
2145 uint j = C.random() % (i + 1);
2146 swap(array.at(i), array.at(j));
2147 }
2148 }
2149
2150 void Compile::shuffle_late_inlines() {
2151 shuffle_array(*C, _late_inlines);
2152 }
2153
2154 // Perform incremental inlining until bound on number of live nodes is reached
2155 void Compile::inline_incrementally(PhaseIterGVN& igvn) {
2156 TracePhase tp(_t_incrInline);
2157
2158 set_inlining_incrementally(true);
2159 uint low_live_nodes = 0;
2160
2161 if (StressIncrementalInlining) {
2162 shuffle_late_inlines();
2163 }
2164
2165 while (_late_inlines.length() > 0) {
2166 if (live_nodes() > (uint)LiveNodeCountInliningCutoff) {
2167 if (low_live_nodes < (uint)LiveNodeCountInliningCutoff * 8 / 10) {
2168 TracePhase tp(_t_incrInline_ideal);
2169 // PhaseIdealLoop is expensive so we only try it once we are
2170 // out of live nodes and we only try it again if the previous
2171 // helped got the number of nodes down significantly
2172 PhaseIdealLoop::optimize(igvn, LoopOptsNone);
2173 if (failing()) return;
2174 low_live_nodes = live_nodes();
2175 _major_progress = true;
2176 }
2177
2178 if (live_nodes() > (uint)LiveNodeCountInliningCutoff) {
2179 bool do_print_inlining = print_inlining() || print_intrinsics();
2180 if (do_print_inlining || log() != nullptr) {
2181 // Print inlining message for candidates that we couldn't inline for lack of space.
2182 for (int i = 0; i < _late_inlines.length(); i++) {
2183 CallGenerator* cg = _late_inlines.at(i);
2184 const char* msg = "live nodes > LiveNodeCountInliningCutoff";
2185 if (do_print_inlining) {
2186 inline_printer()->record(cg->method(), cg->call_node()->jvms(), InliningResult::FAILURE, msg);
2187 }
2188 log_late_inline_failure(cg, msg);
2189 }
2190 }
2191 break; // finish
2192 }
2193 }
2194
2195 igvn_worklist()->ensure_empty(); // should be done with igvn
2196
2197 if (_late_inlines.length() == 0) {
2198 break; // no more progress
2199 }
2200
2201 while (inline_incrementally_one()) {
2202 assert(!failing_internal() || failure_is_artificial(), "inconsistent");
2203 }
2204 if (failing()) return;
2205
2206 inline_incrementally_cleanup(igvn);
2207
2208 print_method(PHASE_INCREMENTAL_INLINE_STEP, 3);
2209
2210 if (failing()) return;
2211 }
2212
2213 igvn_worklist()->ensure_empty(); // should be done with igvn
2214
2215 if (_string_late_inlines.length() > 0) {
2216 assert(has_stringbuilder(), "inconsistent");
2217
2218 inline_string_calls(false);
2219
2220 if (failing()) return;
2221
2222 inline_incrementally_cleanup(igvn);
2223 }
2224
2225 set_inlining_incrementally(false);
2226 }
2227
2228 void Compile::process_late_inline_calls_no_inline(PhaseIterGVN& igvn) {
2229 // "inlining_incrementally() == false" is used to signal that no inlining is allowed
2230 // (see LateInlineVirtualCallGenerator::do_late_inline_check() for details).
2231 // Tracking and verification of modified nodes is disabled by setting "_modified_nodes == nullptr"
2232 // as if "inlining_incrementally() == true" were set.
2233 assert(inlining_incrementally() == false, "not allowed");
2234 assert(_modified_nodes == nullptr, "not allowed");
2235 assert(_late_inlines.length() > 0, "sanity");
2236
2237 if (StressIncrementalInlining) {
2238 shuffle_late_inlines();
2239 }
2240
2241 while (_late_inlines.length() > 0) {
2242 igvn_worklist()->ensure_empty(); // should be done with igvn
2243
2244 while (inline_incrementally_one()) {
2245 assert(!failing_internal() || failure_is_artificial(), "inconsistent");
2246 }
2247 if (failing()) return;
2248
2249 inline_incrementally_cleanup(igvn);
2250 }
2251 }
2252
2253 bool Compile::optimize_loops(PhaseIterGVN& igvn, LoopOptsMode mode) {
2254 if (_loop_opts_cnt > 0) {
2255 while (major_progress() && (_loop_opts_cnt > 0)) {
2256 TracePhase tp(_t_idealLoop);
2257 PhaseIdealLoop::optimize(igvn, mode);
2258 _loop_opts_cnt--;
2259 if (failing()) return false;
2260 if (major_progress()) print_method(PHASE_PHASEIDEALLOOP_ITERATIONS, 2);
2261 }
2262 }
2263 return true;
2264 }
2265
2266 // Remove edges from "root" to each SafePoint at a backward branch.
2267 // They were inserted during parsing (see add_safepoint()) to make
2268 // infinite loops without calls or exceptions visible to root, i.e.,
2269 // useful.
2270 void Compile::remove_root_to_sfpts_edges(PhaseIterGVN& igvn) {
2271 Node *r = root();
2272 if (r != nullptr) {
2273 for (uint i = r->req(); i < r->len(); ++i) {
2274 Node *n = r->in(i);
2275 if (n != nullptr && n->is_SafePoint()) {
2276 r->rm_prec(i);
2277 if (n->outcnt() == 0) {
2278 igvn.remove_dead_node(n);
2279 }
2280 --i;
2281 }
2282 }
2283 // Parsing may have added top inputs to the root node (Path
2284 // leading to the Halt node proven dead). Make sure we get a
2285 // chance to clean them up.
2286 igvn._worklist.push(r);
2287 igvn.optimize();
2288 }
2289 }
2290
2291 //------------------------------Optimize---------------------------------------
2292 // Given a graph, optimize it.
2293 void Compile::Optimize() {
2294 TracePhase tp(_t_optimizer);
2295
2296 #ifndef PRODUCT
2297 if (env()->break_at_compile()) {
2298 BREAKPOINT;
2299 }
2300
2301 #endif
2302
2303 BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
2304 #ifdef ASSERT
2305 bs->verify_gc_barriers(this, BarrierSetC2::BeforeOptimize);
2306 #endif
2307
2308 ResourceMark rm;
2309
2310 NOT_PRODUCT( verify_graph_edges(); )
2311
2312 print_method(PHASE_AFTER_PARSING, 1);
2313
2314 {
2315 // Iterative Global Value Numbering, including ideal transforms
2316 PhaseIterGVN igvn;
2317 #ifdef ASSERT
2318 _modified_nodes = new (comp_arena()) Unique_Node_List(comp_arena());
2319 #endif
2320 {
2321 TracePhase tp(_t_iterGVN);
2322 igvn.optimize();
2323 }
2324
2325 if (failing()) return;
2326
2327 print_method(PHASE_ITER_GVN1, 2);
2328
2329 process_for_unstable_if_traps(igvn);
2330
2331 if (failing()) return;
2332
2333 inline_incrementally(igvn);
2334
2335 print_method(PHASE_INCREMENTAL_INLINE, 2);
2336
2337 if (failing()) return;
2338
2339 if (eliminate_boxing()) {
2340 // Inline valueOf() methods now.
2341 inline_boxing_calls(igvn);
2342
2343 if (failing()) return;
2344
2345 if (AlwaysIncrementalInline || StressIncrementalInlining) {
2346 inline_incrementally(igvn);
2347 }
2348
2349 print_method(PHASE_INCREMENTAL_BOXING_INLINE, 2);
2350
2351 if (failing()) return;
2352 }
2353
2354 // Remove the speculative part of types and clean up the graph from
2355 // the extra CastPP nodes whose only purpose is to carry them. Do
2356 // that early so that optimizations are not disrupted by the extra
2357 // CastPP nodes.
2358 remove_speculative_types(igvn);
2359
2360 if (failing()) return;
2361
2362 // No more new expensive nodes will be added to the list from here
2363 // so keep only the actual candidates for optimizations.
2364 cleanup_expensive_nodes(igvn);
2365
2366 if (failing()) return;
2367
2368 assert(EnableVectorSupport || !has_vbox_nodes(), "sanity");
2369 if (EnableVectorSupport && has_vbox_nodes()) {
2370 TracePhase tp(_t_vector);
2371 PhaseVector pv(igvn);
2372 pv.optimize_vector_boxes();
2373 if (failing()) return;
2374 print_method(PHASE_ITER_GVN_AFTER_VECTOR, 2);
2375 }
2376 assert(!has_vbox_nodes(), "sanity");
2377
2378 if (!failing() && RenumberLiveNodes && live_nodes() + NodeLimitFudgeFactor < unique()) {
2379 Compile::TracePhase tp(_t_renumberLive);
2380 igvn_worklist()->ensure_empty(); // should be done with igvn
2381 {
2382 ResourceMark rm;
2383 PhaseRenumberLive prl(initial_gvn(), *igvn_worklist());
2384 }
2385 igvn.reset();
2386 igvn.optimize();
2387 if (failing()) return;
2388 }
2389
2390 // Now that all inlining is over and no PhaseRemoveUseless will run, cut edge from root to loop
2391 // safepoints
2392 remove_root_to_sfpts_edges(igvn);
2393
2394 if (failing()) return;
2395
2396 _print_phase_loop_opts = has_loops();
2397 if (_print_phase_loop_opts) {
2398 print_method(PHASE_BEFORE_LOOP_OPTS, 2);
2399 }
2400
2401 // Perform escape analysis
2402 if (do_escape_analysis() && ConnectionGraph::has_candidates(this)) {
2403 if (has_loops()) {
2404 // Cleanup graph (remove dead nodes).
2405 TracePhase tp(_t_idealLoop);
2406 PhaseIdealLoop::optimize(igvn, LoopOptsMaxUnroll);
2407 if (failing()) return;
2408 }
2409 bool progress;
2410 print_method(PHASE_PHASEIDEAL_BEFORE_EA, 2);
2411 do {
2412 ConnectionGraph::do_analysis(this, &igvn);
2413
2414 if (failing()) return;
2415
2416 int mcount = macro_count(); // Record number of allocations and locks before IGVN
2417
2418 // Optimize out fields loads from scalar replaceable allocations.
2419 igvn.optimize();
2420 print_method(PHASE_ITER_GVN_AFTER_EA, 2);
2421
2422 if (failing()) return;
2423
2424 if (congraph() != nullptr && macro_count() > 0) {
2425 TracePhase tp(_t_macroEliminate);
2426 PhaseMacroExpand mexp(igvn);
2427 mexp.eliminate_macro_nodes();
2428 if (failing()) return;
2429 print_method(PHASE_AFTER_MACRO_ELIMINATION, 2);
2430
2431 igvn.set_delay_transform(false);
2432 igvn.optimize();
2433 if (failing()) return;
2434
2435 print_method(PHASE_ITER_GVN_AFTER_ELIMINATION, 2);
2436 }
2437
2438 ConnectionGraph::verify_ram_nodes(this, root());
2439 if (failing()) return;
2440
2441 progress = do_iterative_escape_analysis() &&
2442 (macro_count() < mcount) &&
2443 ConnectionGraph::has_candidates(this);
2444 // Try again if candidates exist and made progress
2445 // by removing some allocations and/or locks.
2446 } while (progress);
2447 }
2448
2449 // Loop transforms on the ideal graph. Range Check Elimination,
2450 // peeling, unrolling, etc.
2451
2452 // Set loop opts counter
2453 if((_loop_opts_cnt > 0) && (has_loops() || has_split_ifs())) {
2454 {
2455 TracePhase tp(_t_idealLoop);
2456 PhaseIdealLoop::optimize(igvn, LoopOptsDefault);
2457 _loop_opts_cnt--;
2458 if (major_progress()) print_method(PHASE_PHASEIDEALLOOP1, 2);
2459 if (failing()) return;
2460 }
2461 // Loop opts pass if partial peeling occurred in previous pass
2462 if(PartialPeelLoop && major_progress() && (_loop_opts_cnt > 0)) {
2463 TracePhase tp(_t_idealLoop);
2464 PhaseIdealLoop::optimize(igvn, LoopOptsSkipSplitIf);
2465 _loop_opts_cnt--;
2466 if (major_progress()) print_method(PHASE_PHASEIDEALLOOP2, 2);
2467 if (failing()) return;
2468 }
2469 // Loop opts pass for loop-unrolling before CCP
2470 if(major_progress() && (_loop_opts_cnt > 0)) {
2471 TracePhase tp(_t_idealLoop);
2472 PhaseIdealLoop::optimize(igvn, LoopOptsSkipSplitIf);
2473 _loop_opts_cnt--;
2474 if (major_progress()) print_method(PHASE_PHASEIDEALLOOP3, 2);
2475 }
2476 if (!failing()) {
2477 // Verify that last round of loop opts produced a valid graph
2478 PhaseIdealLoop::verify(igvn);
2479 }
2480 }
2481 if (failing()) return;
2482
2483 // Conditional Constant Propagation;
2484 print_method(PHASE_BEFORE_CCP1, 2);
2485 PhaseCCP ccp( &igvn );
2486 assert( true, "Break here to ccp.dump_nodes_and_types(_root,999,1)");
2487 {
2488 TracePhase tp(_t_ccp);
2489 ccp.do_transform();
2490 }
2491 print_method(PHASE_CCP1, 2);
2492
2493 assert( true, "Break here to ccp.dump_old2new_map()");
2494
2495 // Iterative Global Value Numbering, including ideal transforms
2496 {
2497 TracePhase tp(_t_iterGVN2);
2498 igvn.reset_from_igvn(&ccp);
2499 igvn.optimize();
2500 }
2501 print_method(PHASE_ITER_GVN2, 2);
2502
2503 if (failing()) return;
2504
2505 // Loop transforms on the ideal graph. Range Check Elimination,
2506 // peeling, unrolling, etc.
2507 if (!optimize_loops(igvn, LoopOptsDefault)) {
2508 return;
2509 }
2510
2511 if (failing()) return;
2512
2513 C->clear_major_progress(); // ensure that major progress is now clear
2514
2515 process_for_post_loop_opts_igvn(igvn);
2516
2517 process_for_merge_stores_igvn(igvn);
2518
2519 if (failing()) return;
2520
2521 #ifdef ASSERT
2522 bs->verify_gc_barriers(this, BarrierSetC2::BeforeMacroExpand);
2523 #endif
2524
2525 {
2526 TracePhase tp(_t_macroExpand);
2527 print_method(PHASE_BEFORE_MACRO_EXPANSION, 3);
2528 PhaseMacroExpand mex(igvn);
2529 // Do not allow new macro nodes once we start to eliminate and expand
2530 C->reset_allow_macro_nodes();
2531 // Last attempt to eliminate macro nodes before expand
2532 mex.eliminate_macro_nodes();
2533 if (failing()) {
2534 return;
2535 }
2536 mex.eliminate_opaque_looplimit_macro_nodes();
2537 if (failing()) {
2538 return;
2539 }
2540 print_method(PHASE_AFTER_MACRO_ELIMINATION, 2);
2541 if (mex.expand_macro_nodes()) {
2542 assert(failing(), "must bail out w/ explicit message");
2543 return;
2544 }
2545 print_method(PHASE_AFTER_MACRO_EXPANSION, 2);
2546 }
2547
2548 {
2549 TracePhase tp(_t_barrierExpand);
2550 if (bs->expand_barriers(this, igvn)) {
2551 assert(failing(), "must bail out w/ explicit message");
2552 return;
2553 }
2554 print_method(PHASE_BARRIER_EXPANSION, 2);
2555 }
2556
2557 if (C->max_vector_size() > 0) {
2558 C->optimize_logic_cones(igvn);
2559 igvn.optimize();
2560 if (failing()) return;
2561 }
2562
2563 DEBUG_ONLY( _modified_nodes = nullptr; )
2564
2565 assert(igvn._worklist.size() == 0, "not empty");
2566
2567 assert(_late_inlines.length() == 0 || IncrementalInlineMH || IncrementalInlineVirtual, "not empty");
2568
2569 if (_late_inlines.length() > 0) {
2570 // More opportunities to optimize virtual and MH calls.
2571 // Though it's maybe too late to perform inlining, strength-reducing them to direct calls is still an option.
2572 process_late_inline_calls_no_inline(igvn);
2573 if (failing()) return;
2574 }
2575 } // (End scope of igvn; run destructor if necessary for asserts.)
2576
2577 check_no_dead_use();
2578
2579 // We will never use the NodeHash table any more. Clear it so that final_graph_reshaping does not have
2580 // to remove hashes to unlock nodes for modifications.
2581 C->node_hash()->clear();
2582
2583 // A method with only infinite loops has no edges entering loops from root
2584 {
2585 TracePhase tp(_t_graphReshaping);
2586 if (final_graph_reshaping()) {
2587 assert(failing(), "must bail out w/ explicit message");
2588 return;
2589 }
2590 }
2591
2592 print_method(PHASE_OPTIMIZE_FINISHED, 2);
2593 DEBUG_ONLY(set_phase_optimize_finished();)
2594 }
2595
2596 #ifdef ASSERT
2597 void Compile::check_no_dead_use() const {
2598 ResourceMark rm;
2599 Unique_Node_List wq;
2600 wq.push(root());
2601 for (uint i = 0; i < wq.size(); ++i) {
2602 Node* n = wq.at(i);
2603 for (DUIterator_Fast jmax, j = n->fast_outs(jmax); j < jmax; j++) {
2604 Node* u = n->fast_out(j);
2605 if (u->outcnt() == 0 && !u->is_Con()) {
2606 u->dump();
2607 fatal("no reachable node should have no use");
2608 }
2609 wq.push(u);
2610 }
2611 }
2612 }
2613 #endif
2614
2615 void Compile::inline_vector_reboxing_calls() {
2616 if (C->_vector_reboxing_late_inlines.length() > 0) {
2617 _late_inlines_pos = C->_late_inlines.length();
2618 while (_vector_reboxing_late_inlines.length() > 0) {
2619 CallGenerator* cg = _vector_reboxing_late_inlines.pop();
2620 cg->do_late_inline();
2621 if (failing()) return;
2622 print_method(PHASE_INLINE_VECTOR_REBOX, 3, cg->call_node());
2623 }
2624 _vector_reboxing_late_inlines.trunc_to(0);
2625 }
2626 }
2627
2628 bool Compile::has_vbox_nodes() {
2629 if (C->_vector_reboxing_late_inlines.length() > 0) {
2630 return true;
2631 }
2632 for (int macro_idx = C->macro_count() - 1; macro_idx >= 0; macro_idx--) {
2633 Node * n = C->macro_node(macro_idx);
2634 assert(n->is_macro(), "only macro nodes expected here");
2635 if (n->Opcode() == Op_VectorUnbox || n->Opcode() == Op_VectorBox || n->Opcode() == Op_VectorBoxAllocate) {
2636 return true;
2637 }
2638 }
2639 return false;
2640 }
2641
2642 //---------------------------- Bitwise operation packing optimization ---------------------------
2643
2644 static bool is_vector_unary_bitwise_op(Node* n) {
2645 return n->Opcode() == Op_XorV &&
2646 VectorNode::is_vector_bitwise_not_pattern(n);
2647 }
2648
2649 static bool is_vector_binary_bitwise_op(Node* n) {
2650 switch (n->Opcode()) {
2651 case Op_AndV:
2652 case Op_OrV:
2653 return true;
2654
2655 case Op_XorV:
2656 return !is_vector_unary_bitwise_op(n);
2657
2658 default:
2659 return false;
2660 }
2661 }
2662
2663 static bool is_vector_ternary_bitwise_op(Node* n) {
2664 return n->Opcode() == Op_MacroLogicV;
2665 }
2666
2667 static bool is_vector_bitwise_op(Node* n) {
2668 return is_vector_unary_bitwise_op(n) ||
2669 is_vector_binary_bitwise_op(n) ||
2670 is_vector_ternary_bitwise_op(n);
2671 }
2672
2673 static bool is_vector_bitwise_cone_root(Node* n) {
2674 if (n->bottom_type()->isa_vectmask() || !is_vector_bitwise_op(n)) {
2675 return false;
2676 }
2677 for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
2678 if (is_vector_bitwise_op(n->fast_out(i))) {
2679 return false;
2680 }
2681 }
2682 return true;
2683 }
2684
2685 static uint collect_unique_inputs(Node* n, Unique_Node_List& inputs) {
2686 uint cnt = 0;
2687 if (is_vector_bitwise_op(n)) {
2688 uint inp_cnt = n->is_predicated_vector() ? n->req()-1 : n->req();
2689 if (VectorNode::is_vector_bitwise_not_pattern(n)) {
2690 for (uint i = 1; i < inp_cnt; i++) {
2691 Node* in = n->in(i);
2692 bool skip = VectorNode::is_all_ones_vector(in);
2693 if (!skip && !inputs.member(in)) {
2694 inputs.push(in);
2695 cnt++;
2696 }
2697 }
2698 assert(cnt <= 1, "not unary");
2699 } else {
2700 uint last_req = inp_cnt;
2701 if (is_vector_ternary_bitwise_op(n)) {
2702 last_req = inp_cnt - 1; // skip last input
2703 }
2704 for (uint i = 1; i < last_req; i++) {
2705 Node* def = n->in(i);
2706 if (!inputs.member(def)) {
2707 inputs.push(def);
2708 cnt++;
2709 }
2710 }
2711 }
2712 } else { // not a bitwise operations
2713 if (!inputs.member(n)) {
2714 inputs.push(n);
2715 cnt++;
2716 }
2717 }
2718 return cnt;
2719 }
2720
2721 void Compile::collect_logic_cone_roots(Unique_Node_List& list) {
2722 Unique_Node_List useful_nodes;
2723 C->identify_useful_nodes(useful_nodes);
2724
2725 for (uint i = 0; i < useful_nodes.size(); i++) {
2726 Node* n = useful_nodes.at(i);
2727 if (is_vector_bitwise_cone_root(n)) {
2728 list.push(n);
2729 }
2730 }
2731 }
2732
2733 Node* Compile::xform_to_MacroLogicV(PhaseIterGVN& igvn,
2734 const TypeVect* vt,
2735 Unique_Node_List& partition,
2736 Unique_Node_List& inputs) {
2737 assert(partition.size() == 2 || partition.size() == 3, "not supported");
2738 assert(inputs.size() == 2 || inputs.size() == 3, "not supported");
2739 assert(Matcher::match_rule_supported_vector(Op_MacroLogicV, vt->length(), vt->element_basic_type()), "not supported");
2740
2741 Node* in1 = inputs.at(0);
2742 Node* in2 = inputs.at(1);
2743 Node* in3 = (inputs.size() == 3 ? inputs.at(2) : in2);
2744
2745 uint func = compute_truth_table(partition, inputs);
2746
2747 Node* pn = partition.at(partition.size() - 1);
2748 Node* mask = pn->is_predicated_vector() ? pn->in(pn->req()-1) : nullptr;
2749 return igvn.transform(MacroLogicVNode::make(igvn, in1, in2, in3, mask, func, vt));
2750 }
2751
2752 static uint extract_bit(uint func, uint pos) {
2753 return (func & (1 << pos)) >> pos;
2754 }
2755
2756 //
2757 // A macro logic node represents a truth table. It has 4 inputs,
2758 // First three inputs corresponds to 3 columns of a truth table
2759 // and fourth input captures the logic function.
2760 //
2761 // eg. fn = (in1 AND in2) OR in3;
2762 //
2763 // MacroNode(in1,in2,in3,fn)
2764 //
2765 // -----------------
2766 // in1 in2 in3 fn
2767 // -----------------
2768 // 0 0 0 0
2769 // 0 0 1 1
2770 // 0 1 0 0
2771 // 0 1 1 1
2772 // 1 0 0 0
2773 // 1 0 1 1
2774 // 1 1 0 1
2775 // 1 1 1 1
2776 //
2777
2778 uint Compile::eval_macro_logic_op(uint func, uint in1 , uint in2, uint in3) {
2779 int res = 0;
2780 for (int i = 0; i < 8; i++) {
2781 int bit1 = extract_bit(in1, i);
2782 int bit2 = extract_bit(in2, i);
2783 int bit3 = extract_bit(in3, i);
2784
2785 int func_bit_pos = (bit1 << 2 | bit2 << 1 | bit3);
2786 int func_bit = extract_bit(func, func_bit_pos);
2787
2788 res |= func_bit << i;
2789 }
2790 return res;
2791 }
2792
2793 static uint eval_operand(Node* n, HashTable<Node*,uint>& eval_map) {
2794 assert(n != nullptr, "");
2795 assert(eval_map.contains(n), "absent");
2796 return *(eval_map.get(n));
2797 }
2798
2799 static void eval_operands(Node* n,
2800 uint& func1, uint& func2, uint& func3,
2801 HashTable<Node*,uint>& eval_map) {
2802 assert(is_vector_bitwise_op(n), "");
2803
2804 if (is_vector_unary_bitwise_op(n)) {
2805 Node* opnd = n->in(1);
2806 if (VectorNode::is_vector_bitwise_not_pattern(n) && VectorNode::is_all_ones_vector(opnd)) {
2807 opnd = n->in(2);
2808 }
2809 func1 = eval_operand(opnd, eval_map);
2810 } else if (is_vector_binary_bitwise_op(n)) {
2811 func1 = eval_operand(n->in(1), eval_map);
2812 func2 = eval_operand(n->in(2), eval_map);
2813 } else {
2814 assert(is_vector_ternary_bitwise_op(n), "unknown operation");
2815 func1 = eval_operand(n->in(1), eval_map);
2816 func2 = eval_operand(n->in(2), eval_map);
2817 func3 = eval_operand(n->in(3), eval_map);
2818 }
2819 }
2820
2821 uint Compile::compute_truth_table(Unique_Node_List& partition, Unique_Node_List& inputs) {
2822 assert(inputs.size() <= 3, "sanity");
2823 ResourceMark rm;
2824 uint res = 0;
2825 HashTable<Node*,uint> eval_map;
2826
2827 // Populate precomputed functions for inputs.
2828 // Each input corresponds to one column of 3 input truth-table.
2829 uint input_funcs[] = { 0xAA, // (_, _, c) -> c
2830 0xCC, // (_, b, _) -> b
2831 0xF0 }; // (a, _, _) -> a
2832 for (uint i = 0; i < inputs.size(); i++) {
2833 eval_map.put(inputs.at(i), input_funcs[2-i]);
2834 }
2835
2836 for (uint i = 0; i < partition.size(); i++) {
2837 Node* n = partition.at(i);
2838
2839 uint func1 = 0, func2 = 0, func3 = 0;
2840 eval_operands(n, func1, func2, func3, eval_map);
2841
2842 switch (n->Opcode()) {
2843 case Op_OrV:
2844 assert(func3 == 0, "not binary");
2845 res = func1 | func2;
2846 break;
2847 case Op_AndV:
2848 assert(func3 == 0, "not binary");
2849 res = func1 & func2;
2850 break;
2851 case Op_XorV:
2852 if (VectorNode::is_vector_bitwise_not_pattern(n)) {
2853 assert(func2 == 0 && func3 == 0, "not unary");
2854 res = (~func1) & 0xFF;
2855 } else {
2856 assert(func3 == 0, "not binary");
2857 res = func1 ^ func2;
2858 }
2859 break;
2860 case Op_MacroLogicV:
2861 // Ordering of inputs may change during evaluation of sub-tree
2862 // containing MacroLogic node as a child node, thus a re-evaluation
2863 // makes sure that function is evaluated in context of current
2864 // inputs.
2865 res = eval_macro_logic_op(n->in(4)->get_int(), func1, func2, func3);
2866 break;
2867
2868 default: assert(false, "not supported: %s", n->Name());
2869 }
2870 assert(res <= 0xFF, "invalid");
2871 eval_map.put(n, res);
2872 }
2873 return res;
2874 }
2875
2876 // Criteria under which nodes gets packed into a macro logic node:-
2877 // 1) Parent and both child nodes are all unmasked or masked with
2878 // same predicates.
2879 // 2) Masked parent can be packed with left child if it is predicated
2880 // and both have same predicates.
2881 // 3) Masked parent can be packed with right child if its un-predicated
2882 // or has matching predication condition.
2883 // 4) An unmasked parent can be packed with an unmasked child.
2884 bool Compile::compute_logic_cone(Node* n, Unique_Node_List& partition, Unique_Node_List& inputs) {
2885 assert(partition.size() == 0, "not empty");
2886 assert(inputs.size() == 0, "not empty");
2887 if (is_vector_ternary_bitwise_op(n)) {
2888 return false;
2889 }
2890
2891 bool is_unary_op = is_vector_unary_bitwise_op(n);
2892 if (is_unary_op) {
2893 assert(collect_unique_inputs(n, inputs) == 1, "not unary");
2894 return false; // too few inputs
2895 }
2896
2897 bool pack_left_child = true;
2898 bool pack_right_child = true;
2899
2900 bool left_child_LOP = is_vector_bitwise_op(n->in(1));
2901 bool right_child_LOP = is_vector_bitwise_op(n->in(2));
2902
2903 int left_child_input_cnt = 0;
2904 int right_child_input_cnt = 0;
2905
2906 bool parent_is_predicated = n->is_predicated_vector();
2907 bool left_child_predicated = n->in(1)->is_predicated_vector();
2908 bool right_child_predicated = n->in(2)->is_predicated_vector();
2909
2910 Node* parent_pred = parent_is_predicated ? n->in(n->req()-1) : nullptr;
2911 Node* left_child_pred = left_child_predicated ? n->in(1)->in(n->in(1)->req()-1) : nullptr;
2912 Node* right_child_pred = right_child_predicated ? n->in(1)->in(n->in(1)->req()-1) : nullptr;
2913
2914 do {
2915 if (pack_left_child && left_child_LOP &&
2916 ((!parent_is_predicated && !left_child_predicated) ||
2917 ((parent_is_predicated && left_child_predicated &&
2918 parent_pred == left_child_pred)))) {
2919 partition.push(n->in(1));
2920 left_child_input_cnt = collect_unique_inputs(n->in(1), inputs);
2921 } else {
2922 inputs.push(n->in(1));
2923 left_child_input_cnt = 1;
2924 }
2925
2926 if (pack_right_child && right_child_LOP &&
2927 (!right_child_predicated ||
2928 (right_child_predicated && parent_is_predicated &&
2929 parent_pred == right_child_pred))) {
2930 partition.push(n->in(2));
2931 right_child_input_cnt = collect_unique_inputs(n->in(2), inputs);
2932 } else {
2933 inputs.push(n->in(2));
2934 right_child_input_cnt = 1;
2935 }
2936
2937 if (inputs.size() > 3) {
2938 assert(partition.size() > 0, "");
2939 inputs.clear();
2940 partition.clear();
2941 if (left_child_input_cnt > right_child_input_cnt) {
2942 pack_left_child = false;
2943 } else {
2944 pack_right_child = false;
2945 }
2946 } else {
2947 break;
2948 }
2949 } while(true);
2950
2951 if(partition.size()) {
2952 partition.push(n);
2953 }
2954
2955 return (partition.size() == 2 || partition.size() == 3) &&
2956 (inputs.size() == 2 || inputs.size() == 3);
2957 }
2958
2959 void Compile::process_logic_cone_root(PhaseIterGVN &igvn, Node *n, VectorSet &visited) {
2960 assert(is_vector_bitwise_op(n), "not a root");
2961
2962 visited.set(n->_idx);
2963
2964 // 1) Do a DFS walk over the logic cone.
2965 for (uint i = 1; i < n->req(); i++) {
2966 Node* in = n->in(i);
2967 if (!visited.test(in->_idx) && is_vector_bitwise_op(in)) {
2968 process_logic_cone_root(igvn, in, visited);
2969 }
2970 }
2971
2972 // 2) Bottom up traversal: Merge node[s] with
2973 // the parent to form macro logic node.
2974 Unique_Node_List partition;
2975 Unique_Node_List inputs;
2976 if (compute_logic_cone(n, partition, inputs)) {
2977 const TypeVect* vt = n->bottom_type()->is_vect();
2978 Node* pn = partition.at(partition.size() - 1);
2979 Node* mask = pn->is_predicated_vector() ? pn->in(pn->req()-1) : nullptr;
2980 if (mask == nullptr ||
2981 Matcher::match_rule_supported_vector_masked(Op_MacroLogicV, vt->length(), vt->element_basic_type())) {
2982 Node* macro_logic = xform_to_MacroLogicV(igvn, vt, partition, inputs);
2983 VectorNode::trace_new_vector(macro_logic, "MacroLogic");
2984 igvn.replace_node(n, macro_logic);
2985 }
2986 }
2987 }
2988
2989 void Compile::optimize_logic_cones(PhaseIterGVN &igvn) {
2990 ResourceMark rm;
2991 if (Matcher::match_rule_supported(Op_MacroLogicV)) {
2992 Unique_Node_List list;
2993 collect_logic_cone_roots(list);
2994
2995 while (list.size() > 0) {
2996 Node* n = list.pop();
2997 const TypeVect* vt = n->bottom_type()->is_vect();
2998 bool supported = Matcher::match_rule_supported_vector(Op_MacroLogicV, vt->length(), vt->element_basic_type());
2999 if (supported) {
3000 VectorSet visited(comp_arena());
3001 process_logic_cone_root(igvn, n, visited);
3002 }
3003 }
3004 }
3005 }
3006
3007 //------------------------------Code_Gen---------------------------------------
3008 // Given a graph, generate code for it
3009 void Compile::Code_Gen() {
3010 if (failing()) {
3011 return;
3012 }
3013
3014 // Perform instruction selection. You might think we could reclaim Matcher
3015 // memory PDQ, but actually the Matcher is used in generating spill code.
3016 // Internals of the Matcher (including some VectorSets) must remain live
3017 // for awhile - thus I cannot reclaim Matcher memory lest a VectorSet usage
3018 // set a bit in reclaimed memory.
3019
3020 // In debug mode can dump m._nodes.dump() for mapping of ideal to machine
3021 // nodes. Mapping is only valid at the root of each matched subtree.
3022 NOT_PRODUCT( verify_graph_edges(); )
3023
3024 Matcher matcher;
3025 _matcher = &matcher;
3026 {
3027 TracePhase tp(_t_matcher);
3028 matcher.match();
3029 if (failing()) {
3030 return;
3031 }
3032 }
3033 // In debug mode can dump m._nodes.dump() for mapping of ideal to machine
3034 // nodes. Mapping is only valid at the root of each matched subtree.
3035 NOT_PRODUCT( verify_graph_edges(); )
3036
3037 // If you have too many nodes, or if matching has failed, bail out
3038 check_node_count(0, "out of nodes matching instructions");
3039 if (failing()) {
3040 return;
3041 }
3042
3043 print_method(PHASE_MATCHING, 2);
3044
3045 // Build a proper-looking CFG
3046 PhaseCFG cfg(node_arena(), root(), matcher);
3047 if (failing()) {
3048 return;
3049 }
3050 _cfg = &cfg;
3051 {
3052 TracePhase tp(_t_scheduler);
3053 bool success = cfg.do_global_code_motion();
3054 if (!success) {
3055 return;
3056 }
3057
3058 print_method(PHASE_GLOBAL_CODE_MOTION, 2);
3059 NOT_PRODUCT( verify_graph_edges(); )
3060 cfg.verify();
3061 if (failing()) {
3062 return;
3063 }
3064 }
3065
3066 PhaseChaitin regalloc(unique(), cfg, matcher, false);
3067 _regalloc = ®alloc;
3068 {
3069 TracePhase tp(_t_registerAllocation);
3070 // Perform register allocation. After Chaitin, use-def chains are
3071 // no longer accurate (at spill code) and so must be ignored.
3072 // Node->LRG->reg mappings are still accurate.
3073 _regalloc->Register_Allocate();
3074
3075 // Bail out if the allocator builds too many nodes
3076 if (failing()) {
3077 return;
3078 }
3079
3080 print_method(PHASE_REGISTER_ALLOCATION, 2);
3081 }
3082
3083 // Prior to register allocation we kept empty basic blocks in case the
3084 // the allocator needed a place to spill. After register allocation we
3085 // are not adding any new instructions. If any basic block is empty, we
3086 // can now safely remove it.
3087 {
3088 TracePhase tp(_t_blockOrdering);
3089 cfg.remove_empty_blocks();
3090 if (do_freq_based_layout()) {
3091 PhaseBlockLayout layout(cfg);
3092 } else {
3093 cfg.set_loop_alignment();
3094 }
3095 cfg.fixup_flow();
3096 cfg.remove_unreachable_blocks();
3097 cfg.verify_dominator_tree();
3098 print_method(PHASE_BLOCK_ORDERING, 3);
3099 }
3100
3101 // Apply peephole optimizations
3102 if( OptoPeephole ) {
3103 TracePhase tp(_t_peephole);
3104 PhasePeephole peep( _regalloc, cfg);
3105 peep.do_transform();
3106 print_method(PHASE_PEEPHOLE, 3);
3107 }
3108
3109 // Do late expand if CPU requires this.
3110 if (Matcher::require_postalloc_expand) {
3111 TracePhase tp(_t_postalloc_expand);
3112 cfg.postalloc_expand(_regalloc);
3113 print_method(PHASE_POSTALLOC_EXPAND, 3);
3114 }
3115
3116 #ifdef ASSERT
3117 {
3118 CompilationMemoryStatistic::do_test_allocations();
3119 if (failing()) return;
3120 }
3121 #endif
3122
3123 // Convert Nodes to instruction bits in a buffer
3124 {
3125 TracePhase tp(_t_output);
3126 PhaseOutput output;
3127 output.Output();
3128 if (failing()) return;
3129 output.install();
3130 print_method(PHASE_FINAL_CODE, 1); // Compile::_output is not null here
3131 }
3132
3133 // He's dead, Jim.
3134 _cfg = (PhaseCFG*)((intptr_t)0xdeadbeef);
3135 _regalloc = (PhaseChaitin*)((intptr_t)0xdeadbeef);
3136 }
3137
3138 //------------------------------Final_Reshape_Counts---------------------------
3139 // This class defines counters to help identify when a method
3140 // may/must be executed using hardware with only 24-bit precision.
3141 struct Final_Reshape_Counts : public StackObj {
3142 int _call_count; // count non-inlined 'common' calls
3143 int _float_count; // count float ops requiring 24-bit precision
3144 int _double_count; // count double ops requiring more precision
3145 int _java_call_count; // count non-inlined 'java' calls
3146 int _inner_loop_count; // count loops which need alignment
3147 VectorSet _visited; // Visitation flags
3148 Node_List _tests; // Set of IfNodes & PCTableNodes
3149
3150 Final_Reshape_Counts() :
3151 _call_count(0), _float_count(0), _double_count(0),
3152 _java_call_count(0), _inner_loop_count(0) { }
3153
3154 void inc_call_count () { _call_count ++; }
3155 void inc_float_count () { _float_count ++; }
3156 void inc_double_count() { _double_count++; }
3157 void inc_java_call_count() { _java_call_count++; }
3158 void inc_inner_loop_count() { _inner_loop_count++; }
3159
3160 int get_call_count () const { return _call_count ; }
3161 int get_float_count () const { return _float_count ; }
3162 int get_double_count() const { return _double_count; }
3163 int get_java_call_count() const { return _java_call_count; }
3164 int get_inner_loop_count() const { return _inner_loop_count; }
3165 };
3166
3167 //------------------------------final_graph_reshaping_impl----------------------
3168 // Implement items 1-5 from final_graph_reshaping below.
3169 void Compile::final_graph_reshaping_impl(Node *n, Final_Reshape_Counts& frc, Unique_Node_List& dead_nodes) {
3170
3171 if ( n->outcnt() == 0 ) return; // dead node
3172 uint nop = n->Opcode();
3173
3174 // Check for 2-input instruction with "last use" on right input.
3175 // Swap to left input. Implements item (2).
3176 if( n->req() == 3 && // two-input instruction
3177 n->in(1)->outcnt() > 1 && // left use is NOT a last use
3178 (!n->in(1)->is_Phi() || n->in(1)->in(2) != n) && // it is not data loop
3179 n->in(2)->outcnt() == 1 &&// right use IS a last use
3180 !n->in(2)->is_Con() ) { // right use is not a constant
3181 // Check for commutative opcode
3182 switch( nop ) {
3183 case Op_AddI: case Op_AddF: case Op_AddD: case Op_AddL:
3184 case Op_MaxI: case Op_MaxL: case Op_MaxF: case Op_MaxD:
3185 case Op_MinI: case Op_MinL: case Op_MinF: case Op_MinD:
3186 case Op_MulI: case Op_MulF: case Op_MulD: case Op_MulL:
3187 case Op_AndL: case Op_XorL: case Op_OrL:
3188 case Op_AndI: case Op_XorI: case Op_OrI: {
3189 // Move "last use" input to left by swapping inputs
3190 n->swap_edges(1, 2);
3191 break;
3192 }
3193 default:
3194 break;
3195 }
3196 }
3197
3198 #ifdef ASSERT
3199 if( n->is_Mem() ) {
3200 int alias_idx = get_alias_index(n->as_Mem()->adr_type());
3201 assert( n->in(0) != nullptr || alias_idx != Compile::AliasIdxRaw ||
3202 // oop will be recorded in oop map if load crosses safepoint
3203 (n->is_Load() && (n->as_Load()->bottom_type()->isa_oopptr() ||
3204 LoadNode::is_immutable_value(n->in(MemNode::Address)))),
3205 "raw memory operations should have control edge");
3206 }
3207 if (n->is_MemBar()) {
3208 MemBarNode* mb = n->as_MemBar();
3209 if (mb->trailing_store() || mb->trailing_load_store()) {
3210 assert(mb->leading_membar()->trailing_membar() == mb, "bad membar pair");
3211 Node* mem = BarrierSet::barrier_set()->barrier_set_c2()->step_over_gc_barrier(mb->in(MemBarNode::Precedent));
3212 assert((mb->trailing_store() && mem->is_Store() && mem->as_Store()->is_release()) ||
3213 (mb->trailing_load_store() && mem->is_LoadStore()), "missing mem op");
3214 } else if (mb->leading()) {
3215 assert(mb->trailing_membar()->leading_membar() == mb, "bad membar pair");
3216 }
3217 }
3218 #endif
3219 // Count FPU ops and common calls, implements item (3)
3220 bool gc_handled = BarrierSet::barrier_set()->barrier_set_c2()->final_graph_reshaping(this, n, nop, dead_nodes);
3221 if (!gc_handled) {
3222 final_graph_reshaping_main_switch(n, frc, nop, dead_nodes);
3223 }
3224
3225 // Collect CFG split points
3226 if (n->is_MultiBranch() && !n->is_RangeCheck()) {
3227 frc._tests.push(n);
3228 }
3229 }
3230
3231 void Compile::handle_div_mod_op(Node* n, BasicType bt, bool is_unsigned) {
3232 if (!UseDivMod) {
3233 return;
3234 }
3235
3236 // Check if "a % b" and "a / b" both exist
3237 Node* d = n->find_similar(Op_DivIL(bt, is_unsigned));
3238 if (d == nullptr) {
3239 return;
3240 }
3241
3242 // Replace them with a fused divmod if supported
3243 if (Matcher::has_match_rule(Op_DivModIL(bt, is_unsigned))) {
3244 DivModNode* divmod = DivModNode::make(n, bt, is_unsigned);
3245 // If the divisor input for a Div (or Mod etc.) is not zero, then the control input of the Div is set to zero.
3246 // It could be that the divisor input is found not zero because its type is narrowed down by a CastII in the
3247 // subgraph for that input. Range check CastIIs are removed during final graph reshape. To preserve the dependency
3248 // carried by a CastII, precedence edges are added to the Div node. We need to transfer the precedence edges to the
3249 // DivMod node so the dependency is not lost.
3250 divmod->add_prec_from(n);
3251 divmod->add_prec_from(d);
3252 d->subsume_by(divmod->div_proj(), this);
3253 n->subsume_by(divmod->mod_proj(), this);
3254 } else {
3255 // Replace "a % b" with "a - ((a / b) * b)"
3256 Node* mult = MulNode::make(d, d->in(2), bt);
3257 Node* sub = SubNode::make(d->in(1), mult, bt);
3258 n->subsume_by(sub, this);
3259 }
3260 }
3261
3262 void Compile::final_graph_reshaping_main_switch(Node* n, Final_Reshape_Counts& frc, uint nop, Unique_Node_List& dead_nodes) {
3263 switch( nop ) {
3264 // Count all float operations that may use FPU
3265 case Op_AddF:
3266 case Op_SubF:
3267 case Op_MulF:
3268 case Op_DivF:
3269 case Op_NegF:
3270 case Op_ModF:
3271 case Op_ConvI2F:
3272 case Op_ConF:
3273 case Op_CmpF:
3274 case Op_CmpF3:
3275 case Op_StoreF:
3276 case Op_LoadF:
3277 // case Op_ConvL2F: // longs are split into 32-bit halves
3278 frc.inc_float_count();
3279 break;
3280
3281 case Op_ConvF2D:
3282 case Op_ConvD2F:
3283 frc.inc_float_count();
3284 frc.inc_double_count();
3285 break;
3286
3287 // Count all double operations that may use FPU
3288 case Op_AddD:
3289 case Op_SubD:
3290 case Op_MulD:
3291 case Op_DivD:
3292 case Op_NegD:
3293 case Op_ModD:
3294 case Op_ConvI2D:
3295 case Op_ConvD2I:
3296 // case Op_ConvL2D: // handled by leaf call
3297 // case Op_ConvD2L: // handled by leaf call
3298 case Op_ConD:
3299 case Op_CmpD:
3300 case Op_CmpD3:
3301 case Op_StoreD:
3302 case Op_LoadD:
3303 case Op_LoadD_unaligned:
3304 frc.inc_double_count();
3305 break;
3306 case Op_Opaque1: // Remove Opaque Nodes before matching
3307 n->subsume_by(n->in(1), this);
3308 break;
3309 case Op_CallLeafPure: {
3310 // If the pure call is not supported, then lower to a CallLeaf.
3311 if (!Matcher::match_rule_supported(Op_CallLeafPure)) {
3312 CallNode* call = n->as_Call();
3313 CallNode* new_call = new CallLeafNode(call->tf(), call->entry_point(),
3314 call->_name, TypeRawPtr::BOTTOM);
3315 new_call->init_req(TypeFunc::Control, call->in(TypeFunc::Control));
3316 new_call->init_req(TypeFunc::I_O, C->top());
3317 new_call->init_req(TypeFunc::Memory, C->top());
3318 new_call->init_req(TypeFunc::ReturnAdr, C->top());
3319 new_call->init_req(TypeFunc::FramePtr, C->top());
3320 for (unsigned int i = TypeFunc::Parms; i < call->tf()->domain()->cnt(); i++) {
3321 new_call->init_req(i, call->in(i));
3322 }
3323 n->subsume_by(new_call, this);
3324 }
3325 frc.inc_call_count();
3326 break;
3327 }
3328 case Op_CallStaticJava:
3329 case Op_CallJava:
3330 case Op_CallDynamicJava:
3331 frc.inc_java_call_count(); // Count java call site;
3332 case Op_CallRuntime:
3333 case Op_CallLeaf:
3334 case Op_CallLeafVector:
3335 case Op_CallLeafNoFP: {
3336 assert (n->is_Call(), "");
3337 CallNode *call = n->as_Call();
3338 // Count call sites where the FP mode bit would have to be flipped.
3339 // Do not count uncommon runtime calls:
3340 // uncommon_trap, _complete_monitor_locking, _complete_monitor_unlocking,
3341 // _new_Java, _new_typeArray, _new_objArray, _rethrow_Java, ...
3342 if (!call->is_CallStaticJava() || !call->as_CallStaticJava()->_name) {
3343 frc.inc_call_count(); // Count the call site
3344 } else { // See if uncommon argument is shared
3345 Node *n = call->in(TypeFunc::Parms);
3346 int nop = n->Opcode();
3347 // Clone shared simple arguments to uncommon calls, item (1).
3348 if (n->outcnt() > 1 &&
3349 !n->is_Proj() &&
3350 nop != Op_CreateEx &&
3351 nop != Op_CheckCastPP &&
3352 nop != Op_DecodeN &&
3353 nop != Op_DecodeNKlass &&
3354 !n->is_Mem() &&
3355 !n->is_Phi()) {
3356 Node *x = n->clone();
3357 call->set_req(TypeFunc::Parms, x);
3358 }
3359 }
3360 break;
3361 }
3362 case Op_StoreB:
3363 case Op_StoreC:
3364 case Op_StoreI:
3365 case Op_StoreL:
3366 case Op_CompareAndSwapB:
3367 case Op_CompareAndSwapS:
3368 case Op_CompareAndSwapI:
3369 case Op_CompareAndSwapL:
3370 case Op_CompareAndSwapP:
3371 case Op_CompareAndSwapN:
3372 case Op_WeakCompareAndSwapB:
3373 case Op_WeakCompareAndSwapS:
3374 case Op_WeakCompareAndSwapI:
3375 case Op_WeakCompareAndSwapL:
3376 case Op_WeakCompareAndSwapP:
3377 case Op_WeakCompareAndSwapN:
3378 case Op_CompareAndExchangeB:
3379 case Op_CompareAndExchangeS:
3380 case Op_CompareAndExchangeI:
3381 case Op_CompareAndExchangeL:
3382 case Op_CompareAndExchangeP:
3383 case Op_CompareAndExchangeN:
3384 case Op_GetAndAddS:
3385 case Op_GetAndAddB:
3386 case Op_GetAndAddI:
3387 case Op_GetAndAddL:
3388 case Op_GetAndSetS:
3389 case Op_GetAndSetB:
3390 case Op_GetAndSetI:
3391 case Op_GetAndSetL:
3392 case Op_GetAndSetP:
3393 case Op_GetAndSetN:
3394 case Op_StoreP:
3395 case Op_StoreN:
3396 case Op_StoreNKlass:
3397 case Op_LoadB:
3398 case Op_LoadUB:
3399 case Op_LoadUS:
3400 case Op_LoadI:
3401 case Op_LoadKlass:
3402 case Op_LoadNKlass:
3403 case Op_LoadL:
3404 case Op_LoadL_unaligned:
3405 case Op_LoadP:
3406 case Op_LoadN:
3407 case Op_LoadRange:
3408 case Op_LoadS:
3409 break;
3410
3411 case Op_AddP: { // Assert sane base pointers
3412 Node *addp = n->in(AddPNode::Address);
3413 assert(n->as_AddP()->address_input_has_same_base(), "Base pointers must match (addp %u)", addp->_idx );
3414 #ifdef _LP64
3415 if ((UseCompressedOops || UseCompressedClassPointers) &&
3416 addp->Opcode() == Op_ConP &&
3417 addp == n->in(AddPNode::Base) &&
3418 n->in(AddPNode::Offset)->is_Con()) {
3419 // If the transformation of ConP to ConN+DecodeN is beneficial depends
3420 // on the platform and on the compressed oops mode.
3421 // Use addressing with narrow klass to load with offset on x86.
3422 // Some platforms can use the constant pool to load ConP.
3423 // Do this transformation here since IGVN will convert ConN back to ConP.
3424 const Type* t = addp->bottom_type();
3425 bool is_oop = t->isa_oopptr() != nullptr;
3426 bool is_klass = t->isa_klassptr() != nullptr;
3427
3428 if ((is_oop && UseCompressedOops && Matcher::const_oop_prefer_decode() ) ||
3429 (is_klass && UseCompressedClassPointers && Matcher::const_klass_prefer_decode() &&
3430 t->isa_klassptr()->exact_klass()->is_in_encoding_range())) {
3431 Node* nn = nullptr;
3432
3433 int op = is_oop ? Op_ConN : Op_ConNKlass;
3434
3435 // Look for existing ConN node of the same exact type.
3436 Node* r = root();
3437 uint cnt = r->outcnt();
3438 for (uint i = 0; i < cnt; i++) {
3439 Node* m = r->raw_out(i);
3440 if (m!= nullptr && m->Opcode() == op &&
3441 m->bottom_type()->make_ptr() == t) {
3442 nn = m;
3443 break;
3444 }
3445 }
3446 if (nn != nullptr) {
3447 // Decode a narrow oop to match address
3448 // [R12 + narrow_oop_reg<<3 + offset]
3449 if (is_oop) {
3450 nn = new DecodeNNode(nn, t);
3451 } else {
3452 nn = new DecodeNKlassNode(nn, t);
3453 }
3454 // Check for succeeding AddP which uses the same Base.
3455 // Otherwise we will run into the assertion above when visiting that guy.
3456 for (uint i = 0; i < n->outcnt(); ++i) {
3457 Node *out_i = n->raw_out(i);
3458 if (out_i && out_i->is_AddP() && out_i->in(AddPNode::Base) == addp) {
3459 out_i->set_req(AddPNode::Base, nn);
3460 #ifdef ASSERT
3461 for (uint j = 0; j < out_i->outcnt(); ++j) {
3462 Node *out_j = out_i->raw_out(j);
3463 assert(out_j == nullptr || !out_j->is_AddP() || out_j->in(AddPNode::Base) != addp,
3464 "more than 2 AddP nodes in a chain (out_j %u)", out_j->_idx);
3465 }
3466 #endif
3467 }
3468 }
3469 n->set_req(AddPNode::Base, nn);
3470 n->set_req(AddPNode::Address, nn);
3471 if (addp->outcnt() == 0) {
3472 addp->disconnect_inputs(this);
3473 }
3474 }
3475 }
3476 }
3477 #endif
3478 break;
3479 }
3480
3481 case Op_CastPP: {
3482 // Remove CastPP nodes to gain more freedom during scheduling but
3483 // keep the dependency they encode as control or precedence edges
3484 // (if control is set already) on memory operations. Some CastPP
3485 // nodes don't have a control (don't carry a dependency): skip
3486 // those.
3487 if (n->in(0) != nullptr) {
3488 ResourceMark rm;
3489 Unique_Node_List wq;
3490 wq.push(n);
3491 for (uint next = 0; next < wq.size(); ++next) {
3492 Node *m = wq.at(next);
3493 for (DUIterator_Fast imax, i = m->fast_outs(imax); i < imax; i++) {
3494 Node* use = m->fast_out(i);
3495 if (use->is_Mem() || use->is_EncodeNarrowPtr()) {
3496 use->ensure_control_or_add_prec(n->in(0));
3497 } else {
3498 switch(use->Opcode()) {
3499 case Op_AddP:
3500 case Op_DecodeN:
3501 case Op_DecodeNKlass:
3502 case Op_CheckCastPP:
3503 case Op_CastPP:
3504 wq.push(use);
3505 break;
3506 }
3507 }
3508 }
3509 }
3510 }
3511 const bool is_LP64 = LP64_ONLY(true) NOT_LP64(false);
3512 if (is_LP64 && n->in(1)->is_DecodeN() && Matcher::gen_narrow_oop_implicit_null_checks()) {
3513 Node* in1 = n->in(1);
3514 const Type* t = n->bottom_type();
3515 Node* new_in1 = in1->clone();
3516 new_in1->as_DecodeN()->set_type(t);
3517
3518 if (!Matcher::narrow_oop_use_complex_address()) {
3519 //
3520 // x86, ARM and friends can handle 2 adds in addressing mode
3521 // and Matcher can fold a DecodeN node into address by using
3522 // a narrow oop directly and do implicit null check in address:
3523 //
3524 // [R12 + narrow_oop_reg<<3 + offset]
3525 // NullCheck narrow_oop_reg
3526 //
3527 // On other platforms (Sparc) we have to keep new DecodeN node and
3528 // use it to do implicit null check in address:
3529 //
3530 // decode_not_null narrow_oop_reg, base_reg
3531 // [base_reg + offset]
3532 // NullCheck base_reg
3533 //
3534 // Pin the new DecodeN node to non-null path on these platform (Sparc)
3535 // to keep the information to which null check the new DecodeN node
3536 // corresponds to use it as value in implicit_null_check().
3537 //
3538 new_in1->set_req(0, n->in(0));
3539 }
3540
3541 n->subsume_by(new_in1, this);
3542 if (in1->outcnt() == 0) {
3543 in1->disconnect_inputs(this);
3544 }
3545 } else {
3546 n->subsume_by(n->in(1), this);
3547 if (n->outcnt() == 0) {
3548 n->disconnect_inputs(this);
3549 }
3550 }
3551 break;
3552 }
3553 case Op_CastII: {
3554 n->as_CastII()->remove_range_check_cast(this);
3555 break;
3556 }
3557 #ifdef _LP64
3558 case Op_CmpP:
3559 // Do this transformation here to preserve CmpPNode::sub() and
3560 // other TypePtr related Ideal optimizations (for example, ptr nullness).
3561 if (n->in(1)->is_DecodeNarrowPtr() || n->in(2)->is_DecodeNarrowPtr()) {
3562 Node* in1 = n->in(1);
3563 Node* in2 = n->in(2);
3564 if (!in1->is_DecodeNarrowPtr()) {
3565 in2 = in1;
3566 in1 = n->in(2);
3567 }
3568 assert(in1->is_DecodeNarrowPtr(), "sanity");
3569
3570 Node* new_in2 = nullptr;
3571 if (in2->is_DecodeNarrowPtr()) {
3572 assert(in2->Opcode() == in1->Opcode(), "must be same node type");
3573 new_in2 = in2->in(1);
3574 } else if (in2->Opcode() == Op_ConP) {
3575 const Type* t = in2->bottom_type();
3576 if (t == TypePtr::NULL_PTR) {
3577 assert(in1->is_DecodeN(), "compare klass to null?");
3578 // Don't convert CmpP null check into CmpN if compressed
3579 // oops implicit null check is not generated.
3580 // This will allow to generate normal oop implicit null check.
3581 if (Matcher::gen_narrow_oop_implicit_null_checks())
3582 new_in2 = ConNode::make(TypeNarrowOop::NULL_PTR);
3583 //
3584 // This transformation together with CastPP transformation above
3585 // will generated code for implicit null checks for compressed oops.
3586 //
3587 // The original code after Optimize()
3588 //
3589 // LoadN memory, narrow_oop_reg
3590 // decode narrow_oop_reg, base_reg
3591 // CmpP base_reg, nullptr
3592 // CastPP base_reg // NotNull
3593 // Load [base_reg + offset], val_reg
3594 //
3595 // after these transformations will be
3596 //
3597 // LoadN memory, narrow_oop_reg
3598 // CmpN narrow_oop_reg, nullptr
3599 // decode_not_null narrow_oop_reg, base_reg
3600 // Load [base_reg + offset], val_reg
3601 //
3602 // and the uncommon path (== nullptr) will use narrow_oop_reg directly
3603 // since narrow oops can be used in debug info now (see the code in
3604 // final_graph_reshaping_walk()).
3605 //
3606 // At the end the code will be matched to
3607 // on x86:
3608 //
3609 // Load_narrow_oop memory, narrow_oop_reg
3610 // Load [R12 + narrow_oop_reg<<3 + offset], val_reg
3611 // NullCheck narrow_oop_reg
3612 //
3613 // and on sparc:
3614 //
3615 // Load_narrow_oop memory, narrow_oop_reg
3616 // decode_not_null narrow_oop_reg, base_reg
3617 // Load [base_reg + offset], val_reg
3618 // NullCheck base_reg
3619 //
3620 } else if (t->isa_oopptr()) {
3621 new_in2 = ConNode::make(t->make_narrowoop());
3622 } else if (t->isa_klassptr()) {
3623 ciKlass* klass = t->is_klassptr()->exact_klass();
3624 if (klass->is_in_encoding_range()) {
3625 new_in2 = ConNode::make(t->make_narrowklass());
3626 }
3627 }
3628 }
3629 if (new_in2 != nullptr) {
3630 Node* cmpN = new CmpNNode(in1->in(1), new_in2);
3631 n->subsume_by(cmpN, this);
3632 if (in1->outcnt() == 0) {
3633 in1->disconnect_inputs(this);
3634 }
3635 if (in2->outcnt() == 0) {
3636 in2->disconnect_inputs(this);
3637 }
3638 }
3639 }
3640 break;
3641
3642 case Op_DecodeN:
3643 case Op_DecodeNKlass:
3644 assert(!n->in(1)->is_EncodeNarrowPtr(), "should be optimized out");
3645 // DecodeN could be pinned when it can't be fold into
3646 // an address expression, see the code for Op_CastPP above.
3647 assert(n->in(0) == nullptr || (UseCompressedOops && !Matcher::narrow_oop_use_complex_address()), "no control");
3648 break;
3649
3650 case Op_EncodeP:
3651 case Op_EncodePKlass: {
3652 Node* in1 = n->in(1);
3653 if (in1->is_DecodeNarrowPtr()) {
3654 n->subsume_by(in1->in(1), this);
3655 } else if (in1->Opcode() == Op_ConP) {
3656 const Type* t = in1->bottom_type();
3657 if (t == TypePtr::NULL_PTR) {
3658 assert(t->isa_oopptr(), "null klass?");
3659 n->subsume_by(ConNode::make(TypeNarrowOop::NULL_PTR), this);
3660 } else if (t->isa_oopptr()) {
3661 n->subsume_by(ConNode::make(t->make_narrowoop()), this);
3662 } else if (t->isa_klassptr()) {
3663 ciKlass* klass = t->is_klassptr()->exact_klass();
3664 if (klass->is_in_encoding_range()) {
3665 n->subsume_by(ConNode::make(t->make_narrowklass()), this);
3666 } else {
3667 assert(false, "unencodable klass in ConP -> EncodeP");
3668 C->record_failure("unencodable klass in ConP -> EncodeP");
3669 }
3670 }
3671 }
3672 if (in1->outcnt() == 0) {
3673 in1->disconnect_inputs(this);
3674 }
3675 break;
3676 }
3677
3678 case Op_Proj: {
3679 if (OptimizeStringConcat || IncrementalInline) {
3680 ProjNode* proj = n->as_Proj();
3681 if (proj->_is_io_use) {
3682 assert(proj->_con == TypeFunc::I_O || proj->_con == TypeFunc::Memory, "");
3683 // Separate projections were used for the exception path which
3684 // are normally removed by a late inline. If it wasn't inlined
3685 // then they will hang around and should just be replaced with
3686 // the original one. Merge them.
3687 Node* non_io_proj = proj->in(0)->as_Multi()->proj_out_or_null(proj->_con, false /*is_io_use*/);
3688 if (non_io_proj != nullptr) {
3689 proj->subsume_by(non_io_proj , this);
3690 }
3691 }
3692 }
3693 break;
3694 }
3695
3696 case Op_Phi:
3697 if (n->as_Phi()->bottom_type()->isa_narrowoop() || n->as_Phi()->bottom_type()->isa_narrowklass()) {
3698 // The EncodeP optimization may create Phi with the same edges
3699 // for all paths. It is not handled well by Register Allocator.
3700 Node* unique_in = n->in(1);
3701 assert(unique_in != nullptr, "");
3702 uint cnt = n->req();
3703 for (uint i = 2; i < cnt; i++) {
3704 Node* m = n->in(i);
3705 assert(m != nullptr, "");
3706 if (unique_in != m)
3707 unique_in = nullptr;
3708 }
3709 if (unique_in != nullptr) {
3710 n->subsume_by(unique_in, this);
3711 }
3712 }
3713 break;
3714
3715 #endif
3716
3717 case Op_ModI:
3718 handle_div_mod_op(n, T_INT, false);
3719 break;
3720
3721 case Op_ModL:
3722 handle_div_mod_op(n, T_LONG, false);
3723 break;
3724
3725 case Op_UModI:
3726 handle_div_mod_op(n, T_INT, true);
3727 break;
3728
3729 case Op_UModL:
3730 handle_div_mod_op(n, T_LONG, true);
3731 break;
3732
3733 case Op_LoadVector:
3734 case Op_StoreVector:
3735 #ifdef ASSERT
3736 // Add VerifyVectorAlignment node between adr and load / store.
3737 if (VerifyAlignVector && Matcher::has_match_rule(Op_VerifyVectorAlignment)) {
3738 bool must_verify_alignment = n->is_LoadVector() ? n->as_LoadVector()->must_verify_alignment() :
3739 n->as_StoreVector()->must_verify_alignment();
3740 if (must_verify_alignment) {
3741 jlong vector_width = n->is_LoadVector() ? n->as_LoadVector()->memory_size() :
3742 n->as_StoreVector()->memory_size();
3743 // The memory access should be aligned to the vector width in bytes.
3744 // However, the underlying array is possibly less well aligned, but at least
3745 // to ObjectAlignmentInBytes. Hence, even if multiple arrays are accessed in
3746 // a loop we can expect at least the following alignment:
3747 jlong guaranteed_alignment = MIN2(vector_width, (jlong)ObjectAlignmentInBytes);
3748 assert(2 <= guaranteed_alignment && guaranteed_alignment <= 64, "alignment must be in range");
3749 assert(is_power_of_2(guaranteed_alignment), "alignment must be power of 2");
3750 // Create mask from alignment. e.g. 0b1000 -> 0b0111
3751 jlong mask = guaranteed_alignment - 1;
3752 Node* mask_con = ConLNode::make(mask);
3753 VerifyVectorAlignmentNode* va = new VerifyVectorAlignmentNode(n->in(MemNode::Address), mask_con);
3754 n->set_req(MemNode::Address, va);
3755 }
3756 }
3757 #endif
3758 break;
3759
3760 case Op_LoadVectorGather:
3761 case Op_StoreVectorScatter:
3762 case Op_LoadVectorGatherMasked:
3763 case Op_StoreVectorScatterMasked:
3764 case Op_VectorCmpMasked:
3765 case Op_VectorMaskGen:
3766 case Op_LoadVectorMasked:
3767 case Op_StoreVectorMasked:
3768 break;
3769
3770 case Op_AddReductionVI:
3771 case Op_AddReductionVL:
3772 case Op_AddReductionVF:
3773 case Op_AddReductionVD:
3774 case Op_MulReductionVI:
3775 case Op_MulReductionVL:
3776 case Op_MulReductionVF:
3777 case Op_MulReductionVD:
3778 case Op_MinReductionV:
3779 case Op_MaxReductionV:
3780 case Op_UMinReductionV:
3781 case Op_UMaxReductionV:
3782 case Op_AndReductionV:
3783 case Op_OrReductionV:
3784 case Op_XorReductionV:
3785 break;
3786
3787 case Op_PackB:
3788 case Op_PackS:
3789 case Op_PackI:
3790 case Op_PackF:
3791 case Op_PackL:
3792 case Op_PackD:
3793 if (n->req()-1 > 2) {
3794 // Replace many operand PackNodes with a binary tree for matching
3795 PackNode* p = (PackNode*) n;
3796 Node* btp = p->binary_tree_pack(1, n->req());
3797 n->subsume_by(btp, this);
3798 }
3799 break;
3800 case Op_Loop:
3801 assert(!n->as_Loop()->is_loop_nest_inner_loop() || _loop_opts_cnt == 0, "should have been turned into a counted loop");
3802 case Op_CountedLoop:
3803 case Op_LongCountedLoop:
3804 case Op_OuterStripMinedLoop:
3805 if (n->as_Loop()->is_inner_loop()) {
3806 frc.inc_inner_loop_count();
3807 }
3808 n->as_Loop()->verify_strip_mined(0);
3809 break;
3810 case Op_LShiftI:
3811 case Op_RShiftI:
3812 case Op_URShiftI:
3813 case Op_LShiftL:
3814 case Op_RShiftL:
3815 case Op_URShiftL:
3816 if (Matcher::need_masked_shift_count) {
3817 // The cpu's shift instructions don't restrict the count to the
3818 // lower 5/6 bits. We need to do the masking ourselves.
3819 Node* in2 = n->in(2);
3820 juint mask = (n->bottom_type() == TypeInt::INT) ? (BitsPerInt - 1) : (BitsPerLong - 1);
3821 const TypeInt* t = in2->find_int_type();
3822 if (t != nullptr && t->is_con()) {
3823 juint shift = t->get_con();
3824 if (shift > mask) { // Unsigned cmp
3825 n->set_req(2, ConNode::make(TypeInt::make(shift & mask)));
3826 }
3827 } else {
3828 if (t == nullptr || t->_lo < 0 || t->_hi > (int)mask) {
3829 Node* shift = new AndINode(in2, ConNode::make(TypeInt::make(mask)));
3830 n->set_req(2, shift);
3831 }
3832 }
3833 if (in2->outcnt() == 0) { // Remove dead node
3834 in2->disconnect_inputs(this);
3835 }
3836 }
3837 break;
3838 case Op_MemBarStoreStore:
3839 case Op_MemBarRelease:
3840 // Break the link with AllocateNode: it is no longer useful and
3841 // confuses register allocation.
3842 if (n->req() > MemBarNode::Precedent) {
3843 n->set_req(MemBarNode::Precedent, top());
3844 }
3845 break;
3846 case Op_MemBarAcquire: {
3847 if (n->as_MemBar()->trailing_load() && n->req() > MemBarNode::Precedent) {
3848 // At parse time, the trailing MemBarAcquire for a volatile load
3849 // is created with an edge to the load. After optimizations,
3850 // that input may be a chain of Phis. If those phis have no
3851 // other use, then the MemBarAcquire keeps them alive and
3852 // register allocation can be confused.
3853 dead_nodes.push(n->in(MemBarNode::Precedent));
3854 n->set_req(MemBarNode::Precedent, top());
3855 }
3856 break;
3857 }
3858 case Op_Blackhole:
3859 break;
3860 case Op_RangeCheck: {
3861 RangeCheckNode* rc = n->as_RangeCheck();
3862 Node* iff = new IfNode(rc->in(0), rc->in(1), rc->_prob, rc->_fcnt);
3863 n->subsume_by(iff, this);
3864 frc._tests.push(iff);
3865 break;
3866 }
3867 case Op_ConvI2L: {
3868 if (!Matcher::convi2l_type_required) {
3869 // Code generation on some platforms doesn't need accurate
3870 // ConvI2L types. Widening the type can help remove redundant
3871 // address computations.
3872 n->as_Type()->set_type(TypeLong::INT);
3873 ResourceMark rm;
3874 Unique_Node_List wq;
3875 wq.push(n);
3876 for (uint next = 0; next < wq.size(); next++) {
3877 Node *m = wq.at(next);
3878
3879 for(;;) {
3880 // Loop over all nodes with identical inputs edges as m
3881 Node* k = m->find_similar(m->Opcode());
3882 if (k == nullptr) {
3883 break;
3884 }
3885 // Push their uses so we get a chance to remove node made
3886 // redundant
3887 for (DUIterator_Fast imax, i = k->fast_outs(imax); i < imax; i++) {
3888 Node* u = k->fast_out(i);
3889 if (u->Opcode() == Op_LShiftL ||
3890 u->Opcode() == Op_AddL ||
3891 u->Opcode() == Op_SubL ||
3892 u->Opcode() == Op_AddP) {
3893 wq.push(u);
3894 }
3895 }
3896 // Replace all nodes with identical edges as m with m
3897 k->subsume_by(m, this);
3898 }
3899 }
3900 }
3901 break;
3902 }
3903 case Op_CmpUL: {
3904 if (!Matcher::has_match_rule(Op_CmpUL)) {
3905 // No support for unsigned long comparisons
3906 ConINode* sign_pos = new ConINode(TypeInt::make(BitsPerLong - 1));
3907 Node* sign_bit_mask = new RShiftLNode(n->in(1), sign_pos);
3908 Node* orl = new OrLNode(n->in(1), sign_bit_mask);
3909 ConLNode* remove_sign_mask = new ConLNode(TypeLong::make(max_jlong));
3910 Node* andl = new AndLNode(orl, remove_sign_mask);
3911 Node* cmp = new CmpLNode(andl, n->in(2));
3912 n->subsume_by(cmp, this);
3913 }
3914 break;
3915 }
3916 #ifdef ASSERT
3917 case Op_ConNKlass: {
3918 const TypePtr* tp = n->as_Type()->type()->make_ptr();
3919 ciKlass* klass = tp->is_klassptr()->exact_klass();
3920 assert(klass->is_in_encoding_range(), "klass cannot be compressed");
3921 break;
3922 }
3923 #endif
3924 default:
3925 assert(!n->is_Call(), "");
3926 assert(!n->is_Mem(), "");
3927 assert(nop != Op_ProfileBoolean, "should be eliminated during IGVN");
3928 break;
3929 }
3930 }
3931
3932 //------------------------------final_graph_reshaping_walk---------------------
3933 // Replacing Opaque nodes with their input in final_graph_reshaping_impl(),
3934 // requires that the walk visits a node's inputs before visiting the node.
3935 void Compile::final_graph_reshaping_walk(Node_Stack& nstack, Node* root, Final_Reshape_Counts& frc, Unique_Node_List& dead_nodes) {
3936 Unique_Node_List sfpt;
3937
3938 frc._visited.set(root->_idx); // first, mark node as visited
3939 uint cnt = root->req();
3940 Node *n = root;
3941 uint i = 0;
3942 while (true) {
3943 if (i < cnt) {
3944 // Place all non-visited non-null inputs onto stack
3945 Node* m = n->in(i);
3946 ++i;
3947 if (m != nullptr && !frc._visited.test_set(m->_idx)) {
3948 if (m->is_SafePoint() && m->as_SafePoint()->jvms() != nullptr) {
3949 // compute worst case interpreter size in case of a deoptimization
3950 update_interpreter_frame_size(m->as_SafePoint()->jvms()->interpreter_frame_size());
3951
3952 sfpt.push(m);
3953 }
3954 cnt = m->req();
3955 nstack.push(n, i); // put on stack parent and next input's index
3956 n = m;
3957 i = 0;
3958 }
3959 } else {
3960 // Now do post-visit work
3961 final_graph_reshaping_impl(n, frc, dead_nodes);
3962 if (nstack.is_empty())
3963 break; // finished
3964 n = nstack.node(); // Get node from stack
3965 cnt = n->req();
3966 i = nstack.index();
3967 nstack.pop(); // Shift to the next node on stack
3968 }
3969 }
3970
3971 // Skip next transformation if compressed oops are not used.
3972 if ((UseCompressedOops && !Matcher::gen_narrow_oop_implicit_null_checks()) ||
3973 (!UseCompressedOops && !UseCompressedClassPointers))
3974 return;
3975
3976 // Go over safepoints nodes to skip DecodeN/DecodeNKlass nodes for debug edges.
3977 // It could be done for an uncommon traps or any safepoints/calls
3978 // if the DecodeN/DecodeNKlass node is referenced only in a debug info.
3979 while (sfpt.size() > 0) {
3980 n = sfpt.pop();
3981 JVMState *jvms = n->as_SafePoint()->jvms();
3982 assert(jvms != nullptr, "sanity");
3983 int start = jvms->debug_start();
3984 int end = n->req();
3985 bool is_uncommon = (n->is_CallStaticJava() &&
3986 n->as_CallStaticJava()->uncommon_trap_request() != 0);
3987 for (int j = start; j < end; j++) {
3988 Node* in = n->in(j);
3989 if (in->is_DecodeNarrowPtr()) {
3990 bool safe_to_skip = true;
3991 if (!is_uncommon ) {
3992 // Is it safe to skip?
3993 for (uint i = 0; i < in->outcnt(); i++) {
3994 Node* u = in->raw_out(i);
3995 if (!u->is_SafePoint() ||
3996 (u->is_Call() && u->as_Call()->has_non_debug_use(n))) {
3997 safe_to_skip = false;
3998 }
3999 }
4000 }
4001 if (safe_to_skip) {
4002 n->set_req(j, in->in(1));
4003 }
4004 if (in->outcnt() == 0) {
4005 in->disconnect_inputs(this);
4006 }
4007 }
4008 }
4009 }
4010 }
4011
4012 //------------------------------final_graph_reshaping--------------------------
4013 // Final Graph Reshaping.
4014 //
4015 // (1) Clone simple inputs to uncommon calls, so they can be scheduled late
4016 // and not commoned up and forced early. Must come after regular
4017 // optimizations to avoid GVN undoing the cloning. Clone constant
4018 // inputs to Loop Phis; these will be split by the allocator anyways.
4019 // Remove Opaque nodes.
4020 // (2) Move last-uses by commutative operations to the left input to encourage
4021 // Intel update-in-place two-address operations and better register usage
4022 // on RISCs. Must come after regular optimizations to avoid GVN Ideal
4023 // calls canonicalizing them back.
4024 // (3) Count the number of double-precision FP ops, single-precision FP ops
4025 // and call sites. On Intel, we can get correct rounding either by
4026 // forcing singles to memory (requires extra stores and loads after each
4027 // FP bytecode) or we can set a rounding mode bit (requires setting and
4028 // clearing the mode bit around call sites). The mode bit is only used
4029 // if the relative frequency of single FP ops to calls is low enough.
4030 // This is a key transform for SPEC mpeg_audio.
4031 // (4) Detect infinite loops; blobs of code reachable from above but not
4032 // below. Several of the Code_Gen algorithms fail on such code shapes,
4033 // so we simply bail out. Happens a lot in ZKM.jar, but also happens
4034 // from time to time in other codes (such as -Xcomp finalizer loops, etc).
4035 // Detection is by looking for IfNodes where only 1 projection is
4036 // reachable from below or CatchNodes missing some targets.
4037 // (5) Assert for insane oop offsets in debug mode.
4038
4039 bool Compile::final_graph_reshaping() {
4040 // an infinite loop may have been eliminated by the optimizer,
4041 // in which case the graph will be empty.
4042 if (root()->req() == 1) {
4043 // Do not compile method that is only a trivial infinite loop,
4044 // since the content of the loop may have been eliminated.
4045 record_method_not_compilable("trivial infinite loop");
4046 return true;
4047 }
4048
4049 // Expensive nodes have their control input set to prevent the GVN
4050 // from freely commoning them. There's no GVN beyond this point so
4051 // no need to keep the control input. We want the expensive nodes to
4052 // be freely moved to the least frequent code path by gcm.
4053 assert(OptimizeExpensiveOps || expensive_count() == 0, "optimization off but list non empty?");
4054 for (int i = 0; i < expensive_count(); i++) {
4055 _expensive_nodes.at(i)->set_req(0, nullptr);
4056 }
4057
4058 Final_Reshape_Counts frc;
4059
4060 // Visit everybody reachable!
4061 // Allocate stack of size C->live_nodes()/2 to avoid frequent realloc
4062 Node_Stack nstack(live_nodes() >> 1);
4063 Unique_Node_List dead_nodes;
4064 final_graph_reshaping_walk(nstack, root(), frc, dead_nodes);
4065
4066 // Check for unreachable (from below) code (i.e., infinite loops).
4067 for( uint i = 0; i < frc._tests.size(); i++ ) {
4068 MultiBranchNode *n = frc._tests[i]->as_MultiBranch();
4069 // Get number of CFG targets.
4070 // Note that PCTables include exception targets after calls.
4071 uint required_outcnt = n->required_outcnt();
4072 if (n->outcnt() != required_outcnt) {
4073 // Check for a few special cases. Rethrow Nodes never take the
4074 // 'fall-thru' path, so expected kids is 1 less.
4075 if (n->is_PCTable() && n->in(0) && n->in(0)->in(0)) {
4076 if (n->in(0)->in(0)->is_Call()) {
4077 CallNode* call = n->in(0)->in(0)->as_Call();
4078 if (call->entry_point() == OptoRuntime::rethrow_stub()) {
4079 required_outcnt--; // Rethrow always has 1 less kid
4080 } else if (call->req() > TypeFunc::Parms &&
4081 call->is_CallDynamicJava()) {
4082 // Check for null receiver. In such case, the optimizer has
4083 // detected that the virtual call will always result in a null
4084 // pointer exception. The fall-through projection of this CatchNode
4085 // will not be populated.
4086 Node* arg0 = call->in(TypeFunc::Parms);
4087 if (arg0->is_Type() &&
4088 arg0->as_Type()->type()->higher_equal(TypePtr::NULL_PTR)) {
4089 required_outcnt--;
4090 }
4091 } else if (call->entry_point() == OptoRuntime::new_array_Java() ||
4092 call->entry_point() == OptoRuntime::new_array_nozero_Java()) {
4093 // Check for illegal array length. In such case, the optimizer has
4094 // detected that the allocation attempt will always result in an
4095 // exception. There is no fall-through projection of this CatchNode .
4096 assert(call->is_CallStaticJava(), "static call expected");
4097 assert(call->req() == call->jvms()->endoff() + 1, "missing extra input");
4098 uint valid_length_test_input = call->req() - 1;
4099 Node* valid_length_test = call->in(valid_length_test_input);
4100 call->del_req(valid_length_test_input);
4101 if (valid_length_test->find_int_con(1) == 0) {
4102 required_outcnt--;
4103 }
4104 dead_nodes.push(valid_length_test);
4105 assert(n->outcnt() == required_outcnt, "malformed control flow");
4106 continue;
4107 }
4108 }
4109 }
4110
4111 // Recheck with a better notion of 'required_outcnt'
4112 if (n->outcnt() != required_outcnt) {
4113 record_method_not_compilable("malformed control flow");
4114 return true; // Not all targets reachable!
4115 }
4116 } else if (n->is_PCTable() && n->in(0) && n->in(0)->in(0) && n->in(0)->in(0)->is_Call()) {
4117 CallNode* call = n->in(0)->in(0)->as_Call();
4118 if (call->entry_point() == OptoRuntime::new_array_Java() ||
4119 call->entry_point() == OptoRuntime::new_array_nozero_Java()) {
4120 assert(call->is_CallStaticJava(), "static call expected");
4121 assert(call->req() == call->jvms()->endoff() + 1, "missing extra input");
4122 uint valid_length_test_input = call->req() - 1;
4123 dead_nodes.push(call->in(valid_length_test_input));
4124 call->del_req(valid_length_test_input); // valid length test useless now
4125 }
4126 }
4127 // Check that I actually visited all kids. Unreached kids
4128 // must be infinite loops.
4129 for (DUIterator_Fast jmax, j = n->fast_outs(jmax); j < jmax; j++)
4130 if (!frc._visited.test(n->fast_out(j)->_idx)) {
4131 record_method_not_compilable("infinite loop");
4132 return true; // Found unvisited kid; must be unreach
4133 }
4134
4135 // Here so verification code in final_graph_reshaping_walk()
4136 // always see an OuterStripMinedLoopEnd
4137 if (n->is_OuterStripMinedLoopEnd() || n->is_LongCountedLoopEnd()) {
4138 IfNode* init_iff = n->as_If();
4139 Node* iff = new IfNode(init_iff->in(0), init_iff->in(1), init_iff->_prob, init_iff->_fcnt);
4140 n->subsume_by(iff, this);
4141 }
4142 }
4143
4144 while (dead_nodes.size() > 0) {
4145 Node* m = dead_nodes.pop();
4146 if (m->outcnt() == 0 && m != top()) {
4147 for (uint j = 0; j < m->req(); j++) {
4148 Node* in = m->in(j);
4149 if (in != nullptr) {
4150 dead_nodes.push(in);
4151 }
4152 }
4153 m->disconnect_inputs(this);
4154 }
4155 }
4156
4157 set_java_calls(frc.get_java_call_count());
4158 set_inner_loops(frc.get_inner_loop_count());
4159
4160 // No infinite loops, no reason to bail out.
4161 return false;
4162 }
4163
4164 //-----------------------------too_many_traps----------------------------------
4165 // Report if there are too many traps at the current method and bci.
4166 // Return true if there was a trap, and/or PerMethodTrapLimit is exceeded.
4167 bool Compile::too_many_traps(ciMethod* method,
4168 int bci,
4169 Deoptimization::DeoptReason reason) {
4170 ciMethodData* md = method->method_data();
4171 if (md->is_empty()) {
4172 // Assume the trap has not occurred, or that it occurred only
4173 // because of a transient condition during start-up in the interpreter.
4174 return false;
4175 }
4176 ciMethod* m = Deoptimization::reason_is_speculate(reason) ? this->method() : nullptr;
4177 if (md->has_trap_at(bci, m, reason) != 0) {
4178 // Assume PerBytecodeTrapLimit==0, for a more conservative heuristic.
4179 // Also, if there are multiple reasons, or if there is no per-BCI record,
4180 // assume the worst.
4181 if (log())
4182 log()->elem("observe trap='%s' count='%d'",
4183 Deoptimization::trap_reason_name(reason),
4184 md->trap_count(reason));
4185 return true;
4186 } else {
4187 // Ignore method/bci and see if there have been too many globally.
4188 return too_many_traps(reason, md);
4189 }
4190 }
4191
4192 // Less-accurate variant which does not require a method and bci.
4193 bool Compile::too_many_traps(Deoptimization::DeoptReason reason,
4194 ciMethodData* logmd) {
4195 if (trap_count(reason) >= Deoptimization::per_method_trap_limit(reason)) {
4196 // Too many traps globally.
4197 // Note that we use cumulative trap_count, not just md->trap_count.
4198 if (log()) {
4199 int mcount = (logmd == nullptr)? -1: (int)logmd->trap_count(reason);
4200 log()->elem("observe trap='%s' count='0' mcount='%d' ccount='%d'",
4201 Deoptimization::trap_reason_name(reason),
4202 mcount, trap_count(reason));
4203 }
4204 return true;
4205 } else {
4206 // The coast is clear.
4207 return false;
4208 }
4209 }
4210
4211 //--------------------------too_many_recompiles--------------------------------
4212 // Report if there are too many recompiles at the current method and bci.
4213 // Consults PerBytecodeRecompilationCutoff and PerMethodRecompilationCutoff.
4214 // Is not eager to return true, since this will cause the compiler to use
4215 // Action_none for a trap point, to avoid too many recompilations.
4216 bool Compile::too_many_recompiles(ciMethod* method,
4217 int bci,
4218 Deoptimization::DeoptReason reason) {
4219 ciMethodData* md = method->method_data();
4220 if (md->is_empty()) {
4221 // Assume the trap has not occurred, or that it occurred only
4222 // because of a transient condition during start-up in the interpreter.
4223 return false;
4224 }
4225 // Pick a cutoff point well within PerBytecodeRecompilationCutoff.
4226 uint bc_cutoff = (uint) PerBytecodeRecompilationCutoff / 8;
4227 uint m_cutoff = (uint) PerMethodRecompilationCutoff / 2 + 1; // not zero
4228 Deoptimization::DeoptReason per_bc_reason
4229 = Deoptimization::reason_recorded_per_bytecode_if_any(reason);
4230 ciMethod* m = Deoptimization::reason_is_speculate(reason) ? this->method() : nullptr;
4231 if ((per_bc_reason == Deoptimization::Reason_none
4232 || md->has_trap_at(bci, m, reason) != 0)
4233 // The trap frequency measure we care about is the recompile count:
4234 && md->trap_recompiled_at(bci, m)
4235 && md->overflow_recompile_count() >= bc_cutoff) {
4236 // Do not emit a trap here if it has already caused recompilations.
4237 // Also, if there are multiple reasons, or if there is no per-BCI record,
4238 // assume the worst.
4239 if (log())
4240 log()->elem("observe trap='%s recompiled' count='%d' recompiles2='%d'",
4241 Deoptimization::trap_reason_name(reason),
4242 md->trap_count(reason),
4243 md->overflow_recompile_count());
4244 return true;
4245 } else if (trap_count(reason) != 0
4246 && decompile_count() >= m_cutoff) {
4247 // Too many recompiles globally, and we have seen this sort of trap.
4248 // Use cumulative decompile_count, not just md->decompile_count.
4249 if (log())
4250 log()->elem("observe trap='%s' count='%d' mcount='%d' decompiles='%d' mdecompiles='%d'",
4251 Deoptimization::trap_reason_name(reason),
4252 md->trap_count(reason), trap_count(reason),
4253 md->decompile_count(), decompile_count());
4254 return true;
4255 } else {
4256 // The coast is clear.
4257 return false;
4258 }
4259 }
4260
4261 // Compute when not to trap. Used by matching trap based nodes and
4262 // NullCheck optimization.
4263 void Compile::set_allowed_deopt_reasons() {
4264 _allowed_reasons = 0;
4265 if (is_method_compilation()) {
4266 for (int rs = (int)Deoptimization::Reason_none+1; rs < Compile::trapHistLength; rs++) {
4267 assert(rs < BitsPerInt, "recode bit map");
4268 if (!too_many_traps((Deoptimization::DeoptReason) rs)) {
4269 _allowed_reasons |= nth_bit(rs);
4270 }
4271 }
4272 }
4273 }
4274
4275 bool Compile::needs_clinit_barrier(ciMethod* method, ciMethod* accessing_method) {
4276 return method->is_static() && needs_clinit_barrier(method->holder(), accessing_method);
4277 }
4278
4279 bool Compile::needs_clinit_barrier(ciField* field, ciMethod* accessing_method) {
4280 return field->is_static() && needs_clinit_barrier(field->holder(), accessing_method);
4281 }
4282
4283 bool Compile::needs_clinit_barrier(ciInstanceKlass* holder, ciMethod* accessing_method) {
4284 if (holder->is_initialized()) {
4285 return false;
4286 }
4287 if (holder->is_being_initialized()) {
4288 if (accessing_method->holder() == holder) {
4289 // Access inside a class. The barrier can be elided when access happens in <clinit>,
4290 // <init>, or a static method. In all those cases, there was an initialization
4291 // barrier on the holder klass passed.
4292 if (accessing_method->is_static_initializer() ||
4293 accessing_method->is_object_initializer() ||
4294 accessing_method->is_static()) {
4295 return false;
4296 }
4297 } else if (accessing_method->holder()->is_subclass_of(holder)) {
4298 // Access from a subclass. The barrier can be elided only when access happens in <clinit>.
4299 // In case of <init> or a static method, the barrier is on the subclass is not enough:
4300 // child class can become fully initialized while its parent class is still being initialized.
4301 if (accessing_method->is_static_initializer()) {
4302 return false;
4303 }
4304 }
4305 ciMethod* root = method(); // the root method of compilation
4306 if (root != accessing_method) {
4307 return needs_clinit_barrier(holder, root); // check access in the context of compilation root
4308 }
4309 }
4310 return true;
4311 }
4312
4313 #ifndef PRODUCT
4314 //------------------------------verify_bidirectional_edges---------------------
4315 // For each input edge to a node (ie - for each Use-Def edge), verify that
4316 // there is a corresponding Def-Use edge.
4317 void Compile::verify_bidirectional_edges(Unique_Node_List& visited, const Unique_Node_List* root_and_safepoints) const {
4318 // Allocate stack of size C->live_nodes()/16 to avoid frequent realloc
4319 uint stack_size = live_nodes() >> 4;
4320 Node_List nstack(MAX2(stack_size, (uint) OptoNodeListSize));
4321 if (root_and_safepoints != nullptr) {
4322 assert(root_and_safepoints->member(_root), "root is not in root_and_safepoints");
4323 for (uint i = 0, limit = root_and_safepoints->size(); i < limit; i++) {
4324 Node* root_or_safepoint = root_and_safepoints->at(i);
4325 // If the node is a safepoint, let's check if it still has a control input
4326 // Lack of control input signifies that this node was killed by CCP or
4327 // recursively by remove_globally_dead_node and it shouldn't be a starting
4328 // point.
4329 if (!root_or_safepoint->is_SafePoint() || root_or_safepoint->in(0) != nullptr) {
4330 nstack.push(root_or_safepoint);
4331 }
4332 }
4333 } else {
4334 nstack.push(_root);
4335 }
4336
4337 while (nstack.size() > 0) {
4338 Node* n = nstack.pop();
4339 if (visited.member(n)) {
4340 continue;
4341 }
4342 visited.push(n);
4343
4344 // Walk over all input edges, checking for correspondence
4345 uint length = n->len();
4346 for (uint i = 0; i < length; i++) {
4347 Node* in = n->in(i);
4348 if (in != nullptr && !visited.member(in)) {
4349 nstack.push(in); // Put it on stack
4350 }
4351 if (in != nullptr && !in->is_top()) {
4352 // Count instances of `next`
4353 int cnt = 0;
4354 for (uint idx = 0; idx < in->_outcnt; idx++) {
4355 if (in->_out[idx] == n) {
4356 cnt++;
4357 }
4358 }
4359 assert(cnt > 0, "Failed to find Def-Use edge.");
4360 // Check for duplicate edges
4361 // walk the input array downcounting the input edges to n
4362 for (uint j = 0; j < length; j++) {
4363 if (n->in(j) == in) {
4364 cnt--;
4365 }
4366 }
4367 assert(cnt == 0, "Mismatched edge count.");
4368 } else if (in == nullptr) {
4369 assert(i == 0 || i >= n->req() ||
4370 n->is_Region() || n->is_Phi() || n->is_ArrayCopy() ||
4371 (n->is_Unlock() && i == (n->req() - 1)) ||
4372 (n->is_MemBar() && i == 5), // the precedence edge to a membar can be removed during macro node expansion
4373 "only region, phi, arraycopy, unlock or membar nodes have null data edges");
4374 } else {
4375 assert(in->is_top(), "sanity");
4376 // Nothing to check.
4377 }
4378 }
4379 }
4380 }
4381
4382 //------------------------------verify_graph_edges---------------------------
4383 // Walk the Graph and verify that there is a one-to-one correspondence
4384 // between Use-Def edges and Def-Use edges in the graph.
4385 void Compile::verify_graph_edges(bool no_dead_code, const Unique_Node_List* root_and_safepoints) const {
4386 if (VerifyGraphEdges) {
4387 Unique_Node_List visited;
4388
4389 // Call graph walk to check edges
4390 verify_bidirectional_edges(visited, root_and_safepoints);
4391 if (no_dead_code) {
4392 // Now make sure that no visited node is used by an unvisited node.
4393 bool dead_nodes = false;
4394 Unique_Node_List checked;
4395 while (visited.size() > 0) {
4396 Node* n = visited.pop();
4397 checked.push(n);
4398 for (uint i = 0; i < n->outcnt(); i++) {
4399 Node* use = n->raw_out(i);
4400 if (checked.member(use)) continue; // already checked
4401 if (visited.member(use)) continue; // already in the graph
4402 if (use->is_Con()) continue; // a dead ConNode is OK
4403 // At this point, we have found a dead node which is DU-reachable.
4404 if (!dead_nodes) {
4405 tty->print_cr("*** Dead nodes reachable via DU edges:");
4406 dead_nodes = true;
4407 }
4408 use->dump(2);
4409 tty->print_cr("---");
4410 checked.push(use); // No repeats; pretend it is now checked.
4411 }
4412 }
4413 assert(!dead_nodes, "using nodes must be reachable from root");
4414 }
4415 }
4416 }
4417 #endif
4418
4419 // The Compile object keeps track of failure reasons separately from the ciEnv.
4420 // This is required because there is not quite a 1-1 relation between the
4421 // ciEnv and its compilation task and the Compile object. Note that one
4422 // ciEnv might use two Compile objects, if C2Compiler::compile_method decides
4423 // to backtrack and retry without subsuming loads. Other than this backtracking
4424 // behavior, the Compile's failure reason is quietly copied up to the ciEnv
4425 // by the logic in C2Compiler.
4426 void Compile::record_failure(const char* reason DEBUG_ONLY(COMMA bool allow_multiple_failures)) {
4427 if (log() != nullptr) {
4428 log()->elem("failure reason='%s' phase='compile'", reason);
4429 }
4430 if (_failure_reason.get() == nullptr) {
4431 // Record the first failure reason.
4432 _failure_reason.set(reason);
4433 if (CaptureBailoutInformation) {
4434 _first_failure_details = new CompilationFailureInfo(reason);
4435 }
4436 } else {
4437 assert(!StressBailout || allow_multiple_failures, "should have handled previous failure.");
4438 }
4439
4440 if (!C->failure_reason_is(C2Compiler::retry_no_subsuming_loads())) {
4441 C->print_method(PHASE_FAILURE, 1);
4442 }
4443 _root = nullptr; // flush the graph, too
4444 }
4445
4446 Compile::TracePhase::TracePhase(const char* name, PhaseTraceId id)
4447 : TraceTime(name, &Phase::timers[id], CITime, CITimeVerbose),
4448 _compile(Compile::current()),
4449 _log(nullptr),
4450 _dolog(CITimeVerbose)
4451 {
4452 assert(_compile != nullptr, "sanity check");
4453 assert(id != PhaseTraceId::_t_none, "Don't use none");
4454 if (_dolog) {
4455 _log = _compile->log();
4456 }
4457 if (_log != nullptr) {
4458 _log->begin_head("phase name='%s' nodes='%d' live='%d'", phase_name(), _compile->unique(), _compile->live_nodes());
4459 _log->stamp();
4460 _log->end_head();
4461 }
4462
4463 // Inform memory statistic, if enabled
4464 if (CompilationMemoryStatistic::enabled()) {
4465 CompilationMemoryStatistic::on_phase_start((int)id, name);
4466 }
4467 }
4468
4469 Compile::TracePhase::TracePhase(PhaseTraceId id)
4470 : TracePhase(Phase::get_phase_trace_id_text(id), id) {}
4471
4472 Compile::TracePhase::~TracePhase() {
4473
4474 // Inform memory statistic, if enabled
4475 if (CompilationMemoryStatistic::enabled()) {
4476 CompilationMemoryStatistic::on_phase_end();
4477 }
4478
4479 if (_compile->failing_internal()) {
4480 if (_log != nullptr) {
4481 _log->done("phase");
4482 }
4483 return; // timing code, not stressing bailouts.
4484 }
4485 #ifdef ASSERT
4486 if (PrintIdealNodeCount) {
4487 tty->print_cr("phase name='%s' nodes='%d' live='%d' live_graph_walk='%d'",
4488 phase_name(), _compile->unique(), _compile->live_nodes(), _compile->count_live_nodes_by_graph_walk());
4489 }
4490
4491 if (VerifyIdealNodeCount) {
4492 _compile->print_missing_nodes();
4493 }
4494 #endif
4495
4496 if (_log != nullptr) {
4497 _log->done("phase name='%s' nodes='%d' live='%d'", phase_name(), _compile->unique(), _compile->live_nodes());
4498 }
4499 }
4500
4501 //----------------------------static_subtype_check-----------------------------
4502 // Shortcut important common cases when superklass is exact:
4503 // (0) superklass is java.lang.Object (can occur in reflective code)
4504 // (1) subklass is already limited to a subtype of superklass => always ok
4505 // (2) subklass does not overlap with superklass => always fail
4506 // (3) superklass has NO subtypes and we can check with a simple compare.
4507 Compile::SubTypeCheckResult Compile::static_subtype_check(const TypeKlassPtr* superk, const TypeKlassPtr* subk, bool skip) {
4508 if (skip) {
4509 return SSC_full_test; // Let caller generate the general case.
4510 }
4511
4512 if (subk->is_java_subtype_of(superk)) {
4513 return SSC_always_true; // (0) and (1) this test cannot fail
4514 }
4515
4516 if (!subk->maybe_java_subtype_of(superk)) {
4517 return SSC_always_false; // (2) true path dead; no dynamic test needed
4518 }
4519
4520 const Type* superelem = superk;
4521 if (superk->isa_aryklassptr()) {
4522 int ignored;
4523 superelem = superk->is_aryklassptr()->base_element_type(ignored);
4524 }
4525
4526 if (superelem->isa_instklassptr()) {
4527 ciInstanceKlass* ik = superelem->is_instklassptr()->instance_klass();
4528 if (!ik->has_subklass()) {
4529 if (!ik->is_final()) {
4530 // Add a dependency if there is a chance of a later subclass.
4531 dependencies()->assert_leaf_type(ik);
4532 }
4533 if (!superk->maybe_java_subtype_of(subk)) {
4534 return SSC_always_false;
4535 }
4536 return SSC_easy_test; // (3) caller can do a simple ptr comparison
4537 }
4538 } else {
4539 // A primitive array type has no subtypes.
4540 return SSC_easy_test; // (3) caller can do a simple ptr comparison
4541 }
4542
4543 return SSC_full_test;
4544 }
4545
4546 Node* Compile::conv_I2X_index(PhaseGVN* phase, Node* idx, const TypeInt* sizetype, Node* ctrl) {
4547 #ifdef _LP64
4548 // The scaled index operand to AddP must be a clean 64-bit value.
4549 // Java allows a 32-bit int to be incremented to a negative
4550 // value, which appears in a 64-bit register as a large
4551 // positive number. Using that large positive number as an
4552 // operand in pointer arithmetic has bad consequences.
4553 // On the other hand, 32-bit overflow is rare, and the possibility
4554 // can often be excluded, if we annotate the ConvI2L node with
4555 // a type assertion that its value is known to be a small positive
4556 // number. (The prior range check has ensured this.)
4557 // This assertion is used by ConvI2LNode::Ideal.
4558 int index_max = max_jint - 1; // array size is max_jint, index is one less
4559 if (sizetype != nullptr && sizetype->_hi > 0) {
4560 index_max = sizetype->_hi - 1;
4561 }
4562 const TypeInt* iidxtype = TypeInt::make(0, index_max, Type::WidenMax);
4563 idx = constrained_convI2L(phase, idx, iidxtype, ctrl);
4564 #endif
4565 return idx;
4566 }
4567
4568 // Convert integer value to a narrowed long type dependent on ctrl (for example, a range check)
4569 Node* Compile::constrained_convI2L(PhaseGVN* phase, Node* value, const TypeInt* itype, Node* ctrl, bool carry_dependency) {
4570 if (ctrl != nullptr) {
4571 // Express control dependency by a CastII node with a narrow type.
4572 // Make the CastII node dependent on the control input to prevent the narrowed ConvI2L
4573 // node from floating above the range check during loop optimizations. Otherwise, the
4574 // ConvI2L node may be eliminated independently of the range check, causing the data path
4575 // to become TOP while the control path is still there (although it's unreachable).
4576 value = new CastIINode(ctrl, value, itype, carry_dependency ? ConstraintCastNode::DependencyType::NonFloatingNarrowing : ConstraintCastNode::DependencyType::FloatingNarrowing, true /* range check dependency */);
4577 value = phase->transform(value);
4578 }
4579 const TypeLong* ltype = TypeLong::make(itype->_lo, itype->_hi, itype->_widen);
4580 return phase->transform(new ConvI2LNode(value, ltype));
4581 }
4582
4583 void Compile::dump_print_inlining() {
4584 inline_printer()->print_on(tty);
4585 }
4586
4587 void Compile::log_late_inline(CallGenerator* cg) {
4588 if (log() != nullptr) {
4589 log()->head("late_inline method='%d' inline_id='" JLONG_FORMAT "'", log()->identify(cg->method()),
4590 cg->unique_id());
4591 JVMState* p = cg->call_node()->jvms();
4592 while (p != nullptr) {
4593 log()->elem("jvms bci='%d' method='%d'", p->bci(), log()->identify(p->method()));
4594 p = p->caller();
4595 }
4596 log()->tail("late_inline");
4597 }
4598 }
4599
4600 void Compile::log_late_inline_failure(CallGenerator* cg, const char* msg) {
4601 log_late_inline(cg);
4602 if (log() != nullptr) {
4603 log()->inline_fail(msg);
4604 }
4605 }
4606
4607 void Compile::log_inline_id(CallGenerator* cg) {
4608 if (log() != nullptr) {
4609 // The LogCompilation tool needs a unique way to identify late
4610 // inline call sites. This id must be unique for this call site in
4611 // this compilation. Try to have it unique across compilations as
4612 // well because it can be convenient when grepping through the log
4613 // file.
4614 // Distinguish OSR compilations from others in case CICountOSR is
4615 // on.
4616 jlong id = ((jlong)unique()) + (((jlong)compile_id()) << 33) + (CICountOSR && is_osr_compilation() ? ((jlong)1) << 32 : 0);
4617 cg->set_unique_id(id);
4618 log()->elem("inline_id id='" JLONG_FORMAT "'", id);
4619 }
4620 }
4621
4622 void Compile::log_inline_failure(const char* msg) {
4623 if (C->log() != nullptr) {
4624 C->log()->inline_fail(msg);
4625 }
4626 }
4627
4628
4629 // Dump inlining replay data to the stream.
4630 // Don't change thread state and acquire any locks.
4631 void Compile::dump_inline_data(outputStream* out) {
4632 InlineTree* inl_tree = ilt();
4633 if (inl_tree != nullptr) {
4634 out->print(" inline %d", inl_tree->count());
4635 inl_tree->dump_replay_data(out);
4636 }
4637 }
4638
4639 void Compile::dump_inline_data_reduced(outputStream* out) {
4640 assert(ReplayReduce, "");
4641
4642 InlineTree* inl_tree = ilt();
4643 if (inl_tree == nullptr) {
4644 return;
4645 }
4646 // Enable iterative replay file reduction
4647 // Output "compile" lines for depth 1 subtrees,
4648 // simulating that those trees were compiled
4649 // instead of inlined.
4650 for (int i = 0; i < inl_tree->subtrees().length(); ++i) {
4651 InlineTree* sub = inl_tree->subtrees().at(i);
4652 if (sub->inline_level() != 1) {
4653 continue;
4654 }
4655
4656 ciMethod* method = sub->method();
4657 int entry_bci = -1;
4658 int comp_level = env()->task()->comp_level();
4659 out->print("compile ");
4660 method->dump_name_as_ascii(out);
4661 out->print(" %d %d", entry_bci, comp_level);
4662 out->print(" inline %d", sub->count());
4663 sub->dump_replay_data(out, -1);
4664 out->cr();
4665 }
4666 }
4667
4668 int Compile::cmp_expensive_nodes(Node* n1, Node* n2) {
4669 if (n1->Opcode() < n2->Opcode()) return -1;
4670 else if (n1->Opcode() > n2->Opcode()) return 1;
4671
4672 assert(n1->req() == n2->req(), "can't compare %s nodes: n1->req() = %d, n2->req() = %d", NodeClassNames[n1->Opcode()], n1->req(), n2->req());
4673 for (uint i = 1; i < n1->req(); i++) {
4674 if (n1->in(i) < n2->in(i)) return -1;
4675 else if (n1->in(i) > n2->in(i)) return 1;
4676 }
4677
4678 return 0;
4679 }
4680
4681 int Compile::cmp_expensive_nodes(Node** n1p, Node** n2p) {
4682 Node* n1 = *n1p;
4683 Node* n2 = *n2p;
4684
4685 return cmp_expensive_nodes(n1, n2);
4686 }
4687
4688 void Compile::sort_expensive_nodes() {
4689 if (!expensive_nodes_sorted()) {
4690 _expensive_nodes.sort(cmp_expensive_nodes);
4691 }
4692 }
4693
4694 bool Compile::expensive_nodes_sorted() const {
4695 for (int i = 1; i < _expensive_nodes.length(); i++) {
4696 if (cmp_expensive_nodes(_expensive_nodes.adr_at(i), _expensive_nodes.adr_at(i-1)) < 0) {
4697 return false;
4698 }
4699 }
4700 return true;
4701 }
4702
4703 bool Compile::should_optimize_expensive_nodes(PhaseIterGVN &igvn) {
4704 if (_expensive_nodes.length() == 0) {
4705 return false;
4706 }
4707
4708 assert(OptimizeExpensiveOps, "optimization off?");
4709
4710 // Take this opportunity to remove dead nodes from the list
4711 int j = 0;
4712 for (int i = 0; i < _expensive_nodes.length(); i++) {
4713 Node* n = _expensive_nodes.at(i);
4714 if (!n->is_unreachable(igvn)) {
4715 assert(n->is_expensive(), "should be expensive");
4716 _expensive_nodes.at_put(j, n);
4717 j++;
4718 }
4719 }
4720 _expensive_nodes.trunc_to(j);
4721
4722 // Then sort the list so that similar nodes are next to each other
4723 // and check for at least two nodes of identical kind with same data
4724 // inputs.
4725 sort_expensive_nodes();
4726
4727 for (int i = 0; i < _expensive_nodes.length()-1; i++) {
4728 if (cmp_expensive_nodes(_expensive_nodes.adr_at(i), _expensive_nodes.adr_at(i+1)) == 0) {
4729 return true;
4730 }
4731 }
4732
4733 return false;
4734 }
4735
4736 void Compile::cleanup_expensive_nodes(PhaseIterGVN &igvn) {
4737 if (_expensive_nodes.length() == 0) {
4738 return;
4739 }
4740
4741 assert(OptimizeExpensiveOps, "optimization off?");
4742
4743 // Sort to bring similar nodes next to each other and clear the
4744 // control input of nodes for which there's only a single copy.
4745 sort_expensive_nodes();
4746
4747 int j = 0;
4748 int identical = 0;
4749 int i = 0;
4750 bool modified = false;
4751 for (; i < _expensive_nodes.length()-1; i++) {
4752 assert(j <= i, "can't write beyond current index");
4753 if (_expensive_nodes.at(i)->Opcode() == _expensive_nodes.at(i+1)->Opcode()) {
4754 identical++;
4755 _expensive_nodes.at_put(j++, _expensive_nodes.at(i));
4756 continue;
4757 }
4758 if (identical > 0) {
4759 _expensive_nodes.at_put(j++, _expensive_nodes.at(i));
4760 identical = 0;
4761 } else {
4762 Node* n = _expensive_nodes.at(i);
4763 igvn.replace_input_of(n, 0, nullptr);
4764 igvn.hash_insert(n);
4765 modified = true;
4766 }
4767 }
4768 if (identical > 0) {
4769 _expensive_nodes.at_put(j++, _expensive_nodes.at(i));
4770 } else if (_expensive_nodes.length() >= 1) {
4771 Node* n = _expensive_nodes.at(i);
4772 igvn.replace_input_of(n, 0, nullptr);
4773 igvn.hash_insert(n);
4774 modified = true;
4775 }
4776 _expensive_nodes.trunc_to(j);
4777 if (modified) {
4778 igvn.optimize();
4779 }
4780 }
4781
4782 void Compile::add_expensive_node(Node * n) {
4783 assert(!_expensive_nodes.contains(n), "duplicate entry in expensive list");
4784 assert(n->is_expensive(), "expensive nodes with non-null control here only");
4785 assert(!n->is_CFG() && !n->is_Mem(), "no cfg or memory nodes here");
4786 if (OptimizeExpensiveOps) {
4787 _expensive_nodes.append(n);
4788 } else {
4789 // Clear control input and let IGVN optimize expensive nodes if
4790 // OptimizeExpensiveOps is off.
4791 n->set_req(0, nullptr);
4792 }
4793 }
4794
4795 /**
4796 * Track coarsened Lock and Unlock nodes.
4797 */
4798
4799 class Lock_List : public Node_List {
4800 uint _origin_cnt;
4801 public:
4802 Lock_List(Arena *a, uint cnt) : Node_List(a), _origin_cnt(cnt) {}
4803 uint origin_cnt() const { return _origin_cnt; }
4804 };
4805
4806 void Compile::add_coarsened_locks(GrowableArray<AbstractLockNode*>& locks) {
4807 int length = locks.length();
4808 if (length > 0) {
4809 // Have to keep this list until locks elimination during Macro nodes elimination.
4810 Lock_List* locks_list = new (comp_arena()) Lock_List(comp_arena(), length);
4811 AbstractLockNode* alock = locks.at(0);
4812 BoxLockNode* box = alock->box_node()->as_BoxLock();
4813 for (int i = 0; i < length; i++) {
4814 AbstractLockNode* lock = locks.at(i);
4815 assert(lock->is_coarsened(), "expecting only coarsened AbstractLock nodes, but got '%s'[%d] node", lock->Name(), lock->_idx);
4816 locks_list->push(lock);
4817 BoxLockNode* this_box = lock->box_node()->as_BoxLock();
4818 if (this_box != box) {
4819 // Locking regions (BoxLock) could be Unbalanced here:
4820 // - its coarsened locks were eliminated in earlier
4821 // macro nodes elimination followed by loop unroll
4822 // - it is OSR locking region (no Lock node)
4823 // Preserve Unbalanced status in such cases.
4824 if (!this_box->is_unbalanced()) {
4825 this_box->set_coarsened();
4826 }
4827 if (!box->is_unbalanced()) {
4828 box->set_coarsened();
4829 }
4830 }
4831 }
4832 _coarsened_locks.append(locks_list);
4833 }
4834 }
4835
4836 void Compile::remove_useless_coarsened_locks(Unique_Node_List& useful) {
4837 int count = coarsened_count();
4838 for (int i = 0; i < count; i++) {
4839 Node_List* locks_list = _coarsened_locks.at(i);
4840 for (uint j = 0; j < locks_list->size(); j++) {
4841 Node* lock = locks_list->at(j);
4842 assert(lock->is_AbstractLock(), "sanity");
4843 if (!useful.member(lock)) {
4844 locks_list->yank(lock);
4845 }
4846 }
4847 }
4848 }
4849
4850 void Compile::remove_coarsened_lock(Node* n) {
4851 if (n->is_AbstractLock()) {
4852 int count = coarsened_count();
4853 for (int i = 0; i < count; i++) {
4854 Node_List* locks_list = _coarsened_locks.at(i);
4855 locks_list->yank(n);
4856 }
4857 }
4858 }
4859
4860 bool Compile::coarsened_locks_consistent() {
4861 int count = coarsened_count();
4862 for (int i = 0; i < count; i++) {
4863 bool unbalanced = false;
4864 bool modified = false; // track locks kind modifications
4865 Lock_List* locks_list = (Lock_List*)_coarsened_locks.at(i);
4866 uint size = locks_list->size();
4867 if (size == 0) {
4868 unbalanced = false; // All locks were eliminated - good
4869 } else if (size != locks_list->origin_cnt()) {
4870 unbalanced = true; // Some locks were removed from list
4871 } else {
4872 for (uint j = 0; j < size; j++) {
4873 Node* lock = locks_list->at(j);
4874 // All nodes in group should have the same state (modified or not)
4875 if (!lock->as_AbstractLock()->is_coarsened()) {
4876 if (j == 0) {
4877 // first on list was modified, the rest should be too for consistency
4878 modified = true;
4879 } else if (!modified) {
4880 // this lock was modified but previous locks on the list were not
4881 unbalanced = true;
4882 break;
4883 }
4884 } else if (modified) {
4885 // previous locks on list were modified but not this lock
4886 unbalanced = true;
4887 break;
4888 }
4889 }
4890 }
4891 if (unbalanced) {
4892 // unbalanced monitor enter/exit - only some [un]lock nodes were removed or modified
4893 #ifdef ASSERT
4894 if (PrintEliminateLocks) {
4895 tty->print_cr("=== unbalanced coarsened locks ===");
4896 for (uint l = 0; l < size; l++) {
4897 locks_list->at(l)->dump();
4898 }
4899 }
4900 #endif
4901 record_failure(C2Compiler::retry_no_locks_coarsening());
4902 return false;
4903 }
4904 }
4905 return true;
4906 }
4907
4908 // Mark locking regions (identified by BoxLockNode) as unbalanced if
4909 // locks coarsening optimization removed Lock/Unlock nodes from them.
4910 // Such regions become unbalanced because coarsening only removes part
4911 // of Lock/Unlock nodes in region. As result we can't execute other
4912 // locks elimination optimizations which assume all code paths have
4913 // corresponding pair of Lock/Unlock nodes - they are balanced.
4914 void Compile::mark_unbalanced_boxes() const {
4915 int count = coarsened_count();
4916 for (int i = 0; i < count; i++) {
4917 Node_List* locks_list = _coarsened_locks.at(i);
4918 uint size = locks_list->size();
4919 if (size > 0) {
4920 AbstractLockNode* alock = locks_list->at(0)->as_AbstractLock();
4921 BoxLockNode* box = alock->box_node()->as_BoxLock();
4922 if (alock->is_coarsened()) {
4923 // coarsened_locks_consistent(), which is called before this method, verifies
4924 // that the rest of Lock/Unlock nodes on locks_list are also coarsened.
4925 assert(!box->is_eliminated(), "regions with coarsened locks should not be marked as eliminated");
4926 for (uint j = 1; j < size; j++) {
4927 assert(locks_list->at(j)->as_AbstractLock()->is_coarsened(), "only coarsened locks are expected here");
4928 BoxLockNode* this_box = locks_list->at(j)->as_AbstractLock()->box_node()->as_BoxLock();
4929 if (box != this_box) {
4930 assert(!this_box->is_eliminated(), "regions with coarsened locks should not be marked as eliminated");
4931 box->set_unbalanced();
4932 this_box->set_unbalanced();
4933 }
4934 }
4935 }
4936 }
4937 }
4938 }
4939
4940 /**
4941 * Remove the speculative part of types and clean up the graph
4942 */
4943 void Compile::remove_speculative_types(PhaseIterGVN &igvn) {
4944 if (UseTypeSpeculation) {
4945 Unique_Node_List worklist;
4946 worklist.push(root());
4947 int modified = 0;
4948 // Go over all type nodes that carry a speculative type, drop the
4949 // speculative part of the type and enqueue the node for an igvn
4950 // which may optimize it out.
4951 for (uint next = 0; next < worklist.size(); ++next) {
4952 Node *n = worklist.at(next);
4953 if (n->is_Type()) {
4954 TypeNode* tn = n->as_Type();
4955 const Type* t = tn->type();
4956 const Type* t_no_spec = t->remove_speculative();
4957 if (t_no_spec != t) {
4958 bool in_hash = igvn.hash_delete(n);
4959 assert(in_hash || n->hash() == Node::NO_HASH, "node should be in igvn hash table");
4960 tn->set_type(t_no_spec);
4961 igvn.hash_insert(n);
4962 igvn._worklist.push(n); // give it a chance to go away
4963 modified++;
4964 }
4965 }
4966 // Iterate over outs - endless loops is unreachable from below
4967 for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
4968 Node *m = n->fast_out(i);
4969 if (not_a_node(m)) {
4970 continue;
4971 }
4972 worklist.push(m);
4973 }
4974 }
4975 // Drop the speculative part of all types in the igvn's type table
4976 igvn.remove_speculative_types();
4977 if (modified > 0) {
4978 igvn.optimize();
4979 if (failing()) return;
4980 }
4981 #ifdef ASSERT
4982 // Verify that after the IGVN is over no speculative type has resurfaced
4983 worklist.clear();
4984 worklist.push(root());
4985 for (uint next = 0; next < worklist.size(); ++next) {
4986 Node *n = worklist.at(next);
4987 const Type* t = igvn.type_or_null(n);
4988 assert((t == nullptr) || (t == t->remove_speculative()), "no more speculative types");
4989 if (n->is_Type()) {
4990 t = n->as_Type()->type();
4991 assert(t == t->remove_speculative(), "no more speculative types");
4992 }
4993 // Iterate over outs - endless loops is unreachable from below
4994 for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
4995 Node *m = n->fast_out(i);
4996 if (not_a_node(m)) {
4997 continue;
4998 }
4999 worklist.push(m);
5000 }
5001 }
5002 igvn.check_no_speculative_types();
5003 #endif
5004 }
5005 }
5006
5007 // Auxiliary methods to support randomized stressing/fuzzing.
5008
5009 void Compile::initialize_stress_seed(const DirectiveSet* directive) {
5010 if (FLAG_IS_DEFAULT(StressSeed) || (FLAG_IS_ERGO(StressSeed) && directive->RepeatCompilationOption)) {
5011 _stress_seed = static_cast<uint>(Ticks::now().nanoseconds());
5012 FLAG_SET_ERGO(StressSeed, _stress_seed);
5013 } else {
5014 _stress_seed = StressSeed;
5015 }
5016 if (_log != nullptr) {
5017 _log->elem("stress_test seed='%u'", _stress_seed);
5018 }
5019 }
5020
5021 int Compile::random() {
5022 _stress_seed = os::next_random(_stress_seed);
5023 return static_cast<int>(_stress_seed);
5024 }
5025
5026 // This method can be called the arbitrary number of times, with current count
5027 // as the argument. The logic allows selecting a single candidate from the
5028 // running list of candidates as follows:
5029 // int count = 0;
5030 // Cand* selected = null;
5031 // while(cand = cand->next()) {
5032 // if (randomized_select(++count)) {
5033 // selected = cand;
5034 // }
5035 // }
5036 //
5037 // Including count equalizes the chances any candidate is "selected".
5038 // This is useful when we don't have the complete list of candidates to choose
5039 // from uniformly. In this case, we need to adjust the randomicity of the
5040 // selection, or else we will end up biasing the selection towards the latter
5041 // candidates.
5042 //
5043 // Quick back-envelope calculation shows that for the list of n candidates
5044 // the equal probability for the candidate to persist as "best" can be
5045 // achieved by replacing it with "next" k-th candidate with the probability
5046 // of 1/k. It can be easily shown that by the end of the run, the
5047 // probability for any candidate is converged to 1/n, thus giving the
5048 // uniform distribution among all the candidates.
5049 //
5050 // We don't care about the domain size as long as (RANDOMIZED_DOMAIN / count) is large.
5051 #define RANDOMIZED_DOMAIN_POW 29
5052 #define RANDOMIZED_DOMAIN (1 << RANDOMIZED_DOMAIN_POW)
5053 #define RANDOMIZED_DOMAIN_MASK ((1 << (RANDOMIZED_DOMAIN_POW + 1)) - 1)
5054 bool Compile::randomized_select(int count) {
5055 assert(count > 0, "only positive");
5056 return (random() & RANDOMIZED_DOMAIN_MASK) < (RANDOMIZED_DOMAIN / count);
5057 }
5058
5059 #ifdef ASSERT
5060 // Failures are geometrically distributed with probability 1/StressBailoutMean.
5061 bool Compile::fail_randomly() {
5062 if ((random() % StressBailoutMean) != 0) {
5063 return false;
5064 }
5065 record_failure("StressBailout");
5066 return true;
5067 }
5068
5069 bool Compile::failure_is_artificial() {
5070 return C->failure_reason_is("StressBailout");
5071 }
5072 #endif
5073
5074 CloneMap& Compile::clone_map() { return _clone_map; }
5075 void Compile::set_clone_map(Dict* d) { _clone_map._dict = d; }
5076
5077 void NodeCloneInfo::dump_on(outputStream* st) const {
5078 st->print(" {%d:%d} ", idx(), gen());
5079 }
5080
5081 void CloneMap::clone(Node* old, Node* nnn, int gen) {
5082 uint64_t val = value(old->_idx);
5083 NodeCloneInfo cio(val);
5084 assert(val != 0, "old node should be in the map");
5085 NodeCloneInfo cin(cio.idx(), gen + cio.gen());
5086 insert(nnn->_idx, cin.get());
5087 #ifndef PRODUCT
5088 if (is_debug()) {
5089 tty->print_cr("CloneMap::clone inserted node %d info {%d:%d} into CloneMap", nnn->_idx, cin.idx(), cin.gen());
5090 }
5091 #endif
5092 }
5093
5094 void CloneMap::verify_insert_and_clone(Node* old, Node* nnn, int gen) {
5095 NodeCloneInfo cio(value(old->_idx));
5096 if (cio.get() == 0) {
5097 cio.set(old->_idx, 0);
5098 insert(old->_idx, cio.get());
5099 #ifndef PRODUCT
5100 if (is_debug()) {
5101 tty->print_cr("CloneMap::verify_insert_and_clone inserted node %d info {%d:%d} into CloneMap", old->_idx, cio.idx(), cio.gen());
5102 }
5103 #endif
5104 }
5105 clone(old, nnn, gen);
5106 }
5107
5108 int CloneMap::max_gen() const {
5109 int g = 0;
5110 DictI di(_dict);
5111 for(; di.test(); ++di) {
5112 int t = gen(di._key);
5113 if (g < t) {
5114 g = t;
5115 #ifndef PRODUCT
5116 if (is_debug()) {
5117 tty->print_cr("CloneMap::max_gen() update max=%d from %d", g, _2_node_idx_t(di._key));
5118 }
5119 #endif
5120 }
5121 }
5122 return g;
5123 }
5124
5125 void CloneMap::dump(node_idx_t key, outputStream* st) const {
5126 uint64_t val = value(key);
5127 if (val != 0) {
5128 NodeCloneInfo ni(val);
5129 ni.dump_on(st);
5130 }
5131 }
5132
5133 void Compile::shuffle_macro_nodes() {
5134 shuffle_array(*C, _macro_nodes);
5135 }
5136
5137 // Move Allocate nodes to the start of the list
5138 void Compile::sort_macro_nodes() {
5139 int count = macro_count();
5140 int allocates = 0;
5141 for (int i = 0; i < count; i++) {
5142 Node* n = macro_node(i);
5143 if (n->is_Allocate()) {
5144 if (i != allocates) {
5145 Node* tmp = macro_node(allocates);
5146 _macro_nodes.at_put(allocates, n);
5147 _macro_nodes.at_put(i, tmp);
5148 }
5149 allocates++;
5150 }
5151 }
5152 }
5153
5154 void Compile::print_method(CompilerPhaseType compile_phase, int level, Node* n) {
5155 if (failing_internal()) { return; } // failing_internal to not stress bailouts from printing code.
5156 EventCompilerPhase event(UNTIMED);
5157 if (event.should_commit()) {
5158 CompilerEvent::PhaseEvent::post(event, C->_latest_stage_start_counter, compile_phase, C->_compile_id, level);
5159 }
5160 #ifndef PRODUCT
5161 ResourceMark rm;
5162 stringStream ss;
5163 ss.print_raw(CompilerPhaseTypeHelper::to_description(compile_phase));
5164 int iter = ++_igv_phase_iter[compile_phase];
5165 if (iter > 1) {
5166 ss.print(" %d", iter);
5167 }
5168 if (n != nullptr) {
5169 ss.print(": %d %s", n->_idx, NodeClassNames[n->Opcode()]);
5170 if (n->is_Call()) {
5171 CallNode* call = n->as_Call();
5172 if (call->_name != nullptr) {
5173 // E.g. uncommon traps etc.
5174 ss.print(" - %s", call->_name);
5175 } else if (call->is_CallJava()) {
5176 CallJavaNode* call_java = call->as_CallJava();
5177 if (call_java->method() != nullptr) {
5178 ss.print(" -");
5179 call_java->method()->print_short_name(&ss);
5180 }
5181 }
5182 }
5183 }
5184
5185 const char* name = ss.as_string();
5186 if (should_print_igv(level)) {
5187 _igv_printer->print_graph(name);
5188 }
5189 if (should_print_phase(level)) {
5190 print_phase(name);
5191 }
5192 if (should_print_ideal_phase(compile_phase)) {
5193 print_ideal_ir(CompilerPhaseTypeHelper::to_name(compile_phase));
5194 }
5195 #endif
5196 C->_latest_stage_start_counter.stamp();
5197 }
5198
5199 // Only used from CompileWrapper
5200 void Compile::begin_method() {
5201 #ifndef PRODUCT
5202 if (_method != nullptr && should_print_igv(1)) {
5203 _igv_printer->begin_method();
5204 }
5205 #endif
5206 C->_latest_stage_start_counter.stamp();
5207 }
5208
5209 // Only used from CompileWrapper
5210 void Compile::end_method() {
5211 EventCompilerPhase event(UNTIMED);
5212 if (event.should_commit()) {
5213 CompilerEvent::PhaseEvent::post(event, C->_latest_stage_start_counter, PHASE_END, C->_compile_id, 1);
5214 }
5215
5216 #ifndef PRODUCT
5217 if (_method != nullptr && should_print_igv(1)) {
5218 _igv_printer->end_method();
5219 }
5220 #endif
5221 }
5222
5223 #ifndef PRODUCT
5224 bool Compile::should_print_phase(const int level) const {
5225 return PrintPhaseLevel >= 0 && directive()->PhasePrintLevelOption >= level &&
5226 _method != nullptr; // Do not print phases for stubs.
5227 }
5228
5229 bool Compile::should_print_ideal_phase(CompilerPhaseType cpt) const {
5230 return _directive->should_print_ideal_phase(cpt);
5231 }
5232
5233 void Compile::init_igv() {
5234 if (_igv_printer == nullptr) {
5235 _igv_printer = IdealGraphPrinter::printer();
5236 _igv_printer->set_compile(this);
5237 }
5238 }
5239
5240 bool Compile::should_print_igv(const int level) {
5241 PRODUCT_RETURN_(return false;);
5242
5243 if (PrintIdealGraphLevel < 0) { // disabled by the user
5244 return false;
5245 }
5246
5247 bool need = directive()->IGVPrintLevelOption >= level;
5248 if (need) {
5249 Compile::init_igv();
5250 }
5251 return need;
5252 }
5253
5254 IdealGraphPrinter* Compile::_debug_file_printer = nullptr;
5255 IdealGraphPrinter* Compile::_debug_network_printer = nullptr;
5256
5257 // Called from debugger. Prints method to the default file with the default phase name.
5258 // This works regardless of any Ideal Graph Visualizer flags set or not.
5259 // Use in debugger (gdb/rr): p igv_print($sp, $fp, $pc).
5260 void igv_print(void* sp, void* fp, void* pc) {
5261 frame fr(sp, fp, pc);
5262 Compile::current()->igv_print_method_to_file(nullptr, false, &fr);
5263 }
5264
5265 // Same as igv_print() above but with a specified phase name.
5266 void igv_print(const char* phase_name, void* sp, void* fp, void* pc) {
5267 frame fr(sp, fp, pc);
5268 Compile::current()->igv_print_method_to_file(phase_name, false, &fr);
5269 }
5270
5271 // Called from debugger. Prints method with the default phase name to the default network or the one specified with
5272 // the network flags for the Ideal Graph Visualizer, or to the default file depending on the 'network' argument.
5273 // This works regardless of any Ideal Graph Visualizer flags set or not.
5274 // Use in debugger (gdb/rr): p igv_print(true, $sp, $fp, $pc).
5275 void igv_print(bool network, void* sp, void* fp, void* pc) {
5276 frame fr(sp, fp, pc);
5277 if (network) {
5278 Compile::current()->igv_print_method_to_network(nullptr, &fr);
5279 } else {
5280 Compile::current()->igv_print_method_to_file(nullptr, false, &fr);
5281 }
5282 }
5283
5284 // Same as igv_print(bool network, ...) above but with a specified phase name.
5285 // Use in debugger (gdb/rr): p igv_print(true, "MyPhase", $sp, $fp, $pc).
5286 void igv_print(bool network, const char* phase_name, void* sp, void* fp, void* pc) {
5287 frame fr(sp, fp, pc);
5288 if (network) {
5289 Compile::current()->igv_print_method_to_network(phase_name, &fr);
5290 } else {
5291 Compile::current()->igv_print_method_to_file(phase_name, false, &fr);
5292 }
5293 }
5294
5295 // Called from debugger. Normal write to the default _printer. Only works if Ideal Graph Visualizer printing flags are set.
5296 void igv_print_default() {
5297 Compile::current()->print_method(PHASE_DEBUG, 0);
5298 }
5299
5300 // Called from debugger, especially when replaying a trace in which the program state cannot be altered like with rr replay.
5301 // A method is appended to an existing default file with the default phase name. This means that igv_append() must follow
5302 // an earlier igv_print(*) call which sets up the file. This works regardless of any Ideal Graph Visualizer flags set or not.
5303 // Use in debugger (gdb/rr): p igv_append($sp, $fp, $pc).
5304 void igv_append(void* sp, void* fp, void* pc) {
5305 frame fr(sp, fp, pc);
5306 Compile::current()->igv_print_method_to_file(nullptr, true, &fr);
5307 }
5308
5309 // Same as igv_append(...) above but with a specified phase name.
5310 // Use in debugger (gdb/rr): p igv_append("MyPhase", $sp, $fp, $pc).
5311 void igv_append(const char* phase_name, void* sp, void* fp, void* pc) {
5312 frame fr(sp, fp, pc);
5313 Compile::current()->igv_print_method_to_file(phase_name, true, &fr);
5314 }
5315
5316 void Compile::igv_print_method_to_file(const char* phase_name, bool append, const frame* fr) {
5317 const char* file_name = "custom_debug.xml";
5318 if (_debug_file_printer == nullptr) {
5319 _debug_file_printer = new IdealGraphPrinter(C, file_name, append);
5320 } else {
5321 _debug_file_printer->update_compiled_method(C->method());
5322 }
5323 tty->print_cr("Method %s to %s", append ? "appended" : "printed", file_name);
5324 _debug_file_printer->print_graph(phase_name, fr);
5325 }
5326
5327 void Compile::igv_print_method_to_network(const char* phase_name, const frame* fr) {
5328 ResourceMark rm;
5329 GrowableArray<const Node*> empty_list;
5330 igv_print_graph_to_network(phase_name, empty_list, fr);
5331 }
5332
5333 void Compile::igv_print_graph_to_network(const char* name, GrowableArray<const Node*>& visible_nodes, const frame* fr) {
5334 if (_debug_network_printer == nullptr) {
5335 _debug_network_printer = new IdealGraphPrinter(C);
5336 } else {
5337 _debug_network_printer->update_compiled_method(C->method());
5338 }
5339 tty->print_cr("Method printed over network stream to IGV");
5340 _debug_network_printer->print(name, C->root(), visible_nodes, fr);
5341 }
5342 #endif // !PRODUCT
5343
5344 Node* Compile::narrow_value(BasicType bt, Node* value, const Type* type, PhaseGVN* phase, bool transform_res) {
5345 if (type != nullptr && phase->type(value)->higher_equal(type)) {
5346 return value;
5347 }
5348 Node* result = nullptr;
5349 if (bt == T_BYTE) {
5350 result = phase->transform(new LShiftINode(value, phase->intcon(24)));
5351 result = new RShiftINode(result, phase->intcon(24));
5352 } else if (bt == T_BOOLEAN) {
5353 result = new AndINode(value, phase->intcon(0xFF));
5354 } else if (bt == T_CHAR) {
5355 result = new AndINode(value,phase->intcon(0xFFFF));
5356 } else {
5357 assert(bt == T_SHORT, "unexpected narrow type");
5358 result = phase->transform(new LShiftINode(value, phase->intcon(16)));
5359 result = new RShiftINode(result, phase->intcon(16));
5360 }
5361 if (transform_res) {
5362 result = phase->transform(result);
5363 }
5364 return result;
5365 }
5366
5367 void Compile::record_method_not_compilable_oom() {
5368 record_method_not_compilable(CompilationMemoryStatistic::failure_reason_memlimit());
5369 }
5370
5371 #ifndef PRODUCT
5372 // Collects all the control inputs from nodes on the worklist and from their data dependencies
5373 static void find_candidate_control_inputs(Unique_Node_List& worklist, Unique_Node_List& candidates) {
5374 // Follow non-control edges until we reach CFG nodes
5375 for (uint i = 0; i < worklist.size(); i++) {
5376 const Node* n = worklist.at(i);
5377 for (uint j = 0; j < n->req(); j++) {
5378 Node* in = n->in(j);
5379 if (in == nullptr || in->is_Root()) {
5380 continue;
5381 }
5382 if (in->is_CFG()) {
5383 if (in->is_Call()) {
5384 // The return value of a call is only available if the call did not result in an exception
5385 Node* control_proj_use = in->as_Call()->proj_out(TypeFunc::Control)->unique_out();
5386 if (control_proj_use->is_Catch()) {
5387 Node* fall_through = control_proj_use->as_Catch()->proj_out(CatchProjNode::fall_through_index);
5388 candidates.push(fall_through);
5389 continue;
5390 }
5391 }
5392
5393 if (in->is_Multi()) {
5394 // We got here by following data inputs so we should only have one control use
5395 // (no IfNode, etc)
5396 assert(!n->is_MultiBranch(), "unexpected node type: %s", n->Name());
5397 candidates.push(in->as_Multi()->proj_out(TypeFunc::Control));
5398 } else {
5399 candidates.push(in);
5400 }
5401 } else {
5402 worklist.push(in);
5403 }
5404 }
5405 }
5406 }
5407
5408 // Returns the candidate node that is a descendant to all the other candidates
5409 static Node* pick_control(Unique_Node_List& candidates) {
5410 Unique_Node_List worklist;
5411 worklist.copy(candidates);
5412
5413 // Traverse backwards through the CFG
5414 for (uint i = 0; i < worklist.size(); i++) {
5415 const Node* n = worklist.at(i);
5416 if (n->is_Root()) {
5417 continue;
5418 }
5419 for (uint j = 0; j < n->req(); j++) {
5420 // Skip backedge of loops to avoid cycles
5421 if (n->is_Loop() && j == LoopNode::LoopBackControl) {
5422 continue;
5423 }
5424
5425 Node* pred = n->in(j);
5426 if (pred != nullptr && pred != n && pred->is_CFG()) {
5427 worklist.push(pred);
5428 // if pred is an ancestor of n, then pred is an ancestor to at least one candidate
5429 candidates.remove(pred);
5430 }
5431 }
5432 }
5433
5434 assert(candidates.size() == 1, "unexpected control flow");
5435 return candidates.at(0);
5436 }
5437
5438 // Initialize a parameter input for a debug print call, using a placeholder for jlong and jdouble
5439 static void debug_print_init_parm(Node* call, Node* parm, Node* half, int* pos) {
5440 call->init_req((*pos)++, parm);
5441 const BasicType bt = parm->bottom_type()->basic_type();
5442 if (bt == T_LONG || bt == T_DOUBLE) {
5443 call->init_req((*pos)++, half);
5444 }
5445 }
5446
5447 Node* Compile::make_debug_print_call(const char* str, address call_addr, PhaseGVN* gvn,
5448 Node* parm0, Node* parm1,
5449 Node* parm2, Node* parm3,
5450 Node* parm4, Node* parm5,
5451 Node* parm6) const {
5452 Node* str_node = gvn->transform(new ConPNode(TypeRawPtr::make(((address) str))));
5453 const TypeFunc* type = OptoRuntime::debug_print_Type(parm0, parm1, parm2, parm3, parm4, parm5, parm6);
5454 Node* call = new CallLeafNode(type, call_addr, "debug_print", TypeRawPtr::BOTTOM);
5455
5456 // find the most suitable control input
5457 Unique_Node_List worklist, candidates;
5458 if (parm0 != nullptr) { worklist.push(parm0);
5459 if (parm1 != nullptr) { worklist.push(parm1);
5460 if (parm2 != nullptr) { worklist.push(parm2);
5461 if (parm3 != nullptr) { worklist.push(parm3);
5462 if (parm4 != nullptr) { worklist.push(parm4);
5463 if (parm5 != nullptr) { worklist.push(parm5);
5464 if (parm6 != nullptr) { worklist.push(parm6);
5465 /* close each nested if ===> */ } } } } } } }
5466 find_candidate_control_inputs(worklist, candidates);
5467 Node* control = nullptr;
5468 if (candidates.size() == 0) {
5469 control = C->start()->proj_out(TypeFunc::Control);
5470 } else {
5471 control = pick_control(candidates);
5472 }
5473
5474 // find all the previous users of the control we picked
5475 GrowableArray<Node*> users_of_control;
5476 for (DUIterator_Fast kmax, i = control->fast_outs(kmax); i < kmax; i++) {
5477 Node* use = control->fast_out(i);
5478 if (use->is_CFG() && use != control) {
5479 users_of_control.push(use);
5480 }
5481 }
5482
5483 // we do not actually care about IO and memory as it uses neither
5484 call->init_req(TypeFunc::Control, control);
5485 call->init_req(TypeFunc::I_O, top());
5486 call->init_req(TypeFunc::Memory, top());
5487 call->init_req(TypeFunc::FramePtr, C->start()->proj_out(TypeFunc::FramePtr));
5488 call->init_req(TypeFunc::ReturnAdr, top());
5489
5490 int pos = TypeFunc::Parms;
5491 call->init_req(pos++, str_node);
5492 if (parm0 != nullptr) { debug_print_init_parm(call, parm0, top(), &pos);
5493 if (parm1 != nullptr) { debug_print_init_parm(call, parm1, top(), &pos);
5494 if (parm2 != nullptr) { debug_print_init_parm(call, parm2, top(), &pos);
5495 if (parm3 != nullptr) { debug_print_init_parm(call, parm3, top(), &pos);
5496 if (parm4 != nullptr) { debug_print_init_parm(call, parm4, top(), &pos);
5497 if (parm5 != nullptr) { debug_print_init_parm(call, parm5, top(), &pos);
5498 if (parm6 != nullptr) { debug_print_init_parm(call, parm6, top(), &pos);
5499 /* close each nested if ===> */ } } } } } } }
5500 assert(call->in(call->req()-1) != nullptr, "must initialize all parms");
5501
5502 call = gvn->transform(call);
5503 Node* call_control_proj = gvn->transform(new ProjNode(call, TypeFunc::Control));
5504
5505 // rewire previous users to have the new call as control instead
5506 PhaseIterGVN* igvn = gvn->is_IterGVN();
5507 for (int i = 0; i < users_of_control.length(); i++) {
5508 Node* use = users_of_control.at(i);
5509 for (uint j = 0; j < use->req(); j++) {
5510 if (use->in(j) == control) {
5511 if (igvn != nullptr) {
5512 igvn->replace_input_of(use, j, call_control_proj);
5513 } else {
5514 gvn->hash_delete(use);
5515 use->set_req(j, call_control_proj);
5516 gvn->hash_insert(use);
5517 }
5518 }
5519 }
5520 }
5521
5522 return call;
5523 }
5524 #endif // !PRODUCT