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