src/hotspot/share/opto/callnode.cpp
author roland
Thu, 08 Nov 2018 10:08:52 +0100
changeset 52449 bac05440d98c
parent 51333 f6641fcf7b7e
child 52472 60064c7527f4
permissions -rw-r--r--
8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance" Reviewed-by: thartmann, kvn, shade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 47216
diff changeset
     2
 * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4450
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4450
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4450
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    25
#include "precompiled.hpp"
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
    26
#include "compiler/compileLog.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    27
#include "ci/bcEscapeAnalyzer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    28
#include "compiler/oopMap.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 48976
diff changeset
    29
#include "interpreter/interpreter.hpp"
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
    30
#include "opto/callGenerator.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    31
#include "opto/callnode.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 22872
diff changeset
    32
#include "opto/castnode.hpp"
28396
7fe4347e6792 6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents: 28202
diff changeset
    33
#include "opto/convertnode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    34
#include "opto/escape.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    35
#include "opto/locknode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    36
#include "opto/machnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    37
#include "opto/matcher.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    38
#include "opto/parse.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    39
#include "opto/regalloc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    40
#include "opto/regmask.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    41
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    42
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5914
diff changeset
    43
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Portions of code courtesy of Clifford Click
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// Optimization - Graph Style
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
uint StartNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
uint StartNode::cmp( const Node &n ) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
{ return _domain == ((StartNode&)n)._domain; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
const Type *StartNode::bottom_type() const { return _domain; }
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35157
diff changeset
    53
const Type* StartNode::Value(PhaseGVN* phase) const { return _domain; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
void StartNode::dump_spec(outputStream *st) const { st->print(" #"); _domain->dump_on(st);}
32084
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
    56
void StartNode::dump_compact_spec(outputStream *st) const { /* empty */ }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//------------------------------Ideal------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
Node *StartNode::Ideal(PhaseGVN *phase, bool can_reshape){
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  return remove_dead_region(phase, can_reshape) ? this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
//------------------------------calling_convention-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
void StartNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  Matcher::calling_convention( sig_bt, parm_regs, argcnt, false );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
//------------------------------Registers--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
const RegMask &StartNode::in_RegMask(uint) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  return RegMask::Empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
//------------------------------match------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// Construct projections for incoming parameters, and their RegMask info
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
Node *StartNode::match( const ProjNode *proj, const Matcher *match ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  switch (proj->_con) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  case TypeFunc::Control:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  case TypeFunc::I_O:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  case TypeFunc::Memory:
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
    81
    return new MachProjNode(this,proj->_con,RegMask::Empty,MachProjNode::unmatched_proj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  case TypeFunc::FramePtr:
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
    83
    return new MachProjNode(this,proj->_con,Matcher::c_frame_ptr_mask, Op_RegP);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  case TypeFunc::ReturnAdr:
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
    85
    return new MachProjNode(this,proj->_con,match->_return_addr_mask,Op_RegP);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  case TypeFunc::Parms:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  default: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      uint parm_num = proj->_con - TypeFunc::Parms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      const Type *t = _domain->field_at(proj->_con);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
      if (t->base() == Type::Half)  // 2nd half of Longs and Doubles
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
    91
        return new ConNode(Type::TOP);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    92
      uint ideal_reg = t->ideal_reg();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      RegMask &rm = match->_calling_convention_mask[parm_num];
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
    94
      return new MachProjNode(this,proj->_con,rm,ideal_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
//------------------------------StartOSRNode----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// The method start node for an on stack replacement adapter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
//------------------------------osr_domain-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
const TypeTuple *StartOSRNode::osr_domain() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  const Type **fields = TypeTuple::fields(2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM;  // address of osr buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  return TypeTuple::make(TypeFunc::Parms+1, fields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
const char * const ParmNode::names[TypeFunc::Parms+1] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  "Control", "I_O", "Memory", "FramePtr", "ReturnAdr", "Parms"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
void ParmNode::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  if( _con < TypeFunc::Parms ) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
   119
    st->print("%s", names[_con]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    st->print("Parm%d: ",_con-TypeFunc::Parms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    // Verbose and WizardMode dump bottom_type for all nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    if( !Verbose && !WizardMode )   bottom_type()->dump_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
32084
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   126
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   127
void ParmNode::dump_compact_spec(outputStream *st) const {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   128
  if (_con < TypeFunc::Parms) {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   129
    st->print("%s", names[_con]);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   130
  } else {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   131
    st->print("%d:", _con-TypeFunc::Parms);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   132
    // unconditionally dump bottom_type
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   133
    bottom_type()->dump_on(st);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   134
  }
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   135
}
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   136
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   137
// For a ParmNode, all immediate inputs and outputs are considered relevant
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   138
// both in compact and standard representation.
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   139
void ParmNode::related(GrowableArray<Node*> *in_rel, GrowableArray<Node*> *out_rel, bool compact) const {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   140
  this->collect_nodes(in_rel, 1, false, false);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   141
  this->collect_nodes(out_rel, -1, false, false);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   142
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
uint ParmNode::ideal_reg() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  switch( _con ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  case TypeFunc::Control  : // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  case TypeFunc::I_O      : // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  case TypeFunc::Memory   : return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  case TypeFunc::FramePtr : // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  case TypeFunc::ReturnAdr: return Op_RegP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  default                 : assert( _con > TypeFunc::Parms, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  case TypeFunc::Parms    : {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    // Type of argument being passed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    const Type *t = in(0)->as_Start()->_domain->field_at(_con);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   157
    return t->ideal_reg();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
ReturnNode::ReturnNode(uint edges, Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *retadr ) : Node(edges) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  init_req(TypeFunc::Control,cntrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  init_req(TypeFunc::I_O,i_o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  init_req(TypeFunc::Memory,memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  init_req(TypeFunc::FramePtr,frameptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  init_req(TypeFunc::ReturnAdr,retadr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
Node *ReturnNode::Ideal(PhaseGVN *phase, bool can_reshape){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  return remove_dead_region(phase, can_reshape) ? this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35157
diff changeset
   177
const Type* ReturnNode::Value(PhaseGVN* phase) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  return ( phase->type(in(TypeFunc::Control)) == Type::TOP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    ? Type::TOP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    : Type::BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
// Do we Match on this edge index or not?  No edges on return nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
uint ReturnNode::match_edge(uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
#ifndef PRODUCT
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   190
void ReturnNode::dump_req(outputStream *st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // Dump the required inputs, enclosed in '(' and ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  uint i;                       // Exit value of loop
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   193
  for (i = 0; i < req(); i++) {    // For all required inputs
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   194
    if (i == TypeFunc::Parms) st->print("returns");
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   195
    if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   196
    else st->print("_ ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
RethrowNode::RethrowNode(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  Node* cntrl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  Node* i_o,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  Node* memory,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  Node* frameptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  Node* ret_adr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  Node* exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
) : Node(TypeFunc::Parms + 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  init_req(TypeFunc::Control  , cntrl    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  init_req(TypeFunc::I_O      , i_o      );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  init_req(TypeFunc::Memory   , memory   );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  init_req(TypeFunc::FramePtr , frameptr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  init_req(TypeFunc::ReturnAdr, ret_adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  init_req(TypeFunc::Parms    , exception);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
Node *RethrowNode::Ideal(PhaseGVN *phase, bool can_reshape){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  return remove_dead_region(phase, can_reshape) ? this : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35157
diff changeset
   222
const Type* RethrowNode::Value(PhaseGVN* phase) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  return (phase->type(in(TypeFunc::Control)) == Type::TOP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    ? Type::TOP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    : Type::BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
uint RethrowNode::match_edge(uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
#ifndef PRODUCT
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   233
void RethrowNode::dump_req(outputStream *st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Dump the required inputs, enclosed in '(' and ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  uint i;                       // Exit value of loop
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   236
  for (i = 0; i < req(); i++) {    // For all required inputs
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   237
    if (i == TypeFunc::Parms) st->print("exception");
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   238
    if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   239
    else st->print("_ ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
// Do we Match on this edge index or not?  Match only target address & method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
uint TailCallNode::match_edge(uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  return TypeFunc::Parms <= idx  &&  idx <= TypeFunc::Parms+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// Do we Match on this edge index or not?  Match only target address & oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
uint TailJumpNode::match_edge(uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  return TypeFunc::Parms <= idx  &&  idx <= TypeFunc::Parms+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
//=============================================================================
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12158
diff changeset
   257
JVMState::JVMState(ciMethod* method, JVMState* caller) :
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12158
diff changeset
   258
  _method(method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  assert(method != NULL, "must be valid call site");
38658
34f9c45625d8 8140594: Various minor code improvements (compiler)
goetz
parents: 36611
diff changeset
   260
  _bci = InvocationEntryBci;
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   261
  _reexecute = Reexecute_Undefined;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  debug_only(_bci = -99);  // random garbage value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  debug_only(_map = (SafePointNode*)-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  _caller = caller;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  _depth  = 1 + (caller == NULL ? 0 : caller->depth());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  _locoff = TypeFunc::Parms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  _stkoff = _locoff + _method->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  _monoff = _stkoff + _method->max_stack();
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   269
  _scloff = _monoff;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  _endoff = _monoff;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  _sp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
}
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12158
diff changeset
   273
JVMState::JVMState(int stack_size) :
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12158
diff changeset
   274
  _method(NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  _bci = InvocationEntryBci;
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   276
  _reexecute = Reexecute_Undefined;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  debug_only(_map = (SafePointNode*)-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  _caller = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  _depth  = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  _locoff = TypeFunc::Parms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  _stkoff = _locoff;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  _monoff = _stkoff + stack_size;
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   283
  _scloff = _monoff;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  _endoff = _monoff;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  _sp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
//--------------------------------of_depth-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
JVMState* JVMState::of_depth(int d) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  const JVMState* jvmp = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  assert(0 < d && (uint)d <= depth(), "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  for (int skip = depth() - d; skip > 0; skip--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    jvmp = jvmp->caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  assert(jvmp->depth() == (uint)d, "found the right one");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  return (JVMState*)jvmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
//-----------------------------same_calls_as-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
bool JVMState::same_calls_as(const JVMState* that) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  if (this == that)                    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  if (this->depth() != that->depth())  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  const JVMState* p = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  const JVMState* q = that;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  for (;;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    if (p->_method != q->_method)    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    if (p->_method == NULL)          return true;   // bci is irrelevant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    if (p->_bci    != q->_bci)       return false;
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   309
    if (p->_reexecute != q->_reexecute)  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    p = p->caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    q = q->caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    if (p == q)                      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    assert(p != NULL && q != NULL, "depth check ensures we don't run off end");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
//------------------------------debug_start------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
uint JVMState::debug_start()  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  debug_only(JVMState* jvmroot = of_depth(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  assert(jvmroot->locoff() <= this->locoff(), "youngest JVMState must be last");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  return of_depth(1)->locoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
//-------------------------------debug_end-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
uint JVMState::debug_end() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  debug_only(JVMState* jvmroot = of_depth(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  assert(jvmroot->endoff() <= this->endoff(), "youngest JVMState must be last");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  return endoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
//------------------------------debug_depth------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
uint JVMState::debug_depth() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  uint total = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  for (const JVMState* jvmp = this; jvmp != NULL; jvmp = jvmp->caller()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    total += jvmp->debug_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  return total;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   340
#ifndef PRODUCT
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   341
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
//------------------------------format_helper----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
// Given an allocation (a Chaitin object) and a Node decide if the Node carries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
// any defined value or not.  If it does, print out the register or constant.
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   345
static void format_helper( PhaseRegAlloc *regalloc, outputStream* st, Node *n, const char *msg, uint i, GrowableArray<SafePointScalarObjectNode*> *scobjs ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  if (n == NULL) { st->print(" NULL"); return; }
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   347
  if (n->is_SafePointScalarObject()) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   348
    // Scalar replacement.
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   349
    SafePointScalarObjectNode* spobj = n->as_SafePointScalarObject();
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   350
    scobjs->append_if_missing(spobj);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   351
    int sco_n = scobjs->find(spobj);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   352
    assert(sco_n >= 0, "");
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   353
    st->print(" %s%d]=#ScObj" INT32_FORMAT, msg, i, sco_n);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   354
    return;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   355
  }
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   356
  if (regalloc->node_regs_max_index() > 0 &&
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   357
      OptoReg::is_valid(regalloc->get_reg_first(n))) { // Check for undefined
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    char buf[50];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    regalloc->dump_register(n,buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    st->print(" %s%d]=%s",msg,i,buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  } else {                      // No register, but might be constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    const Type *t = n->bottom_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    switch (t->base()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    case Type::Int:
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31044
diff changeset
   365
      st->print(" %s%d]=#" INT32_FORMAT,msg,i,t->is_int()->get_con());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    case Type::AnyPtr:
22854
2787e48d6df9 8029025: PPC64 (part 203): opto: Move static _in_dump_cnt to Compile object.
goetz
parents: 19708
diff changeset
   368
      assert( t == TypePtr::NULL_PTR || n->in_dump(), "" );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      st->print(" %s%d]=#NULL",msg,i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    case Type::AryPtr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    case Type::InstPtr:
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
   373
      st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->isa_oopptr()->const_oop()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
      break;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   375
    case Type::KlassPtr:
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
   376
      st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_klassptr()->klass()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   377
      break;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   378
    case Type::MetadataPtr:
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
   379
      st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_metadataptr()->metadata()));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   380
      break;
1135
9487203e5789 6706829: Compressed Oops: add debug info for narrow oops
kvn
parents: 1067
diff changeset
   381
    case Type::NarrowOop:
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
   382
      st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_oopptr()->const_oop()));
1135
9487203e5789 6706829: Compressed Oops: add debug info for narrow oops
kvn
parents: 1067
diff changeset
   383
      break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    case Type::RawPtr:
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
   385
      st->print(" %s%d]=#Raw" INTPTR_FORMAT,msg,i,p2i(t->is_rawptr()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    case Type::DoubleCon:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
      st->print(" %s%d]=#%fD",msg,i,t->is_double_constant()->_d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    case Type::FloatCon:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
      st->print(" %s%d]=#%fF",msg,i,t->is_float_constant()->_f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    case Type::Long:
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 31044
diff changeset
   394
      st->print(" %s%d]=#" INT64_FORMAT,msg,i,(int64_t)(t->is_long()->get_con()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    case Type::Half:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    case Type::Top:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
      st->print(" %s%d]=_",msg,i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
//------------------------------format-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
void JVMState::format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  st->print("        #");
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   408
  if (_method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    _method->print_short_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    st->print(" @ bci:%d ",_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    st->print_cr(" runtime stub ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  if (n->is_MachSafePoint()) {
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   416
    GrowableArray<SafePointScalarObjectNode*> scobjs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    MachSafePointNode *mcall = n->as_MachSafePoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    uint i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    // Print locals
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   420
    for (i = 0; i < (uint)loc_size(); i++)
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   421
      format_helper(regalloc, st, mcall->local(this, i), "L[", i, &scobjs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    // Print stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    for (i = 0; i < (uint)stk_size(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      if ((uint)(_stkoff + i) >= mcall->len())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
        st->print(" oob ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      else
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   427
       format_helper(regalloc, st, mcall->stack(this, i), "STK[", i, &scobjs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    for (i = 0; (int)i < nof_monitors(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
      Node *box = mcall->monitor_box(this, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
      Node *obj = mcall->monitor_obj(this, i);
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   432
      if (regalloc->node_regs_max_index() > 0 &&
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   433
          OptoReg::is_valid(regalloc->get_reg_first(box))) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
   434
        box = BoxLockNode::box_node(box);
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   435
        format_helper(regalloc, st, box, "MON-BOX[", i, &scobjs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
      } else {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
   437
        OptoReg::Name box_reg = BoxLockNode::reg(box);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
        st->print(" MON-BOX%d=%s+%d",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
                   i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
                   OptoReg::regname(OptoReg::c_frame_pointer),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
                   regalloc->reg2offset(box_reg));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
      }
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   443
      const char* obj_msg = "MON-OBJ[";
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   444
      if (EliminateLocks) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
   445
        if (BoxLockNode::box_node(box)->is_eliminated())
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   446
          obj_msg = "MON-OBJ(LOCK ELIMINATED)[";
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   447
      }
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   448
      format_helper(regalloc, st, obj, obj_msg, i, &scobjs);
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   449
    }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   450
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   451
    for (i = 0; i < (uint)scobjs.length(); i++) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   452
      // Scalar replaced objects.
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
   453
      st->cr();
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   454
      st->print("        # ScObj" INT32_FORMAT " ", i);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   455
      SafePointScalarObjectNode* spobj = scobjs.at(i);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   456
      ciKlass* cik = spobj->bottom_type()->is_oopptr()->klass();
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   457
      assert(cik->is_instance_klass() ||
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   458
             cik->is_array_klass(), "Not supported allocation.");
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   459
      ciInstanceKlass *iklass = NULL;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   460
      if (cik->is_instance_klass()) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   461
        cik->print_name_on(st);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   462
        iklass = cik->as_instance_klass();
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   463
      } else if (cik->is_type_array_klass()) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   464
        cik->as_array_klass()->base_element_type()->print_name_on(st);
4095
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   465
        st->print("[%d]", spobj->n_fields());
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   466
      } else if (cik->is_obj_array_klass()) {
4095
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   467
        ciKlass* cie = cik->as_obj_array_klass()->base_element_klass();
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   468
        if (cie->is_instance_klass()) {
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   469
          cie->print_name_on(st);
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   470
        } else if (cie->is_type_array_klass()) {
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   471
          cie->as_array_klass()->base_element_type()->print_name_on(st);
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   472
        } else {
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   473
          ShouldNotReachHere();
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   474
        }
4095
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   475
        st->print("[%d]", spobj->n_fields());
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   476
        int ndim = cik->as_array_klass()->dimension() - 1;
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   477
        while (ndim-- > 0) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   478
          st->print("[]");
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   479
        }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   480
      }
4095
6e0acfda1d47 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 3686
diff changeset
   481
      st->print("={");
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   482
      uint nf = spobj->n_fields();
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   483
      if (nf > 0) {
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
   484
        uint first_ind = spobj->first_index(mcall->jvms());
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   485
        Node* fld_node = mcall->in(first_ind);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   486
        ciField* cifield;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   487
        if (iklass != NULL) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   488
          st->print(" [");
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   489
          cifield = iklass->nonstatic_field_at(0);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   490
          cifield->print_name_on(st);
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   491
          format_helper(regalloc, st, fld_node, ":", 0, &scobjs);
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   492
        } else {
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   493
          format_helper(regalloc, st, fld_node, "[", 0, &scobjs);
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   494
        }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   495
        for (uint j = 1; j < nf; j++) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   496
          fld_node = mcall->in(first_ind+j);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   497
          if (iklass != NULL) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   498
            st->print(", [");
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   499
            cifield = iklass->nonstatic_field_at(j);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   500
            cifield->print_name_on(st);
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   501
            format_helper(regalloc, st, fld_node, ":", j, &scobjs);
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   502
          } else {
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   503
            format_helper(regalloc, st, fld_node, ", [", j, &scobjs);
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   504
          }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   505
        }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   506
      }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   507
      st->print(" }");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
   510
  st->cr();
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   511
  if (caller() != NULL) caller()->format(regalloc, n, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   514
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
void JVMState::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  if (_method != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    bool printed = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    if (!Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
      // The JVMS dumps make really, really long lines.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
      // Take out the most boring parts, which are the package prefixes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
      char buf[500];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      stringStream namest(buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
      _method->print_short_name(&namest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
      if (namest.count() < sizeof(buf)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
        const char* name = namest.base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
        if (name[0] == ' ')  ++name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
        const char* endcn = strchr(name, ':');  // end of class name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
        if (endcn == NULL)  endcn = strchr(name, '(');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
        if (endcn == NULL)  endcn = name + strlen(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
        while (endcn > name && endcn[-1] != '.' && endcn[-1] != '/')
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
          --endcn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
        st->print(" %s", endcn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
        printed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    if (!printed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
      _method->print_short_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    st->print(" @ bci:%d",_bci);
3686
69c1b5228547 6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents: 3603
diff changeset
   539
    if(_reexecute == Reexecute_True)
69c1b5228547 6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents: 3603
diff changeset
   540
      st->print(" reexecute");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    st->print(" runtime stub");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  if (caller() != NULL)  caller()->dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   547
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
void JVMState::dump_on(outputStream* st) const {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   549
  bool print_map = _map && !((uintptr_t)_map & 1) &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   550
                  ((caller() == NULL) || (caller()->map() != _map));
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   551
  if (print_map) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    if (_map->len() > _map->req()) {  // _map->has_exceptions()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      Node* ex = _map->in(_map->req());  // _map->next_exception()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      // skip the first one; it's already being printed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      while (ex != NULL && ex->len() > ex->req()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
        ex = ex->in(ex->req());  // ex->next_exception()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
        ex->dump(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    }
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   560
    _map->dump(Verbose ? 2 : 1);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   561
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   562
  if (caller() != NULL) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   563
    caller()->dump_on(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12158
diff changeset
   565
  st->print("JVMS depth=%d loc=%d stk=%d arg=%d mon=%d scalar=%d end=%d mondepth=%d sp=%d bci=%d reexecute=%s method=",
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12158
diff changeset
   566
             depth(), locoff(), stkoff(), argoff(), monoff(), scloff(), endoff(), monitor_depth(), sp(), bci(), should_reexecute()?"true":"false");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  if (_method == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    st->print_cr("(none)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    _method->print_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    if (bci() >= 0 && bci() < _method->code_size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      st->print("    bc: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
      _method->print_codes_on(bci(), bci()+1, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
// Extra way to dump a jvms from the debugger,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
// to avoid a bug with C++ member function calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
void dump_jvms(JVMState* jvms) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  jvms->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
//--------------------------clone_shallow--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
JVMState* JVMState::clone_shallow(Compile* C) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  JVMState* n = has_method() ? new (C) JVMState(_method, _caller) : new (C) JVMState(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  n->set_bci(_bci);
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   590
  n->_reexecute = _reexecute;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  n->set_locoff(_locoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  n->set_stkoff(_stkoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  n->set_monoff(_monoff);
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   594
  n->set_scloff(_scloff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  n->set_endoff(_endoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  n->set_sp(_sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  n->set_map(_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  return n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
//---------------------------clone_deep----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
JVMState* JVMState::clone_deep(Compile* C) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  JVMState* n = clone_shallow(C);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  for (JVMState* p = n; p->_caller != NULL; p = p->_caller) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    p->_caller = p->_caller->clone_shallow(C);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  assert(n->depth() == depth(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  assert(n->debug_depth() == debug_depth(), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  return n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   612
/**
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   613
 * Reset map for all callers
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   614
 */
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   615
void JVMState::set_map_deep(SafePointNode* map) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   616
  for (JVMState* p = this; p->_caller != NULL; p = p->_caller) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   617
    p->set_map(map);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   618
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   619
}
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   620
22865
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   621
// Adapt offsets in in-array after adding or removing an edge.
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   622
// Prerequisite is that the JVMState is used by only one node.
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   623
void JVMState::adapt_position(int delta) {
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   624
  for (JVMState* jvms = this; jvms != NULL; jvms = jvms->caller()) {
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   625
    jvms->set_locoff(jvms->locoff() + delta);
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   626
    jvms->set_stkoff(jvms->stkoff() + delta);
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   627
    jvms->set_monoff(jvms->monoff() + delta);
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   628
    jvms->set_scloff(jvms->scloff() + delta);
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   629
    jvms->set_endoff(jvms->endoff() + delta);
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   630
  }
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   631
}
3b8857d7b3cc 8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents: 22854
diff changeset
   632
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   633
// Mirror the stack size calculation in the deopt code
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   634
// How much stack space would we need at this point in the program in
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   635
// case of deoptimization?
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   636
int JVMState::interpreter_frame_size() const {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   637
  const JVMState* jvms = this;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   638
  int size = 0;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   639
  int callee_parameters = 0;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   640
  int callee_locals = 0;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   641
  int extra_args = method()->max_stack() - stk_size();
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   642
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   643
  while (jvms != NULL) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   644
    int locks = jvms->nof_monitors();
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   645
    int temps = jvms->stk_size();
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   646
    bool is_top_frame = (jvms == this);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   647
    ciMethod* method = jvms->method();
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   648
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   649
    int frame_size = BytesPerWord * Interpreter::size_activation(method->max_stack(),
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   650
                                                                 temps + callee_parameters,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   651
                                                                 extra_args,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   652
                                                                 locks,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   653
                                                                 callee_parameters,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   654
                                                                 callee_locals,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   655
                                                                 is_top_frame);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   656
    size += frame_size;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   657
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   658
    callee_parameters = method->size_of_parameters();
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   659
    callee_locals = method->max_locals();
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   660
    extra_args = 0;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   661
    jvms = jvms->caller();
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   662
  }
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   663
  return size + Deoptimization::last_frame_adjust(0, callee_locals) * BytesPerWord;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   664
}
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23528
diff changeset
   665
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
uint CallNode::cmp( const Node &n ) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
{ return _tf == ((CallNode&)n)._tf && _jvms == ((CallNode&)n)._jvms; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
#ifndef PRODUCT
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   670
void CallNode::dump_req(outputStream *st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  // Dump the required inputs, enclosed in '(' and ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  uint i;                       // Exit value of loop
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   673
  for (i = 0; i < req(); i++) {    // For all required inputs
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   674
    if (i == TypeFunc::Parms) st->print("(");
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   675
    if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   676
    else st->print("_ ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  }
15241
87d217c2d183 8005055: pass outputStream to more opto debug routines
kvn
parents: 15113
diff changeset
   678
  st->print(")");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
void CallNode::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  st->print(" ");
28202
3518158ff5d0 8067338: compiler/debug/TraceIterativeGVN.java segfaults
vlivanov
parents: 27422
diff changeset
   683
  if (tf() != NULL)  tf()->dump_on(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  if (_cnt != COUNT_UNKNOWN)  st->print(" C=%f",_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  if (jvms() != NULL)  jvms()->dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
const Type *CallNode::bottom_type() const { return tf()->range(); }
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35157
diff changeset
   690
const Type* CallNode::Value(PhaseGVN* phase) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  if (phase->type(in(0)) == Type::TOP)  return Type::TOP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  return tf()->range();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
//------------------------------calling_convention-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
void CallNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  // Use the standard compiler calling convention
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  Matcher::calling_convention( sig_bt, parm_regs, argcnt, true );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
//------------------------------match------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
// Construct projections for control, I/O, memory-fields, ..., and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
// return result(s) along with their RegMask info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
Node *CallNode::match( const ProjNode *proj, const Matcher *match ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  switch (proj->_con) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  case TypeFunc::Control:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  case TypeFunc::I_O:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  case TypeFunc::Memory:
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
   710
    return new MachProjNode(this,proj->_con,RegMask::Empty,MachProjNode::unmatched_proj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  case TypeFunc::Parms+1:       // For LONG & DOUBLE returns
25911
d47a5d9c5b89 8050860: Cleanup TypeTuple and TypeFunc
anoll
parents: 24946
diff changeset
   713
    assert(tf()->range()->field_at(TypeFunc::Parms+1) == Type::HALF, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    // 2nd half of doubles and longs
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
   715
    return new MachProjNode(this,proj->_con, RegMask::Empty, (uint)OptoReg::Bad);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  case TypeFunc::Parms: {       // Normal returns
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   718
    uint ideal_reg = tf()->range()->field_at(TypeFunc::Parms)->ideal_reg();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    OptoRegPair regs = is_CallRuntime()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
      ? match->c_return_value(ideal_reg,true)  // Calls into C runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
      : match->  return_value(ideal_reg,true); // Calls into compiled Java code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    RegMask rm = RegMask(regs.first());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    if( OptoReg::is_valid(regs.second()) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
      rm.Insert( regs.second() );
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
   725
    return new MachProjNode(this,proj->_con,rm,ideal_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  case TypeFunc::ReturnAdr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  case TypeFunc::FramePtr:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
// Do we Match on this edge index or not?  Match no edges
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
uint CallNode::match_edge(uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   741
//
247
2aeab9ac7fea 6674600: (Escape Analysis) Optimize memory graph for instance's fields
kvn
parents: 239
diff changeset
   742
// Determine whether the call could modify the field of the specified
2aeab9ac7fea 6674600: (Escape Analysis) Optimize memory graph for instance's fields
kvn
parents: 239
diff changeset
   743
// instance at the specified offset.
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   744
//
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   745
bool CallNode::may_modify(const TypeOopPtr *t_oop, PhaseTransform *phase) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   746
  assert((t_oop != NULL), "sanity");
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 32084
diff changeset
   747
  if (is_call_to_arraycopystub() && strcmp(_name, "unsafe_arraycopy") != 0) {
31231
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   748
    const TypeTuple* args = _tf->domain();
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   749
    Node* dest = NULL;
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   750
    // Stubs that can be called once an ArrayCopyNode is expanded have
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   751
    // different signatures. Look for the second pointer argument,
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   752
    // that is the destination of the copy.
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   753
    for (uint i = TypeFunc::Parms, j = 0; i < args->cnt(); i++) {
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   754
      if (args->field_at(i)->isa_ptr()) {
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   755
        j++;
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   756
        if (j == 2) {
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   757
          dest = in(i);
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   758
          break;
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   759
        }
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   760
      }
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   761
    }
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 50795
diff changeset
   762
    guarantee(dest != NULL, "Call had only one ptr in, broken IR!");
31231
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   763
    if (!dest->is_top() && may_modify_arraycopy_helper(phase->type(dest)->is_oopptr(), t_oop, phase)) {
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   764
      return true;
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   765
    }
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   766
    return false;
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   767
  }
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   768
  if (t_oop->is_known_instance()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   769
    // The instance_id is set only for scalar-replaceable allocations which
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   770
    // are not passed as arguments according to Escape Analysis.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   771
    return false;
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   772
  }
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   773
  if (t_oop->is_ptr_to_boxed_value()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   774
    ciKlass* boxing_klass = t_oop->klass();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   775
    if (is_CallStaticJava() && as_CallStaticJava()->is_boxing_method()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   776
      // Skip unrelated boxing methods.
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 47216
diff changeset
   777
      Node* proj = proj_out_or_null(TypeFunc::Parms);
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   778
      if ((proj == NULL) || (phase->type(proj)->is_instptr()->klass() != boxing_klass)) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   779
        return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   780
      }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   781
    }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   782
    if (is_CallJava() && as_CallJava()->method() != NULL) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   783
      ciMethod* meth = as_CallJava()->method();
34169
b0b7187852b7 8140650: Method::is_accessor should cover getters and setters for all types
shade
parents: 32370
diff changeset
   784
      if (meth->is_getter()) {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   785
        return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   786
      }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   787
      // May modify (by reflection) if an boxing object is passed
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   788
      // as argument or returned.
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 47216
diff changeset
   789
      Node* proj = returns_pointer() ? proj_out_or_null(TypeFunc::Parms) : NULL;
44314
30ae899b9eca 8175345: Reported null pointer dereference defect groups
rraghavan
parents: 38658
diff changeset
   790
      if (proj != NULL) {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   791
        const TypeInstPtr* inst_t = phase->type(proj)->isa_instptr();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   792
        if ((inst_t != NULL) && (!inst_t->klass_is_exact() ||
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   793
                                 (inst_t->klass() == boxing_klass))) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   794
          return true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   795
        }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   796
      }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   797
      const TypeTuple* d = tf()->domain();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   798
      for (uint i = TypeFunc::Parms; i < d->cnt(); i++) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   799
        const TypeInstPtr* inst_t = d->field_at(i)->isa_instptr();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   800
        if ((inst_t != NULL) && (!inst_t->klass_is_exact() ||
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   801
                                 (inst_t->klass() == boxing_klass))) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   802
          return true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   803
        }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   804
      }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   805
      return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   806
    }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   807
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
   808
  return true;
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   809
}
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   810
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   811
// Does this call have a direct reference to n other than debug information?
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   812
bool CallNode::has_non_debug_use(Node *n) {
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   813
  const TypeTuple * d = tf()->domain();
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   814
  for (uint i = TypeFunc::Parms; i < d->cnt(); i++) {
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   815
    Node *arg = in(i);
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   816
    if (arg == n) {
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   817
      return true;
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   818
    }
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   819
  }
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   820
  return false;
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   821
}
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   822
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   823
// Returns the unique CheckCastPP of a call
25935
59b08808cb9c 8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents: 25911
diff changeset
   824
// or 'this' if there are several CheckCastPP or unexpected uses
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   825
// or returns NULL if there is no one.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   826
Node *CallNode::result_cast() {
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   827
  Node *cast = NULL;
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   828
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 47216
diff changeset
   829
  Node *p = proj_out_or_null(TypeFunc::Parms);
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   830
  if (p == NULL)
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   831
    return NULL;
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   832
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   833
  for (DUIterator_Fast imax, i = p->fast_outs(imax); i < imax; i++) {
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   834
    Node *use = p->fast_out(i);
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   835
    if (use->is_CheckCastPP()) {
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   836
      if (cast != NULL) {
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   837
        return this;  // more than 1 CheckCastPP
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   838
      }
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   839
      cast = use;
25935
59b08808cb9c 8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents: 25911
diff changeset
   840
    } else if (!use->is_Initialize() &&
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
   841
               !use->is_AddP() &&
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
   842
               use->Opcode() != Op_MemBarStoreStore) {
25935
59b08808cb9c 8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents: 25911
diff changeset
   843
      // Expected uses are restricted to a CheckCastPP, an Initialize
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
   844
      // node, a MemBarStoreStore (clone) and AddP nodes. If we
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
   845
      // encounter any other use (a Phi node can be seen in rare
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
   846
      // cases) return this to prevent incorrect optimizations.
25935
59b08808cb9c 8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents: 25911
diff changeset
   847
      return this;
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   848
    }
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   849
  }
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   850
  return cast;
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   851
}
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   852
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   853
31233
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   854
void CallNode::extract_projections(CallProjections* projs, bool separate_io_proj, bool do_asserts) {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   855
  projs->fallthrough_proj      = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   856
  projs->fallthrough_catchproj = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   857
  projs->fallthrough_ioproj    = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   858
  projs->catchall_ioproj       = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   859
  projs->catchall_catchproj    = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   860
  projs->fallthrough_memproj   = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   861
  projs->catchall_memproj      = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   862
  projs->resproj               = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   863
  projs->exobj                 = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   864
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   865
  for (DUIterator_Fast imax, i = fast_outs(imax); i < imax; i++) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   866
    ProjNode *pn = fast_out(i)->as_Proj();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   867
    if (pn->outcnt() == 0) continue;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   868
    switch (pn->_con) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   869
    case TypeFunc::Control:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   870
      {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   871
        // For Control (fallthrough) and I_O (catch_all_index) we have CatchProj -> Catch -> Proj
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   872
        projs->fallthrough_proj = pn;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   873
        DUIterator_Fast jmax, j = pn->fast_outs(jmax);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   874
        const Node *cn = pn->fast_out(j);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   875
        if (cn->is_Catch()) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   876
          ProjNode *cpn = NULL;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   877
          for (DUIterator_Fast kmax, k = cn->fast_outs(kmax); k < kmax; k++) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   878
            cpn = cn->fast_out(k)->as_Proj();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   879
            assert(cpn->is_CatchProj(), "must be a CatchProjNode");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   880
            if (cpn->_con == CatchProjNode::fall_through_index)
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   881
              projs->fallthrough_catchproj = cpn;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   882
            else {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   883
              assert(cpn->_con == CatchProjNode::catch_all_index, "must be correct index.");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   884
              projs->catchall_catchproj = cpn;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   885
            }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   886
          }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   887
        }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   888
        break;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   889
      }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   890
    case TypeFunc::I_O:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   891
      if (pn->_is_io_use)
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   892
        projs->catchall_ioproj = pn;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   893
      else
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   894
        projs->fallthrough_ioproj = pn;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   895
      for (DUIterator j = pn->outs(); pn->has_out(j); j++) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   896
        Node* e = pn->out(j);
14828
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 13895
diff changeset
   897
        if (e->Opcode() == Op_CreateEx && e->in(0)->is_CatchProj() && e->outcnt() > 0) {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   898
          assert(projs->exobj == NULL, "only one");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   899
          projs->exobj = e;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   900
        }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   901
      }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   902
      break;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   903
    case TypeFunc::Memory:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   904
      if (pn->_is_io_use)
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   905
        projs->catchall_memproj = pn;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   906
      else
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   907
        projs->fallthrough_memproj = pn;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   908
      break;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   909
    case TypeFunc::Parms:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   910
      projs->resproj = pn;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   911
      break;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   912
    default:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   913
      assert(false, "unexpected projection from allocation node.");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   914
    }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   915
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   916
31233
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   917
  // The resproj may not exist because the result could be ignored
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   918
  // and the exception object may not exist if an exception handler
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   919
  // swallows the exception but all the other must exist and be found.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   920
  assert(projs->fallthrough_proj      != NULL, "must be found");
31233
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   921
  do_asserts = do_asserts && !Compile::current()->inlining_incrementally();
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   922
  assert(!do_asserts || projs->fallthrough_catchproj != NULL, "must be found");
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   923
  assert(!do_asserts || projs->fallthrough_memproj   != NULL, "must be found");
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   924
  assert(!do_asserts || projs->fallthrough_ioproj    != NULL, "must be found");
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   925
  assert(!do_asserts || projs->catchall_catchproj    != NULL, "must be found");
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   926
  if (separate_io_proj) {
31233
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   927
    assert(!do_asserts || projs->catchall_memproj    != NULL, "must be found");
7033a9f3e2f1 8086016: closed/java/text/Format/NumberFormat/BigDecimalCompatibilityTest.java is crashing
roland
parents: 31231
diff changeset
   928
    assert(!do_asserts || projs->catchall_ioproj     != NULL, "must be found");
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   929
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   930
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   931
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   932
Node *CallNode::Ideal(PhaseGVN *phase, bool can_reshape) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   933
  CallGenerator* cg = generator();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   934
  if (can_reshape && cg != NULL && cg->is_mh_late_inline() && !cg->already_attempted()) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   935
    // Check whether this MH handle call becomes a candidate for inlining
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   936
    ciMethod* callee = cg->method();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   937
    vmIntrinsics::ID iid = callee->intrinsic_id();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   938
    if (iid == vmIntrinsics::_invokeBasic) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   939
      if (in(TypeFunc::Parms)->Opcode() == Op_ConP) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   940
        phase->C->prepend_late_inline(cg);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   941
        set_generator(NULL);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   942
      }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   943
    } else {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   944
      assert(callee->has_member_arg(), "wrong type of call?");
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   945
      if (in(TypeFunc::Parms + callee->arg_size() - 1)->Opcode() == Op_ConP) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   946
        phase->C->prepend_late_inline(cg);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   947
        set_generator(NULL);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   948
      }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   949
    }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   950
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   951
  return SafePointNode::Ideal(phase, can_reshape);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   952
}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   953
31231
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   954
bool CallNode::is_call_to_arraycopystub() const {
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   955
  if (_name != NULL && strstr(_name, "arraycopy") != 0) {
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   956
    return true;
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   957
  }
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   958
  return false;
068d1f94b3bf 8086046: escape analysis generates incorrect code as of B67
roland
parents: 31044
diff changeset
   959
}
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4095
diff changeset
   960
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
uint CallJavaNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
uint CallJavaNode::cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  CallJavaNode &call = (CallJavaNode&)n;
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34169
diff changeset
   965
  return CallNode::cmp(call) && _method == call._method &&
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34169
diff changeset
   966
         _override_symbolic_info == call._override_symbolic_info;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
void CallJavaNode::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  if( _method ) _method->print_short_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  CallNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
}
32084
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   973
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   974
void CallJavaNode::dump_compact_spec(outputStream* st) const {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   975
  if (_method) {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   976
    _method->print_short_name(st);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   977
  } else {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   978
    st->print("<?>");
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   979
  }
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
   980
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
uint CallStaticJavaNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
uint CallStaticJavaNode::cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  CallStaticJavaNode &call = (CallStaticJavaNode&)n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  return CallJavaNode::cmp(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
//----------------------------uncommon_trap_request----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
// If this is an uncommon trap, return the request code, else zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
int CallStaticJavaNode::uncommon_trap_request() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  if (_name != NULL && !strcmp(_name, "uncommon_trap")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    return extract_uncommon_trap_request(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
int CallStaticJavaNode::extract_uncommon_trap_request(const Node* call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  if (!(call->req() > TypeFunc::Parms &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
        call->in(TypeFunc::Parms) != NULL &&
27422
954620f336dc 8036748: assert(_base == Int) failed: Not an Int w/ -XX:+TraceIterativeGVN
vlivanov
parents: 26435
diff changeset
  1002
        call->in(TypeFunc::Parms)->is_Con() &&
954620f336dc 8036748: assert(_base == Int) failed: Not an Int w/ -XX:+TraceIterativeGVN
vlivanov
parents: 26435
diff changeset
  1003
        call->in(TypeFunc::Parms)->bottom_type()->isa_int())) {
22854
2787e48d6df9 8029025: PPC64 (part 203): opto: Move static _in_dump_cnt to Compile object.
goetz
parents: 19708
diff changeset
  1004
    assert(in_dump() != 0, "OK if dumping");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    tty->print("[bad uncommon trap]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  return call->in(TypeFunc::Parms)->bottom_type()->is_int()->get_con();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
void CallStaticJavaNode::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  st->print("# Static ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  if (_name != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
    st->print("%s", _name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
    int trap_req = uncommon_trap_request();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
    if (trap_req != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
      char buf[100];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
      st->print("(%s)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
                 Deoptimization::format_trap_request(buf, sizeof(buf),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
                                                     trap_req));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
    st->print(" ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  CallJavaNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
}
32084
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1028
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1029
void CallStaticJavaNode::dump_compact_spec(outputStream* st) const {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1030
  if (_method) {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1031
    _method->print_short_name(st);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1032
  } else if (_name) {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1033
    st->print("%s", _name);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1034
  } else {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1035
    st->print("<?>");
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1036
  }
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1037
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
uint CallDynamicJavaNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
uint CallDynamicJavaNode::cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  CallDynamicJavaNode &call = (CallDynamicJavaNode&)n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
  return CallJavaNode::cmp(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
void CallDynamicJavaNode::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  st->print("# Dynamic ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  CallJavaNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
uint CallRuntimeNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
uint CallRuntimeNode::cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  CallRuntimeNode &call = (CallRuntimeNode&)n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  return CallNode::cmp(call) && !strcmp(_name,call._name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
void CallRuntimeNode::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  st->print("# ");
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
  1062
  st->print("%s", _name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  CallNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
//------------------------------calling_convention-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
void CallRuntimeNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  Matcher::c_calling_convention( sig_bt, parm_regs, argcnt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
//------------------------------calling_convention-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
void CallLeafNode::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  st->print("# ");
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24018
diff changeset
  1080
  st->print("%s", _name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  CallNode::dump_spec(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
void SafePointNode::set_local(JVMState* jvms, uint idx, Node *c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  int loc = jvms->locoff() + idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  if (in(loc)->is_top() && idx > 0 && !c->is_top() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    // If current local idx is top then local idx - 1 could
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
    // be a long/double that needs to be killed since top could
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
    // represent the 2nd half ofthe long/double.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
    uint ideal = in(loc -1)->ideal_reg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    if (ideal == Op_RegD || ideal == Op_RegL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
      // set other (low index) half to top
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
      set_req(loc - 1, in(loc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  set_req(loc, c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
uint SafePointNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
uint SafePointNode::cmp( const Node &n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  return (&n == this);          // Always fail except on self
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
//-------------------------set_next_exception----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
void SafePointNode::set_next_exception(SafePointNode* n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  assert(n == NULL || n->Opcode() == Op_SafePoint, "correct value for next_exception");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  if (len() == req()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
    if (n != NULL)  add_prec(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
    set_prec(req(), n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
//----------------------------next_exception-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
SafePointNode* SafePointNode::next_exception() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  if (len() == req()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
    Node* n = in(req());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
    assert(n == NULL || n->Opcode() == Op_SafePoint, "no other uses of prec edges");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
    return (SafePointNode*) n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
//------------------------------Ideal------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
// Skip over any collapsed Regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
Node *SafePointNode::Ideal(PhaseGVN *phase, bool can_reshape) {
1067
f82e0a8cd438 6736417: Fastdebug C2 crashes in StoreBNode::Ideal
kvn
parents: 955
diff changeset
  1134
  return remove_dead_region(phase, can_reshape) ? this : NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
//------------------------------Identity---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
// Remove obviously duplicate safepoints
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35157
diff changeset
  1139
Node* SafePointNode::Identity(PhaseGVN* phase) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  // If you have back to back safepoints, remove one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  if( in(TypeFunc::Control)->is_SafePoint() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
    return in(TypeFunc::Control);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  if( in(0)->is_Proj() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    Node *n0 = in(0)->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
    // Check if he is a call projection (except Leaf Call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
    if( n0->is_Catch() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
      n0 = n0->in(0)->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
      assert( n0->is_Call(), "expect a call here" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
    if( n0->is_Call() && n0->as_Call()->guaranteed_safepoint() ) {
50795
d4fefc97ae14 8205107: assert(c->Opcode() == Op_SafePoint) failed: broken outer loop
neliasso
parents: 49480
diff changeset
  1153
      // Don't remove a safepoint belonging to an OuterStripMinedLoopEndNode.
d4fefc97ae14 8205107: assert(c->Opcode() == Op_SafePoint) failed: broken outer loop
neliasso
parents: 49480
diff changeset
  1154
      // If the loop dies, they will be removed together.
d4fefc97ae14 8205107: assert(c->Opcode() == Op_SafePoint) failed: broken outer loop
neliasso
parents: 49480
diff changeset
  1155
      if (has_out_with(Op_OuterStripMinedLoopEnd)) {
d4fefc97ae14 8205107: assert(c->Opcode() == Op_SafePoint) failed: broken outer loop
neliasso
parents: 49480
diff changeset
  1156
        return this;
d4fefc97ae14 8205107: assert(c->Opcode() == Op_SafePoint) failed: broken outer loop
neliasso
parents: 49480
diff changeset
  1157
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
      // Useless Safepoint, so remove it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
      return in(TypeFunc::Control);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  return this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
//------------------------------Value------------------------------------------
35551
36ef3841fb34 8146629: Make phase->is_IterGVN() accessible from Node::Identity and Node::Value
thartmann
parents: 35157
diff changeset
  1167
const Type* SafePointNode::Value(PhaseGVN* phase) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  if( phase->type(in(0)) == Type::TOP ) return Type::TOP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  if( phase->eqv( in(0), this ) ) return Type::TOP; // Dead infinite loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  return Type::CONTROL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
void SafePointNode::dump_spec(outputStream *st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  st->print(" SafePoint ");
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
  1176
  _replaced_nodes.dump(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
}
32084
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1178
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1179
// The related nodes of a SafepointNode are all data inputs, excluding the
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1180
// control boundary, as well as all outputs till level 2 (to include projection
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1181
// nodes and targets). In compact mode, just include inputs till level 1 and
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1182
// outputs as before.
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1183
void SafePointNode::related(GrowableArray<Node*> *in_rel, GrowableArray<Node*> *out_rel, bool compact) const {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1184
  if (compact) {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1185
    this->collect_nodes(in_rel, 1, false, false);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1186
  } else {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1187
    this->collect_nodes_in_all_data(in_rel, false);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1188
  }
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1189
  this->collect_nodes(out_rel, -2, false, false);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1190
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
const RegMask &SafePointNode::in_RegMask(uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  if( idx < TypeFunc::Parms ) return RegMask::Empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  // Values outside the domain represent debug info
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  return *(Compile::current()->matcher()->idealreg2debugmask[in(idx)->ideal_reg()]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
const RegMask &SafePointNode::out_RegMask() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  return RegMask::Empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
void SafePointNode::grow_stack(JVMState* jvms, uint grow_by) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
  assert((int)grow_by > 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
  int monoff = jvms->monoff();
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1206
  int scloff = jvms->scloff();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  int endoff = jvms->endoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
  assert(endoff == (int)req(), "no other states or debug info after me");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  Node* top = Compile::current()->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  for (uint i = 0; i < grow_by; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
    ins_req(monoff, top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
  jvms->set_monoff(monoff + grow_by);
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1214
  jvms->set_scloff(scloff + grow_by);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
  jvms->set_endoff(endoff + grow_by);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
void SafePointNode::push_monitor(const FastLockNode *lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
  // Add a LockNode, which points to both the original BoxLockNode (the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
  // stack space for the monitor) and the Object being locked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
  const int MonitorEdges = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  assert(JVMState::logMonitorEdges == exact_log2(MonitorEdges), "correct MonitorEdges");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
  assert(req() == jvms()->endoff(), "correct sizing");
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1224
  int nextmon = jvms()->scloff();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
  if (GenerateSynchronizationCode) {
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1226
    ins_req(nextmon,   lock->box_node());
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1227
    ins_req(nextmon+1, lock->obj_node());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
  } else {
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
  1229
    Node* top = Compile::current()->top();
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1230
    ins_req(nextmon, top);
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1231
    ins_req(nextmon, top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  }
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1233
  jvms()->set_scloff(nextmon + MonitorEdges);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
  jvms()->set_endoff(req());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
void SafePointNode::pop_monitor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  // Delete last monitor from debug info
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  debug_only(int num_before_pop = jvms()->nof_monitors());
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1240
  const int MonitorEdges = 2;
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1241
  assert(JVMState::logMonitorEdges == exact_log2(MonitorEdges), "correct MonitorEdges");
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1242
  int scloff = jvms()->scloff();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
  int endoff = jvms()->endoff();
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1244
  int new_scloff = scloff - MonitorEdges;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
  int new_endoff = endoff - MonitorEdges;
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1246
  jvms()->set_scloff(new_scloff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
  jvms()->set_endoff(new_endoff);
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1248
  while (scloff > new_scloff)  del_req_ordered(--scloff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
  assert(jvms()->nof_monitors() == num_before_pop-1, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
Node *SafePointNode::peek_monitor_box() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  int mon = jvms()->nof_monitors() - 1;
36611
eb4fe2f11579 8150804: C2 Compilation fails with assert(_base >= OopPtr && _base <= AryPtr) failed: Not a Java pointer
thartmann
parents: 35551
diff changeset
  1254
  assert(mon >= 0, "must have a monitor");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  return monitor_box(jvms(), mon);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
Node *SafePointNode::peek_monitor_obj() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
  int mon = jvms()->nof_monitors() - 1;
36611
eb4fe2f11579 8150804: C2 Compilation fails with assert(_base >= OopPtr && _base <= AryPtr) failed: Not a Java pointer
thartmann
parents: 35551
diff changeset
  1260
  assert(mon >= 0, "must have a monitor");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  return monitor_obj(jvms(), mon);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
// Do we Match on this edge index or not?  Match no edges
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
uint SafePointNode::match_edge(uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
  if( !needs_polling_address_input() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  return (TypeFunc::Parms == idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1272
//==============  SafePointScalarObjectNode  ==============
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1273
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1274
SafePointScalarObjectNode::SafePointScalarObjectNode(const TypeOopPtr* tp,
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1275
#ifdef ASSERT
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1276
                                                     AllocateNode* alloc,
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1277
#endif
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1278
                                                     uint first_index,
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1279
                                                     uint n_fields) :
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1280
  TypeNode(tp, 1), // 1 control input -- seems required.  Get from root.
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1281
  _first_index(first_index),
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1282
  _n_fields(n_fields)
51333
f6641fcf7b7e 8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents: 51078
diff changeset
  1283
#ifdef ASSERT
f6641fcf7b7e 8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents: 51078
diff changeset
  1284
  , _alloc(alloc)
f6641fcf7b7e 8208670: Compiler changes to allow enabling -Wreorder
tschatzl
parents: 51078
diff changeset
  1285
#endif
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1286
{
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1287
  init_class_id(Class_SafePointScalarObject);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1288
}
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1289
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1290
// Do not allow value-numbering for SafePointScalarObject node.
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1291
uint SafePointScalarObjectNode::hash() const { return NO_HASH; }
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1292
uint SafePointScalarObjectNode::cmp( const Node &n ) const {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1293
  return (&n == this); // Always fail except on self
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1294
}
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1295
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1296
uint SafePointScalarObjectNode::ideal_reg() const {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1297
  return 0; // No matching to machine instruction
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1298
}
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1299
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1300
const RegMask &SafePointScalarObjectNode::in_RegMask(uint idx) const {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1301
  return *(Compile::current()->matcher()->idealreg2debugmask[in(idx)->ideal_reg()]);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1302
}
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1303
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1304
const RegMask &SafePointScalarObjectNode::out_RegMask() const {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1305
  return RegMask::Empty;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1306
}
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1307
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1308
uint SafePointScalarObjectNode::match_edge(uint idx) const {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1309
  return 0;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1310
}
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1311
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1312
SafePointScalarObjectNode*
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17383
diff changeset
  1313
SafePointScalarObjectNode::clone(Dict* sosn_map) const {
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1314
  void* cached = (*sosn_map)[(void*)this];
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1315
  if (cached != NULL) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1316
    return (SafePointScalarObjectNode*)cached;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1317
  }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1318
  SafePointScalarObjectNode* res = (SafePointScalarObjectNode*)Node::clone();
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1319
  sosn_map->Insert((void*)this, (void*)res);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1320
  return res;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1321
}
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1322
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1323
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1324
#ifndef PRODUCT
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1325
void SafePointScalarObjectNode::dump_spec(outputStream *st) const {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1326
  st->print(" # fields@[%d..%d]", first_index(),
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1327
             first_index() + n_fields() - 1);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1328
}
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1329
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1330
#endif
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
  1331
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
uint AllocateNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
AllocateNode::AllocateNode(Compile* C, const TypeFunc *atype,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
                           Node *ctrl, Node *mem, Node *abio,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
                           Node *size, Node *klass_node, Node *initial_test)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
  : CallNode(atype, NULL, TypeRawPtr::BOTTOM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  init_class_id(Class_Allocate);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  init_flags(Flag_is_macro);
212
cd4963e67949 6667612: (Escape Analysis) disable loop cloning if it has a scalar replaceable allocation
kvn
parents: 1
diff changeset
  1342
  _is_scalar_replaceable = false;
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
  1343
  _is_non_escaping = false;
35157
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1344
  _is_allocation_MemBar_redundant = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
  Node *topnode = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
  init_req( TypeFunc::Control  , ctrl );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  init_req( TypeFunc::I_O      , abio );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  init_req( TypeFunc::Memory   , mem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  init_req( TypeFunc::ReturnAdr, topnode );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  init_req( TypeFunc::FramePtr , topnode );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  init_req( AllocSize          , size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  init_req( KlassNode          , klass_node);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  init_req( InitialTest        , initial_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  init_req( ALength            , topnode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  C->add_macro_node(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
35157
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1359
void AllocateNode::compute_MemBar_redundancy(ciMethod* initializer)
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1360
{
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1361
  assert(initializer != NULL &&
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1362
         initializer->is_initializer() &&
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1363
         !initializer->is_static(),
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1364
             "unexpected initializer method");
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1365
  BCEscapeAnalyzer* analyzer = initializer->get_bcea();
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1366
  if (analyzer == NULL) {
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1367
    return;
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1368
  }
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1369
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1370
  // Allocation node is first parameter in its initializer
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1371
  if (analyzer->is_arg_stack(0) || analyzer->is_arg_local(0)) {
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1372
    _is_allocation_MemBar_redundant = true;
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1373
  }
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1374
}
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 35086
diff changeset
  1375
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
//=============================================================================
2528
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1377
Node* AllocateArrayNode::Ideal(PhaseGVN *phase, bool can_reshape) {
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1378
  if (remove_dead_region(phase, can_reshape))  return this;
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1379
  // Don't bother trying to transform a dead node
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1380
  if (in(0) && in(0)->is_top())  return NULL;
2528
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1381
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1382
  const Type* type = phase->type(Ideal_length());
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1383
  if (type->isa_int() && type->is_int()->_hi < 0) {
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1384
    if (can_reshape) {
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1385
      PhaseIterGVN *igvn = phase->is_IterGVN();
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1386
      // Unreachable fall through path (negative array length),
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1387
      // the allocation can only throw so disconnect it.
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 47216
diff changeset
  1388
      Node* proj = proj_out_or_null(TypeFunc::Control);
2528
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1389
      Node* catchproj = NULL;
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1390
      if (proj != NULL) {
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1391
        for (DUIterator_Fast imax, i = proj->fast_outs(imax); i < imax; i++) {
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1392
          Node *cn = proj->fast_out(i);
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1393
          if (cn->is_Catch()) {
48595
5d699d81c10c 8194988: 8 Null pointer dereference defect groups related to MultiNode::proj_out()
dlong
parents: 47216
diff changeset
  1394
            catchproj = cn->as_Multi()->proj_out_or_null(CatchProjNode::fall_through_index);
2528
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1395
            break;
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1396
          }
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1397
        }
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1398
      }
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1399
      if (catchproj != NULL && catchproj->outcnt() > 0 &&
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1400
          (catchproj->outcnt() > 1 ||
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1401
           catchproj->unique_out()->Opcode() != Op_Halt)) {
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1402
        assert(catchproj->is_CatchProj(), "must be a CatchProjNode");
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1403
        Node* nproj = catchproj->clone();
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1404
        igvn->register_new_node_with_optimizer(nproj);
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1405
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
  1406
        Node *frame = new ParmNode( phase->C->start(), TypeFunc::FramePtr );
2528
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1407
        frame = phase->transform(frame);
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1408
        // Halt & Catch Fire
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
  1409
        Node *halt = new HaltNode( nproj, frame );
2528
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1410
        phase->C->root()->add_req(halt);
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1411
        phase->transform(halt);
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1412
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1413
        igvn->replace_node(catchproj, phase->C->top());
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1414
        return this;
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1415
      }
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1416
    } else {
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1417
      // Can't correct it during regular GVN so register for IGVN
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1418
      phase->C->record_for_igvn(this);
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1419
    }
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1420
  }
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1421
  return NULL;
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1422
}
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
  1423
1398
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1424
// Retrieve the length from the AllocateArrayNode. Narrow the type with a
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1425
// CastII, if appropriate.  If we are not allowed to create new nodes, and
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1426
// a CastII is appropriate, return NULL.
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1427
Node *AllocateArrayNode::make_ideal_length(const TypeOopPtr* oop_type, PhaseTransform *phase, bool allow_new_nodes) {
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1428
  Node *length = in(AllocateNode::ALength);
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1429
  assert(length != NULL, "length is not null");
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1430
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1431
  const TypeInt* length_type = phase->find_int_type(length);
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1432
  const TypeAryPtr* ary_type = oop_type->isa_aryptr();
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1433
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1434
  if (ary_type != NULL && length_type != NULL) {
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1435
    const TypeInt* narrow_length_type = ary_type->narrow_size_type(length_type);
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1436
    if (narrow_length_type != length_type) {
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1437
      // Assert one of:
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1438
      //   - the narrow_length is 0
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1439
      //   - the narrow_length is not wider than length
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1440
      assert(narrow_length_type == TypeInt::ZERO ||
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
  1441
             length_type->is_con() && narrow_length_type->is_con() &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15241
diff changeset
  1442
                (narrow_length_type->_hi <= length_type->_lo) ||
1398
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1443
             (narrow_length_type->_hi <= length_type->_hi &&
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1444
              narrow_length_type->_lo >= length_type->_lo),
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1445
             "narrow type must be narrower than length type");
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1446
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1447
      // Return NULL if new nodes are not allowed
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1448
      if (!allow_new_nodes) return NULL;
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1449
      // Create a cast which is control dependent on the initialization to
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1450
      // propagate the fact that the array length must be positive.
48976
324105aaeddf 8197828: Null pointer dereference in MultiNode::proj_out_or_null
thartmann
parents: 48595
diff changeset
  1451
      InitializeNode* init = initialization();
324105aaeddf 8197828: Null pointer dereference in MultiNode::proj_out_or_null
thartmann
parents: 48595
diff changeset
  1452
      assert(init != NULL, "initialization not found");
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24424
diff changeset
  1453
      length = new CastIINode(length, narrow_length_type);
48976
324105aaeddf 8197828: Null pointer dereference in MultiNode::proj_out_or_null
thartmann
parents: 48595
diff changeset
  1454
      length->set_req(0, init->proj_out_or_null(0));
1398
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1455
    }
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1456
  }
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1457
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1458
  return length;
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1459
}
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 1135
diff changeset
  1460
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
uint LockNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
// Redundant lock elimination
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
// There are various patterns of locking where we release and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
// immediately reacquire a lock in a piece of code where no operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
// occur in between that would be observable.  In those cases we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
// skip releasing and reacquiring the lock without violating any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
// fairness requirements.  Doing this around a loop could cause a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
// to be held for a very long time so we concentrate on non-looping
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
// control flow.  We also require that the operations are fully
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
// redundant meaning that we don't introduce new lock operations on
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
// some paths so to be able to eliminate it on others ala PRE.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
// would probably require some more extensive graph manipulation to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
// guarantee that the memory edges were all handled correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
// Assuming p is a simple predicate which can't trap in any way and s
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
// is a synchronized method consider this code:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
//   s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
//   if (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
//     s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
//   else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
//     s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
//   s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
// 1. The unlocks of the first call to s can be eliminated if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
// locks inside the then and else branches are eliminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
// 2. The unlocks of the then and else branches can be eliminated if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
// the lock of the final call to s is eliminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
// Either of these cases subsumes the simple case of sequential control flow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
// Addtionally we can eliminate versions without the else case:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
//   s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
//   if (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
//     s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
//   s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
// 3. In this case we eliminate the unlock of the first s, the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
// and unlock in the then case and the lock in the final s.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
// Note also that in all these cases the then/else pieces don't have
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
// to be trivial as long as they begin and end with synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
// operations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
//   s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
//   if (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
//     s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
//     f();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
//     s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
//   s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
// The code will work properly for this case, leaving in the unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
// before the call to f and the relock after it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
// A potentially interesting case which isn't handled here is when the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
// locking is partially redundant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
//   s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
//   if (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
//     s();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
// This could be eliminated putting unlocking on the else case and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
// eliminating the first unlock and the lock in the then side.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
// Alternatively the unlock could be moved out of the then side so it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
// was after the merge and the first unlock and second lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
// eliminated.  This might require less manipulation of the memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
// state to get correct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
// Additionally we might allow work between a unlock and lock before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
// giving up eliminating the locks.  The current code disallows any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
// conditional control flow between these operations.  A formulation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
// similar to partial redundancy elimination computing the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
// availability of unlocking and the anticipatability of locking at a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
// program point would allow detection of fully redundant locking with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
// some amount of work in between.  I'm not sure how often I really
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
// think that would occur though.  Most of the cases I've seen
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
// indicate it's likely non-trivial work would occur in between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
// There may be other more complicated constructs where we could
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
// eliminate locking but I haven't seen any others appear as hot or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
// interesting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
// Locking and unlocking have a canonical form in ideal that looks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
// roughly like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
//              <obj>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
//                | \\------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
//                |  \       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
//                | BoxLock   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
//                |  |   |     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
//                |  |    \     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
//                |  |   FastLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
//                |  |   /
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
//                |  |  /
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
//                |  |  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
//               Lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
//                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
//            Proj #0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
//                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
//            MembarAcquire
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
//                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
//            Proj #0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
//            MembarRelease
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
//                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
//            Proj #0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
//                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
//              Unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
//                |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
//            Proj #0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
// This code proceeds by processing Lock nodes during PhaseIterGVN
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
// and searching back through its control for the proper code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
// patterns.  Once it finds a set of lock and unlock operations to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
// eliminate they are marked as eliminatable which causes the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
// expansion of the Lock and Unlock macro nodes to make the operation a NOP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
// Utility function to skip over uninteresting control nodes.  Nodes skipped are:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
//   - copy regions.  (These may not have been optimized away yet.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
//   - eliminated locking nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
static Node *next_control(Node *ctrl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
  if (ctrl == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
  while (1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
    if (ctrl->is_Region()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
      RegionNode *r = ctrl->as_Region();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
      Node *n = r->is_copy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
      if (n == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
        break;  // hit a region, return it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
        ctrl = n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
    } else if (ctrl->is_Proj()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
      Node *in0 = ctrl->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
      if (in0->is_AbstractLock() && in0->as_AbstractLock()->is_eliminated()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
        ctrl = in0->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
      break; // found an interesting control
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
  return ctrl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
// Given a control, see if it's the control projection of an Unlock which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
// operating on the same object as lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
bool AbstractLockNode::find_matching_unlock(const Node* ctrl, LockNode* lock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
                                            GrowableArray<AbstractLockNode*> &lock_ops) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
  ProjNode *ctrl_proj = (ctrl->is_Proj()) ? ctrl->as_Proj() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
  if (ctrl_proj != NULL && ctrl_proj->_con == TypeFunc::Control) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
    Node *n = ctrl_proj->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
    if (n != NULL && n->is_Unlock()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
      UnlockNode *unlock = n->as_Unlock();
52449
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1626
      BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1627
      Node* lock_obj = bs->step_over_gc_barrier(lock->obj_node());
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1628
      Node* unlock_obj = bs->step_over_gc_barrier(unlock->obj_node());
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1629
      if (lock_obj->eqv_uncast(unlock_obj) &&
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1630
          BoxLockNode::same_slot(lock->box_node(), unlock->box_node()) &&
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1631
          !unlock->is_eliminated()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
        lock_ops.append(unlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
// Find the lock matching an unlock.  Returns null if a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
// or complicated control is encountered first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
LockNode *AbstractLockNode::find_matching_lock(UnlockNode* unlock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
  LockNode *lock_result = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
  // find the matching lock, or an intervening safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
  Node *ctrl = next_control(unlock->in(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
  while (1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
    assert(ctrl != NULL, "invalid control graph");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
    assert(!ctrl->is_Start(), "missing lock for unlock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
    if (ctrl->is_top()) break;  // dead control path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
    if (ctrl->is_Proj()) ctrl = ctrl->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
    if (ctrl->is_SafePoint()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
        break;  // found a safepoint (may be the lock we are searching for)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
    } else if (ctrl->is_Region()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
      // Check for a simple diamond pattern.  Punt on anything more complicated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
      if (ctrl->req() == 3 && ctrl->in(1) != NULL && ctrl->in(2) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
        Node *in1 = next_control(ctrl->in(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
        Node *in2 = next_control(ctrl->in(2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
        if (((in1->is_IfTrue() && in2->is_IfFalse()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
             (in2->is_IfTrue() && in1->is_IfFalse())) && (in1->in(0) == in2->in(0))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
          ctrl = next_control(in1->in(0)->in(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
      ctrl = next_control(ctrl->in(0));  // keep searching
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
  if (ctrl->is_Lock()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
    LockNode *lock = ctrl->as_Lock();
52449
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1674
    BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1675
    Node* lock_obj = bs->step_over_gc_barrier(lock->obj_node());
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1676
    Node* unlock_obj = bs->step_over_gc_barrier(unlock->obj_node());
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1677
    if (lock_obj->eqv_uncast(unlock_obj) &&
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1678
        BoxLockNode::same_slot(lock->box_node(), unlock->box_node())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
      lock_result = lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
  return lock_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
// This code corresponds to case 3 above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
bool AbstractLockNode::find_lock_and_unlock_through_if(Node* node, LockNode* lock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
                                                       GrowableArray<AbstractLockNode*> &lock_ops) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
  Node* if_node = node->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
  bool  if_true = node->is_IfTrue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
  if (if_node->is_If() && if_node->outcnt() == 2 && (if_true || node->is_IfFalse())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
    Node *lock_ctrl = next_control(if_node->in(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
    if (find_matching_unlock(lock_ctrl, lock, lock_ops)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
      Node* lock1_node = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
      ProjNode* proj = if_node->as_If()->proj_out(!if_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
      if (if_true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
        if (proj->is_IfFalse() && proj->outcnt() == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
          lock1_node = proj->unique_out();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
        if (proj->is_IfTrue() && proj->outcnt() == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
          lock1_node = proj->unique_out();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
      if (lock1_node != NULL && lock1_node->is_Lock()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
        LockNode *lock1 = lock1_node->as_Lock();
52449
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1708
        BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1709
        Node* lock_obj = bs->step_over_gc_barrier(lock->obj_node());
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1710
        Node* lock1_obj = bs->step_over_gc_barrier(lock1->obj_node());
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1711
        if (lock_obj->eqv_uncast(lock1_obj) &&
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1712
            BoxLockNode::same_slot(lock->box_node(), lock1->box_node()) &&
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1713
            !lock1->is_eliminated()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
          lock_ops.append(lock1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
          return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
  lock_ops.trunc_to(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
bool AbstractLockNode::find_unlocks_for_region(const RegionNode* region, LockNode* lock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
                               GrowableArray<AbstractLockNode*> &lock_ops) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
  // check each control merging at this point for a matching unlock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
  // in(0) should be self edge so skip it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
  for (int i = 1; i < (int)region->req(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
    Node *in_node = next_control(region->in(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
    if (in_node != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
      if (find_matching_unlock(in_node, lock, lock_ops)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
        // found a match so keep on checking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
      } else if (find_lock_and_unlock_through_if(in_node, lock, lock_ops)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
      // If we fall through to here then it was some kind of node we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
      // don't understand or there wasn't a matching unlock, so give
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
      // up trying to merge locks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
      lock_ops.trunc_to(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
// Create a counter which counts the number of times this lock is acquired
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
void AbstractLockNode::create_lock_counter(JVMState* state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
  _counter = OptoRuntime::new_named_counter(state, NamedCounter::LockCounter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1758
void AbstractLockNode::set_eliminated_lock_counter() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
  if (_counter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
    // Update the counter to indicate that this lock was eliminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
    // The counter update code will stay around even though the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
    // optimizer will eliminate the lock operation itself.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
    _counter->set_tag(NamedCounter::EliminatedLockCounter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
  }
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1765
}
32084
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1766
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1767
const char* AbstractLockNode::_kind_names[] = {"Regular", "NonEscObj", "Coarsened", "Nested"};
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1768
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1769
void AbstractLockNode::dump_spec(outputStream* st) const {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1770
  st->print("%s ", _kind_names[_kind]);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1771
  CallNode::dump_spec(st);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1772
}
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1773
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1774
void AbstractLockNode::dump_compact_spec(outputStream* st) const {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1775
  st->print("%s", _kind_names[_kind]);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1776
}
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1777
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1778
// The related set of lock nodes includes the control boundary.
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1779
void AbstractLockNode::related(GrowableArray<Node*> *in_rel, GrowableArray<Node*> *out_rel, bool compact) const {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1780
  if (compact) {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1781
      this->collect_nodes(in_rel, 1, false, false);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1782
    } else {
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1783
      this->collect_nodes_in_all_data(in_rel, true);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1784
    }
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1785
    this->collect_nodes(out_rel, -2, false, false);
7743e6943cdf 8004073: Implement C2 Ideal node specific dump() method
mhaupt
parents: 31593
diff changeset
  1786
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
Node *LockNode::Ideal(PhaseGVN *phase, bool can_reshape) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1792
  // perform any generic optimizations first (returns 'this' or NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  Node *result = SafePointNode::Ideal(phase, can_reshape);
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1794
  if (result != NULL)  return result;
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1795
  // Don't bother trying to transform a dead node
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1796
  if (in(0) && in(0)->is_top())  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
  // Now see if we can optimize away this lock.  We don't actually
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
  // remove the locking here, we simply set the _eliminate flag which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
  // prevents macro expansion from expanding the lock.  Since we don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
  // modify the graph, the value returned from this function is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
  // one computed above.
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1803
  if (can_reshape && EliminateLocks && !is_non_esc_obj()) {
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1804
    //
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1805
    // If we are locking an unescaped object, the lock/unlock is unnecessary
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1806
    //
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
  1807
    ConnectionGraph *cgr = phase->C->congraph();
12158
f24f2560da32 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 11458
diff changeset
  1808
    if (cgr != NULL && cgr->not_global_escape(obj_node())) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1809
      assert(!is_eliminated() || is_coarsened(), "sanity");
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1810
      // The lock could be marked eliminated by lock coarsening
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1811
      // code during first IGVN before EA. Replace coarsened flag
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1812
      // to eliminate all associated locks/unlocks.
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1813
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1814
      this->log_lock_optimization(phase->C,"eliminate_lock_set_non_esc1");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1815
#endif
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1816
      this->set_non_esc_obj();
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1817
      return result;
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1818
    }
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1819
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
    // Try lock coarsening
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
    PhaseIterGVN* iter = phase->is_IterGVN();
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1824
    if (iter != NULL && !is_eliminated()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
      GrowableArray<AbstractLockNode*>   lock_ops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
      Node *ctrl = next_control(in(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
      // now search back for a matching Unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
      if (find_matching_unlock(ctrl, this, lock_ops)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
        // found an unlock directly preceding this lock.  This is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
        // case of single unlock directly control dependent on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
        // single lock which is the trivial version of case 1 or 2.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
      } else if (ctrl->is_Region() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
        if (find_unlocks_for_region(ctrl->as_Region(), this, lock_ops)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
        // found lock preceded by multiple unlocks along all paths
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
        // joining at this point which is case 3 in description above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
        // see if this lock comes from either half of an if and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
        // predecessors merges unlocks and the other half of the if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
        // performs a lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
        if (find_lock_and_unlock_through_if(ctrl, this, lock_ops)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
          // found unlock splitting to an if with locks on both branches.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
      if (lock_ops.length() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
        // add ourselves to the list of locks to be eliminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
        lock_ops.append(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
  #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
        if (PrintEliminateLocks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
          int locks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
          int unlocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
          for (int i = 0; i < lock_ops.length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
            AbstractLockNode* lock = lock_ops.at(i);
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1859
            if (lock->Opcode() == Op_Lock)
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1860
              locks++;
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1861
            else
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1862
              unlocks++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
            if (Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
              lock->dump(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
          tty->print_cr("***Eliminated %d unlocks and %d locks", unlocks, locks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
        // for each of the identified locks, mark them
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
        // as eliminatable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
        for (int i = 0; i < lock_ops.length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
          AbstractLockNode* lock = lock_ops.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1876
          // Mark it eliminated by coarsening and update any counters
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1877
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1878
          lock->log_lock_optimization(phase->C, "eliminate_lock_set_coarsened");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1879
#endif
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
  1880
          lock->set_coarsened();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
        }
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1882
      } else if (ctrl->is_Region() &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
                 iter->_worklist.member(ctrl)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
        // We weren't able to find any opportunities but the region this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
        // lock is control dependent on hasn't been processed yet so put
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
        // this lock back on the worklist so we can check again once any
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
        // region simplification has occurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
        iter->_worklist.push(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
//=============================================================================
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1897
bool LockNode::is_nested_lock_region() {
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1898
  return is_nested_lock_region(NULL);
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1899
}
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1900
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1901
// p is used for access to compilation log; no logging if NULL
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1902
bool LockNode::is_nested_lock_region(Compile * c) {
11458
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11446
diff changeset
  1903
  BoxLockNode* box = box_node()->as_BoxLock();
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11446
diff changeset
  1904
  int stk_slot = box->stack_slot();
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1905
  if (stk_slot <= 0) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1906
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1907
    this->log_lock_optimization(c, "eliminate_lock_INLR_1");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1908
#endif
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1909
    return false; // External lock or it is not Box (Phi node).
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1910
  }
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1911
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1912
  // Ignore complex cases: merged locks or multiple locks.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1913
  Node* obj = obj_node();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1914
  LockNode* unique_lock = NULL;
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1915
  if (!box->is_simple_lock_region(&unique_lock, obj)) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1916
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1917
    this->log_lock_optimization(c, "eliminate_lock_INLR_2a");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1918
#endif
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1919
    return false;
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1920
  }
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1921
  if (unique_lock != this) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1922
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1923
    this->log_lock_optimization(c, "eliminate_lock_INLR_2b");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1924
#endif
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1925
    return false;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1926
  }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1927
52449
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1928
  BarrierSetC2* bs = BarrierSet::barrier_set()->barrier_set_c2();
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1929
  obj = bs->step_over_gc_barrier(obj);
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1930
  // Look for external lock for the same object.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1931
  SafePointNode* sfn = this->as_SafePoint();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1932
  JVMState* youngest_jvms = sfn->jvms();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1933
  int max_depth = youngest_jvms->depth();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1934
  for (int depth = 1; depth <= max_depth; depth++) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1935
    JVMState* jvms = youngest_jvms->of_depth(depth);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1936
    int num_mon  = jvms->nof_monitors();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1937
    // Loop over monitors
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1938
    for (int idx = 0; idx < num_mon; idx++) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1939
      Node* obj_node = sfn->monitor_obj(jvms, idx);
52449
bac05440d98c 8212673: jtreg/applications/runthese/RunThese30M.java fails in C2 with "assert(!had_error) failed: bad dominance"
roland
parents: 51333
diff changeset
  1940
      obj_node = bs->step_over_gc_barrier(obj_node);
11458
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11446
diff changeset
  1941
      BoxLockNode* box_node = sfn->monitor_box(jvms, idx)->as_BoxLock();
11446
fd87432a895b 7128352: assert(obj_node == obj) failed
kvn
parents: 11445
diff changeset
  1942
      if ((box_node->stack_slot() < stk_slot) && obj_node->eqv_uncast(obj)) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1943
        return true;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1944
      }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1945
    }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1946
  }
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1947
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1948
  this->log_lock_optimization(c, "eliminate_lock_INLR_3");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1949
#endif
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1950
  return false;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1951
}
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1952
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1953
//=============================================================================
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
uint UnlockNode::size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
Node *UnlockNode::Ideal(PhaseGVN *phase, bool can_reshape) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1959
  // perform any generic optimizations first (returns 'this' or NULL)
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1960
  Node *result = SafePointNode::Ideal(phase, can_reshape);
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1961
  if (result != NULL)  return result;
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1962
  // Don't bother trying to transform a dead node
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 7397
diff changeset
  1963
  if (in(0) && in(0)->is_top())  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
  // Now see if we can optimize away this unlock.  We don't actually
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
  // remove the unlocking here, we simply set the _eliminate flag which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
  // prevents macro expansion from expanding the unlock.  Since we don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
  // modify the graph, the value returned from this function is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
  // one computed above.
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1970
  // Escape state is defined after Parse phase.
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1971
  if (can_reshape && EliminateLocks && !is_non_esc_obj()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
    //
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 238
diff changeset
  1973
    // If we are unlocking an unescaped object, the lock/unlock is unnecessary.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
    //
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
  1975
    ConnectionGraph *cgr = phase->C->congraph();
12158
f24f2560da32 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 11458
diff changeset
  1976
    if (cgr != NULL && cgr->not_global_escape(obj_node())) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1977
      assert(!is_eliminated() || is_coarsened(), "sanity");
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1978
      // The lock could be marked eliminated by lock coarsening
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1979
      // code during first IGVN before EA. Replace coarsened flag
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1980
      // to eliminate all associated locks/unlocks.
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1981
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1982
      this->log_lock_optimization(phase->C, "eliminate_lock_set_non_esc2");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1983
#endif
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11191
diff changeset
  1984
      this->set_non_esc_obj();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
}
26166
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  1989
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1990
const char * AbstractLockNode::kind_as_string() const {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1991
  return is_coarsened()   ? "coarsened" :
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1992
         is_nested()      ? "nested" :
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1993
         is_non_esc_obj() ? "non_escaping" :
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1994
         "?";
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1995
}
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1996
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1997
void AbstractLockNode::log_lock_optimization(Compile *C, const char * tag)  const {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1998
  if (C == NULL) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  1999
    return;
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2000
  }
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2001
  CompileLog* log = C->log();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2002
  if (log != NULL) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2003
    log->begin_head("%s lock='%d' compile_id='%d' class_id='%s' kind='%s'",
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2004
          tag, is_Lock(), C->compile_id(),
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2005
          is_Unlock() ? "unlock" : is_Lock() ? "lock" : "?",
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2006
          kind_as_string());
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2007
    log->stamp();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2008
    log->end_head();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2009
    JVMState* p = is_Unlock() ? (as_Unlock()->dbg_jvms()) : jvms();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2010
    while (p != NULL) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2011
      log->elem("jvms bci='%d' method='%d'", p->bci(), log->identify(p->method()));
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2012
      p = p->caller();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2013
    }
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2014
    log->tail(tag);
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2015
  }
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28930
diff changeset
  2016
}
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2017
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2018
bool CallNode::may_modify_arraycopy_helper(const TypeOopPtr* dest_t, const TypeOopPtr *t_oop, PhaseTransform *phase) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2019
  if (dest_t->is_known_instance() && t_oop->is_known_instance()) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2020
    return dest_t->instance_id() == t_oop->instance_id();
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2021
  }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2022
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2023
  if (dest_t->isa_instptr() && !dest_t->klass()->equals(phase->C->env()->Object_klass())) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2024
    // clone
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2025
    if (t_oop->isa_aryptr()) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2026
      return false;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2027
    }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2028
    if (!t_oop->isa_instptr()) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2029
      return true;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2030
    }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2031
    if (dest_t->klass()->is_subtype_of(t_oop->klass()) || t_oop->klass()->is_subtype_of(dest_t->klass())) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2032
      return true;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2033
    }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2034
    // unrelated
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2035
    return false;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2036
  }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2037
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2038
  if (dest_t->isa_aryptr()) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2039
    // arraycopy or array clone
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2040
    if (t_oop->isa_instptr()) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2041
      return false;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2042
    }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2043
    if (!t_oop->isa_aryptr()) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2044
      return true;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2045
    }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2046
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2047
    const Type* elem = dest_t->is_aryptr()->elem();
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2048
    if (elem == Type::BOTTOM) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2049
      // An array but we don't know what elements are
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2050
      return true;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2051
    }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2052
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2053
    dest_t = dest_t->add_offset(Type::OffsetBot)->is_oopptr();
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2054
    uint dest_alias = phase->C->get_alias_index(dest_t);
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2055
    uint t_oop_alias = phase->C->get_alias_index(t_oop);
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2056
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2057
    return dest_alias == t_oop_alias;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2058
  }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2059
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2060
  return true;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2061
}
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 29337
diff changeset
  2062