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