hotspot/src/share/vm/opto/macro.cpp
author kvn
Sat, 04 Jun 2011 10:36:22 -0700
changeset 9977 c23d1a8dcaa9
parent 9446 748a37b25d10
child 10011 e8b38f7b9959
permissions -rw-r--r--
7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity Summary: Mark all associated (same box and obj) lock and unlock nodes for elimination if some of them marked already. Reviewed-by: iveresov, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
     2
 * Copyright (c) 2005, 2011, 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: 5251
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5251
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: 5251
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: 6177
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    26
#include "compiler/compileLog.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    27
#include "libadt/vectset.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    28
#include "opto/addnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    29
#include "opto/callnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    30
#include "opto/cfgnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    31
#include "opto/compile.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    32
#include "opto/connode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    33
#include "opto/locknode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    34
#include "opto/loopnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    35
#include "opto/macro.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    36
#include "opto/memnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    37
#include "opto/node.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    38
#include "opto/phaseX.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    39
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    40
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    41
#include "opto/subnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    42
#include "opto/type.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    43
#include "runtime/sharedRuntime.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// Replace any references to "oldref" in inputs to "use" with "newref".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// Returns the number of replacements made.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
int PhaseMacroExpand::replace_input(Node *use, Node *oldref, Node *newref) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int nreplacements = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  uint req = use->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  for (uint j = 0; j < use->len(); j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    Node *uin = use->in(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    if (uin == oldref) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
      if (j < req)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
        use->set_req(j, newref);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
        use->set_prec(j, newref);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
      nreplacements++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    } else if (j >= req && uin == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  return nreplacements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
void PhaseMacroExpand::copy_call_debug_info(CallNode *oldcall, CallNode * newcall) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Copy debug information and adjust JVMState information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  uint old_dbg_start = oldcall->tf()->domain()->cnt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  uint new_dbg_start = newcall->tf()->domain()->cnt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  int jvms_adj  = new_dbg_start - old_dbg_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  assert (new_dbg_start == newcall->req(), "argument count mismatch");
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    74
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    75
  Dict* sosn_map = new Dict(cmpkey,hashkey);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  for (uint i = old_dbg_start; i < oldcall->req(); i++) {
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    77
    Node* old_in = oldcall->in(i);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    78
    // Clone old SafePointScalarObjectNodes, adjusting their field contents.
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
    79
    if (old_in != NULL && old_in->is_SafePointScalarObject()) {
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    80
      SafePointScalarObjectNode* old_sosn = old_in->as_SafePointScalarObject();
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    81
      uint old_unique = C->unique();
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    82
      Node* new_in = old_sosn->clone(jvms_adj, sosn_map);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    83
      if (old_unique != C->unique()) {
2127
268ea58ed775 6809798: SafePointScalarObject node placed into incorrect block during GCM
kvn
parents: 2110
diff changeset
    84
        new_in->set_req(0, newcall->in(0)); // reset control edge
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    85
        new_in = transform_later(new_in); // Register new node.
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    86
      }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    87
      old_in = new_in;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    88
    }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    89
    newcall->add_req(old_in);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    91
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  newcall->set_jvms(oldcall->jvms());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  for (JVMState *jvms = newcall->jvms(); jvms != NULL; jvms = jvms->caller()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    jvms->set_map(newcall);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    jvms->set_locoff(jvms->locoff()+jvms_adj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    jvms->set_stkoff(jvms->stkoff()+jvms_adj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    jvms->set_monoff(jvms->monoff()+jvms_adj);
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    98
    jvms->set_scloff(jvms->scloff()+jvms_adj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    jvms->set_endoff(jvms->endoff()+jvms_adj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   103
Node* PhaseMacroExpand::opt_bits_test(Node* ctrl, Node* region, int edge, Node* word, int mask, int bits, bool return_fast_path) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   104
  Node* cmp;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   105
  if (mask != 0) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   106
    Node* and_node = transform_later(new (C, 3) AndXNode(word, MakeConX(mask)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   107
    cmp = transform_later(new (C, 3) CmpXNode(and_node, MakeConX(bits)));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   108
  } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   109
    cmp = word;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   110
  }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   111
  Node* bol = transform_later(new (C, 2) BoolNode(cmp, BoolTest::ne));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   112
  IfNode* iff = new (C, 2) IfNode( ctrl, bol, PROB_MIN, COUNT_UNKNOWN );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   113
  transform_later(iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   115
  // Fast path taken.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   116
  Node *fast_taken = transform_later( new (C, 1) IfFalseNode(iff) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Fast path not-taken, i.e. slow path
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   119
  Node *slow_taken = transform_later( new (C, 1) IfTrueNode(iff) );
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   120
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   121
  if (return_fast_path) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   122
    region->init_req(edge, slow_taken); // Capture slow-control
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   123
    return fast_taken;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   124
  } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   125
    region->init_req(edge, fast_taken); // Capture fast-control
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   126
    return slow_taken;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   127
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
//--------------------copy_predefined_input_for_runtime_call--------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
void PhaseMacroExpand::copy_predefined_input_for_runtime_call(Node * ctrl, CallNode* oldcall, CallNode* call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // Set fixed predefined input arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  call->init_req( TypeFunc::Control, ctrl );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  call->init_req( TypeFunc::I_O    , oldcall->in( TypeFunc::I_O) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  call->init_req( TypeFunc::Memory , oldcall->in( TypeFunc::Memory ) ); // ?????
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  call->init_req( TypeFunc::ReturnAdr, oldcall->in( TypeFunc::ReturnAdr ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  call->init_req( TypeFunc::FramePtr, oldcall->in( TypeFunc::FramePtr ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
//------------------------------make_slow_call---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
CallNode* PhaseMacroExpand::make_slow_call(CallNode *oldcall, const TypeFunc* slow_call_type, address slow_call, const char* leaf_name, Node* slow_path, Node* parm0, Node* parm1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Slow-path call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  int size = slow_call_type->domain()->cnt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
 CallNode *call = leaf_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
   ? (CallNode*)new (C, size) CallLeafNode      ( slow_call_type, slow_call, leaf_name, TypeRawPtr::BOTTOM )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
   : (CallNode*)new (C, size) CallStaticJavaNode( slow_call_type, slow_call, OptoRuntime::stub_name(slow_call), oldcall->jvms()->bci(), TypeRawPtr::BOTTOM );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // Slow path call has no side-effects, uses few values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  copy_predefined_input_for_runtime_call(slow_path, oldcall, call );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  if (parm0 != NULL)  call->init_req(TypeFunc::Parms+0, parm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  if (parm1 != NULL)  call->init_req(TypeFunc::Parms+1, parm1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  copy_call_debug_info(oldcall, call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  call->set_cnt(PROB_UNLIKELY_MAG(4));  // Same effect as RC_UNCOMMON.
5901
c046f8e9c52b 6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents: 5889
diff changeset
   155
  _igvn.replace_node(oldcall, call);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  transform_later(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return call;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
void PhaseMacroExpand::extract_call_projections(CallNode *call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  _fallthroughproj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  _fallthroughcatchproj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  _ioproj_fallthrough = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _ioproj_catchall = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  _catchallcatchproj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  _memproj_fallthrough = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  _memproj_catchall = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  _resproj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  for (DUIterator_Fast imax, i = call->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    ProjNode *pn = call->fast_out(i)->as_Proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    switch (pn->_con) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
      case TypeFunc::Control:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
        // For Control (fallthrough) and I_O (catch_all_index) we have CatchProj -> Catch -> Proj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
        _fallthroughproj = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
        DUIterator_Fast jmax, j = pn->fast_outs(jmax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
        const Node *cn = pn->fast_out(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        if (cn->is_Catch()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
          ProjNode *cpn = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
          for (DUIterator_Fast kmax, k = cn->fast_outs(kmax); k < kmax; k++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
            cpn = cn->fast_out(k)->as_Proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
            assert(cpn->is_CatchProj(), "must be a CatchProjNode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
            if (cpn->_con == CatchProjNode::fall_through_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
              _fallthroughcatchproj = cpn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
            else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
              assert(cpn->_con == CatchProjNode::catch_all_index, "must be correct index.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
              _catchallcatchproj = cpn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      case TypeFunc::I_O:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        if (pn->_is_io_use)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
          _ioproj_catchall = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
          _ioproj_fallthrough = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      case TypeFunc::Memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
        if (pn->_is_io_use)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
          _memproj_catchall = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
          _memproj_fallthrough = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      case TypeFunc::Parms:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        _resproj = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
        assert(false, "unexpected projection from allocation node.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   216
// Eliminate a card mark sequence.  p2x is a ConvP2XNode
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   217
void PhaseMacroExpand::eliminate_card_mark(Node* p2x) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   218
  assert(p2x->Opcode() == Op_CastP2X, "ConvP2XNode required");
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   219
  if (!UseG1GC) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   220
    // vanilla/CMS post barrier
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   221
    Node *shift = p2x->unique_out();
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   222
    Node *addp = shift->unique_out();
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   223
    for (DUIterator_Last jmin, j = addp->last_outs(jmin); j >= jmin; --j) {
9331
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   224
      Node *mem = addp->last_out(j);
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   225
      if (UseCondCardMark && mem->is_Load()) {
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   226
        assert(mem->Opcode() == Op_LoadB, "unexpected code shape");
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   227
        // The load is checking if the card has been written so
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   228
        // replace it with zero to fold the test.
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   229
        _igvn.replace_node(mem, intcon(0));
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   230
        continue;
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   231
      }
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   232
      assert(mem->is_Store(), "store required");
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   233
      _igvn.replace_node(mem, mem->in(MemNode::Memory));
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   234
    }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   235
  } else {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   236
    // G1 pre/post barriers
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   237
    assert(p2x->outcnt() == 2, "expects 2 users: Xor and URShift nodes");
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   238
    // It could be only one user, URShift node, in Object.clone() instrinsic
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   239
    // but the new allocation is passed to arraycopy stub and it could not
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   240
    // be scalar replaced. So we don't check the case.
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   241
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   242
    // Remove G1 post barrier.
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   243
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   244
    // Search for CastP2X->Xor->URShift->Cmp path which
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   245
    // checks if the store done to a different from the value's region.
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   246
    // And replace Cmp with #0 (false) to collapse G1 post barrier.
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   247
    Node* xorx = NULL;
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   248
    for (DUIterator_Fast imax, i = p2x->fast_outs(imax); i < imax; i++) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   249
      Node* u = p2x->fast_out(i);
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   250
      if (u->Opcode() == Op_XorX) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   251
        xorx = u;
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   252
        break;
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   253
      }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   254
    }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   255
    assert(xorx != NULL, "missing G1 post barrier");
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   256
    Node* shift = xorx->unique_out();
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   257
    Node* cmpx = shift->unique_out();
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   258
    assert(cmpx->is_Cmp() && cmpx->unique_out()->is_Bool() &&
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   259
    cmpx->unique_out()->as_Bool()->_test._test == BoolTest::ne,
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   260
    "missing region check in G1 post barrier");
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   261
    _igvn.replace_node(cmpx, makecon(TypeInt::CC_EQ));
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   262
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   263
    // Remove G1 pre barrier.
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   264
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   265
    // Search "if (marking != 0)" check and set it to "false".
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   266
    Node* this_region = p2x->in(0);
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   267
    assert(this_region != NULL, "");
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   268
    // There is no G1 pre barrier if previous stored value is NULL
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   269
    // (for example, after initialization).
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   270
    if (this_region->is_Region() && this_region->req() == 3) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   271
      int ind = 1;
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   272
      if (!this_region->in(ind)->is_IfFalse()) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   273
        ind = 2;
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   274
      }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   275
      if (this_region->in(ind)->is_IfFalse()) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   276
        Node* bol = this_region->in(ind)->in(0)->in(1);
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   277
        assert(bol->is_Bool(), "");
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   278
        cmpx = bol->in(1);
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   279
        if (bol->as_Bool()->_test._test == BoolTest::ne &&
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   280
            cmpx->is_Cmp() && cmpx->in(2) == intcon(0) &&
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   281
            cmpx->in(1)->is_Load()) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   282
          Node* adr = cmpx->in(1)->as_Load()->in(MemNode::Address);
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   283
          const int marking_offset = in_bytes(JavaThread::satb_mark_queue_offset() +
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   284
                                              PtrQueue::byte_offset_of_active());
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   285
          if (adr->is_AddP() && adr->in(AddPNode::Base) == top() &&
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   286
              adr->in(AddPNode::Address)->Opcode() == Op_ThreadLocal &&
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   287
              adr->in(AddPNode::Offset) == MakeConX(marking_offset)) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   288
            _igvn.replace_node(cmpx, makecon(TypeInt::CC_EQ));
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   289
          }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   290
        }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   291
      }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   292
    }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   293
    // Now CastP2X can be removed since it is used only on dead path
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   294
    // which currently still alive until igvn optimize it.
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   295
    assert(p2x->unique_out()->Opcode() == Op_URShiftX, "");
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   296
    _igvn.replace_node(p2x, top());
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   297
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   298
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   299
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   300
// Search for a memory operation for the specified memory slice.
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   301
static Node *scan_mem_chain(Node *mem, int alias_idx, int offset, Node *start_mem, Node *alloc, PhaseGVN *phase) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   302
  Node *orig_mem = mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   303
  Node *alloc_mem = alloc->in(TypeFunc::Memory);
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   304
  const TypeOopPtr *tinst = phase->C->get_adr_type(alias_idx)->isa_oopptr();
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   305
  while (true) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   306
    if (mem == alloc_mem || mem == start_mem ) {
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
   307
      return mem;  // hit one of our sentinels
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   308
    } else if (mem->is_MergeMem()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   309
      mem = mem->as_MergeMem()->memory_at(alias_idx);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   310
    } else if (mem->is_Proj() && mem->as_Proj()->_con == TypeFunc::Memory) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   311
      Node *in = mem->in(0);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   312
      // we can safely skip over safepoints, calls, locks and membars because we
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   313
      // already know that the object is safe to eliminate.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   314
      if (in->is_Initialize() && in->as_Initialize()->allocation() == alloc) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   315
        return in;
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   316
      } else if (in->is_Call()) {
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   317
        CallNode *call = in->as_Call();
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   318
        if (!call->may_modify(tinst, phase)) {
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   319
          mem = call->in(TypeFunc::Memory);
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   320
        }
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   321
        mem = in->in(TypeFunc::Memory);
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   322
      } else if (in->is_MemBar()) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   323
        mem = in->in(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   324
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   325
        assert(false, "unexpected projection");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   326
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   327
    } else if (mem->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   328
      const TypePtr* atype = mem->as_Store()->adr_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   329
      int adr_idx = Compile::current()->get_alias_index(atype);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   330
      if (adr_idx == alias_idx) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   331
        assert(atype->isa_oopptr(), "address type must be oopptr");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   332
        int adr_offset = atype->offset();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   333
        uint adr_iid = atype->is_oopptr()->instance_id();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   334
        // Array elements references have the same alias_idx
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   335
        // but different offset and different instance_id.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   336
        if (adr_offset == offset && adr_iid == alloc->_idx)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   337
          return mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   338
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   339
        assert(adr_idx == Compile::AliasIdxRaw, "address must match or be raw");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   340
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   341
      mem = mem->in(MemNode::Memory);
4470
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   342
    } else if (mem->is_ClearArray()) {
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   343
      if (!ClearArrayNode::step_through(&mem, alloc->_idx, phase)) {
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   344
        // Can not bypass initialization of the instance
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   345
        // we are looking.
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   346
        debug_only(intptr_t offset;)
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   347
        assert(alloc == AllocateNode::Ideal_allocation(mem->in(3), phase, offset), "sanity");
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   348
        InitializeNode* init = alloc->as_Allocate()->initialization();
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   349
        // We are looking for stored value, return Initialize node
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   350
        // or memory edge from Allocate node.
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   351
        if (init != NULL)
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   352
          return init;
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   353
        else
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   354
          return alloc->in(TypeFunc::Memory); // It will produce zero value (see callers).
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   355
      }
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   356
      // Otherwise skip it (the call updated 'mem' value).
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   357
    } else if (mem->Opcode() == Op_SCMemProj) {
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   358
      assert(mem->in(0)->is_LoadStore(), "sanity");
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   359
      const TypePtr* atype = mem->in(0)->in(MemNode::Address)->bottom_type()->is_ptr();
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   360
      int adr_idx = Compile::current()->get_alias_index(atype);
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   361
      if (adr_idx == alias_idx) {
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   362
        assert(false, "Object is not scalar replaceable if a LoadStore node access its field");
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   363
        return NULL;
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   364
      }
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   365
      mem = mem->in(0)->in(MemNode::Memory);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   366
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   367
      return mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   368
    }
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   369
    assert(mem != orig_mem, "dead memory loop");
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   370
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   371
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   372
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   373
//
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   374
// Given a Memory Phi, compute a value Phi containing the values from stores
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   375
// on the input paths.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   376
// Note: this function is recursive, its depth is limied by the "level" argument
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   377
// Returns the computed Phi, or NULL if it cannot compute it.
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   378
Node *PhaseMacroExpand::value_from_mem_phi(Node *mem, BasicType ft, const Type *phi_type, const TypeOopPtr *adr_t, Node *alloc, Node_Stack *value_phis, int level) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   379
  assert(mem->is_Phi(), "sanity");
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   380
  int alias_idx = C->get_alias_index(adr_t);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   381
  int offset = adr_t->offset();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   382
  int instance_id = adr_t->instance_id();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   383
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   384
  // Check if an appropriate value phi already exists.
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   385
  Node* region = mem->in(0);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   386
  for (DUIterator_Fast kmax, k = region->fast_outs(kmax); k < kmax; k++) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   387
    Node* phi = region->fast_out(k);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   388
    if (phi->is_Phi() && phi != mem &&
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   389
        phi->as_Phi()->is_same_inst_field(phi_type, instance_id, alias_idx, offset)) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   390
      return phi;
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   391
    }
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   392
  }
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   393
  // Check if an appropriate new value phi already exists.
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   394
  Node* new_phi = NULL;
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   395
  uint size = value_phis->size();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   396
  for (uint i=0; i < size; i++) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   397
    if ( mem->_idx == value_phis->index_at(i) ) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   398
      return value_phis->node_at(i);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   399
    }
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   400
  }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   401
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   402
  if (level <= 0) {
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   403
    return NULL; // Give up: phi tree too deep
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   404
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   405
  Node *start_mem = C->start()->proj_out(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   406
  Node *alloc_mem = alloc->in(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   407
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   408
  uint length = mem->req();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   409
  GrowableArray <Node *> values(length, length, NULL);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   410
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   411
  // create a new Phi for the value
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   412
  PhiNode *phi = new (C, length) PhiNode(mem->in(0), phi_type, NULL, instance_id, alias_idx, offset);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   413
  transform_later(phi);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   414
  value_phis->push(phi, mem->_idx);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   415
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   416
  for (uint j = 1; j < length; j++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   417
    Node *in = mem->in(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   418
    if (in == NULL || in->is_top()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   419
      values.at_put(j, in);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   420
    } else  {
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   421
      Node *val = scan_mem_chain(in, alias_idx, offset, start_mem, alloc, &_igvn);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   422
      if (val == start_mem || val == alloc_mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   423
        // hit a sentinel, return appropriate 0 value
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   424
        values.at_put(j, _igvn.zerocon(ft));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   425
        continue;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   426
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   427
      if (val->is_Initialize()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   428
        val = val->as_Initialize()->find_captured_store(offset, type2aelembytes(ft), &_igvn);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   429
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   430
      if (val == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   431
        return NULL;  // can't find a value on this path
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   432
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   433
      if (val == mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   434
        values.at_put(j, mem);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   435
      } else if (val->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   436
        values.at_put(j, val->in(MemNode::ValueIn));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   437
      } else if(val->is_Proj() && val->in(0) == alloc) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   438
        values.at_put(j, _igvn.zerocon(ft));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   439
      } else if (val->is_Phi()) {
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   440
        val = value_from_mem_phi(val, ft, phi_type, adr_t, alloc, value_phis, level-1);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   441
        if (val == NULL) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   442
          return NULL;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   443
        }
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   444
        values.at_put(j, val);
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   445
      } else if (val->Opcode() == Op_SCMemProj) {
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   446
        assert(val->in(0)->is_LoadStore(), "sanity");
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   447
        assert(false, "Object is not scalar replaceable if a LoadStore node access its field");
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   448
        return NULL;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   449
      } else {
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   450
#ifdef ASSERT
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   451
        val->dump();
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   452
        assert(false, "unknown node on this path");
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   453
#endif
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   454
        return NULL;  // unknown node on this path
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   455
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   456
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   457
  }
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   458
  // Set Phi's inputs
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   459
  for (uint j = 1; j < length; j++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   460
    if (values.at(j) == mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   461
      phi->init_req(j, phi);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   462
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   463
      phi->init_req(j, values.at(j));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   464
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   465
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   466
  return phi;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   467
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   468
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   469
// Search the last value stored into the object's field.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   470
Node *PhaseMacroExpand::value_from_mem(Node *sfpt_mem, BasicType ft, const Type *ftype, const TypeOopPtr *adr_t, Node *alloc) {
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   471
  assert(adr_t->is_known_instance_field(), "instance required");
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   472
  int instance_id = adr_t->instance_id();
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   473
  assert((uint)instance_id == alloc->_idx, "wrong allocation");
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   474
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   475
  int alias_idx = C->get_alias_index(adr_t);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   476
  int offset = adr_t->offset();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   477
  Node *start_mem = C->start()->proj_out(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   478
  Node *alloc_ctrl = alloc->in(TypeFunc::Control);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   479
  Node *alloc_mem = alloc->in(TypeFunc::Memory);
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   480
  Arena *a = Thread::current()->resource_area();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   481
  VectorSet visited(a);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   482
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   483
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   484
  bool done = sfpt_mem == alloc_mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   485
  Node *mem = sfpt_mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   486
  while (!done) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   487
    if (visited.test_set(mem->_idx)) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   488
      return NULL;  // found a loop, give up
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   489
    }
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   490
    mem = scan_mem_chain(mem, alias_idx, offset, start_mem, alloc, &_igvn);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   491
    if (mem == start_mem || mem == alloc_mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   492
      done = true;  // hit a sentinel, return appropriate 0 value
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   493
    } else if (mem->is_Initialize()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   494
      mem = mem->as_Initialize()->find_captured_store(offset, type2aelembytes(ft), &_igvn);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   495
      if (mem == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   496
        done = true; // Something go wrong.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   497
      } else if (mem->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   498
        const TypePtr* atype = mem->as_Store()->adr_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   499
        assert(C->get_alias_index(atype) == Compile::AliasIdxRaw, "store is correct memory slice");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   500
        done = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   501
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   502
    } else if (mem->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   503
      const TypeOopPtr* atype = mem->as_Store()->adr_type()->isa_oopptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   504
      assert(atype != NULL, "address type must be oopptr");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   505
      assert(C->get_alias_index(atype) == alias_idx &&
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   506
             atype->is_known_instance_field() && atype->offset() == offset &&
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   507
             atype->instance_id() == instance_id, "store is correct memory slice");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   508
      done = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   509
    } else if (mem->is_Phi()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   510
      // try to find a phi's unique input
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   511
      Node *unique_input = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   512
      Node *top = C->top();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   513
      for (uint i = 1; i < mem->req(); i++) {
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   514
        Node *n = scan_mem_chain(mem->in(i), alias_idx, offset, start_mem, alloc, &_igvn);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   515
        if (n == NULL || n == top || n == mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   516
          continue;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   517
        } else if (unique_input == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   518
          unique_input = n;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   519
        } else if (unique_input != n) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   520
          unique_input = top;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   521
          break;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   522
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   523
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   524
      if (unique_input != NULL && unique_input != top) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   525
        mem = unique_input;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   526
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   527
        done = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   528
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   529
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   530
      assert(false, "unexpected node");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   531
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   532
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   533
  if (mem != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   534
    if (mem == start_mem || mem == alloc_mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   535
      // hit a sentinel, return appropriate 0 value
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   536
      return _igvn.zerocon(ft);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   537
    } else if (mem->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   538
      return mem->in(MemNode::ValueIn);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   539
    } else if (mem->is_Phi()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   540
      // attempt to produce a Phi reflecting the values on the input paths of the Phi
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   541
      Node_Stack value_phis(a, 8);
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   542
      Node * phi = value_from_mem_phi(mem, ft, ftype, adr_t, alloc, &value_phis, ValueSearchLimit);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   543
      if (phi != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   544
        return phi;
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   545
      } else {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   546
        // Kill all new Phis
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   547
        while(value_phis.is_nonempty()) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   548
          Node* n = value_phis.node();
5901
c046f8e9c52b 6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents: 5889
diff changeset
   549
          _igvn.replace_node(n, C->top());
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   550
          value_phis.pop();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   551
        }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   552
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   553
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   554
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   555
  // Something go wrong.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   556
  return NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   557
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   558
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   559
// Check the possibility of scalar replacement.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   560
bool PhaseMacroExpand::can_eliminate_allocation(AllocateNode *alloc, GrowableArray <SafePointNode *>& safepoints) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   561
  //  Scan the uses of the allocation to check for anything that would
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   562
  //  prevent us from eliminating it.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   563
  NOT_PRODUCT( const char* fail_eliminate = NULL; )
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   564
  DEBUG_ONLY( Node* disq_node = NULL; )
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   565
  bool  can_eliminate = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   566
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   567
  Node* res = alloc->result_cast();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   568
  const TypeOopPtr* res_type = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   569
  if (res == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   570
    // All users were eliminated.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   571
  } else if (!res->is_CheckCastPP()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   572
    alloc->_is_scalar_replaceable = false;  // don't try again
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   573
    NOT_PRODUCT(fail_eliminate = "Allocation does not have unique CheckCastPP";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   574
    can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   575
  } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   576
    res_type = _igvn.type(res)->isa_oopptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   577
    if (res_type == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   578
      NOT_PRODUCT(fail_eliminate = "Neither instance or array allocation";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   579
      can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   580
    } else if (res_type->isa_aryptr()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   581
      int length = alloc->in(AllocateNode::ALength)->find_int_con(-1);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   582
      if (length < 0) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   583
        NOT_PRODUCT(fail_eliminate = "Array's size is not constant";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   584
        can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   585
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   586
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   587
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   588
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   589
  if (can_eliminate && res != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   590
    for (DUIterator_Fast jmax, j = res->fast_outs(jmax);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   591
                               j < jmax && can_eliminate; j++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   592
      Node* use = res->fast_out(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   593
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   594
      if (use->is_AddP()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   595
        const TypePtr* addp_type = _igvn.type(use)->is_ptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   596
        int offset = addp_type->offset();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   597
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   598
        if (offset == Type::OffsetTop || offset == Type::OffsetBot) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   599
          NOT_PRODUCT(fail_eliminate = "Undefined field referrence";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   600
          can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   601
          break;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   602
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   603
        for (DUIterator_Fast kmax, k = use->fast_outs(kmax);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   604
                                   k < kmax && can_eliminate; k++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   605
          Node* n = use->fast_out(k);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   606
          if (!n->is_Store() && n->Opcode() != Op_CastP2X) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   607
            DEBUG_ONLY(disq_node = n;)
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   608
            if (n->is_Load() || n->is_LoadStore()) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   609
              NOT_PRODUCT(fail_eliminate = "Field load";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   610
            } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   611
              NOT_PRODUCT(fail_eliminate = "Not store field referrence";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   612
            }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   613
            can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   614
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   615
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   616
      } else if (use->is_SafePoint()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   617
        SafePointNode* sfpt = use->as_SafePoint();
594
9f4474e5dbaf 6705887: Compressed Oops: generate x64 addressing and implicit null checks with narrow oops
kvn
parents: 589
diff changeset
   618
        if (sfpt->is_Call() && sfpt->as_Call()->has_non_debug_use(res)) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   619
          // Object is passed as argument.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   620
          DEBUG_ONLY(disq_node = use;)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   621
          NOT_PRODUCT(fail_eliminate = "Object is passed as argument";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   622
          can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   623
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   624
        Node* sfptMem = sfpt->memory();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   625
        if (sfptMem == NULL || sfptMem->is_top()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   626
          DEBUG_ONLY(disq_node = use;)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   627
          NOT_PRODUCT(fail_eliminate = "NULL or TOP memory";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   628
          can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   629
        } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   630
          safepoints.append_if_missing(sfpt);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   631
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   632
      } else if (use->Opcode() != Op_CastP2X) { // CastP2X is used by card mark
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   633
        if (use->is_Phi()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   634
          if (use->outcnt() == 1 && use->unique_out()->Opcode() == Op_Return) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   635
            NOT_PRODUCT(fail_eliminate = "Object is return value";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   636
          } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   637
            NOT_PRODUCT(fail_eliminate = "Object is referenced by Phi";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   638
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   639
          DEBUG_ONLY(disq_node = use;)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   640
        } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   641
          if (use->Opcode() == Op_Return) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   642
            NOT_PRODUCT(fail_eliminate = "Object is return value";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   643
          }else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   644
            NOT_PRODUCT(fail_eliminate = "Object is referenced by node";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   645
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   646
          DEBUG_ONLY(disq_node = use;)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   647
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   648
        can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   649
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   650
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   651
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   652
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   653
#ifndef PRODUCT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   654
  if (PrintEliminateAllocations) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   655
    if (can_eliminate) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   656
      tty->print("Scalar ");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   657
      if (res == NULL)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   658
        alloc->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   659
      else
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   660
        res->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   661
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   662
      tty->print("NotScalar (%s)", fail_eliminate);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   663
      if (res == NULL)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   664
        alloc->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   665
      else
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   666
        res->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   667
#ifdef ASSERT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   668
      if (disq_node != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   669
          tty->print("  >>>> ");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   670
          disq_node->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   671
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   672
#endif /*ASSERT*/
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   673
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   674
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   675
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   676
  return can_eliminate;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   677
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   678
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   679
// Do scalar replacement.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   680
bool PhaseMacroExpand::scalar_replacement(AllocateNode *alloc, GrowableArray <SafePointNode *>& safepoints) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   681
  GrowableArray <SafePointNode *> safepoints_done;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   682
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   683
  ciKlass* klass = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   684
  ciInstanceKlass* iklass = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   685
  int nfields = 0;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   686
  int array_base;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   687
  int element_size;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   688
  BasicType basic_elem_type;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   689
  ciType* elem_type;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   690
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   691
  Node* res = alloc->result_cast();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   692
  const TypeOopPtr* res_type = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   693
  if (res != NULL) { // Could be NULL when there are no users
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   694
    res_type = _igvn.type(res)->isa_oopptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   695
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   696
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   697
  if (res != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   698
    klass = res_type->klass();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   699
    if (res_type->isa_instptr()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   700
      // find the fields of the class which will be needed for safepoint debug information
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   701
      assert(klass->is_instance_klass(), "must be an instance klass.");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   702
      iklass = klass->as_instance_klass();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   703
      nfields = iklass->nof_nonstatic_fields();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   704
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   705
      // find the array's elements which will be needed for safepoint debug information
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   706
      nfields = alloc->in(AllocateNode::ALength)->find_int_con(-1);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   707
      assert(klass->is_array_klass() && nfields >= 0, "must be an array klass.");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   708
      elem_type = klass->as_array_klass()->element_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   709
      basic_elem_type = elem_type->basic_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   710
      array_base = arrayOopDesc::base_offset_in_bytes(basic_elem_type);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   711
      element_size = type2aelembytes(basic_elem_type);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   712
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   713
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   714
  //
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   715
  // Process the safepoint uses
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   716
  //
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   717
  while (safepoints.length() > 0) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   718
    SafePointNode* sfpt = safepoints.pop();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   719
    Node* mem = sfpt->memory();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   720
    uint first_ind = sfpt->req();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   721
    SafePointScalarObjectNode* sobj = new (C, 1) SafePointScalarObjectNode(res_type,
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   722
#ifdef ASSERT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   723
                                                 alloc,
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   724
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   725
                                                 first_ind, nfields);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   726
    sobj->init_req(0, sfpt->in(TypeFunc::Control));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   727
    transform_later(sobj);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   728
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   729
    // Scan object's fields adding an input to the safepoint for each field.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   730
    for (int j = 0; j < nfields; j++) {
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 961
diff changeset
   731
      intptr_t offset;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   732
      ciField* field = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   733
      if (iklass != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   734
        field = iklass->nonstatic_field_at(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   735
        offset = field->offset();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   736
        elem_type = field->type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   737
        basic_elem_type = field->layout_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   738
      } else {
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 961
diff changeset
   739
        offset = array_base + j * (intptr_t)element_size;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   740
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   741
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   742
      const Type *field_type;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   743
      // The next code is taken from Parse::do_get_xxx().
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   744
      if (basic_elem_type == T_OBJECT || basic_elem_type == T_ARRAY) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   745
        if (!elem_type->is_loaded()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   746
          field_type = TypeInstPtr::BOTTOM;
6177
12835feea156 6969569: assert(is_static() && is_constant()) failed: illegal call to constant_value()
kvn
parents: 5901
diff changeset
   747
        } else if (field != NULL && field->is_constant() && field->is_static()) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   748
          // This can happen if the constant oop is non-perm.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   749
          ciObject* con = field->constant_value().as_object();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   750
          // Do not "join" in the previous type; it doesn't add value,
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   751
          // and may yield a vacuous result if the field is of interface type.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   752
          field_type = TypeOopPtr::make_from_constant(con)->isa_oopptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   753
          assert(field_type != NULL, "field singleton type must be consistent");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   754
        } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   755
          field_type = TypeOopPtr::make_from_klass(elem_type->as_klass());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   756
        }
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   757
        if (UseCompressedOops) {
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 762
diff changeset
   758
          field_type = field_type->make_narrowoop();
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   759
          basic_elem_type = T_NARROWOOP;
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   760
        }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   761
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   762
        field_type = Type::get_const_basic_type(basic_elem_type);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   763
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   764
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   765
      const TypeOopPtr *field_addr_type = res_type->add_offset(offset)->isa_oopptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   766
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   767
      Node *field_val = value_from_mem(mem, basic_elem_type, field_type, field_addr_type, alloc);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   768
      if (field_val == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   769
        // we weren't able to find a value for this field,
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   770
        // give up on eliminating this allocation
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   771
        alloc->_is_scalar_replaceable = false;  // don't try again
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   772
        // remove any extra entries we added to the safepoint
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   773
        uint last = sfpt->req() - 1;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   774
        for (int k = 0;  k < j; k++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   775
          sfpt->del_req(last--);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   776
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   777
        // rollback processed safepoints
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   778
        while (safepoints_done.length() > 0) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   779
          SafePointNode* sfpt_done = safepoints_done.pop();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   780
          // remove any extra entries we added to the safepoint
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   781
          last = sfpt_done->req() - 1;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   782
          for (int k = 0;  k < nfields; k++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   783
            sfpt_done->del_req(last--);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   784
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   785
          JVMState *jvms = sfpt_done->jvms();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   786
          jvms->set_endoff(sfpt_done->req());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   787
          // Now make a pass over the debug information replacing any references
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   788
          // to SafePointScalarObjectNode with the allocated object.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   789
          int start = jvms->debug_start();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   790
          int end   = jvms->debug_end();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   791
          for (int i = start; i < end; i++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   792
            if (sfpt_done->in(i)->is_SafePointScalarObject()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   793
              SafePointScalarObjectNode* scobj = sfpt_done->in(i)->as_SafePointScalarObject();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   794
              if (scobj->first_index() == sfpt_done->req() &&
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   795
                  scobj->n_fields() == (uint)nfields) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   796
                assert(scobj->alloc() == alloc, "sanity");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   797
                sfpt_done->set_req(i, res);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   798
              }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   799
            }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   800
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   801
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   802
#ifndef PRODUCT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   803
        if (PrintEliminateAllocations) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   804
          if (field != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   805
            tty->print("=== At SafePoint node %d can't find value of Field: ",
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   806
                       sfpt->_idx);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   807
            field->print();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   808
            int field_idx = C->get_alias_index(field_addr_type);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   809
            tty->print(" (alias_idx=%d)", field_idx);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   810
          } else { // Array's element
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   811
            tty->print("=== At SafePoint node %d can't find value of array element [%d]",
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   812
                       sfpt->_idx, j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   813
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   814
          tty->print(", which prevents elimination of: ");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   815
          if (res == NULL)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   816
            alloc->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   817
          else
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   818
            res->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   819
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   820
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   821
        return false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   822
      }
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   823
      if (UseCompressedOops && field_type->isa_narrowoop()) {
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   824
        // Enable "DecodeN(EncodeP(Allocate)) --> Allocate" transformation
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   825
        // to be able scalar replace the allocation.
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 762
diff changeset
   826
        if (field_val->is_EncodeP()) {
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 762
diff changeset
   827
          field_val = field_val->in(1);
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 762
diff changeset
   828
        } else {
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 762
diff changeset
   829
          field_val = transform_later(new (C, 2) DecodeNNode(field_val, field_val->bottom_type()->make_ptr()));
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 762
diff changeset
   830
        }
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   831
      }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   832
      sfpt->add_req(field_val);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   833
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   834
    JVMState *jvms = sfpt->jvms();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   835
    jvms->set_endoff(sfpt->req());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   836
    // Now make a pass over the debug information replacing any references
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   837
    // to the allocated object with "sobj"
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   838
    int start = jvms->debug_start();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   839
    int end   = jvms->debug_end();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   840
    for (int i = start; i < end; i++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   841
      if (sfpt->in(i) == res) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   842
        sfpt->set_req(i, sobj);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   843
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   844
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   845
    safepoints_done.append_if_missing(sfpt); // keep it for rollback
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   846
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   847
  return true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   848
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   849
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   850
// Process users of eliminated allocation.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   851
void PhaseMacroExpand::process_users_of_allocation(AllocateNode *alloc) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   852
  Node* res = alloc->result_cast();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   853
  if (res != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   854
    for (DUIterator_Last jmin, j = res->last_outs(jmin); j >= jmin; ) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   855
      Node *use = res->last_out(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   856
      uint oc1 = res->outcnt();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   857
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   858
      if (use->is_AddP()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   859
        for (DUIterator_Last kmin, k = use->last_outs(kmin); k >= kmin; ) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   860
          Node *n = use->last_out(k);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   861
          uint oc2 = use->outcnt();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   862
          if (n->is_Store()) {
4470
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   863
#ifdef ASSERT
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   864
            // Verify that there is no dependent MemBarVolatile nodes,
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   865
            // they should be removed during IGVN, see MemBarNode::Ideal().
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   866
            for (DUIterator_Fast pmax, p = n->fast_outs(pmax);
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   867
                                       p < pmax; p++) {
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   868
              Node* mb = n->fast_out(p);
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   869
              assert(mb->is_Initialize() || !mb->is_MemBar() ||
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   870
                     mb->req() <= MemBarNode::Precedent ||
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   871
                     mb->in(MemBarNode::Precedent) != n,
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   872
                     "MemBarVolatile should be eliminated for non-escaping object");
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   873
            }
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   874
#endif
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   875
            _igvn.replace_node(n, n->in(MemNode::Memory));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   876
          } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   877
            eliminate_card_mark(n);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   878
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   879
          k -= (oc2 - use->outcnt());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   880
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   881
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   882
        eliminate_card_mark(use);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   883
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   884
      j -= (oc1 - res->outcnt());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   885
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   886
    assert(res->outcnt() == 0, "all uses of allocated objects must be deleted");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   887
    _igvn.remove_dead_node(res);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   888
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   889
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   890
  //
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   891
  // Process other users of allocation's projections
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   892
  //
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   893
  if (_resproj != NULL && _resproj->outcnt() != 0) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   894
    for (DUIterator_Last jmin, j = _resproj->last_outs(jmin); j >= jmin; ) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   895
      Node *use = _resproj->last_out(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   896
      uint oc1 = _resproj->outcnt();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   897
      if (use->is_Initialize()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   898
        // Eliminate Initialize node.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   899
        InitializeNode *init = use->as_Initialize();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   900
        assert(init->outcnt() <= 2, "only a control and memory projection expected");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   901
        Node *ctrl_proj = init->proj_out(TypeFunc::Control);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   902
        if (ctrl_proj != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   903
           assert(init->in(TypeFunc::Control) == _fallthroughcatchproj, "allocation control projection");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   904
          _igvn.replace_node(ctrl_proj, _fallthroughcatchproj);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   905
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   906
        Node *mem_proj = init->proj_out(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   907
        if (mem_proj != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   908
          Node *mem = init->in(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   909
#ifdef ASSERT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   910
          if (mem->is_MergeMem()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   911
            assert(mem->in(TypeFunc::Memory) == _memproj_fallthrough, "allocation memory projection");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   912
          } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   913
            assert(mem == _memproj_fallthrough, "allocation memory projection");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   914
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   915
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   916
          _igvn.replace_node(mem_proj, mem);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   917
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   918
      } else if (use->is_AddP()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   919
        // raw memory addresses used only by the initialization
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
   920
        _igvn.replace_node(use, C->top());
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   921
      } else  {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   922
        assert(false, "only Initialize or AddP expected");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   923
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   924
      j -= (oc1 - _resproj->outcnt());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   925
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   926
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   927
  if (_fallthroughcatchproj != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   928
    _igvn.replace_node(_fallthroughcatchproj, alloc->in(TypeFunc::Control));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   929
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   930
  if (_memproj_fallthrough != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   931
    _igvn.replace_node(_memproj_fallthrough, alloc->in(TypeFunc::Memory));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   932
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   933
  if (_memproj_catchall != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   934
    _igvn.replace_node(_memproj_catchall, C->top());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   935
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   936
  if (_ioproj_fallthrough != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   937
    _igvn.replace_node(_ioproj_fallthrough, alloc->in(TypeFunc::I_O));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   938
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   939
  if (_ioproj_catchall != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   940
    _igvn.replace_node(_ioproj_catchall, C->top());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   941
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   942
  if (_catchallcatchproj != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   943
    _igvn.replace_node(_catchallcatchproj, C->top());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   944
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   945
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   946
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   947
bool PhaseMacroExpand::eliminate_allocate_node(AllocateNode *alloc) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   948
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   949
  if (!EliminateAllocations || !alloc->_is_scalar_replaceable) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   950
    return false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   951
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   952
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   953
  extract_call_projections(alloc);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   954
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   955
  GrowableArray <SafePointNode *> safepoints;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   956
  if (!can_eliminate_allocation(alloc, safepoints)) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   957
    return false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   958
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   959
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   960
  if (!scalar_replacement(alloc, safepoints)) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   961
    return false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   962
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   963
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   964
  CompileLog* log = C->log();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   965
  if (log != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   966
    Node* klass = alloc->in(AllocateNode::KlassNode);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   967
    const TypeKlassPtr* tklass = _igvn.type(klass)->is_klassptr();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   968
    log->head("eliminate_allocation type='%d'",
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   969
              log->identify(tklass->klass()));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   970
    JVMState* p = alloc->jvms();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   971
    while (p != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   972
      log->elem("jvms bci='%d' method='%d'", p->bci(), log->identify(p->method()));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   973
      p = p->caller();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   974
    }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   975
    log->tail("eliminate_allocation");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   976
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   977
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   978
  process_users_of_allocation(alloc);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   979
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   980
#ifndef PRODUCT
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   981
  if (PrintEliminateAllocations) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   982
    if (alloc->is_AllocateArray())
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   983
      tty->print_cr("++++ Eliminated: %d AllocateArray", alloc->_idx);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   984
    else
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   985
      tty->print_cr("++++ Eliminated: %d Allocate", alloc->_idx);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
   986
  }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   987
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   988
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   989
  return true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   990
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   991
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
//---------------------------set_eden_pointers-------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
void PhaseMacroExpand::set_eden_pointers(Node* &eden_top_adr, Node* &eden_end_adr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  if (UseTLAB) {                // Private allocation: load from TLS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
    Node* thread = transform_later(new (C, 1) ThreadLocalNode());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
    int tlab_top_offset = in_bytes(JavaThread::tlab_top_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
    int tlab_end_offset = in_bytes(JavaThread::tlab_end_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    eden_top_adr = basic_plus_adr(top()/*not oop*/, thread, tlab_top_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    eden_end_adr = basic_plus_adr(top()/*not oop*/, thread, tlab_end_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  } else {                      // Shared allocation: load from globals
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
    CollectedHeap* ch = Universe::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
    address top_adr = (address)ch->top_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
    address end_adr = (address)ch->end_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
    eden_top_adr = makecon(TypeRawPtr::make(top_adr));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    eden_end_adr = basic_plus_adr(eden_top_adr, end_adr - top_adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
Node* PhaseMacroExpand::make_load(Node* ctl, Node* mem, Node* base, int offset, const Type* value_type, BasicType bt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  Node* adr = basic_plus_adr(base, offset);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1013
  const TypePtr* adr_type = adr->bottom_type()->is_ptr();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  1014
  Node* value = LoadNode::make(_igvn, ctl, mem, adr, adr_type, value_type, bt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  transform_later(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  return value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
Node* PhaseMacroExpand::make_store(Node* ctl, Node* mem, Node* base, int offset, Node* value, BasicType bt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  Node* adr = basic_plus_adr(base, offset);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  1022
  mem = StoreNode::make(_igvn, ctl, mem, adr, NULL, value, bt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  transform_later(mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  return mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
//                              A L L O C A T I O N
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
// Allocation attempts to be fast in the case of frequent small objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
// It breaks down like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
// 1) Size in doublewords is computed.  This is a constant for objects and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
// variable for most arrays.  Doubleword units are used to avoid size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
// overflow of huge doubleword arrays.  We need doublewords in the end for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
// rounding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
// 2) Size is checked for being 'too large'.  Too-large allocations will go
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
// the slow path into the VM.  The slow path can throw any required
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
// exceptions, and does all the special checks for very large arrays.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
// size test can constant-fold away for objects.  For objects with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
// finalizers it constant-folds the otherway: you always go slow with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
// finalizers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
// 3) If NOT using TLABs, this is the contended loop-back point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
// Load-Locked the heap top.  If using TLABs normal-load the heap top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
// 4) Check that heap top + size*8 < max.  If we fail go the slow ` route.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
// NOTE: "top+size*8" cannot wrap the 4Gig line!  Here's why: for largish
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
// "size*8" we always enter the VM, where "largish" is a constant picked small
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
// enough that there's always space between the eden max and 4Gig (old space is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
// there so it's quite large) and large enough that the cost of entering the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
// is dwarfed by the cost to initialize the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
// 5) If NOT using TLABs, Store-Conditional the adjusted heap top back
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
// down.  If contended, repeat at step 3.  If using TLABs normal-store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
// adjusted heap top back down; there is no contention.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
// 6) If !ZeroTLAB then Bulk-clear the object/array.  Fill in klass & mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
// fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
// 7) Merge with the slow-path; cast the raw memory pointer to the correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
// oop flavor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
// FastAllocateSizeLimit value is in DOUBLEWORDS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
// Allocations bigger than this always go the slow route.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
// This value must be small enough that allocation attempts that need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
// trigger exceptions go the slow route.  Also, it must be small enough so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
// that heap_top + size_in_bytes does not wrap around the 4Gig limit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
//=============================================================================j//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
// %%% Here is an old comment from parseHelper.cpp; is it outdated?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
// The allocator will coalesce int->oop copies away.  See comment in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
// coalesce.cpp about how this works.  It depends critically on the exact
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
// code shape produced here, so if you are changing this code shape
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
// make sure the GC info for the heap-top is correct in and around the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
// slow-path call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
void PhaseMacroExpand::expand_allocate_common(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
            AllocateNode* alloc, // allocation node to be expanded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
            Node* length,  // array length for an array allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
            const TypeFunc* slow_call_type, // Type of slow call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
            address slow_call_address  // Address of slow call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  Node* ctrl = alloc->in(TypeFunc::Control);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  Node* mem  = alloc->in(TypeFunc::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  Node* i_o  = alloc->in(TypeFunc::I_O);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  Node* size_in_bytes     = alloc->in(AllocateNode::AllocSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  Node* klass_node        = alloc->in(AllocateNode::KlassNode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  Node* initial_slow_test = alloc->in(AllocateNode::InitialTest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  assert(ctrl != NULL, "must have control");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  // We need a Region and corresponding Phi's to merge the slow-path and fast-path results.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  // they will not be used if "always_slow" is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  enum { slow_result_path = 1, fast_result_path = 2 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  Node *result_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  Node *result_phi_rawmem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  Node *result_phi_rawoop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  Node *result_phi_i_o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  // The initial slow comparison is a size check, the comparison
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  // we want to do is a BoolTest::gt
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  bool always_slow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  int tv = _igvn.find_int_con(initial_slow_test, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  if (tv >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
    always_slow = (tv == 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
    initial_slow_test = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
    initial_slow_test = BoolNode::make_predicate(initial_slow_test, &_igvn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 2532
diff changeset
  1116
  if (C->env()->dtrace_alloc_probes() ||
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1117
      !UseTLAB && (!Universe::heap()->supports_inline_contig_alloc() ||
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1118
                   (UseConcMarkSweepGC && CMSIncrementalMode))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
    // Force slow-path allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
    always_slow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
    initial_slow_test = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1124
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  enum { too_big_or_final_path = 1, need_gc_path = 2 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  Node *slow_region = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
  Node *toobig_false = ctrl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  assert (initial_slow_test == NULL || !always_slow, "arguments must be consistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  // generate the initial test if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
  if (initial_slow_test != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
    slow_region = new (C, 3) RegionNode(3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    // Now make the initial failure test.  Usually a too-big test but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
    // might be a TRUE for finalizers or a fancy class check for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
    // newInstance0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
    IfNode *toobig_iff = new (C, 2) IfNode(ctrl, initial_slow_test, PROB_MIN, COUNT_UNKNOWN);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
    transform_later(toobig_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
    // Plug the failing-too-big test into the slow-path region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
    Node *toobig_true = new (C, 1) IfTrueNode( toobig_iff );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
    transform_later(toobig_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
    slow_region    ->init_req( too_big_or_final_path, toobig_true );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
    toobig_false = new (C, 1) IfFalseNode( toobig_iff );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
    transform_later(toobig_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  } else {         // No initial test, just fall into next case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    toobig_false = ctrl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
    debug_only(slow_region = NodeSentinel);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  Node *slow_mem = mem;  // save the current memory state for slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  // generate the fast allocation code unless we know that the initial test will always go slow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  if (!always_slow) {
2029
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1153
    // Fast path modifies only raw memory.
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1154
    if (mem->is_MergeMem()) {
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1155
      mem = mem->as_MergeMem()->memory_at(Compile::AliasIdxRaw);
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1156
    }
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1157
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1158
    Node* eden_top_adr;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1159
    Node* eden_end_adr;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1160
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1161
    set_eden_pointers(eden_top_adr, eden_end_adr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1162
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1163
    // Load Eden::end.  Loop invariant and hoisted.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1164
    //
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1165
    // Note: We set the control input on "eden_end" and "old_eden_top" when using
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1166
    //       a TLAB to work around a bug where these values were being moved across
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1167
    //       a safepoint.  These are not oops, so they cannot be include in the oop
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1168
    //       map, but they can be changed by a GC.   The proper way to fix this would
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1169
    //       be to set the raw memory state when generating a  SafepointNode.  However
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1170
    //       this will require extensive changes to the loop optimization in order to
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1171
    //       prevent a degradation of the optimization.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1172
    //       See comment in memnode.hpp, around line 227 in class LoadPNode.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1173
    Node *eden_end = make_load(ctrl, mem, eden_end_adr, 0, TypeRawPtr::BOTTOM, T_ADDRESS);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1174
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
    // allocate the Region and Phi nodes for the result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
    result_region = new (C, 3) RegionNode(3);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1177
    result_phi_rawmem = new (C, 3) PhiNode(result_region, Type::MEMORY, TypeRawPtr::BOTTOM);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1178
    result_phi_rawoop = new (C, 3) PhiNode(result_region, TypeRawPtr::BOTTOM);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1179
    result_phi_i_o    = new (C, 3) PhiNode(result_region, Type::ABIO); // I/O is used for Prefetch
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
    // We need a Region for the loop-back contended case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
    enum { fall_in_path = 1, contended_loopback_path = 2 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
    Node *contended_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
    Node *contended_phi_rawmem;
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1185
    if (UseTLAB) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
      contended_region = toobig_false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
      contended_phi_rawmem = mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
      contended_region = new (C, 3) RegionNode(3);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1190
      contended_phi_rawmem = new (C, 3) PhiNode(contended_region, Type::MEMORY, TypeRawPtr::BOTTOM);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
      // Now handle the passing-too-big test.  We fall into the contended
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
      // loop-back merge point.
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1193
      contended_region    ->init_req(fall_in_path, toobig_false);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1194
      contended_phi_rawmem->init_req(fall_in_path, mem);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
      transform_later(contended_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
      transform_later(contended_phi_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
    // Load(-locked) the heap top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
    // See note above concerning the control input when using a TLAB
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
    Node *old_eden_top = UseTLAB
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1202
      ? new (C, 3) LoadPNode      (ctrl, contended_phi_rawmem, eden_top_adr, TypeRawPtr::BOTTOM, TypeRawPtr::BOTTOM)
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1203
      : new (C, 3) LoadPLockedNode(contended_region, contended_phi_rawmem, eden_top_adr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
    transform_later(old_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
    // Add to heap top to get a new heap top
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1207
    Node *new_eden_top = new (C, 4) AddPNode(top(), old_eden_top, size_in_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
    transform_later(new_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
    // Check for needing a GC; compare against heap end
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1210
    Node *needgc_cmp = new (C, 3) CmpPNode(new_eden_top, eden_end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
    transform_later(needgc_cmp);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1212
    Node *needgc_bol = new (C, 2) BoolNode(needgc_cmp, BoolTest::ge);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
    transform_later(needgc_bol);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1214
    IfNode *needgc_iff = new (C, 2) IfNode(contended_region, needgc_bol, PROB_UNLIKELY_MAG(4), COUNT_UNKNOWN);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    transform_later(needgc_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    // Plug the failing-heap-space-need-gc test into the slow-path region
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1218
    Node *needgc_true = new (C, 1) IfTrueNode(needgc_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
    transform_later(needgc_true);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1220
    if (initial_slow_test) {
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1221
      slow_region->init_req(need_gc_path, needgc_true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
      // This completes all paths into the slow merge point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
      transform_later(slow_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
    } else {                      // No initial slow path needed!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
      // Just fall from the need-GC path straight into the VM call.
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1226
      slow_region = needgc_true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
    // No need for a GC.  Setup for the Store-Conditional
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1229
    Node *needgc_false = new (C, 1) IfFalseNode(needgc_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
    transform_later(needgc_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
    // Grab regular I/O before optional prefetch may change it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
    // Slow-path does no I/O so just set it to the original I/O.
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1234
    result_phi_i_o->init_req(slow_result_path, i_o);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
    i_o = prefetch_allocation(i_o, needgc_false, contended_phi_rawmem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
                              old_eden_top, new_eden_top, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1239
    // Name successful fast-path variables
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1240
    Node* fast_oop = old_eden_top;
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1241
    Node* fast_oop_ctrl;
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1242
    Node* fast_oop_rawmem;
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1243
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
    // Store (-conditional) the modified eden top back down.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    // StorePConditional produces flags for a test PLUS a modified raw
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
    // memory state.
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1247
    if (UseTLAB) {
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1248
      Node* store_eden_top =
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1249
        new (C, 4) StorePNode(needgc_false, contended_phi_rawmem, eden_top_adr,
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1250
                              TypeRawPtr::BOTTOM, new_eden_top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
      transform_later(store_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
      fast_oop_ctrl = needgc_false; // No contention, so this is the fast path
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1253
      fast_oop_rawmem = store_eden_top;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    } else {
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1255
      Node* store_eden_top =
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1256
        new (C, 5) StorePConditionalNode(needgc_false, contended_phi_rawmem, eden_top_adr,
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1257
                                         new_eden_top, fast_oop/*old_eden_top*/);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
      transform_later(store_eden_top);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1259
      Node *contention_check = new (C, 2) BoolNode(store_eden_top, BoolTest::ne);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
      transform_later(contention_check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
      store_eden_top = new (C, 1) SCMemProjNode(store_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
      transform_later(store_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
      // If not using TLABs, check to see if there was contention.
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1265
      IfNode *contention_iff = new (C, 2) IfNode (needgc_false, contention_check, PROB_MIN, COUNT_UNKNOWN);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
      transform_later(contention_iff);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1267
      Node *contention_true = new (C, 1) IfTrueNode(contention_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
      transform_later(contention_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
      // If contention, loopback and try again.
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1270
      contended_region->init_req(contended_loopback_path, contention_true);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1271
      contended_phi_rawmem->init_req(contended_loopback_path, store_eden_top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
      // Fast-path succeeded with no contention!
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1274
      Node *contention_false = new (C, 1) IfFalseNode(contention_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
      transform_later(contention_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
      fast_oop_ctrl = contention_false;
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1277
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1278
      // Bump total allocated bytes for this thread
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1279
      Node* thread = new (C, 1) ThreadLocalNode();
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1280
      transform_later(thread);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1281
      Node* alloc_bytes_adr = basic_plus_adr(top()/*not oop*/, thread,
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1282
                                             in_bytes(JavaThread::allocated_bytes_offset()));
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1283
      Node* alloc_bytes = make_load(fast_oop_ctrl, store_eden_top, alloc_bytes_adr,
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1284
                                    0, TypeLong::LONG, T_LONG);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1285
#ifdef _LP64
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1286
      Node* alloc_size = size_in_bytes;
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1287
#else
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1288
      Node* alloc_size = new (C, 2) ConvI2LNode(size_in_bytes);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1289
      transform_later(alloc_size);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1290
#endif
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1291
      Node* new_alloc_bytes = new (C, 3) AddLNode(alloc_bytes, alloc_size);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1292
      transform_later(new_alloc_bytes);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1293
      fast_oop_rawmem = make_store(fast_oop_ctrl, store_eden_top, alloc_bytes_adr,
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1294
                                   0, new_alloc_bytes, T_LONG);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
    fast_oop_rawmem = initialize_object(alloc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
                                        fast_oop_ctrl, fast_oop_rawmem, fast_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
                                        klass_node, length, size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 2532
diff changeset
  1301
    if (C->env()->dtrace_extended_probes()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
      // Slow-path call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
      int size = TypeFunc::Parms + 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
      CallLeafNode *call = new (C, size) CallLeafNode(OptoRuntime::dtrace_object_alloc_Type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
                                                      CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_object_alloc_base),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
                                                      "dtrace_object_alloc",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
                                                      TypeRawPtr::BOTTOM);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
      // Get base of thread-local storage area
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
      Node* thread = new (C, 1) ThreadLocalNode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
      transform_later(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
      call->init_req(TypeFunc::Parms+0, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
      call->init_req(TypeFunc::Parms+1, fast_oop);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1315
      call->init_req(TypeFunc::Control, fast_oop_ctrl);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1316
      call->init_req(TypeFunc::I_O    , top()); // does no i/o
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1317
      call->init_req(TypeFunc::Memory , fast_oop_rawmem);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1318
      call->init_req(TypeFunc::ReturnAdr, alloc->in(TypeFunc::ReturnAdr));
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1319
      call->init_req(TypeFunc::FramePtr, alloc->in(TypeFunc::FramePtr));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
      transform_later(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
      fast_oop_ctrl = new (C, 1) ProjNode(call,TypeFunc::Control);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
      transform_later(fast_oop_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
      fast_oop_rawmem = new (C, 1) ProjNode(call,TypeFunc::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
      transform_later(fast_oop_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
    // Plug in the successful fast-path into the result merge point
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1328
    result_region    ->init_req(fast_result_path, fast_oop_ctrl);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1329
    result_phi_rawoop->init_req(fast_result_path, fast_oop);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1330
    result_phi_i_o   ->init_req(fast_result_path, i_o);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1331
    result_phi_rawmem->init_req(fast_result_path, fast_oop_rawmem);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
    slow_region = ctrl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  // Generate slow-path call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
  CallNode *call = new (C, slow_call_type->domain()->cnt())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
    CallStaticJavaNode(slow_call_type, slow_call_address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
                       OptoRuntime::stub_name(slow_call_address),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
                       alloc->jvms()->bci(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
                       TypePtr::BOTTOM);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  call->init_req( TypeFunc::Control, slow_region );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
  call->init_req( TypeFunc::I_O    , top() )     ;   // does no i/o
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
  call->init_req( TypeFunc::Memory , slow_mem ); // may gc ptrs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
  call->init_req( TypeFunc::ReturnAdr, alloc->in(TypeFunc::ReturnAdr) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
  call->init_req( TypeFunc::FramePtr, alloc->in(TypeFunc::FramePtr) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  call->init_req(TypeFunc::Parms+0, klass_node);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  if (length != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
    call->init_req(TypeFunc::Parms+1, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
  // Copy debug information and adjust JVMState information, then replace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  // allocate node with the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  copy_call_debug_info((CallNode *) alloc,  call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  if (!always_slow) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
    call->set_cnt(PROB_UNLIKELY_MAG(4));  // Same effect as RC_UNCOMMON.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  }
5901
c046f8e9c52b 6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents: 5889
diff changeset
  1359
  _igvn.replace_node(alloc, call);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
  transform_later(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
  // Identify the output projections from the allocate node and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
  // adjust any references to them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  // The control and io projections look like:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
  //        v---Proj(ctrl) <-----+   v---CatchProj(ctrl)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
  //  Allocate                   Catch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  //        ^---Proj(io) <-------+   ^---CatchProj(io)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  //  We are interested in the CatchProj nodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  extract_call_projections(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  // An allocate node has separate memory projections for the uses on the control and i_o paths
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  // Replace uses of the control memory projection with result_phi_rawmem (unless we are only generating a slow call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
  if (!always_slow && _memproj_fallthrough != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
    for (DUIterator_Fast imax, i = _memproj_fallthrough->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
      Node *use = _memproj_fallthrough->fast_out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
      _igvn.hash_delete(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
      imax -= replace_input(use, _memproj_fallthrough, result_phi_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
      _igvn._worklist.push(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
      // back up iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
      --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  // Now change uses of _memproj_catchall to use _memproj_fallthrough and delete _memproj_catchall so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
  // we end up with a call that has only 1 memory projection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
  if (_memproj_catchall != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
    if (_memproj_fallthrough == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
      _memproj_fallthrough = new (C, 1) ProjNode(call, TypeFunc::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
      transform_later(_memproj_fallthrough);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
    for (DUIterator_Fast imax, i = _memproj_catchall->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
      Node *use = _memproj_catchall->fast_out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
      _igvn.hash_delete(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
      imax -= replace_input(use, _memproj_catchall, _memproj_fallthrough);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
      _igvn._worklist.push(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
      // back up iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
      --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  // An allocate node has separate i_o projections for the uses on the control and i_o paths
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
  // Replace uses of the control i_o projection with result_phi_i_o (unless we are only generating a slow call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  if (_ioproj_fallthrough == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
    _ioproj_fallthrough = new (C, 1) ProjNode(call, TypeFunc::I_O);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
    transform_later(_ioproj_fallthrough);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
  } else if (!always_slow) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
    for (DUIterator_Fast imax, i = _ioproj_fallthrough->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
      Node *use = _ioproj_fallthrough->fast_out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
      _igvn.hash_delete(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
      imax -= replace_input(use, _ioproj_fallthrough, result_phi_i_o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
      _igvn._worklist.push(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
      // back up iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
      --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
  // Now change uses of _ioproj_catchall to use _ioproj_fallthrough and delete _ioproj_catchall so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  // we end up with a call that has only 1 control projection
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  if (_ioproj_catchall != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
    for (DUIterator_Fast imax, i = _ioproj_catchall->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
      Node *use = _ioproj_catchall->fast_out(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
      _igvn.hash_delete(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
      imax -= replace_input(use, _ioproj_catchall, _ioproj_fallthrough);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
      _igvn._worklist.push(use);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
      // back up iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
      --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
  // if we generated only a slow call, we are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
  if (always_slow)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
  if (_fallthroughcatchproj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
    ctrl = _fallthroughcatchproj->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
    transform_later(ctrl);
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1440
    _igvn.replace_node(_fallthroughcatchproj, result_region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
    ctrl = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
  Node *slow_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  if (_resproj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
    // no uses of the allocation result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
    slow_result = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
    slow_result = _resproj->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
    transform_later(slow_result);
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1451
    _igvn.replace_node(_resproj, result_phi_rawoop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  // Plug slow-path into result merge point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
  result_region    ->init_req( slow_result_path, ctrl );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
  result_phi_rawoop->init_req( slow_result_path, slow_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  result_phi_rawmem->init_req( slow_result_path, _memproj_fallthrough );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  transform_later(result_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  transform_later(result_phi_rawoop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  transform_later(result_phi_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
  transform_later(result_phi_i_o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  // This completes all paths into the result merge point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
// Helper for PhaseMacroExpand::expand_allocate_common.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
// Initializes the newly-allocated storage.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
Node*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
PhaseMacroExpand::initialize_object(AllocateNode* alloc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
                                    Node* control, Node* rawmem, Node* object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
                                    Node* klass_node, Node* length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
                                    Node* size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
  InitializeNode* init = alloc->initialization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  // Store the klass & mark bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  Node* mark_node = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  // For now only enable fast locking for non-array types
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
  if (UseBiasedLocking && (length == NULL)) {
5889
13152be884e5 6959430: Make sure raw loads have control edge
kvn
parents: 5547
diff changeset
  1478
    mark_node = make_load(control, rawmem, klass_node, Klass::prototype_header_offset_in_bytes() + sizeof(oopDesc), TypeRawPtr::BOTTOM, T_ADDRESS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
    mark_node = makecon(TypeRawPtr::make((address)markOopDesc::prototype()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
  rawmem = make_store(control, rawmem, object, oopDesc::mark_offset_in_bytes(), mark_node, T_ADDRESS);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  1483
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  rawmem = make_store(control, rawmem, object, oopDesc::klass_offset_in_bytes(), klass_node, T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
  int header_size = alloc->minimum_header_size();  // conservatively small
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
  // Array length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  if (length != NULL) {         // Arrays need length field
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
    rawmem = make_store(control, rawmem, object, arrayOopDesc::length_offset_in_bytes(), length, T_INT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
    // conservatively small header size:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  1491
    header_size = arrayOopDesc::base_offset_in_bytes(T_BYTE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
    ciKlass* k = _igvn.type(klass_node)->is_klassptr()->klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
    if (k->is_array_klass())    // we know the exact header size in most cases:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
      header_size = Klass::layout_helper_header_size(k->layout_helper());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
  // Clear the object body, if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
  if (init == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
    // The init has somehow disappeared; be cautious and clear everything.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
    // This can happen if a node is allocated but an uncommon trap occurs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    // immediately.  In this case, the Initialize gets associated with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
    // trap, and may be placed in a different (outer) loop, if the Allocate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
    // is in a loop.  If (this is rare) the inner loop gets unrolled, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
    // there can be two Allocates to one Initialize.  The answer in all these
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
    // edge cases is safety first.  It is always safe to clear immediately
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
    // within an Allocate, and then (maybe or maybe not) clear some more later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
    if (!ZeroTLAB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
      rawmem = ClearArrayNode::clear_memory(control, rawmem, object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
                                            header_size, size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
                                            &_igvn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
    if (!init->is_complete()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
      // Try to win by zeroing only what the init does not store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
      // We can also try to do some peephole optimizations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
      // such as combining some adjacent subword stores.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
      rawmem = init->complete_stores(control, rawmem, object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
                                     header_size, size_in_bytes, &_igvn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
    // We have no more use for this link, since the AllocateNode goes away:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
    init->set_req(InitializeNode::RawAddress, top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
    // (If we keep the link, it just confuses the register allocator,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
    // who thinks he sees a real use of the address by the membar.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
  return rawmem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
// Generate prefetch instructions for next allocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
Node* PhaseMacroExpand::prefetch_allocation(Node* i_o, Node*& needgc_false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
                                        Node*& contended_phi_rawmem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
                                        Node* old_eden_top, Node* new_eden_top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
                                        Node* length) {
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1534
   enum { fall_in_path = 1, pf_path = 2 };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
   if( UseTLAB && AllocatePrefetchStyle == 2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
      // Generate prefetch allocation with watermark check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
      // As an allocation hits the watermark, we will prefetch starting
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
      // at a "distance" away from watermark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
      Node *pf_region = new (C, 3) RegionNode(3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
      Node *pf_phi_rawmem = new (C, 3) PhiNode( pf_region, Type::MEMORY,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
                                                TypeRawPtr::BOTTOM );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
      // I/O is used for Prefetch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
      Node *pf_phi_abio = new (C, 3) PhiNode( pf_region, Type::ABIO );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
      Node *thread = new (C, 1) ThreadLocalNode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
      transform_later(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
      Node *eden_pf_adr = new (C, 4) AddPNode( top()/*not oop*/, thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
                   _igvn.MakeConX(in_bytes(JavaThread::tlab_pf_top_offset())) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
      transform_later(eden_pf_adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
      Node *old_pf_wm = new (C, 3) LoadPNode( needgc_false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
                                   contended_phi_rawmem, eden_pf_adr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
                                   TypeRawPtr::BOTTOM, TypeRawPtr::BOTTOM );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
      transform_later(old_pf_wm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
      // check against new_eden_top
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
      Node *need_pf_cmp = new (C, 3) CmpPNode( new_eden_top, old_pf_wm );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
      transform_later(need_pf_cmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
      Node *need_pf_bol = new (C, 2) BoolNode( need_pf_cmp, BoolTest::ge );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
      transform_later(need_pf_bol);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
      IfNode *need_pf_iff = new (C, 2) IfNode( needgc_false, need_pf_bol,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
                                       PROB_UNLIKELY_MAG(4), COUNT_UNKNOWN );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
      transform_later(need_pf_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
      // true node, add prefetchdistance
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
      Node *need_pf_true = new (C, 1) IfTrueNode( need_pf_iff );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
      transform_later(need_pf_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
      Node *need_pf_false = new (C, 1) IfFalseNode( need_pf_iff );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
      transform_later(need_pf_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
      Node *new_pf_wmt = new (C, 4) AddPNode( top(), old_pf_wm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
                                    _igvn.MakeConX(AllocatePrefetchDistance) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
      transform_later(new_pf_wmt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
      new_pf_wmt->set_req(0, need_pf_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
      Node *store_new_wmt = new (C, 4) StorePNode( need_pf_true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
                                       contended_phi_rawmem, eden_pf_adr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
                                       TypeRawPtr::BOTTOM, new_pf_wmt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
      transform_later(store_new_wmt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
      // adding prefetches
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
      pf_phi_abio->init_req( fall_in_path, i_o );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
      Node *prefetch_adr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
      Node *prefetch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
      uint lines = AllocatePrefetchDistance / AllocatePrefetchStepSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
      uint step_size = AllocatePrefetchStepSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
      uint distance = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
      for ( uint i = 0; i < lines; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
        prefetch_adr = new (C, 4) AddPNode( old_pf_wm, new_pf_wmt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
                                            _igvn.MakeConX(distance) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
        transform_later(prefetch_adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
        prefetch = new (C, 3) PrefetchWriteNode( i_o, prefetch_adr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
        transform_later(prefetch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
        distance += step_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
        i_o = prefetch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
      pf_phi_abio->set_req( pf_path, i_o );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
      pf_region->init_req( fall_in_path, need_pf_false );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
      pf_region->init_req( pf_path, need_pf_true );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
      pf_phi_rawmem->init_req( fall_in_path, contended_phi_rawmem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
      pf_phi_rawmem->init_req( pf_path, store_new_wmt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
      transform_later(pf_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
      transform_later(pf_phi_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
      transform_later(pf_phi_abio);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
      needgc_false = pf_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
      contended_phi_rawmem = pf_phi_rawmem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
      i_o = pf_phi_abio;
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1617
   } else if( UseTLAB && AllocatePrefetchStyle == 3 ) {
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1618
      // Insert a prefetch for each allocation only on the fast-path
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1619
      Node *pf_region = new (C, 3) RegionNode(3);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1620
      Node *pf_phi_rawmem = new (C, 3) PhiNode( pf_region, Type::MEMORY,
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1621
                                                TypeRawPtr::BOTTOM );
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1622
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1623
      // Generate several prefetch instructions only for arrays.
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1624
      uint lines = (length != NULL) ? AllocatePrefetchLines : 1;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1625
      uint step_size = AllocatePrefetchStepSize;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1626
      uint distance = AllocatePrefetchDistance;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1627
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1628
      // Next cache address.
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1629
      Node *cache_adr = new (C, 4) AddPNode(old_eden_top, old_eden_top,
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1630
                                            _igvn.MakeConX(distance));
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1631
      transform_later(cache_adr);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1632
      cache_adr = new (C, 2) CastP2XNode(needgc_false, cache_adr);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1633
      transform_later(cache_adr);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1634
      Node* mask = _igvn.MakeConX(~(intptr_t)(step_size-1));
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1635
      cache_adr = new (C, 3) AndXNode(cache_adr, mask);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1636
      transform_later(cache_adr);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1637
      cache_adr = new (C, 2) CastX2PNode(cache_adr);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1638
      transform_later(cache_adr);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1639
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1640
      // Prefetch
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1641
      Node *prefetch = new (C, 3) PrefetchWriteNode( contended_phi_rawmem, cache_adr );
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1642
      prefetch->set_req(0, needgc_false);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1643
      transform_later(prefetch);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1644
      contended_phi_rawmem = prefetch;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1645
      Node *prefetch_adr;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1646
      distance = step_size;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1647
      for ( uint i = 1; i < lines; i++ ) {
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1648
        prefetch_adr = new (C, 4) AddPNode( cache_adr, cache_adr,
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1649
                                            _igvn.MakeConX(distance) );
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1650
        transform_later(prefetch_adr);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1651
        prefetch = new (C, 3) PrefetchWriteNode( contended_phi_rawmem, prefetch_adr );
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1652
        transform_later(prefetch);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1653
        distance += step_size;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1654
        contended_phi_rawmem = prefetch;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1655
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
   } else if( AllocatePrefetchStyle > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
      // Insert a prefetch for each allocation only on the fast-path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
      Node *prefetch_adr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
      Node *prefetch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
      // Generate several prefetch instructions only for arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
      uint lines = (length != NULL) ? AllocatePrefetchLines : 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
      uint step_size = AllocatePrefetchStepSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
      uint distance = AllocatePrefetchDistance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
      for ( uint i = 0; i < lines; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
        prefetch_adr = new (C, 4) AddPNode( old_eden_top, new_eden_top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
                                            _igvn.MakeConX(distance) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
        transform_later(prefetch_adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
        prefetch = new (C, 3) PrefetchWriteNode( i_o, prefetch_adr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
        // Do not let it float too high, since if eden_top == eden_end,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
        // both might be null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
        if( i == 0 ) { // Set control for first prefetch, next follows it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
          prefetch->init_req(0, needgc_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
        transform_later(prefetch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
        distance += step_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
        i_o = prefetch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
   return i_o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
void PhaseMacroExpand::expand_allocate(AllocateNode *alloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
  expand_allocate_common(alloc, NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
                         OptoRuntime::new_instance_Type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
                         OptoRuntime::new_instance_Java());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
void PhaseMacroExpand::expand_allocate_array(AllocateArrayNode *alloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
  Node* length = alloc->in(AllocateNode::ALength);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
  expand_allocate_common(alloc, length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
                         OptoRuntime::new_array_Type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
                         OptoRuntime::new_array_Java());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1696
//-----------------------mark_eliminated_locking_nodes-----------------------
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1697
// During EA obj may point to several objects but after few ideal graph
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1698
// transformations (CCP) it may point to only one non escaping object
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1699
// (but still using phi), corresponding locks and unlocks will be marked
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1700
// for elimination. Later obj could be replaced with a new node (new phi)
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1701
// and which does not have escape information. And later after some graph
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1702
// reshape other locks and unlocks (which were not marked for elimination
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1703
// before) are connected to this new obj (phi) but they still will not be
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1704
// marked for elimination since new obj has no escape information.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1705
// Mark all associated (same box and obj) lock and unlock nodes for
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1706
// elimination if some of them marked already.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1707
void PhaseMacroExpand::mark_eliminated_locking_nodes(AbstractLockNode *alock) {
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1708
  if (!alock->is_eliminated()) {
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1709
    return;
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1710
  }
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1711
  if (!alock->is_coarsened()) { // Eliminated by EA
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1712
      // Create new "eliminated" BoxLock node and use it
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1713
      // in monitor debug info for the same object.
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1714
      BoxLockNode* oldbox = alock->box_node()->as_BoxLock();
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1715
      Node* obj = alock->obj_node();
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1716
      if (!oldbox->is_eliminated()) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1717
        BoxLockNode* newbox = oldbox->clone()->as_BoxLock();
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1718
        // Note: BoxLock node is marked eliminated only here
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1719
        // and it is used to indicate that all associated lock
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1720
        // and unlock nodes are marked for elimination.
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1721
        newbox->set_eliminated();
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1722
        transform_later(newbox);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1723
        // Replace old box node with new box for all users
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1724
        // of the same object.
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1725
        for (uint i = 0; i < oldbox->outcnt();) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1726
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1727
          bool next_edge = true;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1728
          Node* u = oldbox->raw_out(i);
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1729
          if (u->is_AbstractLock() &&
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1730
              u->as_AbstractLock()->obj_node() == obj &&
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1731
              u->as_AbstractLock()->box_node() == oldbox) {
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1732
            // Mark all associated locks and unlocks.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1733
            u->as_AbstractLock()->set_eliminated();
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1734
            _igvn.hash_delete(u);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1735
            u->set_req(TypeFunc::Parms + 1, newbox);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1736
            next_edge = false;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1737
          }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1738
          // Replace old box in monitor debug info.
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1739
          if (u->is_SafePoint() && u->as_SafePoint()->jvms()) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1740
            SafePointNode* sfn = u->as_SafePoint();
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1741
            JVMState* youngest_jvms = sfn->jvms();
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1742
            int max_depth = youngest_jvms->depth();
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1743
            for (int depth = 1; depth <= max_depth; depth++) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1744
              JVMState* jvms = youngest_jvms->of_depth(depth);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1745
              int num_mon  = jvms->nof_monitors();
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1746
              // Loop over monitors
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1747
              for (int idx = 0; idx < num_mon; idx++) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1748
                Node* obj_node = sfn->monitor_obj(jvms, idx);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1749
                Node* box_node = sfn->monitor_box(jvms, idx);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1750
                if (box_node == oldbox && obj_node == obj) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1751
                  int j = jvms->monitor_box_offset(idx);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1752
                  _igvn.hash_delete(u);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1753
                  u->set_req(j, newbox);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1754
                  next_edge = false;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1755
                }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1756
              } // for (int idx = 0;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1757
            } // for (int depth = 1;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1758
          } // if (u->is_SafePoint()
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1759
          if (next_edge) i++;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1760
        } // for (uint i = 0; i < oldbox->outcnt();)
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1761
      } // if (!oldbox->is_eliminated())
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1762
  } // if (!alock->is_coarsened())
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1763
}
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1764
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1765
// we have determined that this lock/unlock can be eliminated, we simply
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1766
// eliminate the node without expanding it.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1767
//
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1768
// Note:  The membar's associated with the lock/unlock are currently not
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1769
//        eliminated.  This should be investigated as a future enhancement.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1770
//
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1771
bool PhaseMacroExpand::eliminate_locking_node(AbstractLockNode *alock) {
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1772
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1773
  if (!alock->is_eliminated()) {
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1774
    return false;
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1775
  }
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1776
#ifdef ASSERT
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1777
  if (alock->is_Lock() && !alock->is_coarsened()) {
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1778
    // Check that new "eliminated" BoxLock node is created.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1779
    BoxLockNode* oldbox = alock->box_node()->as_BoxLock();
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1780
    assert(oldbox->is_eliminated(), "should be done already");
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1781
  }
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  1782
#endif
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1783
  CompileLog* log = C->log();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1784
  if (log != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1785
    log->head("eliminate_lock lock='%d'",
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1786
              alock->is_Lock());
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1787
    JVMState* p = alock->jvms();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1788
    while (p != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1789
      log->elem("jvms bci='%d' method='%d'", p->bci(), log->identify(p->method()));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1790
      p = p->caller();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1791
    }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1792
    log->tail("eliminate_lock");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1793
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1794
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1795
  #ifndef PRODUCT
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1796
  if (PrintEliminateLocks) {
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1797
    if (alock->is_Lock()) {
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1798
      tty->print_cr("++++ Eliminating: %d Lock", alock->_idx);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1799
    } else {
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1800
      tty->print_cr("++++ Eliminating: %d Unlock", alock->_idx);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1801
    }
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1802
  }
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1803
  #endif
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1804
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1805
  Node* mem  = alock->in(TypeFunc::Memory);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1806
  Node* ctrl = alock->in(TypeFunc::Control);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1807
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1808
  extract_call_projections(alock);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1809
  // There are 2 projections from the lock.  The lock node will
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1810
  // be deleted when its last use is subsumed below.
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1811
  assert(alock->outcnt() == 2 &&
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1812
         _fallthroughproj != NULL &&
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1813
         _memproj_fallthrough != NULL,
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1814
         "Unexpected projections from Lock/Unlock");
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1815
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1816
  Node* fallthroughproj = _fallthroughproj;
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1817
  Node* memproj_fallthrough = _memproj_fallthrough;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
  // The memory projection from a lock/unlock is RawMem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
  // The input to a Lock is merged memory, so extract its RawMem input
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
  // (unless the MergeMem has been optimized away.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
  if (alock->is_Lock()) {
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1823
    // Seach for MemBarAcquire node and delete it also.
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1824
    MemBarNode* membar = fallthroughproj->unique_ctrl_out()->as_MemBar();
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1825
    assert(membar != NULL && membar->Opcode() == Op_MemBarAcquire, "");
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1826
    Node* ctrlproj = membar->proj_out(TypeFunc::Control);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1827
    Node* memproj = membar->proj_out(TypeFunc::Memory);
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1828
    _igvn.replace_node(ctrlproj, fallthroughproj);
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1829
    _igvn.replace_node(memproj, memproj_fallthrough);
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1830
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1831
    // Delete FastLock node also if this Lock node is unique user
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1832
    // (a loop peeling may clone a Lock node).
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1833
    Node* flock = alock->as_Lock()->fastlock_node();
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1834
    if (flock->outcnt() == 1) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1835
      assert(flock->unique_out() == alock, "sanity");
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1836
      _igvn.replace_node(flock, top());
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  1837
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1840
  // Seach for MemBarRelease node and delete it also.
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1841
  if (alock->is_Unlock() && ctrl != NULL && ctrl->is_Proj() &&
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1842
      ctrl->in(0)->is_MemBar()) {
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1843
    MemBarNode* membar = ctrl->in(0)->as_MemBar();
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1844
    assert(membar->Opcode() == Op_MemBarRelease &&
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1845
           mem->is_Proj() && membar == mem->in(0), "");
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1846
    _igvn.replace_node(fallthroughproj, ctrl);
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1847
    _igvn.replace_node(memproj_fallthrough, mem);
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1848
    fallthroughproj = ctrl;
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1849
    memproj_fallthrough = mem;
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1850
    ctrl = membar->in(TypeFunc::Control);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1851
    mem  = membar->in(TypeFunc::Memory);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1852
  }
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1853
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1854
  _igvn.replace_node(fallthroughproj, ctrl);
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  1855
  _igvn.replace_node(memproj_fallthrough, mem);
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1856
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
//------------------------------expand_lock_node----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
void PhaseMacroExpand::expand_lock_node(LockNode *lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
  Node* ctrl = lock->in(TypeFunc::Control);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
  Node* mem = lock->in(TypeFunc::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
  Node* obj = lock->obj_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
  Node* box = lock->box_node();
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  1867
  Node* flock = lock->fastlock_node();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
  // Make the merge point
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1870
  Node *region;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1871
  Node *mem_phi;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1872
  Node *slow_path;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1873
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1874
  if (UseOptoBiasInlining) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1875
    /*
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
  1876
     *  See the full description in MacroAssembler::biased_locking_enter().
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1877
     *
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1878
     *  if( (mark_word & biased_lock_mask) == biased_lock_pattern ) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1879
     *    // The object is biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1880
     *    proto_node = klass->prototype_header;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1881
     *    o_node = thread | proto_node;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1882
     *    x_node = o_node ^ mark_word;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1883
     *    if( (x_node & ~age_mask) == 0 ) { // Biased to the current thread ?
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1884
     *      // Done.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1885
     *    } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1886
     *      if( (x_node & biased_lock_mask) != 0 ) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1887
     *        // The klass's prototype header is no longer biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1888
     *        cas(&mark_word, mark_word, proto_node)
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1889
     *        goto cas_lock;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1890
     *      } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1891
     *        // The klass's prototype header is still biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1892
     *        if( (x_node & epoch_mask) != 0 ) { // Expired epoch?
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1893
     *          old = mark_word;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1894
     *          new = o_node;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1895
     *        } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1896
     *          // Different thread or anonymous biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1897
     *          old = mark_word & (epoch_mask | age_mask | biased_lock_mask);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1898
     *          new = thread | old;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1899
     *        }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1900
     *        // Try to rebias.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1901
     *        if( cas(&mark_word, old, new) == 0 ) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1902
     *          // Done.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1903
     *        } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1904
     *          goto slow_path; // Failed.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1905
     *        }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1906
     *      }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1907
     *    }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1908
     *  } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1909
     *    // The object is not biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1910
     *    cas_lock:
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1911
     *    if( FastLock(obj) == 0 ) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1912
     *      // Done.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1913
     *    } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1914
     *      slow_path:
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1915
     *      OptoRuntime::complete_monitor_locking_Java(obj);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1916
     *    }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1917
     *  }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1918
     */
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1919
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1920
    region  = new (C, 5) RegionNode(5);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1921
    // create a Phi for the memory state
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1922
    mem_phi = new (C, 5) PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1923
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1924
    Node* fast_lock_region  = new (C, 3) RegionNode(3);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1925
    Node* fast_lock_mem_phi = new (C, 3) PhiNode( fast_lock_region, Type::MEMORY, TypeRawPtr::BOTTOM);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1926
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1927
    // First, check mark word for the biased lock pattern.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1928
    Node* mark_node = make_load(ctrl, mem, obj, oopDesc::mark_offset_in_bytes(), TypeX_X, TypeX_X->basic_type());
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1929
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1930
    // Get fast path - mark word has the biased lock pattern.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1931
    ctrl = opt_bits_test(ctrl, fast_lock_region, 1, mark_node,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1932
                         markOopDesc::biased_lock_mask_in_place,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1933
                         markOopDesc::biased_lock_pattern, true);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1934
    // fast_lock_region->in(1) is set to slow path.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1935
    fast_lock_mem_phi->init_req(1, mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1936
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1937
    // Now check that the lock is biased to the current thread and has
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1938
    // the same epoch and bias as Klass::_prototype_header.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1939
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1940
    // Special-case a fresh allocation to avoid building nodes:
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1941
    Node* klass_node = AllocateNode::Ideal_klass(obj, &_igvn);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1942
    if (klass_node == NULL) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1943
      Node* k_adr = basic_plus_adr(obj, oopDesc::klass_offset_in_bytes());
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1944
      klass_node = transform_later( LoadKlassNode::make(_igvn, mem, k_adr, _igvn.type(k_adr)->is_ptr()) );
1677
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  1945
#ifdef _LP64
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  1946
      if (UseCompressedOops && klass_node->is_DecodeN()) {
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  1947
        assert(klass_node->in(1)->Opcode() == Op_LoadNKlass, "sanity");
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  1948
        klass_node->in(1)->init_req(0, ctrl);
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  1949
      } else
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  1950
#endif
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  1951
      klass_node->init_req(0, ctrl);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1952
    }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1953
    Node *proto_node = make_load(ctrl, mem, klass_node, Klass::prototype_header_offset_in_bytes() + sizeof(oopDesc), TypeX_X, TypeX_X->basic_type());
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1954
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1955
    Node* thread = transform_later(new (C, 1) ThreadLocalNode());
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1956
    Node* cast_thread = transform_later(new (C, 2) CastP2XNode(ctrl, thread));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1957
    Node* o_node = transform_later(new (C, 3) OrXNode(cast_thread, proto_node));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1958
    Node* x_node = transform_later(new (C, 3) XorXNode(o_node, mark_node));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1959
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1960
    // Get slow path - mark word does NOT match the value.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1961
    Node* not_biased_ctrl =  opt_bits_test(ctrl, region, 3, x_node,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1962
                                      (~markOopDesc::age_mask_in_place), 0);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1963
    // region->in(3) is set to fast path - the object is biased to the current thread.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1964
    mem_phi->init_req(3, mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1965
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1966
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1967
    // Mark word does NOT match the value (thread | Klass::_prototype_header).
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1968
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1970
    // First, check biased pattern.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1971
    // Get fast path - _prototype_header has the same biased lock pattern.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1972
    ctrl =  opt_bits_test(not_biased_ctrl, fast_lock_region, 2, x_node,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1973
                          markOopDesc::biased_lock_mask_in_place, 0, true);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1974
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1975
    not_biased_ctrl = fast_lock_region->in(2); // Slow path
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1976
    // fast_lock_region->in(2) - the prototype header is no longer biased
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1977
    // and we have to revoke the bias on this object.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1978
    // We are going to try to reset the mark of this object to the prototype
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1979
    // value and fall through to the CAS-based locking scheme.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1980
    Node* adr = basic_plus_adr(obj, oopDesc::mark_offset_in_bytes());
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1981
    Node* cas = new (C, 5) StoreXConditionalNode(not_biased_ctrl, mem, adr,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1982
                                                 proto_node, mark_node);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1983
    transform_later(cas);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1984
    Node* proj = transform_later( new (C, 1) SCMemProjNode(cas));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1985
    fast_lock_mem_phi->init_req(2, proj);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1986
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1987
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1988
    // Second, check epoch bits.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1989
    Node* rebiased_region  = new (C, 3) RegionNode(3);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1990
    Node* old_phi = new (C, 3) PhiNode( rebiased_region, TypeX_X);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1991
    Node* new_phi = new (C, 3) PhiNode( rebiased_region, TypeX_X);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1992
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1993
    // Get slow path - mark word does NOT match epoch bits.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1994
    Node* epoch_ctrl =  opt_bits_test(ctrl, rebiased_region, 1, x_node,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1995
                                      markOopDesc::epoch_mask_in_place, 0);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1996
    // The epoch of the current bias is not valid, attempt to rebias the object
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1997
    // toward the current thread.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1998
    rebiased_region->init_req(2, epoch_ctrl);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1999
    old_phi->init_req(2, mark_node);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2000
    new_phi->init_req(2, o_node);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2001
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2002
    // rebiased_region->in(1) is set to fast path.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2003
    // The epoch of the current bias is still valid but we know
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2004
    // nothing about the owner; it might be set or it might be clear.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2005
    Node* cmask   = MakeConX(markOopDesc::biased_lock_mask_in_place |
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2006
                             markOopDesc::age_mask_in_place |
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2007
                             markOopDesc::epoch_mask_in_place);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2008
    Node* old = transform_later(new (C, 3) AndXNode(mark_node, cmask));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2009
    cast_thread = transform_later(new (C, 2) CastP2XNode(ctrl, thread));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2010
    Node* new_mark = transform_later(new (C, 3) OrXNode(cast_thread, old));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2011
    old_phi->init_req(1, old);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2012
    new_phi->init_req(1, new_mark);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2013
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2014
    transform_later(rebiased_region);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2015
    transform_later(old_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2016
    transform_later(new_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2017
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2018
    // Try to acquire the bias of the object using an atomic operation.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2019
    // If this fails we will go in to the runtime to revoke the object's bias.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2020
    cas = new (C, 5) StoreXConditionalNode(rebiased_region, mem, adr,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2021
                                           new_phi, old_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2022
    transform_later(cas);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2023
    proj = transform_later( new (C, 1) SCMemProjNode(cas));
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2024
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2025
    // Get slow path - Failed to CAS.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2026
    not_biased_ctrl = opt_bits_test(rebiased_region, region, 4, cas, 0, 0);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2027
    mem_phi->init_req(4, proj);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2028
    // region->in(4) is set to fast path - the object is rebiased to the current thread.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2029
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2030
    // Failed to CAS.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2031
    slow_path  = new (C, 3) RegionNode(3);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2032
    Node *slow_mem = new (C, 3) PhiNode( slow_path, Type::MEMORY, TypeRawPtr::BOTTOM);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2033
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2034
    slow_path->init_req(1, not_biased_ctrl); // Capture slow-control
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2035
    slow_mem->init_req(1, proj);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2036
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2037
    // Call CAS-based locking scheme (FastLock node).
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2038
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2039
    transform_later(fast_lock_region);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2040
    transform_later(fast_lock_mem_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2041
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2042
    // Get slow path - FastLock failed to lock the object.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2043
    ctrl = opt_bits_test(fast_lock_region, region, 2, flock, 0, 0);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2044
    mem_phi->init_req(2, fast_lock_mem_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2045
    // region->in(2) is set to fast path - the object is locked to the current thread.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2046
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2047
    slow_path->init_req(2, ctrl); // Capture slow-control
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2048
    slow_mem->init_req(2, fast_lock_mem_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2049
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2050
    transform_later(slow_path);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2051
    transform_later(slow_mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2052
    // Reset lock's memory edge.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2053
    lock->set_req(TypeFunc::Memory, slow_mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2054
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2055
  } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2056
    region  = new (C, 3) RegionNode(3);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2057
    // create a Phi for the memory state
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2058
    mem_phi = new (C, 3) PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2059
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2060
    // Optimize test; set region slot 2
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2061
    slow_path = opt_bits_test(ctrl, region, 2, flock, 0, 0);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2062
    mem_phi->init_req(2, mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2063
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
  // Make slow path call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
  CallNode *call = make_slow_call( (CallNode *) lock, OptoRuntime::complete_monitor_enter_Type(), OptoRuntime::complete_monitor_locking_Java(), NULL, slow_path, obj, box );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
  extract_call_projections(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
  // Slow path can only throw asynchronous exceptions, which are always
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
  // de-opted.  So the compiler thinks the slow-call can never throw an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
  // exception.  If it DOES throw an exception we would need the debug
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
  // info removed first (since if it throws there is no monitor).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
  assert ( _ioproj_fallthrough == NULL && _ioproj_catchall == NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
           _memproj_catchall == NULL && _catchallcatchproj == NULL, "Unexpected projection from Lock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
  // Capture slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
  // disconnect fall-through projection from call and create a new one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
  // hook up users of fall-through projection to region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
  Node *slow_ctrl = _fallthroughproj->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
  transform_later(slow_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
  _igvn.hash_delete(_fallthroughproj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
  _fallthroughproj->disconnect_inputs(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
  region->init_req(1, slow_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
  // region inputs are now complete
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
  transform_later(region);
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  2087
  _igvn.replace_node(_fallthroughproj, region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2089
  Node *memproj = transform_later( new(C, 1) ProjNode(call, TypeFunc::Memory) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
  mem_phi->init_req(1, memproj );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
  transform_later(mem_phi);
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  2092
  _igvn.replace_node(_memproj_fallthrough, mem_phi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
//------------------------------expand_unlock_node----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
void PhaseMacroExpand::expand_unlock_node(UnlockNode *unlock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2098
  Node* ctrl = unlock->in(TypeFunc::Control);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
  Node* mem = unlock->in(TypeFunc::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
  Node* obj = unlock->obj_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
  Node* box = unlock->box_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
  // No need for a null check on unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
  // Make the merge point
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2106
  Node *region;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2107
  Node *mem_phi;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2108
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2109
  if (UseOptoBiasInlining) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2110
    // Check for biased locking unlock case, which is a no-op.
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
  2111
    // See the full description in MacroAssembler::biased_locking_exit().
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2112
    region  = new (C, 4) RegionNode(4);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2113
    // create a Phi for the memory state
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2114
    mem_phi = new (C, 4) PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2115
    mem_phi->init_req(3, mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2116
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2117
    Node* mark_node = make_load(ctrl, mem, obj, oopDesc::mark_offset_in_bytes(), TypeX_X, TypeX_X->basic_type());
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2118
    ctrl = opt_bits_test(ctrl, region, 3, mark_node,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2119
                         markOopDesc::biased_lock_mask_in_place,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2120
                         markOopDesc::biased_lock_pattern);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2121
  } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2122
    region  = new (C, 3) RegionNode(3);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2123
    // create a Phi for the memory state
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2124
    mem_phi = new (C, 3) PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2125
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
  FastUnlockNode *funlock = new (C, 3) FastUnlockNode( ctrl, obj, box );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
  funlock = transform_later( funlock )->as_FastUnlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
  // Optimize test; set region slot 2
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2130
  Node *slow_path = opt_bits_test(ctrl, region, 2, funlock, 0, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
  CallNode *call = make_slow_call( (CallNode *) unlock, OptoRuntime::complete_monitor_exit_Type(), CAST_FROM_FN_PTR(address, SharedRuntime::complete_monitor_unlocking_C), "complete_monitor_unlocking_C", slow_path, obj, box );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
  extract_call_projections(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
  assert ( _ioproj_fallthrough == NULL && _ioproj_catchall == NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
           _memproj_catchall == NULL && _catchallcatchproj == NULL, "Unexpected projection from Lock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
  // No exceptions for unlocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
  // Capture slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
  // disconnect fall-through projection from call and create a new one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
  // hook up users of fall-through projection to region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
  Node *slow_ctrl = _fallthroughproj->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
  transform_later(slow_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
  _igvn.hash_delete(_fallthroughproj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
  _fallthroughproj->disconnect_inputs(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
  region->init_req(1, slow_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
  // region inputs are now complete
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
  transform_later(region);
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  2150
  _igvn.replace_node(_fallthroughproj, region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
  Node *memproj = transform_later( new(C, 1) ProjNode(call, TypeFunc::Memory) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
  mem_phi->init_req(1, memproj );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
  mem_phi->init_req(2, mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
  transform_later(mem_phi);
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  2156
  _igvn.replace_node(_memproj_fallthrough, mem_phi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
//------------------------------expand_macro_nodes----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
//  Returns true if a failure occurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
bool PhaseMacroExpand::expand_macro_nodes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
  if (C->macro_count() == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
    return false;
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2164
  // First, attempt to eliminate locks
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2165
  int cnt = C->macro_count();
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2166
  for (int i=0; i < cnt; i++) {
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2167
    Node *n = C->macro_node(i);
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2168
    if (n->is_AbstractLock()) { // Lock and Unlock nodes
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2169
      // Before elimination mark all associated (same box and obj)
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2170
      // lock and unlock nodes.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2171
      mark_eliminated_locking_nodes(n->as_AbstractLock());
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2172
    }
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2173
  }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2174
  bool progress = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2175
  while (progress) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2176
    progress = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2177
    for (int i = C->macro_count(); i > 0; i--) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2178
      Node * n = C->macro_node(i-1);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2179
      bool success = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2180
      debug_only(int old_macro_count = C->macro_count(););
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2181
      if (n->is_AbstractLock()) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2182
        success = eliminate_locking_node(n->as_AbstractLock());
9446
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9331
diff changeset
  2183
      } else if (n->Opcode() == Op_LoopLimit) {
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9331
diff changeset
  2184
        // Remove it from macro list and put on IGVN worklist to optimize.
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9331
diff changeset
  2185
        C->remove_macro_node(n);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9331
diff changeset
  2186
        _igvn._worklist.push(n);
748a37b25d10 5091921: Sign flip issues in loop optimizer
kvn
parents: 9331
diff changeset
  2187
        success = true;
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2188
      } else if (n->Opcode() == Op_Opaque1 || n->Opcode() == Op_Opaque2) {
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  2189
        _igvn.replace_node(n, n->in(1));
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2190
        success = true;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2191
      }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2192
      assert(success == (C->macro_count() < old_macro_count), "elimination reduces macro count");
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2193
      progress = progress || success;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2194
    }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2195
  }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2196
  // Next, attempt to eliminate allocations
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2197
  progress = true;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2198
  while (progress) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2199
    progress = false;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2200
    for (int i = C->macro_count(); i > 0; i--) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2201
      Node * n = C->macro_node(i-1);
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2202
      bool success = false;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2203
      debug_only(int old_macro_count = C->macro_count(););
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2204
      switch (n->class_id()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2205
      case Node::Class_Allocate:
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2206
      case Node::Class_AllocateArray:
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2207
        success = eliminate_allocate_node(n->as_Allocate());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2208
        break;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2209
      case Node::Class_Lock:
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2210
      case Node::Class_Unlock:
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2211
        assert(!n->as_AbstractLock()->is_eliminated(), "sanity");
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2212
        break;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2213
      default:
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2214
        assert(false, "unknown node type in macro list");
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2215
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2216
      assert(success == (C->macro_count() < old_macro_count), "elimination reduces macro count");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2217
      progress = progress || success;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2218
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2219
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2220
  // Make sure expansion will not cause node limit to be exceeded.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2221
  // Worst case is a macro node gets expanded into about 50 nodes.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2222
  // Allow 50% more for optimization.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
  if (C->check_node_count(C->macro_count() * 75, "out of nodes before macro expansion" ) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
    return true;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2225
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
  // expand "macro" nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
  // nodes are removed from the macro list as they are processed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
  while (C->macro_count() > 0) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2229
    int macro_count = C->macro_count();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2230
    Node * n = C->macro_node(macro_count-1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
    assert(n->is_macro(), "only macro nodes expected here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
    if (_igvn.type(n) == Type::TOP || n->in(0)->is_top() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
      // node is unreachable, so don't try to expand it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
      C->remove_macro_node(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
    switch (n->class_id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
    case Node::Class_Allocate:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
      expand_allocate(n->as_Allocate());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
    case Node::Class_AllocateArray:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
      expand_allocate_array(n->as_AllocateArray());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
    case Node::Class_Lock:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
      expand_lock_node(n->as_Lock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
    case Node::Class_Unlock:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
      expand_unlock_node(n->as_Unlock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
      assert(false, "unknown node type in macro list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
    }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2253
    assert(C->macro_count() < macro_count, "must have deleted a node from macro list");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
    if (C->failing())  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  2256
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  2257
  _igvn.set_delay_transform(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
  _igvn.optimize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
}