1 /*
   2  * Copyright 1997-2007 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  *
  23  */
  24 
  25 #include "incls/_precompiled.incl"
  26 #include "incls/_matcher.cpp.incl"
  27 
  28 OptoReg::Name OptoReg::c_frame_pointer;
  29 
  30 
  31 
  32 const int Matcher::base2reg[Type::lastype] = {
  33   Node::NotAMachineReg,0,0, Op_RegI, Op_RegL, 0, Op_RegN,
  34   Node::NotAMachineReg, Node::NotAMachineReg, /* tuple, array */
  35   Op_RegP, Op_RegP, Op_RegP, Op_RegP, Op_RegP, Op_RegP, /* the pointers */
  36   0, 0/*abio*/,
  37   Op_RegP /* Return address */, 0, /* the memories */
  38   Op_RegF, Op_RegF, Op_RegF, Op_RegD, Op_RegD, Op_RegD,
  39   0  /*bottom*/
  40 };
  41 
  42 const RegMask *Matcher::idealreg2regmask[_last_machine_leaf];
  43 RegMask Matcher::mreg2regmask[_last_Mach_Reg];
  44 RegMask Matcher::STACK_ONLY_mask;
  45 RegMask Matcher::c_frame_ptr_mask;
  46 const uint Matcher::_begin_rematerialize = _BEGIN_REMATERIALIZE;
  47 const uint Matcher::_end_rematerialize   = _END_REMATERIALIZE;
  48 
  49 //---------------------------Matcher-------------------------------------------
  50 Matcher::Matcher( Node_List &proj_list ) :
  51   PhaseTransform( Phase::Ins_Select ),
  52 #ifdef ASSERT
  53   _old2new_map(C->comp_arena()),
  54 #endif
  55   _shared_nodes(C->comp_arena()),
  56   _reduceOp(reduceOp), _leftOp(leftOp), _rightOp(rightOp),
  57   _swallowed(swallowed),
  58   _begin_inst_chain_rule(_BEGIN_INST_CHAIN_RULE),
  59   _end_inst_chain_rule(_END_INST_CHAIN_RULE),
  60   _must_clone(must_clone), _proj_list(proj_list),
  61   _register_save_policy(register_save_policy),
  62   _c_reg_save_policy(c_reg_save_policy),
  63   _register_save_type(register_save_type),
  64   _ruleName(ruleName),
  65   _allocation_started(false),
  66   _states_arena(Chunk::medium_size),
  67   _visited(&_states_arena),
  68   _shared(&_states_arena),
  69   _dontcare(&_states_arena) {
  70   C->set_matcher(this);
  71 
  72   idealreg2spillmask[Op_RegI] = NULL;
  73   idealreg2spillmask[Op_RegN] = NULL;
  74   idealreg2spillmask[Op_RegL] = NULL;
  75   idealreg2spillmask[Op_RegF] = NULL;
  76   idealreg2spillmask[Op_RegD] = NULL;
  77   idealreg2spillmask[Op_RegP] = NULL;
  78 
  79   idealreg2debugmask[Op_RegI] = NULL;
  80   idealreg2debugmask[Op_RegN] = NULL;
  81   idealreg2debugmask[Op_RegL] = NULL;
  82   idealreg2debugmask[Op_RegF] = NULL;
  83   idealreg2debugmask[Op_RegD] = NULL;
  84   idealreg2debugmask[Op_RegP] = NULL;
  85 }
  86 
  87 //------------------------------warp_incoming_stk_arg------------------------
  88 // This warps a VMReg into an OptoReg::Name
  89 OptoReg::Name Matcher::warp_incoming_stk_arg( VMReg reg ) {
  90   OptoReg::Name warped;
  91   if( reg->is_stack() ) {  // Stack slot argument?
  92     warped = OptoReg::add(_old_SP, reg->reg2stack() );
  93     warped = OptoReg::add(warped, C->out_preserve_stack_slots());
  94     if( warped >= _in_arg_limit )
  95       _in_arg_limit = OptoReg::add(warped, 1); // Bump max stack slot seen
  96     if (!RegMask::can_represent(warped)) {
  97       // the compiler cannot represent this method's calling sequence
  98       C->record_method_not_compilable_all_tiers("unsupported incoming calling sequence");
  99       return OptoReg::Bad;
 100     }
 101     return warped;
 102   }
 103   return OptoReg::as_OptoReg(reg);
 104 }
 105 
 106 //---------------------------compute_old_SP------------------------------------
 107 OptoReg::Name Compile::compute_old_SP() {
 108   int fixed    = fixed_slots();
 109   int preserve = in_preserve_stack_slots();
 110   return OptoReg::stack2reg(round_to(fixed + preserve, Matcher::stack_alignment_in_slots()));
 111 }
 112 
 113 
 114 
 115 #ifdef ASSERT
 116 void Matcher::verify_new_nodes_only(Node* xroot) {
 117   // Make sure that the new graph only references new nodes
 118   ResourceMark rm;
 119   Unique_Node_List worklist;
 120   VectorSet visited(Thread::current()->resource_area());
 121   worklist.push(xroot);
 122   while (worklist.size() > 0) {
 123     Node* n = worklist.pop();
 124     visited <<= n->_idx;
 125     assert(C->node_arena()->contains(n), "dead node");
 126     for (uint j = 0; j < n->req(); j++) {
 127       Node* in = n->in(j);
 128       if (in != NULL) {
 129         assert(C->node_arena()->contains(in), "dead node");
 130         if (!visited.test(in->_idx)) {
 131           worklist.push(in);
 132         }
 133       }
 134     }
 135   }
 136 }
 137 #endif
 138 
 139 
 140 //---------------------------match---------------------------------------------
 141 void Matcher::match( ) {
 142   // One-time initialization of some register masks.
 143   init_spill_mask( C->root()->in(1) );
 144   _return_addr_mask = return_addr();
 145 #ifdef _LP64
 146   // Pointers take 2 slots in 64-bit land
 147   _return_addr_mask.Insert(OptoReg::add(return_addr(),1));
 148 #endif
 149 
 150   // Map a Java-signature return type into return register-value
 151   // machine registers for 0, 1 and 2 returned values.
 152   const TypeTuple *range = C->tf()->range();
 153   if( range->cnt() > TypeFunc::Parms ) { // If not a void function
 154     // Get ideal-register return type
 155     int ireg = base2reg[range->field_at(TypeFunc::Parms)->base()];
 156     // Get machine return register
 157     uint sop = C->start()->Opcode();
 158     OptoRegPair regs = return_value(ireg, false);
 159 
 160     // And mask for same
 161     _return_value_mask = RegMask(regs.first());
 162     if( OptoReg::is_valid(regs.second()) )
 163       _return_value_mask.Insert(regs.second());
 164   }
 165 
 166   // ---------------
 167   // Frame Layout
 168 
 169   // Need the method signature to determine the incoming argument types,
 170   // because the types determine which registers the incoming arguments are
 171   // in, and this affects the matched code.
 172   const TypeTuple *domain = C->tf()->domain();
 173   uint             argcnt = domain->cnt() - TypeFunc::Parms;
 174   BasicType *sig_bt        = NEW_RESOURCE_ARRAY( BasicType, argcnt );
 175   VMRegPair *vm_parm_regs  = NEW_RESOURCE_ARRAY( VMRegPair, argcnt );
 176   _parm_regs               = NEW_RESOURCE_ARRAY( OptoRegPair, argcnt );
 177   _calling_convention_mask = NEW_RESOURCE_ARRAY( RegMask, argcnt );
 178   uint i;
 179   for( i = 0; i<argcnt; i++ ) {
 180     sig_bt[i] = domain->field_at(i+TypeFunc::Parms)->basic_type();
 181   }
 182 
 183   // Pass array of ideal registers and length to USER code (from the AD file)
 184   // that will convert this to an array of register numbers.
 185   const StartNode *start = C->start();
 186   start->calling_convention( sig_bt, vm_parm_regs, argcnt );
 187 #ifdef ASSERT
 188   // Sanity check users' calling convention.  Real handy while trying to
 189   // get the initial port correct.
 190   { for (uint i = 0; i<argcnt; i++) {
 191       if( !vm_parm_regs[i].first()->is_valid() && !vm_parm_regs[i].second()->is_valid() ) {
 192         assert(domain->field_at(i+TypeFunc::Parms)==Type::HALF, "only allowed on halve" );
 193         _parm_regs[i].set_bad();
 194         continue;
 195       }
 196       VMReg parm_reg = vm_parm_regs[i].first();
 197       assert(parm_reg->is_valid(), "invalid arg?");
 198       if (parm_reg->is_reg()) {
 199         OptoReg::Name opto_parm_reg = OptoReg::as_OptoReg(parm_reg);
 200         assert(can_be_java_arg(opto_parm_reg) ||
 201                C->stub_function() == CAST_FROM_FN_PTR(address, OptoRuntime::rethrow_C) ||
 202                opto_parm_reg == inline_cache_reg(),
 203                "parameters in register must be preserved by runtime stubs");
 204       }
 205       for (uint j = 0; j < i; j++) {
 206         assert(parm_reg != vm_parm_regs[j].first(),
 207                "calling conv. must produce distinct regs");
 208       }
 209     }
 210   }
 211 #endif
 212 
 213   // Do some initial frame layout.
 214 
 215   // Compute the old incoming SP (may be called FP) as
 216   //   OptoReg::stack0() + locks + in_preserve_stack_slots + pad2.
 217   _old_SP = C->compute_old_SP();
 218   assert( is_even(_old_SP), "must be even" );
 219 
 220   // Compute highest incoming stack argument as
 221   //   _old_SP + out_preserve_stack_slots + incoming argument size.
 222   _in_arg_limit = OptoReg::add(_old_SP, C->out_preserve_stack_slots());
 223   assert( is_even(_in_arg_limit), "out_preserve must be even" );
 224   for( i = 0; i < argcnt; i++ ) {
 225     // Permit args to have no register
 226     _calling_convention_mask[i].Clear();
 227     if( !vm_parm_regs[i].first()->is_valid() && !vm_parm_regs[i].second()->is_valid() ) {
 228       continue;
 229     }
 230     // calling_convention returns stack arguments as a count of
 231     // slots beyond OptoReg::stack0()/VMRegImpl::stack0.  We need to convert this to
 232     // the allocators point of view, taking into account all the
 233     // preserve area, locks & pad2.
 234 
 235     OptoReg::Name reg1 = warp_incoming_stk_arg(vm_parm_regs[i].first());
 236     if( OptoReg::is_valid(reg1))
 237       _calling_convention_mask[i].Insert(reg1);
 238 
 239     OptoReg::Name reg2 = warp_incoming_stk_arg(vm_parm_regs[i].second());
 240     if( OptoReg::is_valid(reg2))
 241       _calling_convention_mask[i].Insert(reg2);
 242 
 243     // Saved biased stack-slot register number
 244     _parm_regs[i].set_pair(reg2, reg1);
 245   }
 246 
 247   // Finally, make sure the incoming arguments take up an even number of
 248   // words, in case the arguments or locals need to contain doubleword stack
 249   // slots.  The rest of the system assumes that stack slot pairs (in
 250   // particular, in the spill area) which look aligned will in fact be
 251   // aligned relative to the stack pointer in the target machine.  Double
 252   // stack slots will always be allocated aligned.
 253   _new_SP = OptoReg::Name(round_to(_in_arg_limit, RegMask::SlotsPerLong));
 254 
 255   // Compute highest outgoing stack argument as
 256   //   _new_SP + out_preserve_stack_slots + max(outgoing argument size).
 257   _out_arg_limit = OptoReg::add(_new_SP, C->out_preserve_stack_slots());
 258   assert( is_even(_out_arg_limit), "out_preserve must be even" );
 259 
 260   if (!RegMask::can_represent(OptoReg::add(_out_arg_limit,-1))) {
 261     // the compiler cannot represent this method's calling sequence
 262     C->record_method_not_compilable("must be able to represent all call arguments in reg mask");
 263   }
 264 
 265   if (C->failing())  return;  // bailed out on incoming arg failure
 266 
 267   // ---------------
 268   // Collect roots of matcher trees.  Every node for which
 269   // _shared[_idx] is cleared is guaranteed to not be shared, and thus
 270   // can be a valid interior of some tree.
 271   find_shared( C->root() );
 272   find_shared( C->top() );
 273 
 274   C->print_method("Before Matching", 2);
 275 
 276   // Swap out to old-space; emptying new-space
 277   Arena *old = C->node_arena()->move_contents(C->old_arena());
 278 
 279   // Save debug and profile information for nodes in old space:
 280   _old_node_note_array = C->node_note_array();
 281   if (_old_node_note_array != NULL) {
 282     C->set_node_note_array(new(C->comp_arena()) GrowableArray<Node_Notes*>
 283                            (C->comp_arena(), _old_node_note_array->length(),
 284                             0, NULL));
 285   }
 286 
 287   // Pre-size the new_node table to avoid the need for range checks.
 288   grow_new_node_array(C->unique());
 289 
 290   // Reset node counter so MachNodes start with _idx at 0
 291   int nodes = C->unique(); // save value
 292   C->set_unique(0);
 293 
 294   // Recursively match trees from old space into new space.
 295   // Correct leaves of new-space Nodes; they point to old-space.
 296   _visited.Clear();             // Clear visit bits for xform call
 297   C->set_cached_top_node(xform( C->top(), nodes ));
 298   if (!C->failing()) {
 299     Node* xroot =        xform( C->root(), 1 );
 300     if (xroot == NULL) {
 301       Matcher::soft_match_failure();  // recursive matching process failed
 302       C->record_method_not_compilable("instruction match failed");
 303     } else {
 304       // During matching shared constants were attached to C->root()
 305       // because xroot wasn't available yet, so transfer the uses to
 306       // the xroot.
 307       for( DUIterator_Fast jmax, j = C->root()->fast_outs(jmax); j < jmax; j++ ) {
 308         Node* n = C->root()->fast_out(j);
 309         if (C->node_arena()->contains(n)) {
 310           assert(n->in(0) == C->root(), "should be control user");
 311           n->set_req(0, xroot);
 312           --j;
 313           --jmax;
 314         }
 315       }
 316 
 317       C->set_root(xroot->is_Root() ? xroot->as_Root() : NULL);
 318 #ifdef ASSERT
 319       verify_new_nodes_only(xroot);
 320 #endif
 321     }
 322   }
 323   if (C->top() == NULL || C->root() == NULL) {
 324     C->record_method_not_compilable("graph lost"); // %%% cannot happen?
 325   }
 326   if (C->failing()) {
 327     // delete old;
 328     old->destruct_contents();
 329     return;
 330   }
 331   assert( C->top(), "" );
 332   assert( C->root(), "" );
 333   validate_null_checks();
 334 
 335   // Now smoke old-space
 336   NOT_DEBUG( old->destruct_contents() );
 337 
 338   // ------------------------
 339   // Set up save-on-entry registers
 340   Fixup_Save_On_Entry( );
 341 }
 342 
 343 
 344 //------------------------------Fixup_Save_On_Entry----------------------------
 345 // The stated purpose of this routine is to take care of save-on-entry
 346 // registers.  However, the overall goal of the Match phase is to convert into
 347 // machine-specific instructions which have RegMasks to guide allocation.
 348 // So what this procedure really does is put a valid RegMask on each input
 349 // to the machine-specific variations of all Return, TailCall and Halt
 350 // instructions.  It also adds edgs to define the save-on-entry values (and of
 351 // course gives them a mask).
 352 
 353 static RegMask *init_input_masks( uint size, RegMask &ret_adr, RegMask &fp ) {
 354   RegMask *rms = NEW_RESOURCE_ARRAY( RegMask, size );
 355   // Do all the pre-defined register masks
 356   rms[TypeFunc::Control  ] = RegMask::Empty;
 357   rms[TypeFunc::I_O      ] = RegMask::Empty;
 358   rms[TypeFunc::Memory   ] = RegMask::Empty;
 359   rms[TypeFunc::ReturnAdr] = ret_adr;
 360   rms[TypeFunc::FramePtr ] = fp;
 361   return rms;
 362 }
 363 
 364 //---------------------------init_first_stack_mask-----------------------------
 365 // Create the initial stack mask used by values spilling to the stack.
 366 // Disallow any debug info in outgoing argument areas by setting the
 367 // initial mask accordingly.
 368 void Matcher::init_first_stack_mask() {
 369 
 370   // Allocate storage for spill masks as masks for the appropriate load type.
 371   RegMask *rms = (RegMask*)C->comp_arena()->Amalloc_D(sizeof(RegMask)*12);
 372   idealreg2spillmask[Op_RegN] = &rms[0];
 373   idealreg2spillmask[Op_RegI] = &rms[1];
 374   idealreg2spillmask[Op_RegL] = &rms[2];
 375   idealreg2spillmask[Op_RegF] = &rms[3];
 376   idealreg2spillmask[Op_RegD] = &rms[4];
 377   idealreg2spillmask[Op_RegP] = &rms[5];
 378   idealreg2debugmask[Op_RegN] = &rms[6];
 379   idealreg2debugmask[Op_RegI] = &rms[7];
 380   idealreg2debugmask[Op_RegL] = &rms[8];
 381   idealreg2debugmask[Op_RegF] = &rms[9];
 382   idealreg2debugmask[Op_RegD] = &rms[10];
 383   idealreg2debugmask[Op_RegP] = &rms[11];
 384 
 385   OptoReg::Name i;
 386 
 387   // At first, start with the empty mask
 388   C->FIRST_STACK_mask().Clear();
 389 
 390   // Add in the incoming argument area
 391   OptoReg::Name init = OptoReg::add(_old_SP, C->out_preserve_stack_slots());
 392   for (i = init; i < _in_arg_limit; i = OptoReg::add(i,1))
 393     C->FIRST_STACK_mask().Insert(i);
 394 
 395   // Add in all bits past the outgoing argument area
 396   guarantee(RegMask::can_represent(OptoReg::add(_out_arg_limit,-1)),
 397             "must be able to represent all call arguments in reg mask");
 398   init = _out_arg_limit;
 399   for (i = init; RegMask::can_represent(i); i = OptoReg::add(i,1))
 400     C->FIRST_STACK_mask().Insert(i);
 401 
 402   // Finally, set the "infinite stack" bit.
 403   C->FIRST_STACK_mask().set_AllStack();
 404 
 405   // Make spill masks.  Registers for their class, plus FIRST_STACK_mask.
 406 #ifdef _LP64
 407   *idealreg2spillmask[Op_RegN] = *idealreg2regmask[Op_RegN];
 408    idealreg2spillmask[Op_RegN]->OR(C->FIRST_STACK_mask());
 409 #endif
 410   *idealreg2spillmask[Op_RegI] = *idealreg2regmask[Op_RegI];
 411    idealreg2spillmask[Op_RegI]->OR(C->FIRST_STACK_mask());
 412   *idealreg2spillmask[Op_RegL] = *idealreg2regmask[Op_RegL];
 413    idealreg2spillmask[Op_RegL]->OR(C->FIRST_STACK_mask());
 414   *idealreg2spillmask[Op_RegF] = *idealreg2regmask[Op_RegF];
 415    idealreg2spillmask[Op_RegF]->OR(C->FIRST_STACK_mask());
 416   *idealreg2spillmask[Op_RegD] = *idealreg2regmask[Op_RegD];
 417    idealreg2spillmask[Op_RegD]->OR(C->FIRST_STACK_mask());
 418   *idealreg2spillmask[Op_RegP] = *idealreg2regmask[Op_RegP];
 419    idealreg2spillmask[Op_RegP]->OR(C->FIRST_STACK_mask());
 420 
 421   // Make up debug masks.  Any spill slot plus callee-save registers.
 422   // Caller-save registers are assumed to be trashable by the various
 423   // inline-cache fixup routines.
 424   *idealreg2debugmask[Op_RegN]= *idealreg2spillmask[Op_RegN];
 425   *idealreg2debugmask[Op_RegI]= *idealreg2spillmask[Op_RegI];
 426   *idealreg2debugmask[Op_RegL]= *idealreg2spillmask[Op_RegL];
 427   *idealreg2debugmask[Op_RegF]= *idealreg2spillmask[Op_RegF];
 428   *idealreg2debugmask[Op_RegD]= *idealreg2spillmask[Op_RegD];
 429   *idealreg2debugmask[Op_RegP]= *idealreg2spillmask[Op_RegP];
 430 
 431   // Prevent stub compilations from attempting to reference
 432   // callee-saved registers from debug info
 433   bool exclude_soe = !Compile::current()->is_method_compilation();
 434 
 435   for( i=OptoReg::Name(0); i<OptoReg::Name(_last_Mach_Reg); i = OptoReg::add(i,1) ) {
 436     // registers the caller has to save do not work
 437     if( _register_save_policy[i] == 'C' ||
 438         _register_save_policy[i] == 'A' ||
 439         (_register_save_policy[i] == 'E' && exclude_soe) ) {
 440       idealreg2debugmask[Op_RegN]->Remove(i);
 441       idealreg2debugmask[Op_RegI]->Remove(i); // Exclude save-on-call
 442       idealreg2debugmask[Op_RegL]->Remove(i); // registers from debug
 443       idealreg2debugmask[Op_RegF]->Remove(i); // masks
 444       idealreg2debugmask[Op_RegD]->Remove(i);
 445       idealreg2debugmask[Op_RegP]->Remove(i);
 446     }
 447   }
 448 }
 449 
 450 //---------------------------is_save_on_entry----------------------------------
 451 bool Matcher::is_save_on_entry( int reg ) {
 452   return
 453     _register_save_policy[reg] == 'E' ||
 454     _register_save_policy[reg] == 'A' || // Save-on-entry register?
 455     // Also save argument registers in the trampolining stubs
 456     (C->save_argument_registers() && is_spillable_arg(reg));
 457 }
 458 
 459 //---------------------------Fixup_Save_On_Entry-------------------------------
 460 void Matcher::Fixup_Save_On_Entry( ) {
 461   init_first_stack_mask();
 462 
 463   Node *root = C->root();       // Short name for root
 464   // Count number of save-on-entry registers.
 465   uint soe_cnt = number_of_saved_registers();
 466   uint i;
 467 
 468   // Find the procedure Start Node
 469   StartNode *start = C->start();
 470   assert( start, "Expect a start node" );
 471 
 472   // Save argument registers in the trampolining stubs
 473   if( C->save_argument_registers() )
 474     for( i = 0; i < _last_Mach_Reg; i++ )
 475       if( is_spillable_arg(i) )
 476         soe_cnt++;
 477 
 478   // Input RegMask array shared by all Returns.
 479   // The type for doubles and longs has a count of 2, but
 480   // there is only 1 returned value
 481   uint ret_edge_cnt = TypeFunc::Parms + ((C->tf()->range()->cnt() == TypeFunc::Parms) ? 0 : 1);
 482   RegMask *ret_rms  = init_input_masks( ret_edge_cnt + soe_cnt, _return_addr_mask, c_frame_ptr_mask );
 483   // Returns have 0 or 1 returned values depending on call signature.
 484   // Return register is specified by return_value in the AD file.
 485   if (ret_edge_cnt > TypeFunc::Parms)
 486     ret_rms[TypeFunc::Parms+0] = _return_value_mask;
 487 
 488   // Input RegMask array shared by all Rethrows.
 489   uint reth_edge_cnt = TypeFunc::Parms+1;
 490   RegMask *reth_rms  = init_input_masks( reth_edge_cnt + soe_cnt, _return_addr_mask, c_frame_ptr_mask );
 491   // Rethrow takes exception oop only, but in the argument 0 slot.
 492   reth_rms[TypeFunc::Parms] = mreg2regmask[find_receiver(false)];
 493 #ifdef _LP64
 494   // Need two slots for ptrs in 64-bit land
 495   reth_rms[TypeFunc::Parms].Insert(OptoReg::add(OptoReg::Name(find_receiver(false)),1));
 496 #endif
 497 
 498   // Input RegMask array shared by all TailCalls
 499   uint tail_call_edge_cnt = TypeFunc::Parms+2;
 500   RegMask *tail_call_rms = init_input_masks( tail_call_edge_cnt + soe_cnt, _return_addr_mask, c_frame_ptr_mask );
 501 
 502   // Input RegMask array shared by all TailJumps
 503   uint tail_jump_edge_cnt = TypeFunc::Parms+2;
 504   RegMask *tail_jump_rms = init_input_masks( tail_jump_edge_cnt + soe_cnt, _return_addr_mask, c_frame_ptr_mask );
 505 
 506   // TailCalls have 2 returned values (target & moop), whose masks come
 507   // from the usual MachNode/MachOper mechanism.  Find a sample
 508   // TailCall to extract these masks and put the correct masks into
 509   // the tail_call_rms array.
 510   for( i=1; i < root->req(); i++ ) {
 511     MachReturnNode *m = root->in(i)->as_MachReturn();
 512     if( m->ideal_Opcode() == Op_TailCall ) {
 513       tail_call_rms[TypeFunc::Parms+0] = m->MachNode::in_RegMask(TypeFunc::Parms+0);
 514       tail_call_rms[TypeFunc::Parms+1] = m->MachNode::in_RegMask(TypeFunc::Parms+1);
 515       break;
 516     }
 517   }
 518 
 519   // TailJumps have 2 returned values (target & ex_oop), whose masks come
 520   // from the usual MachNode/MachOper mechanism.  Find a sample
 521   // TailJump to extract these masks and put the correct masks into
 522   // the tail_jump_rms array.
 523   for( i=1; i < root->req(); i++ ) {
 524     MachReturnNode *m = root->in(i)->as_MachReturn();
 525     if( m->ideal_Opcode() == Op_TailJump ) {
 526       tail_jump_rms[TypeFunc::Parms+0] = m->MachNode::in_RegMask(TypeFunc::Parms+0);
 527       tail_jump_rms[TypeFunc::Parms+1] = m->MachNode::in_RegMask(TypeFunc::Parms+1);
 528       break;
 529     }
 530   }
 531 
 532   // Input RegMask array shared by all Halts
 533   uint halt_edge_cnt = TypeFunc::Parms;
 534   RegMask *halt_rms = init_input_masks( halt_edge_cnt + soe_cnt, _return_addr_mask, c_frame_ptr_mask );
 535 
 536   // Capture the return input masks into each exit flavor
 537   for( i=1; i < root->req(); i++ ) {
 538     MachReturnNode *exit = root->in(i)->as_MachReturn();
 539     switch( exit->ideal_Opcode() ) {
 540       case Op_Return   : exit->_in_rms = ret_rms;  break;
 541       case Op_Rethrow  : exit->_in_rms = reth_rms; break;
 542       case Op_TailCall : exit->_in_rms = tail_call_rms; break;
 543       case Op_TailJump : exit->_in_rms = tail_jump_rms; break;
 544       case Op_Halt     : exit->_in_rms = halt_rms; break;
 545       default          : ShouldNotReachHere();
 546     }
 547   }
 548 
 549   // Next unused projection number from Start.
 550   int proj_cnt = C->tf()->domain()->cnt();
 551 
 552   // Do all the save-on-entry registers.  Make projections from Start for
 553   // them, and give them a use at the exit points.  To the allocator, they
 554   // look like incoming register arguments.
 555   for( i = 0; i < _last_Mach_Reg; i++ ) {
 556     if( is_save_on_entry(i) ) {
 557 
 558       // Add the save-on-entry to the mask array
 559       ret_rms      [      ret_edge_cnt] = mreg2regmask[i];
 560       reth_rms     [     reth_edge_cnt] = mreg2regmask[i];
 561       tail_call_rms[tail_call_edge_cnt] = mreg2regmask[i];
 562       tail_jump_rms[tail_jump_edge_cnt] = mreg2regmask[i];
 563       // Halts need the SOE registers, but only in the stack as debug info.
 564       // A just-prior uncommon-trap or deoptimization will use the SOE regs.
 565       halt_rms     [     halt_edge_cnt] = *idealreg2spillmask[_register_save_type[i]];
 566 
 567       Node *mproj;
 568 
 569       // Is this a RegF low half of a RegD?  Double up 2 adjacent RegF's
 570       // into a single RegD.
 571       if( (i&1) == 0 &&
 572           _register_save_type[i  ] == Op_RegF &&
 573           _register_save_type[i+1] == Op_RegF &&
 574           is_save_on_entry(i+1) ) {
 575         // Add other bit for double
 576         ret_rms      [      ret_edge_cnt].Insert(OptoReg::Name(i+1));
 577         reth_rms     [     reth_edge_cnt].Insert(OptoReg::Name(i+1));
 578         tail_call_rms[tail_call_edge_cnt].Insert(OptoReg::Name(i+1));
 579         tail_jump_rms[tail_jump_edge_cnt].Insert(OptoReg::Name(i+1));
 580         halt_rms     [     halt_edge_cnt].Insert(OptoReg::Name(i+1));
 581         mproj = new (C, 1) MachProjNode( start, proj_cnt, ret_rms[ret_edge_cnt], Op_RegD );
 582         proj_cnt += 2;          // Skip 2 for doubles
 583       }
 584       else if( (i&1) == 1 &&    // Else check for high half of double
 585                _register_save_type[i-1] == Op_RegF &&
 586                _register_save_type[i  ] == Op_RegF &&
 587                is_save_on_entry(i-1) ) {
 588         ret_rms      [      ret_edge_cnt] = RegMask::Empty;
 589         reth_rms     [     reth_edge_cnt] = RegMask::Empty;
 590         tail_call_rms[tail_call_edge_cnt] = RegMask::Empty;
 591         tail_jump_rms[tail_jump_edge_cnt] = RegMask::Empty;
 592         halt_rms     [     halt_edge_cnt] = RegMask::Empty;
 593         mproj = C->top();
 594       }
 595       // Is this a RegI low half of a RegL?  Double up 2 adjacent RegI's
 596       // into a single RegL.
 597       else if( (i&1) == 0 &&
 598           _register_save_type[i  ] == Op_RegI &&
 599           _register_save_type[i+1] == Op_RegI &&
 600         is_save_on_entry(i+1) ) {
 601         // Add other bit for long
 602         ret_rms      [      ret_edge_cnt].Insert(OptoReg::Name(i+1));
 603         reth_rms     [     reth_edge_cnt].Insert(OptoReg::Name(i+1));
 604         tail_call_rms[tail_call_edge_cnt].Insert(OptoReg::Name(i+1));
 605         tail_jump_rms[tail_jump_edge_cnt].Insert(OptoReg::Name(i+1));
 606         halt_rms     [     halt_edge_cnt].Insert(OptoReg::Name(i+1));
 607         mproj = new (C, 1) MachProjNode( start, proj_cnt, ret_rms[ret_edge_cnt], Op_RegL );
 608         proj_cnt += 2;          // Skip 2 for longs
 609       }
 610       else if( (i&1) == 1 &&    // Else check for high half of long
 611                _register_save_type[i-1] == Op_RegI &&
 612                _register_save_type[i  ] == Op_RegI &&
 613                is_save_on_entry(i-1) ) {
 614         ret_rms      [      ret_edge_cnt] = RegMask::Empty;
 615         reth_rms     [     reth_edge_cnt] = RegMask::Empty;
 616         tail_call_rms[tail_call_edge_cnt] = RegMask::Empty;
 617         tail_jump_rms[tail_jump_edge_cnt] = RegMask::Empty;
 618         halt_rms     [     halt_edge_cnt] = RegMask::Empty;
 619         mproj = C->top();
 620       } else {
 621         // Make a projection for it off the Start
 622         mproj = new (C, 1) MachProjNode( start, proj_cnt++, ret_rms[ret_edge_cnt], _register_save_type[i] );
 623       }
 624 
 625       ret_edge_cnt ++;
 626       reth_edge_cnt ++;
 627       tail_call_edge_cnt ++;
 628       tail_jump_edge_cnt ++;
 629       halt_edge_cnt ++;
 630 
 631       // Add a use of the SOE register to all exit paths
 632       for( uint j=1; j < root->req(); j++ )
 633         root->in(j)->add_req(mproj);
 634     } // End of if a save-on-entry register
 635   } // End of for all machine registers
 636 }
 637 
 638 //------------------------------init_spill_mask--------------------------------
 639 void Matcher::init_spill_mask( Node *ret ) {
 640   if( idealreg2regmask[Op_RegI] ) return; // One time only init
 641 
 642   OptoReg::c_frame_pointer = c_frame_pointer();
 643   c_frame_ptr_mask = c_frame_pointer();
 644 #ifdef _LP64
 645   // pointers are twice as big
 646   c_frame_ptr_mask.Insert(OptoReg::add(c_frame_pointer(),1));
 647 #endif
 648 
 649   // Start at OptoReg::stack0()
 650   STACK_ONLY_mask.Clear();
 651   OptoReg::Name init = OptoReg::stack2reg(0);
 652   // STACK_ONLY_mask is all stack bits
 653   OptoReg::Name i;
 654   for (i = init; RegMask::can_represent(i); i = OptoReg::add(i,1))
 655     STACK_ONLY_mask.Insert(i);
 656   // Also set the "infinite stack" bit.
 657   STACK_ONLY_mask.set_AllStack();
 658 
 659   // Copy the register names over into the shared world
 660   for( i=OptoReg::Name(0); i<OptoReg::Name(_last_Mach_Reg); i = OptoReg::add(i,1) ) {
 661     // SharedInfo::regName[i] = regName[i];
 662     // Handy RegMasks per machine register
 663     mreg2regmask[i].Insert(i);
 664   }
 665 
 666   // Grab the Frame Pointer
 667   Node *fp  = ret->in(TypeFunc::FramePtr);
 668   Node *mem = ret->in(TypeFunc::Memory);
 669   const TypePtr* atp = TypePtr::BOTTOM;
 670   // Share frame pointer while making spill ops
 671   set_shared(fp);
 672 
 673   // Compute generic short-offset Loads
 674 #ifdef _LP64
 675   MachNode *spillCP = match_tree(new (C, 3) LoadNNode(NULL,mem,fp,atp,TypeInstPtr::BOTTOM));
 676 #endif
 677   MachNode *spillI  = match_tree(new (C, 3) LoadINode(NULL,mem,fp,atp));
 678   MachNode *spillL  = match_tree(new (C, 3) LoadLNode(NULL,mem,fp,atp));
 679   MachNode *spillF  = match_tree(new (C, 3) LoadFNode(NULL,mem,fp,atp));
 680   MachNode *spillD  = match_tree(new (C, 3) LoadDNode(NULL,mem,fp,atp));
 681   MachNode *spillP  = match_tree(new (C, 3) LoadPNode(NULL,mem,fp,atp,TypeInstPtr::BOTTOM));
 682   assert(spillI != NULL && spillL != NULL && spillF != NULL &&
 683          spillD != NULL && spillP != NULL, "");
 684 
 685   // Get the ADLC notion of the right regmask, for each basic type.
 686 #ifdef _LP64
 687   idealreg2regmask[Op_RegN] = &spillCP->out_RegMask();
 688 #endif
 689   idealreg2regmask[Op_RegI] = &spillI->out_RegMask();
 690   idealreg2regmask[Op_RegL] = &spillL->out_RegMask();
 691   idealreg2regmask[Op_RegF] = &spillF->out_RegMask();
 692   idealreg2regmask[Op_RegD] = &spillD->out_RegMask();
 693   idealreg2regmask[Op_RegP] = &spillP->out_RegMask();
 694 }
 695 
 696 #ifdef ASSERT
 697 static void match_alias_type(Compile* C, Node* n, Node* m) {
 698   if (!VerifyAliases)  return;  // do not go looking for trouble by default
 699   const TypePtr* nat = n->adr_type();
 700   const TypePtr* mat = m->adr_type();
 701   int nidx = C->get_alias_index(nat);
 702   int midx = C->get_alias_index(mat);
 703   // Detune the assert for cases like (AndI 0xFF (LoadB p)).
 704   if (nidx == Compile::AliasIdxTop && midx >= Compile::AliasIdxRaw) {
 705     for (uint i = 1; i < n->req(); i++) {
 706       Node* n1 = n->in(i);
 707       const TypePtr* n1at = n1->adr_type();
 708       if (n1at != NULL) {
 709         nat = n1at;
 710         nidx = C->get_alias_index(n1at);
 711       }
 712     }
 713   }
 714   // %%% Kludgery.  Instead, fix ideal adr_type methods for all these cases:
 715   if (nidx == Compile::AliasIdxTop && midx == Compile::AliasIdxRaw) {
 716     switch (n->Opcode()) {
 717     case Op_PrefetchRead:
 718     case Op_PrefetchWrite:
 719       nidx = Compile::AliasIdxRaw;
 720       nat = TypeRawPtr::BOTTOM;
 721       break;
 722     }
 723   }
 724   if (nidx == Compile::AliasIdxRaw && midx == Compile::AliasIdxTop) {
 725     switch (n->Opcode()) {
 726     case Op_ClearArray:
 727       midx = Compile::AliasIdxRaw;
 728       mat = TypeRawPtr::BOTTOM;
 729       break;
 730     }
 731   }
 732   if (nidx == Compile::AliasIdxTop && midx == Compile::AliasIdxBot) {
 733     switch (n->Opcode()) {
 734     case Op_Return:
 735     case Op_Rethrow:
 736     case Op_Halt:
 737     case Op_TailCall:
 738     case Op_TailJump:
 739       nidx = Compile::AliasIdxBot;
 740       nat = TypePtr::BOTTOM;
 741       break;
 742     }
 743   }
 744   if (nidx == Compile::AliasIdxBot && midx == Compile::AliasIdxTop) {
 745     switch (n->Opcode()) {
 746     case Op_StrComp:
 747     case Op_AryEq:
 748     case Op_MemBarVolatile:
 749     case Op_MemBarCPUOrder: // %%% these ideals should have narrower adr_type?
 750       nidx = Compile::AliasIdxTop;
 751       nat = NULL;
 752       break;
 753     }
 754   }
 755   if (nidx != midx) {
 756     if (PrintOpto || (PrintMiscellaneous && (WizardMode || Verbose))) {
 757       tty->print_cr("==== Matcher alias shift %d => %d", nidx, midx);
 758       n->dump();
 759       m->dump();
 760     }
 761     assert(C->subsume_loads() && C->must_alias(nat, midx),
 762            "must not lose alias info when matching");
 763   }
 764 }
 765 #endif
 766 
 767 
 768 //------------------------------MStack-----------------------------------------
 769 // State and MStack class used in xform() and find_shared() iterative methods.
 770 enum Node_State { Pre_Visit,  // node has to be pre-visited
 771                       Visit,  // visit node
 772                  Post_Visit,  // post-visit node
 773              Alt_Post_Visit   // alternative post-visit path
 774                 };
 775 
 776 class MStack: public Node_Stack {
 777   public:
 778     MStack(int size) : Node_Stack(size) { }
 779 
 780     void push(Node *n, Node_State ns) {
 781       Node_Stack::push(n, (uint)ns);
 782     }
 783     void push(Node *n, Node_State ns, Node *parent, int indx) {
 784       ++_inode_top;
 785       if ((_inode_top + 1) >= _inode_max) grow();
 786       _inode_top->node = parent;
 787       _inode_top->indx = (uint)indx;
 788       ++_inode_top;
 789       _inode_top->node = n;
 790       _inode_top->indx = (uint)ns;
 791     }
 792     Node *parent() {
 793       pop();
 794       return node();
 795     }
 796     Node_State state() const {
 797       return (Node_State)index();
 798     }
 799     void set_state(Node_State ns) {
 800       set_index((uint)ns);
 801     }
 802 };
 803 
 804 
 805 //------------------------------xform------------------------------------------
 806 // Given a Node in old-space, Match him (Label/Reduce) to produce a machine
 807 // Node in new-space.  Given a new-space Node, recursively walk his children.
 808 Node *Matcher::transform( Node *n ) { ShouldNotCallThis(); return n; }
 809 Node *Matcher::xform( Node *n, int max_stack ) {
 810   // Use one stack to keep both: child's node/state and parent's node/index
 811   MStack mstack(max_stack * 2 * 2); // C->unique() * 2 * 2
 812   mstack.push(n, Visit, NULL, -1);  // set NULL as parent to indicate root
 813 
 814   while (mstack.is_nonempty()) {
 815     n = mstack.node();          // Leave node on stack
 816     Node_State nstate = mstack.state();
 817     if (nstate == Visit) {
 818       mstack.set_state(Post_Visit);
 819       Node *oldn = n;
 820       // Old-space or new-space check
 821       if (!C->node_arena()->contains(n)) {
 822         // Old space!
 823         Node* m;
 824         if (has_new_node(n)) {  // Not yet Label/Reduced
 825           m = new_node(n);
 826         } else {
 827           if (!is_dontcare(n)) { // Matcher can match this guy
 828             // Calls match special.  They match alone with no children.
 829             // Their children, the incoming arguments, match normally.
 830             m = n->is_SafePoint() ? match_sfpt(n->as_SafePoint()):match_tree(n);
 831             if (C->failing())  return NULL;
 832             if (m == NULL) { Matcher::soft_match_failure(); return NULL; }
 833           } else {                  // Nothing the matcher cares about
 834             if( n->is_Proj() && n->in(0)->is_Multi()) {       // Projections?
 835               // Convert to machine-dependent projection
 836               m = n->in(0)->as_Multi()->match( n->as_Proj(), this );
 837               if (m->in(0) != NULL) // m might be top
 838                 collect_null_checks(m);
 839             } else {                // Else just a regular 'ol guy
 840               m = n->clone();       // So just clone into new-space
 841               // Def-Use edges will be added incrementally as Uses
 842               // of this node are matched.
 843               assert(m->outcnt() == 0, "no Uses of this clone yet");
 844             }
 845           }
 846 
 847           set_new_node(n, m);       // Map old to new
 848           if (_old_node_note_array != NULL) {
 849             Node_Notes* nn = C->locate_node_notes(_old_node_note_array,
 850                                                   n->_idx);
 851             C->set_node_notes_at(m->_idx, nn);
 852           }
 853           debug_only(match_alias_type(C, n, m));
 854         }
 855         n = m;    // n is now a new-space node
 856         mstack.set_node(n);
 857       }
 858 
 859       // New space!
 860       if (_visited.test_set(n->_idx)) continue; // while(mstack.is_nonempty())
 861 
 862       int i;
 863       // Put precedence edges on stack first (match them last).
 864       for (i = oldn->req(); (uint)i < oldn->len(); i++) {
 865         Node *m = oldn->in(i);
 866         if (m == NULL) break;
 867         // set -1 to call add_prec() instead of set_req() during Step1
 868         mstack.push(m, Visit, n, -1);
 869       }
 870 
 871       // For constant debug info, I'd rather have unmatched constants.
 872       int cnt = n->req();
 873       JVMState* jvms = n->jvms();
 874       int debug_cnt = jvms ? jvms->debug_start() : cnt;
 875 
 876       // Now do only debug info.  Clone constants rather than matching.
 877       // Constants are represented directly in the debug info without
 878       // the need for executable machine instructions.
 879       // Monitor boxes are also represented directly.
 880       for (i = cnt - 1; i >= debug_cnt; --i) { // For all debug inputs do
 881         Node *m = n->in(i);          // Get input
 882         int op = m->Opcode();
 883         assert((op == Op_BoxLock) == jvms->is_monitor_use(i), "boxes only at monitor sites");
 884         if( op == Op_ConI || op == Op_ConP || op == Op_ConN ||
 885             op == Op_ConF || op == Op_ConD || op == Op_ConL
 886             // || op == Op_BoxLock  // %%%% enable this and remove (+++) in chaitin.cpp
 887             ) {
 888           m = m->clone();
 889           mstack.push(m, Post_Visit, n, i); // Don't neet to visit
 890           mstack.push(m->in(0), Visit, m, 0);
 891         } else {
 892           mstack.push(m, Visit, n, i);
 893         }
 894       }
 895 
 896       // And now walk his children, and convert his inputs to new-space.
 897       for( ; i >= 0; --i ) { // For all normal inputs do
 898         Node *m = n->in(i);  // Get input
 899         if(m != NULL)
 900           mstack.push(m, Visit, n, i);
 901       }
 902 
 903     }
 904     else if (nstate == Post_Visit) {
 905       // Set xformed input
 906       Node *p = mstack.parent();
 907       if (p != NULL) { // root doesn't have parent
 908         int i = (int)mstack.index();
 909         if (i >= 0)
 910           p->set_req(i, n); // required input
 911         else if (i == -1)
 912           p->add_prec(n);   // precedence input
 913         else
 914           ShouldNotReachHere();
 915       }
 916       mstack.pop(); // remove processed node from stack
 917     }
 918     else {
 919       ShouldNotReachHere();
 920     }
 921   } // while (mstack.is_nonempty())
 922   return n; // Return new-space Node
 923 }
 924 
 925 //------------------------------warp_outgoing_stk_arg------------------------
 926 OptoReg::Name Matcher::warp_outgoing_stk_arg( VMReg reg, OptoReg::Name begin_out_arg_area, OptoReg::Name &out_arg_limit_per_call ) {
 927   // Convert outgoing argument location to a pre-biased stack offset
 928   if (reg->is_stack()) {
 929     OptoReg::Name warped = reg->reg2stack();
 930     // Adjust the stack slot offset to be the register number used
 931     // by the allocator.
 932     warped = OptoReg::add(begin_out_arg_area, warped);
 933     // Keep track of the largest numbered stack slot used for an arg.
 934     // Largest used slot per call-site indicates the amount of stack
 935     // that is killed by the call.
 936     if( warped >= out_arg_limit_per_call )
 937       out_arg_limit_per_call = OptoReg::add(warped,1);
 938     if (!RegMask::can_represent(warped)) {
 939       C->record_method_not_compilable_all_tiers("unsupported calling sequence");
 940       return OptoReg::Bad;
 941     }
 942     return warped;
 943   }
 944   return OptoReg::as_OptoReg(reg);
 945 }
 946 
 947 
 948 //------------------------------match_sfpt-------------------------------------
 949 // Helper function to match call instructions.  Calls match special.
 950 // They match alone with no children.  Their children, the incoming
 951 // arguments, match normally.
 952 MachNode *Matcher::match_sfpt( SafePointNode *sfpt ) {
 953   MachSafePointNode *msfpt = NULL;
 954   MachCallNode      *mcall = NULL;
 955   uint               cnt;
 956   // Split out case for SafePoint vs Call
 957   CallNode *call;
 958   const TypeTuple *domain;
 959   ciMethod*        method = NULL;
 960   if( sfpt->is_Call() ) {
 961     call = sfpt->as_Call();
 962     domain = call->tf()->domain();
 963     cnt = domain->cnt();
 964 
 965     // Match just the call, nothing else
 966     MachNode *m = match_tree(call);
 967     if (C->failing())  return NULL;
 968     if( m == NULL ) { Matcher::soft_match_failure(); return NULL; }
 969 
 970     // Copy data from the Ideal SafePoint to the machine version
 971     mcall = m->as_MachCall();
 972 
 973     mcall->set_tf(         call->tf());
 974     mcall->set_entry_point(call->entry_point());
 975     mcall->set_cnt(        call->cnt());
 976 
 977     if( mcall->is_MachCallJava() ) {
 978       MachCallJavaNode *mcall_java  = mcall->as_MachCallJava();
 979       const CallJavaNode *call_java =  call->as_CallJava();
 980       method = call_java->method();
 981       mcall_java->_method = method;
 982       mcall_java->_bci = call_java->_bci;
 983       mcall_java->_optimized_virtual = call_java->is_optimized_virtual();
 984       if( mcall_java->is_MachCallStaticJava() )
 985         mcall_java->as_MachCallStaticJava()->_name =
 986          call_java->as_CallStaticJava()->_name;
 987       if( mcall_java->is_MachCallDynamicJava() )
 988         mcall_java->as_MachCallDynamicJava()->_vtable_index =
 989          call_java->as_CallDynamicJava()->_vtable_index;
 990     }
 991     else if( mcall->is_MachCallRuntime() ) {
 992       mcall->as_MachCallRuntime()->_name = call->as_CallRuntime()->_name;
 993     }
 994     msfpt = mcall;
 995   }
 996   // This is a non-call safepoint
 997   else {
 998     call = NULL;
 999     domain = NULL;
1000     MachNode *mn = match_tree(sfpt);
1001     if (C->failing())  return NULL;
1002     msfpt = mn->as_MachSafePoint();
1003     cnt = TypeFunc::Parms;
1004   }
1005 
1006   // Advertise the correct memory effects (for anti-dependence computation).
1007   msfpt->set_adr_type(sfpt->adr_type());
1008 
1009   // Allocate a private array of RegMasks.  These RegMasks are not shared.
1010   msfpt->_in_rms = NEW_RESOURCE_ARRAY( RegMask, cnt );
1011   // Empty them all.
1012   memset( msfpt->_in_rms, 0, sizeof(RegMask)*cnt );
1013 
1014   // Do all the pre-defined non-Empty register masks
1015   msfpt->_in_rms[TypeFunc::ReturnAdr] = _return_addr_mask;
1016   msfpt->_in_rms[TypeFunc::FramePtr ] = c_frame_ptr_mask;
1017 
1018   // Place first outgoing argument can possibly be put.
1019   OptoReg::Name begin_out_arg_area = OptoReg::add(_new_SP, C->out_preserve_stack_slots());
1020   assert( is_even(begin_out_arg_area), "" );
1021   // Compute max outgoing register number per call site.
1022   OptoReg::Name out_arg_limit_per_call = begin_out_arg_area;
1023   // Calls to C may hammer extra stack slots above and beyond any arguments.
1024   // These are usually backing store for register arguments for varargs.
1025   if( call != NULL && call->is_CallRuntime() )
1026     out_arg_limit_per_call = OptoReg::add(out_arg_limit_per_call,C->varargs_C_out_slots_killed());
1027 
1028 
1029   // Do the normal argument list (parameters) register masks
1030   int argcnt = cnt - TypeFunc::Parms;
1031   if( argcnt > 0 ) {          // Skip it all if we have no args
1032     BasicType *sig_bt  = NEW_RESOURCE_ARRAY( BasicType, argcnt );
1033     VMRegPair *parm_regs = NEW_RESOURCE_ARRAY( VMRegPair, argcnt );
1034     int i;
1035     for( i = 0; i < argcnt; i++ ) {
1036       sig_bt[i] = domain->field_at(i+TypeFunc::Parms)->basic_type();
1037     }
1038     // V-call to pick proper calling convention
1039     call->calling_convention( sig_bt, parm_regs, argcnt );
1040 
1041 #ifdef ASSERT
1042     // Sanity check users' calling convention.  Really handy during
1043     // the initial porting effort.  Fairly expensive otherwise.
1044     { for (int i = 0; i<argcnt; i++) {
1045       if( !parm_regs[i].first()->is_valid() &&
1046           !parm_regs[i].second()->is_valid() ) continue;
1047       VMReg reg1 = parm_regs[i].first();
1048       VMReg reg2 = parm_regs[i].second();
1049       for (int j = 0; j < i; j++) {
1050         if( !parm_regs[j].first()->is_valid() &&
1051             !parm_regs[j].second()->is_valid() ) continue;
1052         VMReg reg3 = parm_regs[j].first();
1053         VMReg reg4 = parm_regs[j].second();
1054         if( !reg1->is_valid() ) {
1055           assert( !reg2->is_valid(), "valid halvsies" );
1056         } else if( !reg3->is_valid() ) {
1057           assert( !reg4->is_valid(), "valid halvsies" );
1058         } else {
1059           assert( reg1 != reg2, "calling conv. must produce distinct regs");
1060           assert( reg1 != reg3, "calling conv. must produce distinct regs");
1061           assert( reg1 != reg4, "calling conv. must produce distinct regs");
1062           assert( reg2 != reg3, "calling conv. must produce distinct regs");
1063           assert( reg2 != reg4 || !reg2->is_valid(), "calling conv. must produce distinct regs");
1064           assert( reg3 != reg4, "calling conv. must produce distinct regs");
1065         }
1066       }
1067     }
1068     }
1069 #endif
1070 
1071     // Visit each argument.  Compute its outgoing register mask.
1072     // Return results now can have 2 bits returned.
1073     // Compute max over all outgoing arguments both per call-site
1074     // and over the entire method.
1075     for( i = 0; i < argcnt; i++ ) {
1076       // Address of incoming argument mask to fill in
1077       RegMask *rm = &mcall->_in_rms[i+TypeFunc::Parms];
1078       if( !parm_regs[i].first()->is_valid() &&
1079           !parm_regs[i].second()->is_valid() ) {
1080         continue;               // Avoid Halves
1081       }
1082       // Grab first register, adjust stack slots and insert in mask.
1083       OptoReg::Name reg1 = warp_outgoing_stk_arg(parm_regs[i].first(), begin_out_arg_area, out_arg_limit_per_call );
1084       if (OptoReg::is_valid(reg1))
1085         rm->Insert( reg1 );
1086       // Grab second register (if any), adjust stack slots and insert in mask.
1087       OptoReg::Name reg2 = warp_outgoing_stk_arg(parm_regs[i].second(), begin_out_arg_area, out_arg_limit_per_call );
1088       if (OptoReg::is_valid(reg2))
1089         rm->Insert( reg2 );
1090     } // End of for all arguments
1091 
1092     // Compute number of stack slots needed to restore stack in case of
1093     // Pascal-style argument popping.
1094     mcall->_argsize = out_arg_limit_per_call - begin_out_arg_area;
1095   }
1096 
1097   // Compute the max stack slot killed by any call.  These will not be
1098   // available for debug info, and will be used to adjust FIRST_STACK_mask
1099   // after all call sites have been visited.
1100   if( _out_arg_limit < out_arg_limit_per_call)
1101     _out_arg_limit = out_arg_limit_per_call;
1102 
1103   if (mcall) {
1104     // Kill the outgoing argument area, including any non-argument holes and
1105     // any legacy C-killed slots.  Use Fat-Projections to do the killing.
1106     // Since the max-per-method covers the max-per-call-site and debug info
1107     // is excluded on the max-per-method basis, debug info cannot land in
1108     // this killed area.
1109     uint r_cnt = mcall->tf()->range()->cnt();
1110     MachProjNode *proj = new (C, 1) MachProjNode( mcall, r_cnt+10000, RegMask::Empty, MachProjNode::fat_proj );
1111     if (!RegMask::can_represent(OptoReg::Name(out_arg_limit_per_call-1))) {
1112       C->record_method_not_compilable_all_tiers("unsupported outgoing calling sequence");
1113     } else {
1114       for (int i = begin_out_arg_area; i < out_arg_limit_per_call; i++)
1115         proj->_rout.Insert(OptoReg::Name(i));
1116     }
1117     if( proj->_rout.is_NotEmpty() )
1118       _proj_list.push(proj);
1119   }
1120   // Transfer the safepoint information from the call to the mcall
1121   // Move the JVMState list
1122   msfpt->set_jvms(sfpt->jvms());
1123   for (JVMState* jvms = msfpt->jvms(); jvms; jvms = jvms->caller()) {
1124     jvms->set_map(sfpt);
1125   }
1126 
1127   // Debug inputs begin just after the last incoming parameter
1128   assert( (mcall == NULL) || (mcall->jvms() == NULL) ||
1129           (mcall->jvms()->debug_start() + mcall->_jvmadj == mcall->tf()->domain()->cnt()), "" );
1130 
1131   // Move the OopMap
1132   msfpt->_oop_map = sfpt->_oop_map;
1133 
1134   // Registers killed by the call are set in the local scheduling pass
1135   // of Global Code Motion.
1136   return msfpt;
1137 }
1138 
1139 //---------------------------match_tree----------------------------------------
1140 // Match a Ideal Node DAG - turn it into a tree; Label & Reduce.  Used as part
1141 // of the whole-sale conversion from Ideal to Mach Nodes.  Also used for
1142 // making GotoNodes while building the CFG and in init_spill_mask() to identify
1143 // a Load's result RegMask for memoization in idealreg2regmask[]
1144 MachNode *Matcher::match_tree( const Node *n ) {
1145   assert( n->Opcode() != Op_Phi, "cannot match" );
1146   assert( !n->is_block_start(), "cannot match" );
1147   // Set the mark for all locally allocated State objects.
1148   // When this call returns, the _states_arena arena will be reset
1149   // freeing all State objects.
1150   ResourceMark rm( &_states_arena );
1151 
1152   LabelRootDepth = 0;
1153 
1154   // StoreNodes require their Memory input to match any LoadNodes
1155   Node *mem = n->is_Store() ? n->in(MemNode::Memory) : (Node*)1 ;
1156 
1157   // State object for root node of match tree
1158   // Allocate it on _states_arena - stack allocation can cause stack overflow.
1159   State *s = new (&_states_arena) State;
1160   s->_kids[0] = NULL;
1161   s->_kids[1] = NULL;
1162   s->_leaf = (Node*)n;
1163   // Label the input tree, allocating labels from top-level arena
1164   Label_Root( n, s, n->in(0), mem );
1165   if (C->failing())  return NULL;
1166 
1167   // The minimum cost match for the whole tree is found at the root State
1168   uint mincost = max_juint;
1169   uint cost = max_juint;
1170   uint i;
1171   for( i = 0; i < NUM_OPERANDS; i++ ) {
1172     if( s->valid(i) &&                // valid entry and
1173         s->_cost[i] < cost &&         // low cost and
1174         s->_rule[i] >= NUM_OPERANDS ) // not an operand
1175       cost = s->_cost[mincost=i];
1176   }
1177   if (mincost == max_juint) {
1178 #ifndef PRODUCT
1179     tty->print("No matching rule for:");
1180     s->dump();
1181 #endif
1182     Matcher::soft_match_failure();
1183     return NULL;
1184   }
1185   // Reduce input tree based upon the state labels to machine Nodes
1186   MachNode *m = ReduceInst( s, s->_rule[mincost], mem );
1187 #ifdef ASSERT
1188   _old2new_map.map(n->_idx, m);
1189 #endif
1190 
1191   // Add any Matcher-ignored edges
1192   uint cnt = n->req();
1193   uint start = 1;
1194   if( mem != (Node*)1 ) start = MemNode::Memory+1;
1195   if( n->is_AddP() ) {
1196     assert( mem == (Node*)1, "" );
1197     start = AddPNode::Base+1;
1198   }
1199   for( i = start; i < cnt; i++ ) {
1200     if( !n->match_edge(i) ) {
1201       if( i < m->req() )
1202         m->ins_req( i, n->in(i) );
1203       else
1204         m->add_req( n->in(i) );
1205     }
1206   }
1207 
1208   return m;
1209 }
1210 
1211 
1212 //------------------------------match_into_reg---------------------------------
1213 // Choose to either match this Node in a register or part of the current
1214 // match tree.  Return true for requiring a register and false for matching
1215 // as part of the current match tree.
1216 static bool match_into_reg( const Node *n, Node *m, Node *control, int i, bool shared ) {
1217 
1218   const Type *t = m->bottom_type();
1219 
1220   if( t->singleton() ) {
1221     // Never force constants into registers.  Allow them to match as
1222     // constants or registers.  Copies of the same value will share
1223     // the same register.  See find_shared_node.
1224     return false;
1225   } else {                      // Not a constant
1226     // Stop recursion if they have different Controls.
1227     // Slot 0 of constants is not really a Control.
1228     if( control && m->in(0) && control != m->in(0) ) {
1229 
1230       // Actually, we can live with the most conservative control we
1231       // find, if it post-dominates the others.  This allows us to
1232       // pick up load/op/store trees where the load can float a little
1233       // above the store.
1234       Node *x = control;
1235       const uint max_scan = 6;   // Arbitrary scan cutoff
1236       uint j;
1237       for( j=0; j<max_scan; j++ ) {
1238         if( x->is_Region() )    // Bail out at merge points
1239           return true;
1240         x = x->in(0);
1241         if( x == m->in(0) )     // Does 'control' post-dominate
1242           break;                // m->in(0)?  If so, we can use it
1243       }
1244       if( j == max_scan )       // No post-domination before scan end?
1245         return true;            // Then break the match tree up
1246     }
1247     if (m->is_DecodeN() && Matcher::clone_shift_expressions) {
1248       // These are commonly used in address expressions and can
1249       // efficiently fold into them on X64 in some cases.
1250       return false;
1251     }
1252   }
1253 
1254   // Not forceably cloning.  If shared, put it into a register.
1255   return shared;
1256 }
1257 
1258 
1259 //------------------------------Instruction Selection--------------------------
1260 // Label method walks a "tree" of nodes, using the ADLC generated DFA to match
1261 // ideal nodes to machine instructions.  Trees are delimited by shared Nodes,
1262 // things the Matcher does not match (e.g., Memory), and things with different
1263 // Controls (hence forced into different blocks).  We pass in the Control
1264 // selected for this entire State tree.
1265 
1266 // The Matcher works on Trees, but an Intel add-to-memory requires a DAG: the
1267 // Store and the Load must have identical Memories (as well as identical
1268 // pointers).  Since the Matcher does not have anything for Memory (and
1269 // does not handle DAGs), I have to match the Memory input myself.  If the
1270 // Tree root is a Store, I require all Loads to have the identical memory.
1271 Node *Matcher::Label_Root( const Node *n, State *svec, Node *control, const Node *mem){
1272   // Since Label_Root is a recursive function, its possible that we might run
1273   // out of stack space.  See bugs 6272980 & 6227033 for more info.
1274   LabelRootDepth++;
1275   if (LabelRootDepth > MaxLabelRootDepth) {
1276     C->record_method_not_compilable_all_tiers("Out of stack space, increase MaxLabelRootDepth");
1277     return NULL;
1278   }
1279   uint care = 0;                // Edges matcher cares about
1280   uint cnt = n->req();
1281   uint i = 0;
1282 
1283   // Examine children for memory state
1284   // Can only subsume a child into your match-tree if that child's memory state
1285   // is not modified along the path to another input.
1286   // It is unsafe even if the other inputs are separate roots.
1287   Node *input_mem = NULL;
1288   for( i = 1; i < cnt; i++ ) {
1289     if( !n->match_edge(i) ) continue;
1290     Node *m = n->in(i);         // Get ith input
1291     assert( m, "expect non-null children" );
1292     if( m->is_Load() ) {
1293       if( input_mem == NULL ) {
1294         input_mem = m->in(MemNode::Memory);
1295       } else if( input_mem != m->in(MemNode::Memory) ) {
1296         input_mem = NodeSentinel;
1297       }
1298     }
1299   }
1300 
1301   for( i = 1; i < cnt; i++ ){// For my children
1302     if( !n->match_edge(i) ) continue;
1303     Node *m = n->in(i);         // Get ith input
1304     // Allocate states out of a private arena
1305     State *s = new (&_states_arena) State;
1306     svec->_kids[care++] = s;
1307     assert( care <= 2, "binary only for now" );
1308 
1309     // Recursively label the State tree.
1310     s->_kids[0] = NULL;
1311     s->_kids[1] = NULL;
1312     s->_leaf = m;
1313 
1314     // Check for leaves of the State Tree; things that cannot be a part of
1315     // the current tree.  If it finds any, that value is matched as a
1316     // register operand.  If not, then the normal matching is used.
1317     if( match_into_reg(n, m, control, i, is_shared(m)) ||
1318         //
1319         // Stop recursion if this is LoadNode and the root of this tree is a
1320         // StoreNode and the load & store have different memories.
1321         ((mem!=(Node*)1) && m->is_Load() && m->in(MemNode::Memory) != mem) ||
1322         // Can NOT include the match of a subtree when its memory state
1323         // is used by any of the other subtrees
1324         (input_mem == NodeSentinel) ) {
1325 #ifndef PRODUCT
1326       // Print when we exclude matching due to different memory states at input-loads
1327       if( PrintOpto && (Verbose && WizardMode) && (input_mem == NodeSentinel)
1328         && !((mem!=(Node*)1) && m->is_Load() && m->in(MemNode::Memory) != mem) ) {
1329         tty->print_cr("invalid input_mem");
1330       }
1331 #endif
1332       // Switch to a register-only opcode; this value must be in a register
1333       // and cannot be subsumed as part of a larger instruction.
1334       s->DFA( m->ideal_reg(), m );
1335 
1336     } else {
1337       // If match tree has no control and we do, adopt it for entire tree
1338       if( control == NULL && m->in(0) != NULL && m->req() > 1 )
1339         control = m->in(0);         // Pick up control
1340       // Else match as a normal part of the match tree.
1341       control = Label_Root(m,s,control,mem);
1342       if (C->failing()) return NULL;
1343     }
1344   }
1345 
1346 
1347   // Call DFA to match this node, and return
1348   svec->DFA( n->Opcode(), n );
1349 
1350 #ifdef ASSERT
1351   uint x;
1352   for( x = 0; x < _LAST_MACH_OPER; x++ )
1353     if( svec->valid(x) )
1354       break;
1355 
1356   if (x >= _LAST_MACH_OPER) {
1357     n->dump();
1358     svec->dump();
1359     assert( false, "bad AD file" );
1360   }
1361 #endif
1362   return control;
1363 }
1364 
1365 
1366 // Con nodes reduced using the same rule can share their MachNode
1367 // which reduces the number of copies of a constant in the final
1368 // program.  The register allocator is free to split uses later to
1369 // split live ranges.
1370 MachNode* Matcher::find_shared_node(Node* leaf, uint rule) {
1371   if (!leaf->is_Con() && !leaf->is_DecodeN()) return NULL;
1372 
1373   // See if this Con has already been reduced using this rule.
1374   if (_shared_nodes.Size() <= leaf->_idx) return NULL;
1375   MachNode* last = (MachNode*)_shared_nodes.at(leaf->_idx);
1376   if (last != NULL && rule == last->rule()) {
1377     // Don't expect control change for DecodeN
1378     if (leaf->is_DecodeN())
1379       return last;
1380     // Get the new space root.
1381     Node* xroot = new_node(C->root());
1382     if (xroot == NULL) {
1383       // This shouldn't happen give the order of matching.
1384       return NULL;
1385     }
1386 
1387     // Shared constants need to have their control be root so they
1388     // can be scheduled properly.
1389     Node* control = last->in(0);
1390     if (control != xroot) {
1391       if (control == NULL || control == C->root()) {
1392         last->set_req(0, xroot);
1393       } else {
1394         assert(false, "unexpected control");
1395         return NULL;
1396       }
1397     }
1398     return last;
1399   }
1400   return NULL;
1401 }
1402 
1403 
1404 //------------------------------ReduceInst-------------------------------------
1405 // Reduce a State tree (with given Control) into a tree of MachNodes.
1406 // This routine (and it's cohort ReduceOper) convert Ideal Nodes into
1407 // complicated machine Nodes.  Each MachNode covers some tree of Ideal Nodes.
1408 // Each MachNode has a number of complicated MachOper operands; each
1409 // MachOper also covers a further tree of Ideal Nodes.
1410 
1411 // The root of the Ideal match tree is always an instruction, so we enter
1412 // the recursion here.  After building the MachNode, we need to recurse
1413 // the tree checking for these cases:
1414 // (1) Child is an instruction -
1415 //     Build the instruction (recursively), add it as an edge.
1416 //     Build a simple operand (register) to hold the result of the instruction.
1417 // (2) Child is an interior part of an instruction -
1418 //     Skip over it (do nothing)
1419 // (3) Child is the start of a operand -
1420 //     Build the operand, place it inside the instruction
1421 //     Call ReduceOper.
1422 MachNode *Matcher::ReduceInst( State *s, int rule, Node *&mem ) {
1423   assert( rule >= NUM_OPERANDS, "called with operand rule" );
1424 
1425   MachNode* shared_node = find_shared_node(s->_leaf, rule);
1426   if (shared_node != NULL) {
1427     return shared_node;
1428   }
1429 
1430   // Build the object to represent this state & prepare for recursive calls
1431   MachNode *mach = s->MachNodeGenerator( rule, C );
1432   mach->_opnds[0] = s->MachOperGenerator( _reduceOp[rule], C );
1433   assert( mach->_opnds[0] != NULL, "Missing result operand" );
1434   Node *leaf = s->_leaf;
1435   // Check for instruction or instruction chain rule
1436   if( rule >= _END_INST_CHAIN_RULE || rule < _BEGIN_INST_CHAIN_RULE ) {
1437     // Instruction
1438     mach->add_req( leaf->in(0) ); // Set initial control
1439     // Reduce interior of complex instruction
1440     ReduceInst_Interior( s, rule, mem, mach, 1 );
1441   } else {
1442     // Instruction chain rules are data-dependent on their inputs
1443     mach->add_req(0);             // Set initial control to none
1444     ReduceInst_Chain_Rule( s, rule, mem, mach );
1445   }
1446 
1447   // If a Memory was used, insert a Memory edge
1448   if( mem != (Node*)1 )
1449     mach->ins_req(MemNode::Memory,mem);
1450 
1451   // If the _leaf is an AddP, insert the base edge
1452   if( leaf->is_AddP() )
1453     mach->ins_req(AddPNode::Base,leaf->in(AddPNode::Base));
1454 
1455   uint num_proj = _proj_list.size();
1456 
1457   // Perform any 1-to-many expansions required
1458   MachNode *ex = mach->Expand(s,_proj_list);
1459   if( ex != mach ) {
1460     assert(ex->ideal_reg() == mach->ideal_reg(), "ideal types should match");
1461     if( ex->in(1)->is_Con() )
1462       ex->in(1)->set_req(0, C->root());
1463     // Remove old node from the graph
1464     for( uint i=0; i<mach->req(); i++ ) {
1465       mach->set_req(i,NULL);
1466     }
1467   }
1468 
1469   // PhaseChaitin::fixup_spills will sometimes generate spill code
1470   // via the matcher.  By the time, nodes have been wired into the CFG,
1471   // and any further nodes generated by expand rules will be left hanging
1472   // in space, and will not get emitted as output code.  Catch this.
1473   // Also, catch any new register allocation constraints ("projections")
1474   // generated belatedly during spill code generation.
1475   if (_allocation_started) {
1476     guarantee(ex == mach, "no expand rules during spill generation");
1477     guarantee(_proj_list.size() == num_proj, "no allocation during spill generation");
1478   }
1479 
1480   if (leaf->is_Con() || leaf->is_DecodeN()) {
1481     // Record the con for sharing
1482     _shared_nodes.map(leaf->_idx, ex);
1483   }
1484 
1485   return ex;
1486 }
1487 
1488 void Matcher::ReduceInst_Chain_Rule( State *s, int rule, Node *&mem, MachNode *mach ) {
1489   // 'op' is what I am expecting to receive
1490   int op = _leftOp[rule];
1491   // Operand type to catch childs result
1492   // This is what my child will give me.
1493   int opnd_class_instance = s->_rule[op];
1494   // Choose between operand class or not.
1495   // This is what I will recieve.
1496   int catch_op = (FIRST_OPERAND_CLASS <= op && op < NUM_OPERANDS) ? opnd_class_instance : op;
1497   // New rule for child.  Chase operand classes to get the actual rule.
1498   int newrule = s->_rule[catch_op];
1499 
1500   if( newrule < NUM_OPERANDS ) {
1501     // Chain from operand or operand class, may be output of shared node
1502     assert( 0 <= opnd_class_instance && opnd_class_instance < NUM_OPERANDS,
1503             "Bad AD file: Instruction chain rule must chain from operand");
1504     // Insert operand into array of operands for this instruction
1505     mach->_opnds[1] = s->MachOperGenerator( opnd_class_instance, C );
1506 
1507     ReduceOper( s, newrule, mem, mach );
1508   } else {
1509     // Chain from the result of an instruction
1510     assert( newrule >= _LAST_MACH_OPER, "Do NOT chain from internal operand");
1511     mach->_opnds[1] = s->MachOperGenerator( _reduceOp[catch_op], C );
1512     Node *mem1 = (Node*)1;
1513     mach->add_req( ReduceInst(s, newrule, mem1) );
1514   }
1515   return;
1516 }
1517 
1518 
1519 uint Matcher::ReduceInst_Interior( State *s, int rule, Node *&mem, MachNode *mach, uint num_opnds ) {
1520   if( s->_leaf->is_Load() ) {
1521     Node *mem2 = s->_leaf->in(MemNode::Memory);
1522     assert( mem == (Node*)1 || mem == mem2, "multiple Memories being matched at once?" );
1523     mem = mem2;
1524   }
1525   if( s->_leaf->in(0) != NULL && s->_leaf->req() > 1) {
1526     if( mach->in(0) == NULL )
1527       mach->set_req(0, s->_leaf->in(0));
1528   }
1529 
1530   // Now recursively walk the state tree & add operand list.
1531   for( uint i=0; i<2; i++ ) {   // binary tree
1532     State *newstate = s->_kids[i];
1533     if( newstate == NULL ) break;      // Might only have 1 child
1534     // 'op' is what I am expecting to receive
1535     int op;
1536     if( i == 0 ) {
1537       op = _leftOp[rule];
1538     } else {
1539       op = _rightOp[rule];
1540     }
1541     // Operand type to catch childs result
1542     // This is what my child will give me.
1543     int opnd_class_instance = newstate->_rule[op];
1544     // Choose between operand class or not.
1545     // This is what I will receive.
1546     int catch_op = (op >= FIRST_OPERAND_CLASS && op < NUM_OPERANDS) ? opnd_class_instance : op;
1547     // New rule for child.  Chase operand classes to get the actual rule.
1548     int newrule = newstate->_rule[catch_op];
1549 
1550     if( newrule < NUM_OPERANDS ) { // Operand/operandClass or internalOp/instruction?
1551       // Operand/operandClass
1552       // Insert operand into array of operands for this instruction
1553       mach->_opnds[num_opnds++] = newstate->MachOperGenerator( opnd_class_instance, C );
1554       ReduceOper( newstate, newrule, mem, mach );
1555 
1556     } else {                    // Child is internal operand or new instruction
1557       if( newrule < _LAST_MACH_OPER ) { // internal operand or instruction?
1558         // internal operand --> call ReduceInst_Interior
1559         // Interior of complex instruction.  Do nothing but recurse.
1560         num_opnds = ReduceInst_Interior( newstate, newrule, mem, mach, num_opnds );
1561       } else {
1562         // instruction --> call build operand(  ) to catch result
1563         //             --> ReduceInst( newrule )
1564         mach->_opnds[num_opnds++] = s->MachOperGenerator( _reduceOp[catch_op], C );
1565         Node *mem1 = (Node*)1;
1566         mach->add_req( ReduceInst( newstate, newrule, mem1 ) );
1567       }
1568     }
1569     assert( mach->_opnds[num_opnds-1], "" );
1570   }
1571   return num_opnds;
1572 }
1573 
1574 // This routine walks the interior of possible complex operands.
1575 // At each point we check our children in the match tree:
1576 // (1) No children -
1577 //     We are a leaf; add _leaf field as an input to the MachNode
1578 // (2) Child is an internal operand -
1579 //     Skip over it ( do nothing )
1580 // (3) Child is an instruction -
1581 //     Call ReduceInst recursively and
1582 //     and instruction as an input to the MachNode
1583 void Matcher::ReduceOper( State *s, int rule, Node *&mem, MachNode *mach ) {
1584   assert( rule < _LAST_MACH_OPER, "called with operand rule" );
1585   State *kid = s->_kids[0];
1586   assert( kid == NULL || s->_leaf->in(0) == NULL, "internal operands have no control" );
1587 
1588   // Leaf?  And not subsumed?
1589   if( kid == NULL && !_swallowed[rule] ) {
1590     mach->add_req( s->_leaf );  // Add leaf pointer
1591     return;                     // Bail out
1592   }
1593 
1594   if( s->_leaf->is_Load() ) {
1595     assert( mem == (Node*)1, "multiple Memories being matched at once?" );
1596     mem = s->_leaf->in(MemNode::Memory);
1597   }
1598   if( s->_leaf->in(0) && s->_leaf->req() > 1) {
1599     if( !mach->in(0) )
1600       mach->set_req(0,s->_leaf->in(0));
1601     else {
1602       assert( s->_leaf->in(0) == mach->in(0), "same instruction, differing controls?" );
1603     }
1604   }
1605 
1606   for( uint i=0; kid != NULL && i<2; kid = s->_kids[1], i++ ) {   // binary tree
1607     int newrule;
1608     if( i == 0 )
1609       newrule = kid->_rule[_leftOp[rule]];
1610     else
1611       newrule = kid->_rule[_rightOp[rule]];
1612 
1613     if( newrule < _LAST_MACH_OPER ) { // Operand or instruction?
1614       // Internal operand; recurse but do nothing else
1615       ReduceOper( kid, newrule, mem, mach );
1616 
1617     } else {                    // Child is a new instruction
1618       // Reduce the instruction, and add a direct pointer from this
1619       // machine instruction to the newly reduced one.
1620       Node *mem1 = (Node*)1;
1621       mach->add_req( ReduceInst( kid, newrule, mem1 ) );
1622     }
1623   }
1624 }
1625 
1626 
1627 // -------------------------------------------------------------------------
1628 // Java-Java calling convention
1629 // (what you use when Java calls Java)
1630 
1631 //------------------------------find_receiver----------------------------------
1632 // For a given signature, return the OptoReg for parameter 0.
1633 OptoReg::Name Matcher::find_receiver( bool is_outgoing ) {
1634   VMRegPair regs;
1635   BasicType sig_bt = T_OBJECT;
1636   calling_convention(&sig_bt, &regs, 1, is_outgoing);
1637   // Return argument 0 register.  In the LP64 build pointers
1638   // take 2 registers, but the VM wants only the 'main' name.
1639   return OptoReg::as_OptoReg(regs.first());
1640 }
1641 
1642 // A method-klass-holder may be passed in the inline_cache_reg
1643 // and then expanded into the inline_cache_reg and a method_oop register
1644 //   defined in ad_<arch>.cpp
1645 
1646 
1647 //------------------------------find_shared------------------------------------
1648 // Set bits if Node is shared or otherwise a root
1649 void Matcher::find_shared( Node *n ) {
1650   // Allocate stack of size C->unique() * 2 to avoid frequent realloc
1651   MStack mstack(C->unique() * 2);
1652   mstack.push(n, Visit);     // Don't need to pre-visit root node
1653   while (mstack.is_nonempty()) {
1654     n = mstack.node();       // Leave node on stack
1655     Node_State nstate = mstack.state();
1656     if (nstate == Pre_Visit) {
1657       if (is_visited(n)) {   // Visited already?
1658         // Node is shared and has no reason to clone.  Flag it as shared.
1659         // This causes it to match into a register for the sharing.
1660         set_shared(n);       // Flag as shared and
1661         mstack.pop();        // remove node from stack
1662         continue;
1663       }
1664       nstate = Visit; // Not already visited; so visit now
1665     }
1666     if (nstate == Visit) {
1667       mstack.set_state(Post_Visit);
1668       set_visited(n);   // Flag as visited now
1669       bool mem_op = false;
1670 
1671       switch( n->Opcode() ) {  // Handle some opcodes special
1672       case Op_Phi:             // Treat Phis as shared roots
1673       case Op_Parm:
1674       case Op_Proj:            // All handled specially during matching
1675       case Op_SafePointScalarObject:
1676         set_shared(n);
1677         set_dontcare(n);
1678         break;
1679       case Op_If:
1680       case Op_CountedLoopEnd:
1681         mstack.set_state(Alt_Post_Visit); // Alternative way
1682         // Convert (If (Bool (CmpX A B))) into (If (Bool) (CmpX A B)).  Helps
1683         // with matching cmp/branch in 1 instruction.  The Matcher needs the
1684         // Bool and CmpX side-by-side, because it can only get at constants
1685         // that are at the leaves of Match trees, and the Bool's condition acts
1686         // as a constant here.
1687         mstack.push(n->in(1), Visit);         // Clone the Bool
1688         mstack.push(n->in(0), Pre_Visit);     // Visit control input
1689         continue; // while (mstack.is_nonempty())
1690       case Op_ConvI2D:         // These forms efficiently match with a prior
1691       case Op_ConvI2F:         //   Load but not a following Store
1692         if( n->in(1)->is_Load() &&        // Prior load
1693             n->outcnt() == 1 &&           // Not already shared
1694             n->unique_out()->is_Store() ) // Following store
1695           set_shared(n);       // Force it to be a root
1696         break;
1697       case Op_ReverseBytesI:
1698       case Op_ReverseBytesL:
1699         if( n->in(1)->is_Load() &&        // Prior load
1700             n->outcnt() == 1 )            // Not already shared
1701           set_shared(n);                  // Force it to be a root
1702         break;
1703       case Op_BoxLock:         // Cant match until we get stack-regs in ADLC
1704       case Op_IfFalse:
1705       case Op_IfTrue:
1706       case Op_MachProj:
1707       case Op_MergeMem:
1708       case Op_Catch:
1709       case Op_CatchProj:
1710       case Op_CProj:
1711       case Op_JumpProj:
1712       case Op_JProj:
1713       case Op_NeverBranch:
1714         set_dontcare(n);
1715         break;
1716       case Op_Jump:
1717         mstack.push(n->in(1), Visit);         // Switch Value
1718         mstack.push(n->in(0), Pre_Visit);     // Visit Control input
1719         continue;                             // while (mstack.is_nonempty())
1720       case Op_StrComp:
1721       case Op_AryEq:
1722         set_shared(n); // Force result into register (it will be anyways)
1723         break;
1724       case Op_ConP: {  // Convert pointers above the centerline to NUL
1725         TypeNode *tn = n->as_Type(); // Constants derive from type nodes
1726         const TypePtr* tp = tn->type()->is_ptr();
1727         if (tp->_ptr == TypePtr::AnyNull) {
1728           tn->set_type(TypePtr::NULL_PTR);
1729         }
1730         break;
1731       }
1732       case Op_ConN: {  // Convert narrow pointers above the centerline to NUL
1733         TypeNode *tn = n->as_Type(); // Constants derive from type nodes
1734         const TypePtr* tp = tn->type()->is_narrowoop()->make_oopptr();
1735         if (tp->_ptr == TypePtr::AnyNull) {
1736           tn->set_type(TypeNarrowOop::NULL_PTR);
1737         }
1738         break;
1739       }
1740       case Op_Binary:         // These are introduced in the Post_Visit state.
1741         ShouldNotReachHere();
1742         break;
1743       case Op_StoreB:         // Do match these, despite no ideal reg
1744       case Op_StoreC:
1745       case Op_StoreCM:
1746       case Op_StoreD:
1747       case Op_StoreF:
1748       case Op_StoreI:
1749       case Op_StoreL:
1750       case Op_StoreP:
1751       case Op_StoreN:
1752       case Op_Store16B:
1753       case Op_Store8B:
1754       case Op_Store4B:
1755       case Op_Store8C:
1756       case Op_Store4C:
1757       case Op_Store2C:
1758       case Op_Store4I:
1759       case Op_Store2I:
1760       case Op_Store2L:
1761       case Op_Store4F:
1762       case Op_Store2F:
1763       case Op_Store2D:
1764       case Op_ClearArray:
1765       case Op_SafePoint:
1766         mem_op = true;
1767         break;
1768       case Op_LoadB:
1769       case Op_LoadC:
1770       case Op_LoadD:
1771       case Op_LoadF:
1772       case Op_LoadI:
1773       case Op_LoadKlass:
1774       case Op_LoadNKlass:
1775       case Op_LoadL:
1776       case Op_LoadS:
1777       case Op_LoadP:
1778       case Op_LoadN:
1779       case Op_LoadRange:
1780       case Op_LoadD_unaligned:
1781       case Op_LoadL_unaligned:
1782       case Op_Load16B:
1783       case Op_Load8B:
1784       case Op_Load4B:
1785       case Op_Load4C:
1786       case Op_Load2C:
1787       case Op_Load8C:
1788       case Op_Load8S:
1789       case Op_Load4S:
1790       case Op_Load2S:
1791       case Op_Load4I:
1792       case Op_Load2I:
1793       case Op_Load2L:
1794       case Op_Load4F:
1795       case Op_Load2F:
1796       case Op_Load2D:
1797         mem_op = true;
1798         // Must be root of match tree due to prior load conflict
1799         if( C->subsume_loads() == false ) {
1800           set_shared(n);
1801         }
1802         // Fall into default case
1803       default:
1804         if( !n->ideal_reg() )
1805           set_dontcare(n);  // Unmatchable Nodes
1806       } // end_switch
1807 
1808       for(int i = n->req() - 1; i >= 0; --i) { // For my children
1809         Node *m = n->in(i); // Get ith input
1810         if (m == NULL) continue;  // Ignore NULLs
1811         uint mop = m->Opcode();
1812 
1813         // Must clone all producers of flags, or we will not match correctly.
1814         // Suppose a compare setting int-flags is shared (e.g., a switch-tree)
1815         // then it will match into an ideal Op_RegFlags.  Alas, the fp-flags
1816         // are also there, so we may match a float-branch to int-flags and
1817         // expect the allocator to haul the flags from the int-side to the
1818         // fp-side.  No can do.
1819         if( _must_clone[mop] ) {
1820           mstack.push(m, Visit);
1821           continue; // for(int i = ...)
1822         }
1823 
1824         // Clone addressing expressions as they are "free" in most instructions
1825         if( mem_op && i == MemNode::Address && mop == Op_AddP ) {
1826           Node *off = m->in(AddPNode::Offset);
1827           if( off->is_Con() ) {
1828             set_visited(m);  // Flag as visited now
1829             Node *adr = m->in(AddPNode::Address);
1830 
1831             // Intel, ARM and friends can handle 2 adds in addressing mode
1832             if( clone_shift_expressions && adr->is_AddP() &&
1833                 // AtomicAdd is not an addressing expression.
1834                 // Cheap to find it by looking for screwy base.
1835                 !adr->in(AddPNode::Base)->is_top() ) {
1836               set_visited(adr);  // Flag as visited now
1837               Node *shift = adr->in(AddPNode::Offset);
1838               // Check for shift by small constant as well
1839               if( shift->Opcode() == Op_LShiftX && shift->in(2)->is_Con() &&
1840                   shift->in(2)->get_int() <= 3 ) {
1841                 set_visited(shift);  // Flag as visited now
1842                 mstack.push(shift->in(2), Visit);
1843 #ifdef _LP64
1844                 // Allow Matcher to match the rule which bypass
1845                 // ConvI2L operation for an array index on LP64
1846                 // if the index value is positive.
1847                 if( shift->in(1)->Opcode() == Op_ConvI2L &&
1848                     shift->in(1)->as_Type()->type()->is_long()->_lo >= 0 ) {
1849                   set_visited(shift->in(1));  // Flag as visited now
1850                   mstack.push(shift->in(1)->in(1), Pre_Visit);
1851                 } else
1852 #endif
1853                 mstack.push(shift->in(1), Pre_Visit);
1854               } else {
1855                 mstack.push(shift, Pre_Visit);
1856               }
1857               mstack.push(adr->in(AddPNode::Address), Pre_Visit);
1858               mstack.push(adr->in(AddPNode::Base), Pre_Visit);
1859             } else {  // Sparc, Alpha, PPC and friends
1860               mstack.push(adr, Pre_Visit);
1861             }
1862 
1863             // Clone X+offset as it also folds into most addressing expressions
1864             mstack.push(off, Visit);
1865             mstack.push(m->in(AddPNode::Base), Pre_Visit);
1866             continue; // for(int i = ...)
1867           } // if( off->is_Con() )
1868         }   // if( mem_op &&
1869         mstack.push(m, Pre_Visit);
1870       }     // for(int i = ...)
1871     }
1872     else if (nstate == Alt_Post_Visit) {
1873       mstack.pop(); // Remove node from stack
1874       // We cannot remove the Cmp input from the Bool here, as the Bool may be
1875       // shared and all users of the Bool need to move the Cmp in parallel.
1876       // This leaves both the Bool and the If pointing at the Cmp.  To
1877       // prevent the Matcher from trying to Match the Cmp along both paths
1878       // BoolNode::match_edge always returns a zero.
1879 
1880       // We reorder the Op_If in a pre-order manner, so we can visit without
1881       // accidently sharing the Cmp (the Bool and the If make 2 users).
1882       n->add_req( n->in(1)->in(1) ); // Add the Cmp next to the Bool
1883     }
1884     else if (nstate == Post_Visit) {
1885       mstack.pop(); // Remove node from stack
1886 
1887       // Now hack a few special opcodes
1888       switch( n->Opcode() ) {       // Handle some opcodes special
1889       case Op_StorePConditional:
1890       case Op_StoreLConditional:
1891       case Op_CompareAndSwapI:
1892       case Op_CompareAndSwapL:
1893       case Op_CompareAndSwapP:
1894       case Op_CompareAndSwapN: {   // Convert trinary to binary-tree
1895         Node *newval = n->in(MemNode::ValueIn );
1896         Node *oldval  = n->in(LoadStoreNode::ExpectedIn);
1897         Node *pair = new (C, 3) BinaryNode( oldval, newval );
1898         n->set_req(MemNode::ValueIn,pair);
1899         n->del_req(LoadStoreNode::ExpectedIn);
1900         break;
1901       }
1902       case Op_CMoveD:              // Convert trinary to binary-tree
1903       case Op_CMoveF:
1904       case Op_CMoveI:
1905       case Op_CMoveL:
1906       case Op_CMoveN:
1907       case Op_CMoveP: {
1908         // Restructure into a binary tree for Matching.  It's possible that
1909         // we could move this code up next to the graph reshaping for IfNodes
1910         // or vice-versa, but I do not want to debug this for Ladybird.
1911         // 10/2/2000 CNC.
1912         Node *pair1 = new (C, 3) BinaryNode(n->in(1),n->in(1)->in(1));
1913         n->set_req(1,pair1);
1914         Node *pair2 = new (C, 3) BinaryNode(n->in(2),n->in(3));
1915         n->set_req(2,pair2);
1916         n->del_req(3);
1917         break;
1918       }
1919       default:
1920         break;
1921       }
1922     }
1923     else {
1924       ShouldNotReachHere();
1925     }
1926   } // end of while (mstack.is_nonempty())
1927 }
1928 
1929 #ifdef ASSERT
1930 // machine-independent root to machine-dependent root
1931 void Matcher::dump_old2new_map() {
1932   _old2new_map.dump();
1933 }
1934 #endif
1935 
1936 //---------------------------collect_null_checks-------------------------------
1937 // Find null checks in the ideal graph; write a machine-specific node for
1938 // it.  Used by later implicit-null-check handling.  Actually collects
1939 // either an IfTrue or IfFalse for the common NOT-null path, AND the ideal
1940 // value being tested.
1941 void Matcher::collect_null_checks( Node *proj ) {
1942   Node *iff = proj->in(0);
1943   if( iff->Opcode() == Op_If ) {
1944     // During matching If's have Bool & Cmp side-by-side
1945     BoolNode *b = iff->in(1)->as_Bool();
1946     Node *cmp = iff->in(2);
1947     int opc = cmp->Opcode();
1948     if (opc != Op_CmpP && opc != Op_CmpN) return;
1949 
1950     const Type* ct = cmp->in(2)->bottom_type();
1951     if (ct == TypePtr::NULL_PTR ||
1952         (opc == Op_CmpN && ct == TypeNarrowOop::NULL_PTR)) {
1953 
1954       if( proj->Opcode() == Op_IfTrue ) {
1955         extern int all_null_checks_found;
1956         all_null_checks_found++;
1957         if( b->_test._test == BoolTest::ne ) {
1958           _null_check_tests.push(proj);
1959           _null_check_tests.push(cmp->in(1));
1960         }
1961       } else {
1962         assert( proj->Opcode() == Op_IfFalse, "" );
1963         if( b->_test._test == BoolTest::eq ) {
1964           _null_check_tests.push(proj);
1965           _null_check_tests.push(cmp->in(1));
1966         }
1967       }
1968     }
1969   }
1970 }
1971 
1972 //---------------------------validate_null_checks------------------------------
1973 // Its possible that the value being NULL checked is not the root of a match
1974 // tree.  If so, I cannot use the value in an implicit null check.
1975 void Matcher::validate_null_checks( ) {
1976   uint cnt = _null_check_tests.size();
1977   for( uint i=0; i < cnt; i+=2 ) {
1978     Node *test = _null_check_tests[i];
1979     Node *val = _null_check_tests[i+1];
1980     if (has_new_node(val)) {
1981       // Is a match-tree root, so replace with the matched value
1982       _null_check_tests.map(i+1, new_node(val));
1983     } else {
1984       // Yank from candidate list
1985       _null_check_tests.map(i+1,_null_check_tests[--cnt]);
1986       _null_check_tests.map(i,_null_check_tests[--cnt]);
1987       _null_check_tests.pop();
1988       _null_check_tests.pop();
1989       i-=2;
1990     }
1991   }
1992 }
1993 
1994 
1995 // Used by the DFA in dfa_sparc.cpp.  Check for a prior FastLock
1996 // acting as an Acquire and thus we don't need an Acquire here.  We
1997 // retain the Node to act as a compiler ordering barrier.
1998 bool Matcher::prior_fast_lock( const Node *acq ) {
1999   Node *r = acq->in(0);
2000   if( !r->is_Region() || r->req() <= 1 ) return false;
2001   Node *proj = r->in(1);
2002   if( !proj->is_Proj() ) return false;
2003   Node *call = proj->in(0);
2004   if( !call->is_Call() || call->as_Call()->entry_point() != OptoRuntime::complete_monitor_locking_Java() )
2005     return false;
2006 
2007   return true;
2008 }
2009 
2010 // Used by the DFA in dfa_sparc.cpp.  Check for a following FastUnLock
2011 // acting as a Release and thus we don't need a Release here.  We
2012 // retain the Node to act as a compiler ordering barrier.
2013 bool Matcher::post_fast_unlock( const Node *rel ) {
2014   Compile *C = Compile::current();
2015   assert( rel->Opcode() == Op_MemBarRelease, "" );
2016   const MemBarReleaseNode *mem = (const MemBarReleaseNode*)rel;
2017   DUIterator_Fast imax, i = mem->fast_outs(imax);
2018   Node *ctrl = NULL;
2019   while( true ) {
2020     ctrl = mem->fast_out(i);            // Throw out-of-bounds if proj not found
2021     assert( ctrl->is_Proj(), "only projections here" );
2022     ProjNode *proj = (ProjNode*)ctrl;
2023     if( proj->_con == TypeFunc::Control &&
2024         !C->node_arena()->contains(ctrl) ) // Unmatched old-space only
2025       break;
2026     i++;
2027   }
2028   Node *iff = NULL;
2029   for( DUIterator_Fast jmax, j = ctrl->fast_outs(jmax); j < jmax; j++ ) {
2030     Node *x = ctrl->fast_out(j);
2031     if( x->is_If() && x->req() > 1 &&
2032         !C->node_arena()->contains(x) ) { // Unmatched old-space only
2033       iff = x;
2034       break;
2035     }
2036   }
2037   if( !iff ) return false;
2038   Node *bol = iff->in(1);
2039   // The iff might be some random subclass of If or bol might be Con-Top
2040   if (!bol->is_Bool())  return false;
2041   assert( bol->req() > 1, "" );
2042   return (bol->in(1)->Opcode() == Op_FastUnlock);
2043 }
2044 
2045 // Used by the DFA in dfa_xxx.cpp.  Check for a following barrier or
2046 // atomic instruction acting as a store_load barrier without any
2047 // intervening volatile load, and thus we don't need a barrier here.
2048 // We retain the Node to act as a compiler ordering barrier.
2049 bool Matcher::post_store_load_barrier(const Node *vmb) {
2050   Compile *C = Compile::current();
2051   assert( vmb->is_MemBar(), "" );
2052   assert( vmb->Opcode() != Op_MemBarAcquire, "" );
2053   const MemBarNode *mem = (const MemBarNode*)vmb;
2054 
2055   // Get the Proj node, ctrl, that can be used to iterate forward
2056   Node *ctrl = NULL;
2057   DUIterator_Fast imax, i = mem->fast_outs(imax);
2058   while( true ) {
2059     ctrl = mem->fast_out(i);            // Throw out-of-bounds if proj not found
2060     assert( ctrl->is_Proj(), "only projections here" );
2061     ProjNode *proj = (ProjNode*)ctrl;
2062     if( proj->_con == TypeFunc::Control &&
2063         !C->node_arena()->contains(ctrl) ) // Unmatched old-space only
2064       break;
2065     i++;
2066   }
2067 
2068   for( DUIterator_Fast jmax, j = ctrl->fast_outs(jmax); j < jmax; j++ ) {
2069     Node *x = ctrl->fast_out(j);
2070     int xop = x->Opcode();
2071 
2072     // We don't need current barrier if we see another or a lock
2073     // before seeing volatile load.
2074     //
2075     // Op_Fastunlock previously appeared in the Op_* list below.
2076     // With the advent of 1-0 lock operations we're no longer guaranteed
2077     // that a monitor exit operation contains a serializing instruction.
2078 
2079     if (xop == Op_MemBarVolatile ||
2080         xop == Op_FastLock ||
2081         xop == Op_CompareAndSwapL ||
2082         xop == Op_CompareAndSwapP ||
2083         xop == Op_CompareAndSwapN ||
2084         xop == Op_CompareAndSwapI)
2085       return true;
2086 
2087     if (x->is_MemBar()) {
2088       // We must retain this membar if there is an upcoming volatile
2089       // load, which will be preceded by acquire membar.
2090       if (xop == Op_MemBarAcquire)
2091         return false;
2092       // For other kinds of barriers, check by pretending we
2093       // are them, and seeing if we can be removed.
2094       else
2095         return post_store_load_barrier((const MemBarNode*)x);
2096     }
2097 
2098     // Delicate code to detect case of an upcoming fastlock block
2099     if( x->is_If() && x->req() > 1 &&
2100         !C->node_arena()->contains(x) ) { // Unmatched old-space only
2101       Node *iff = x;
2102       Node *bol = iff->in(1);
2103       // The iff might be some random subclass of If or bol might be Con-Top
2104       if (!bol->is_Bool())  return false;
2105       assert( bol->req() > 1, "" );
2106       return (bol->in(1)->Opcode() == Op_FastUnlock);
2107     }
2108     // probably not necessary to check for these
2109     if (x->is_Call() || x->is_SafePoint() || x->is_block_proj())
2110       return false;
2111   }
2112   return false;
2113 }
2114 
2115 //=============================================================================
2116 //---------------------------State---------------------------------------------
2117 State::State(void) {
2118 #ifdef ASSERT
2119   _id = 0;
2120   _kids[0] = _kids[1] = (State*)(intptr_t) CONST64(0xcafebabecafebabe);
2121   _leaf = (Node*)(intptr_t) CONST64(0xbaadf00dbaadf00d);
2122   //memset(_cost, -1, sizeof(_cost));
2123   //memset(_rule, -1, sizeof(_rule));
2124 #endif
2125   memset(_valid, 0, sizeof(_valid));
2126 }
2127 
2128 #ifdef ASSERT
2129 State::~State() {
2130   _id = 99;
2131   _kids[0] = _kids[1] = (State*)(intptr_t) CONST64(0xcafebabecafebabe);
2132   _leaf = (Node*)(intptr_t) CONST64(0xbaadf00dbaadf00d);
2133   memset(_cost, -3, sizeof(_cost));
2134   memset(_rule, -3, sizeof(_rule));
2135 }
2136 #endif
2137 
2138 #ifndef PRODUCT
2139 //---------------------------dump----------------------------------------------
2140 void State::dump() {
2141   tty->print("\n");
2142   dump(0);
2143 }
2144 
2145 void State::dump(int depth) {
2146   for( int j = 0; j < depth; j++ )
2147     tty->print("   ");
2148   tty->print("--N: ");
2149   _leaf->dump();
2150   uint i;
2151   for( i = 0; i < _LAST_MACH_OPER; i++ )
2152     // Check for valid entry
2153     if( valid(i) ) {
2154       for( int j = 0; j < depth; j++ )
2155         tty->print("   ");
2156         assert(_cost[i] != max_juint, "cost must be a valid value");
2157         assert(_rule[i] < _last_Mach_Node, "rule[i] must be valid rule");
2158         tty->print_cr("%s  %d  %s",
2159                       ruleName[i], _cost[i], ruleName[_rule[i]] );
2160       }
2161   tty->print_cr("");
2162 
2163   for( i=0; i<2; i++ )
2164     if( _kids[i] )
2165       _kids[i]->dump(depth+1);
2166 }
2167 #endif