hotspot/src/share/vm/opto/macro.cpp
author roland
Wed, 28 Sep 2016 11:17:51 +0200
changeset 41699 fcefeb90b468
parent 40871 82848b0654f8
child 42642 99eb9fb61a27
permissions -rw-r--r--
8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently Reviewed-by: vlivanov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
39254
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
     2
 * Copyright (c) 2005, 2016, 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"
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
    29
#include "opto/arraycopynode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    30
#include "opto/callnode.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 23491
diff changeset
    31
#include "opto/castnode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    32
#include "opto/cfgnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    33
#include "opto/compile.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 23491
diff changeset
    34
#include "opto/convertnode.hpp"
39254
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
    35
#include "opto/graphKit.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    36
#include "opto/locknode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    37
#include "opto/loopnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    38
#include "opto/macro.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    39
#include "opto/memnode.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 23491
diff changeset
    40
#include "opto/narrowptrnode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    41
#include "opto/node.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 23491
diff changeset
    42
#include "opto/opaquenode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    43
#include "opto/phaseX.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    44
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    45
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    46
#include "opto/subnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    47
#include "opto/type.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6177
diff changeset
    48
#include "runtime/sharedRuntime.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// Replace any references to "oldref" in inputs to "use" with "newref".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// Returns the number of replacements made.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
int PhaseMacroExpand::replace_input(Node *use, Node *oldref, Node *newref) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  int nreplacements = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  uint req = use->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  for (uint j = 0; j < use->len(); j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    Node *uin = use->in(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    if (uin == oldref) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      if (j < req)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
        use->set_req(j, newref);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
        use->set_prec(j, newref);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      nreplacements++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    } else if (j >= req && uin == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  return nreplacements;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
void PhaseMacroExpand::copy_call_debug_info(CallNode *oldcall, CallNode * newcall) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // Copy debug information and adjust JVMState information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  uint old_dbg_start = oldcall->tf()->domain()->cnt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  uint new_dbg_start = newcall->tf()->domain()->cnt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  int jvms_adj  = new_dbg_start - old_dbg_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  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
    79
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
    80
  // SafePointScalarObject node could be referenced several times in debug info.
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
    81
  // Use Dict to record cloned nodes.
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
    82
  Dict* sosn_map = new Dict(cmpkey,hashkey);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  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
    84
    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
    85
    // 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
    86
    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
    87
      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
    88
      uint old_unique = C->unique();
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
    89
      Node* new_in = old_sosn->clone(sosn_map);
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
    90
      if (old_unique != C->unique()) { // New node?
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
    91
        new_in->set_req(0, C->root()); // 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
    92
        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
    93
      }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    94
      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
    95
    }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
    96
    newcall->add_req(old_in);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
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
26180
2fbed11af70e 8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents: 26166
diff changeset
    99
  // JVMS may be shared so clone it before we modify it
2fbed11af70e 8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents: 26166
diff changeset
   100
  newcall->set_jvms(oldcall->jvms() != NULL ? oldcall->jvms()->clone_deep(C) : NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  for (JVMState *jvms = newcall->jvms(); jvms != NULL; jvms = jvms->caller()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    jvms->set_map(newcall);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    jvms->set_locoff(jvms->locoff()+jvms_adj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    jvms->set_stkoff(jvms->stkoff()+jvms_adj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    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
   106
    jvms->set_scloff(jvms->scloff()+jvms_adj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    jvms->set_endoff(jvms->endoff()+jvms_adj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   111
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
   112
  Node* cmp;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   113
  if (mask != 0) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   114
    Node* and_node = transform_later(new AndXNode(word, MakeConX(mask)));
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   115
    cmp = transform_later(new CmpXNode(and_node, MakeConX(bits)));
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   116
  } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   117
    cmp = word;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   118
  }
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   119
  Node* bol = transform_later(new BoolNode(cmp, BoolTest::ne));
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   120
  IfNode* iff = new IfNode( ctrl, bol, PROB_MIN, COUNT_UNKNOWN );
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   121
  transform_later(iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   123
  // Fast path taken.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   124
  Node *fast_taken = transform_later(new IfFalseNode(iff));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Fast path not-taken, i.e. slow path
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   127
  Node *slow_taken = transform_later(new IfTrueNode(iff));
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   128
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   129
  if (return_fast_path) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   130
    region->init_req(edge, slow_taken); // Capture slow-control
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   131
    return fast_taken;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   132
  } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   133
    region->init_req(edge, fast_taken); // Capture fast-control
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   134
    return slow_taken;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
   135
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
//--------------------copy_predefined_input_for_runtime_call--------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
void PhaseMacroExpand::copy_predefined_input_for_runtime_call(Node * ctrl, CallNode* oldcall, CallNode* call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Set fixed predefined input arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  call->init_req( TypeFunc::Control, ctrl );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  call->init_req( TypeFunc::I_O    , oldcall->in( TypeFunc::I_O) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  call->init_req( TypeFunc::Memory , oldcall->in( TypeFunc::Memory ) ); // ?????
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  call->init_req( TypeFunc::ReturnAdr, oldcall->in( TypeFunc::ReturnAdr ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  call->init_req( TypeFunc::FramePtr, oldcall->in( TypeFunc::FramePtr ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
//------------------------------make_slow_call---------------------------------
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
   149
CallNode* PhaseMacroExpand::make_slow_call(CallNode *oldcall, const TypeFunc* slow_call_type,
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
   150
                                           address slow_call, const char* leaf_name, Node* slow_path,
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
   151
                                           Node* parm0, Node* parm1, Node* parm2) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Slow-path call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
 CallNode *call = leaf_name
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   155
   ? (CallNode*)new CallLeafNode      ( slow_call_type, slow_call, leaf_name, TypeRawPtr::BOTTOM )
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   156
   : (CallNode*)new CallStaticJavaNode( slow_call_type, slow_call, OptoRuntime::stub_name(slow_call), oldcall->jvms()->bci(), TypeRawPtr::BOTTOM );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Slow path call has no side-effects, uses few values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  copy_predefined_input_for_runtime_call(slow_path, oldcall, call );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  if (parm0 != NULL)  call->init_req(TypeFunc::Parms+0, parm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  if (parm1 != NULL)  call->init_req(TypeFunc::Parms+1, parm1);
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
   162
  if (parm2 != NULL)  call->init_req(TypeFunc::Parms+2, parm2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  copy_call_debug_info(oldcall, call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  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
   165
  _igvn.replace_node(oldcall, call);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  transform_later(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  return call;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
void PhaseMacroExpand::extract_call_projections(CallNode *call) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  _fallthroughproj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  _fallthroughcatchproj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  _ioproj_fallthrough = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  _ioproj_catchall = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  _catchallcatchproj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  _memproj_fallthrough = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  _memproj_catchall = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  _resproj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  for (DUIterator_Fast imax, i = call->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    ProjNode *pn = call->fast_out(i)->as_Proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    switch (pn->_con) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      case TypeFunc::Control:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
        // For Control (fallthrough) and I_O (catch_all_index) we have CatchProj -> Catch -> Proj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
        _fallthroughproj = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
        DUIterator_Fast jmax, j = pn->fast_outs(jmax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
        const Node *cn = pn->fast_out(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
        if (cn->is_Catch()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
          ProjNode *cpn = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
          for (DUIterator_Fast kmax, k = cn->fast_outs(kmax); k < kmax; k++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
            cpn = cn->fast_out(k)->as_Proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
            assert(cpn->is_CatchProj(), "must be a CatchProjNode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
            if (cpn->_con == CatchProjNode::fall_through_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
              _fallthroughcatchproj = cpn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
            else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
              assert(cpn->_con == CatchProjNode::catch_all_index, "must be correct index.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
              _catchallcatchproj = cpn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      case TypeFunc::I_O:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
        if (pn->_is_io_use)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
          _ioproj_catchall = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
          _ioproj_fallthrough = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      case TypeFunc::Memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
        if (pn->_is_io_use)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
          _memproj_catchall = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
        else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
          _memproj_fallthrough = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      case TypeFunc::Parms:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
        _resproj = pn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
        assert(false, "unexpected projection from allocation node.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   226
// 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
   227
void PhaseMacroExpand::eliminate_card_mark(Node* p2x) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   228
  assert(p2x->Opcode() == Op_CastP2X, "ConvP2XNode required");
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   229
  if (!UseG1GC) {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   230
    // vanilla/CMS post barrier
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   231
    Node *shift = p2x->unique_out();
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   232
    Node *addp = shift->unique_out();
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   233
    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
   234
      Node *mem = addp->last_out(j);
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   235
      if (UseCondCardMark && mem->is_Load()) {
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   236
        assert(mem->Opcode() == Op_LoadB, "unexpected code shape");
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   237
        // The load is checking if the card has been written so
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   238
        // replace it with zero to fold the test.
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   239
        _igvn.replace_node(mem, intcon(0));
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   240
        continue;
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   241
      }
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   242
      assert(mem->is_Store(), "store required");
9a575ce594ed 7029167: add support for conditional card marks
never
parents: 7724
diff changeset
   243
      _igvn.replace_node(mem, mem->in(MemNode::Memory));
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   244
    }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   245
  } else {
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   246
    // G1 pre/post barriers
11724
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   247
    assert(p2x->outcnt() <= 2, "expects 1 or 2 users: Xor and URShift nodes");
35552
be1bff8945dc 8136469: OptimizeStringConcat fails on pre-sized StringBuilder shapes
thartmann
parents: 35548
diff changeset
   248
    // It could be only one user, URShift node, in Object.clone() intrinsic
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   249
    // 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
   250
    // 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
   251
11724
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   252
    // An other case of only one user (Xor) is when the value check for NULL
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   253
    // in G1 post barrier is folded after CCP so the code which used URShift
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   254
    // is removed.
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   255
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   256
    // Take Region node before eliminating post barrier since it also
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   257
    // eliminates CastP2X node when it has only one user.
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   258
    Node* this_region = p2x->in(0);
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   259
    assert(this_region != NULL, "");
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   260
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   261
    // Remove G1 post barrier.
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
    // Search for CastP2X->Xor->URShift->Cmp path which
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   264
    // 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
   265
    // And replace Cmp with #0 (false) to collapse G1 post barrier.
28643
a665e19ca007 8066312: Add new Node* Node::find_out(int opc) method.
zmajo
parents: 28039
diff changeset
   266
    Node* xorx = p2x->find_out_with(Op_XorX);
39254
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   267
    if (xorx != NULL) {
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   268
      Node* shift = xorx->unique_out();
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   269
      Node* cmpx = shift->unique_out();
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   270
      assert(cmpx->is_Cmp() && cmpx->unique_out()->is_Bool() &&
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   271
      cmpx->unique_out()->as_Bool()->_test._test == BoolTest::ne,
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   272
      "missing region check in G1 post barrier");
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   273
      _igvn.replace_node(cmpx, makecon(TypeInt::CC_EQ));
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   274
39254
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   275
      // Remove G1 pre barrier.
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   276
39254
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   277
      // Search "if (marking != 0)" check and set it to "false".
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   278
      // There is no G1 pre barrier if previous stored value is NULL
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   279
      // (for example, after initialization).
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   280
      if (this_region->is_Region() && this_region->req() == 3) {
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   281
        int ind = 1;
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   282
        if (!this_region->in(ind)->is_IfFalse()) {
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   283
          ind = 2;
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   284
        }
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   285
        if (this_region->in(ind)->is_IfFalse()) {
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   286
          Node* bol = this_region->in(ind)->in(0)->in(1);
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   287
          assert(bol->is_Bool(), "");
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   288
          cmpx = bol->in(1);
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   289
          if (bol->as_Bool()->_test._test == BoolTest::ne &&
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   290
              cmpx->is_Cmp() && cmpx->in(2) == intcon(0) &&
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   291
              cmpx->in(1)->is_Load()) {
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   292
            Node* adr = cmpx->in(1)->as_Load()->in(MemNode::Address);
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   293
            const int marking_offset = in_bytes(JavaThread::satb_mark_queue_offset() +
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   294
                                                SATBMarkQueue::byte_offset_of_active());
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   295
            if (adr->is_AddP() && adr->in(AddPNode::Base) == top() &&
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   296
                adr->in(AddPNode::Address)->Opcode() == Op_ThreadLocal &&
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   297
                adr->in(AddPNode::Offset) == MakeConX(marking_offset)) {
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   298
              _igvn.replace_node(cmpx, makecon(TypeInt::CC_EQ));
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   299
            }
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   300
          }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   301
        }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   302
      }
39254
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   303
    } else {
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   304
      assert(!GraphKit::use_ReduceInitialCardMarks(), "can only happen with card marking");
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   305
      // This is a G1 post barrier emitted by the Object.clone() intrinsic.
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   306
      // Search for the CastP2X->URShiftX->AddP->LoadB->Cmp path which checks if the card
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   307
      // is marked as young_gen and replace the Cmp with 0 (false) to collapse the barrier.
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   308
      Node* shift = p2x->find_out_with(Op_URShiftX);
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   309
      assert(shift != NULL, "missing G1 post barrier");
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   310
      Node* addp = shift->unique_out();
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   311
      Node* load = addp->find_out_with(Op_LoadB);
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   312
      assert(load != NULL, "missing G1 post barrier");
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   313
      Node* cmpx = load->unique_out();
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   314
      assert(cmpx->is_Cmp() && cmpx->unique_out()->is_Bool() &&
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   315
             cmpx->unique_out()->as_Bool()->_test._test == BoolTest::ne,
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   316
             "missing card value check in G1 post barrier");
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   317
      _igvn.replace_node(cmpx, makecon(TypeInt::CC_EQ));
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   318
      // There is no G1 pre barrier in this case
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   319
    }
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   320
    // 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
   321
    // which currently still alive until igvn optimize it.
11724
1500e51fdcbf 7143491: G1 C2 CTW: assert(p2x->outcnt() == 2) failed: expects 2 users: Xor and URShift nodes
kvn
parents: 11460
diff changeset
   322
    assert(p2x->outcnt() == 0 || p2x->unique_out()->Opcode() == Op_URShiftX, "");
3268
f034e0c86895 6851742: (EA) allocation elimination doesn't work with UseG1GC
kvn
parents: 2867
diff changeset
   323
    _igvn.replace_node(p2x, top());
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   324
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   325
}
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
// 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
   328
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
   329
  Node *orig_mem = mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   330
  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
   331
  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
   332
  while (true) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   333
    if (mem == alloc_mem || mem == start_mem ) {
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
   334
      return mem;  // hit one of our sentinels
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   335
    } else if (mem->is_MergeMem()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   336
      mem = mem->as_MergeMem()->memory_at(alias_idx);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   337
    } 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
   338
      Node *in = mem->in(0);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   339
      // 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
   340
      // already know that the object is safe to eliminate.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   341
      if (in->is_Initialize() && in->as_Initialize()->allocation() == alloc) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   342
        return in;
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   343
      } else if (in->is_Call()) {
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   344
        CallNode *call = in->as_Call();
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   345
        if (call->may_modify(tinst, phase)) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   346
          assert(call->is_ArrayCopy(), "ArrayCopy is the only call node that doesn't make allocation escape");
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   347
          if (call->as_ArrayCopy()->modifies(offset, offset, phase, false)) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   348
            return in;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   349
          }
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   350
        }
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   351
        mem = in->in(TypeFunc::Memory);
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   352
      } else if (in->is_MemBar()) {
39254
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   353
        ArrayCopyNode* ac = NULL;
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   354
        if (ArrayCopyNode::may_modify(tinst, in->as_MemBar(), phase, ac)) {
fb4492288b01 8156760: VM crashes if -XX:-ReduceInitialCardMarks is set
thartmann
parents: 38220
diff changeset
   355
          assert(ac != NULL && ac->is_clonebasic(), "Only basic clone is a non escaping clone");
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   356
          return ac;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   357
        }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   358
        mem = in->in(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   359
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   360
        assert(false, "unexpected projection");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   361
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   362
    } else if (mem->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   363
      const TypePtr* atype = mem->as_Store()->adr_type();
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   364
      int adr_idx = phase->C->get_alias_index(atype);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   365
      if (adr_idx == alias_idx) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   366
        assert(atype->isa_oopptr(), "address type must be oopptr");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   367
        int adr_offset = atype->offset();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   368
        uint adr_iid = atype->is_oopptr()->instance_id();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   369
        // Array elements references have the same alias_idx
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   370
        // but different offset and different instance_id.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   371
        if (adr_offset == offset && adr_iid == alloc->_idx)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   372
          return mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   373
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   374
        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
   375
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   376
      mem = mem->in(MemNode::Memory);
4470
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   377
    } else if (mem->is_ClearArray()) {
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   378
      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
   379
        // Can not bypass initialization of the instance
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   380
        // we are looking.
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   381
        debug_only(intptr_t offset;)
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   382
        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
   383
        InitializeNode* init = alloc->as_Allocate()->initialization();
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   384
        // 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
   385
        // or memory edge from Allocate node.
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   386
        if (init != NULL)
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   387
          return init;
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   388
        else
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   389
          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
   390
      }
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   391
      // Otherwise skip it (the call updated 'mem' value).
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   392
    } else if (mem->Opcode() == Op_SCMemProj) {
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   393
      mem = mem->in(0);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   394
      Node* adr = NULL;
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   395
      if (mem->is_LoadStore()) {
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   396
        adr = mem->in(MemNode::Address);
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   397
      } else {
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   398
        assert(mem->Opcode() == Op_EncodeISOArray ||
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   399
               mem->Opcode() == Op_StrCompressedCopy, "sanity");
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   400
        adr = mem->in(3); // Destination array
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   401
      }
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   402
      const TypePtr* atype = adr->bottom_type()->is_ptr();
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   403
      int adr_idx = phase->C->get_alias_index(atype);
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   404
      if (adr_idx == alias_idx) {
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   405
        DEBUG_ONLY(mem->dump();)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   406
        assert(false, "Object is not scalar replaceable if a LoadStore node accesses its field");
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   407
        return NULL;
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   408
      }
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   409
      mem = mem->in(MemNode::Memory);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   410
   } else if (mem->Opcode() == Op_StrInflatedCopy) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   411
      Node* adr = mem->in(3); // Destination array
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   412
      const TypePtr* atype = adr->bottom_type()->is_ptr();
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   413
      int adr_idx = phase->C->get_alias_index(atype);
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   414
      if (adr_idx == alias_idx) {
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   415
        DEBUG_ONLY(mem->dump();)
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   416
        assert(false, "Object is not scalar replaceable if a StrInflatedCopy node accesses its field");
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   417
        return NULL;
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   418
      }
15242
695bb216be99 6896617: Optimize sun.nio.cs.ISO_8859_1$Encode.encodeArrayLoop() on x86
kvn
parents: 14623
diff changeset
   419
      mem = mem->in(MemNode::Memory);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   420
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   421
      return mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   422
    }
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   423
    assert(mem != orig_mem, "dead memory loop");
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   424
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   425
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   426
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   427
// Generate loads from source of the arraycopy for fields of
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   428
// destination needed at a deoptimization point
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   429
Node* PhaseMacroExpand::make_arraycopy_load(ArrayCopyNode* ac, intptr_t offset, Node* ctl, BasicType ft, const Type *ftype, AllocateNode *alloc) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   430
  BasicType bt = ft;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   431
  const Type *type = ftype;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   432
  if (ft == T_NARROWOOP) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   433
    bt = T_OBJECT;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   434
    type = ftype->make_oopptr();
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   435
  }
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   436
  Node* res = NULL;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   437
  if (ac->is_clonebasic()) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   438
    Node* base = ac->in(ArrayCopyNode::Src)->in(AddPNode::Base);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   439
    Node* adr = _igvn.transform(new AddPNode(base, base, MakeConX(offset)));
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   440
    const TypePtr* adr_type = _igvn.type(base)->is_ptr()->add_offset(offset);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   441
    Node* m = ac->in(TypeFunc::Memory);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   442
    res = LoadNode::make(_igvn, ctl, m, adr, adr_type, type, bt, MemNode::unordered, LoadNode::Pinned);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   443
  } else {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   444
    if (ac->modifies(offset, offset, &_igvn, true)) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   445
      assert(ac->in(ArrayCopyNode::Dest) == alloc->result_cast(), "arraycopy destination should be allocation's result");
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   446
      uint shift  = exact_log2(type2aelembytes(bt));
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   447
      Node* diff = _igvn.transform(new SubINode(ac->in(ArrayCopyNode::SrcPos), ac->in(ArrayCopyNode::DestPos)));
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   448
#ifdef _LP64
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   449
      diff = _igvn.transform(new ConvI2LNode(diff));
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   450
#endif
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   451
      diff = _igvn.transform(new LShiftXNode(diff, intcon(shift)));
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   452
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   453
      Node* off = _igvn.transform(new AddXNode(MakeConX(offset), diff));
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   454
      Node* base = ac->in(ArrayCopyNode::Src);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   455
      Node* adr = _igvn.transform(new AddPNode(base, base, off));
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   456
      const TypePtr* adr_type = _igvn.type(base)->is_ptr()->add_offset(offset);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   457
      Node* m = ac->in(TypeFunc::Memory);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   458
      res = LoadNode::make(_igvn, ctl, m, adr, adr_type, type, bt, MemNode::unordered, LoadNode::Pinned);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   459
    }
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   460
  }
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   461
  if (res != NULL) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   462
    res = _igvn.transform(res);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   463
    if (ftype->isa_narrowoop()) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   464
      // PhaseMacroExpand::scalar_replacement adds DecodeN nodes
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   465
      res = _igvn.transform(new EncodePNode(res, ftype));
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   466
    }
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   467
    return res;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   468
  }
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   469
  return NULL;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   470
}
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   471
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   472
//
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   473
// 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
   474
// on the input paths.
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   475
// Note: this function is recursive, its depth is limited by the "level" argument
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   476
// Returns the computed Phi, or NULL if it cannot compute it.
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   477
Node *PhaseMacroExpand::value_from_mem_phi(Node *mem, BasicType ft, const Type *phi_type, const TypeOopPtr *adr_t, AllocateNode *alloc, Node_Stack *value_phis, int level) {
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   478
  assert(mem->is_Phi(), "sanity");
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   479
  int alias_idx = C->get_alias_index(adr_t);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   480
  int offset = adr_t->offset();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   481
  int instance_id = adr_t->instance_id();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   482
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   483
  // Check if an appropriate value phi already exists.
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   484
  Node* region = mem->in(0);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   485
  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
   486
    Node* phi = region->fast_out(k);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   487
    if (phi->is_Phi() && phi != mem &&
40871
82848b0654f8 8038348: Instance field load is replaced by wrong data Phi
thartmann
parents: 40031
diff changeset
   488
        phi->as_Phi()->is_same_inst_field(phi_type, (int)mem->_idx, instance_id, alias_idx, offset)) {
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   489
      return phi;
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   490
    }
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   491
  }
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   492
  // Check if an appropriate new value phi already exists.
10011
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 9977
diff changeset
   493
  Node* new_phi = value_phis->find(mem->_idx);
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 9977
diff changeset
   494
  if (new_phi != NULL)
e8b38f7b9959 7044738: Loop unroll optimization causes incorrect result
kvn
parents: 9977
diff changeset
   495
    return new_phi;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   496
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   497
  if (level <= 0) {
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   498
    return NULL; // Give up: phi tree too deep
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   499
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   500
  Node *start_mem = C->start()->proj_out(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   501
  Node *alloc_mem = alloc->in(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   502
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   503
  uint length = mem->req();
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12958
diff changeset
   504
  GrowableArray <Node *> values(length, length, NULL, false);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   505
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   506
  // create a new Phi for the value
40871
82848b0654f8 8038348: Instance field load is replaced by wrong data Phi
thartmann
parents: 40031
diff changeset
   507
  PhiNode *phi = new PhiNode(mem->in(0), phi_type, NULL, mem->_idx, instance_id, alias_idx, offset);
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   508
  transform_later(phi);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   509
  value_phis->push(phi, mem->_idx);
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   510
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   511
  for (uint j = 1; j < length; j++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   512
    Node *in = mem->in(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   513
    if (in == NULL || in->is_top()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   514
      values.at_put(j, in);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   515
    } else  {
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   516
      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
   517
      if (val == start_mem || val == alloc_mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   518
        // hit a sentinel, return appropriate 0 value
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   519
        values.at_put(j, _igvn.zerocon(ft));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   520
        continue;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   521
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   522
      if (val->is_Initialize()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   523
        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
   524
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   525
      if (val == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   526
        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
   527
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   528
      if (val == mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   529
        values.at_put(j, mem);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   530
      } else if (val->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   531
        values.at_put(j, val->in(MemNode::ValueIn));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   532
      } else if(val->is_Proj() && val->in(0) == alloc) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   533
        values.at_put(j, _igvn.zerocon(ft));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   534
      } else if (val->is_Phi()) {
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   535
        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
   536
        if (val == NULL) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   537
          return NULL;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   538
        }
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   539
        values.at_put(j, val);
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   540
      } else if (val->Opcode() == Op_SCMemProj) {
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   541
        assert(val->in(0)->is_LoadStore() ||
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   542
               val->in(0)->Opcode() == Op_EncodeISOArray ||
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   543
               val->in(0)->Opcode() == Op_StrCompressedCopy, "sanity");
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 33077
diff changeset
   544
        assert(false, "Object is not scalar replaceable if a LoadStore node accesses its field");
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   545
        return NULL;
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   546
      } else if (val->is_ArrayCopy()) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   547
        Node* res = make_arraycopy_load(val->as_ArrayCopy(), offset, val->in(0), ft, phi_type, alloc);
32402
a20f90d1f364 8134321: tools/pack200/Pack200Test.java crashes in the VM PIT jdk9 b79
roland
parents: 32370
diff changeset
   548
        if (res == NULL) {
a20f90d1f364 8134321: tools/pack200/Pack200Test.java crashes in the VM PIT jdk9 b79
roland
parents: 32370
diff changeset
   549
          return NULL;
a20f90d1f364 8134321: tools/pack200/Pack200Test.java crashes in the VM PIT jdk9 b79
roland
parents: 32370
diff changeset
   550
        }
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   551
        values.at_put(j, res);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   552
      } else {
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   553
#ifdef ASSERT
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   554
        val->dump();
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   555
        assert(false, "unknown node on this path");
2110
40e42c95ac39 6802499: EA: assert(false,"unknown node on this path")
kvn
parents: 2029
diff changeset
   556
#endif
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   557
        return NULL;  // unknown node on this path
246
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
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   560
  }
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   561
  // Set Phi's inputs
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   562
  for (uint j = 1; j < length; j++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   563
    if (values.at(j) == mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   564
      phi->init_req(j, phi);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   565
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   566
      phi->init_req(j, values.at(j));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   567
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   568
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   569
  return phi;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   570
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   571
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   572
// Search the last value stored into the object's field.
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   573
Node *PhaseMacroExpand::value_from_mem(Node *sfpt_mem, Node *sfpt_ctl, BasicType ft, const Type *ftype, const TypeOopPtr *adr_t, AllocateNode *alloc) {
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   574
  assert(adr_t->is_known_instance_field(), "instance required");
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   575
  int instance_id = adr_t->instance_id();
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   576
  assert((uint)instance_id == alloc->_idx, "wrong allocation");
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   577
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   578
  int alias_idx = C->get_alias_index(adr_t);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   579
  int offset = adr_t->offset();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   580
  Node *start_mem = C->start()->proj_out(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   581
  Node *alloc_ctrl = alloc->in(TypeFunc::Control);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   582
  Node *alloc_mem = alloc->in(TypeFunc::Memory);
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   583
  Arena *a = Thread::current()->resource_area();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   584
  VectorSet visited(a);
246
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
  bool done = sfpt_mem == alloc_mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   588
  Node *mem = sfpt_mem;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   589
  while (!done) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   590
    if (visited.test_set(mem->_idx)) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   591
      return NULL;  // found a loop, give up
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   592
    }
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   593
    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
   594
    if (mem == start_mem || mem == alloc_mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   595
      done = true;  // hit a sentinel, return appropriate 0 value
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   596
    } else if (mem->is_Initialize()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   597
      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
   598
      if (mem == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   599
        done = true; // Something go wrong.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   600
      } else if (mem->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   601
        const TypePtr* atype = mem->as_Store()->adr_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   602
        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
   603
        done = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   604
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   605
    } else if (mem->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   606
      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
   607
      assert(atype != NULL, "address type must be oopptr");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   608
      assert(C->get_alias_index(atype) == alias_idx &&
769
78e5090c7a20 6716441: error in meet with +DoEscapeAnalysis
kvn
parents: 767
diff changeset
   609
             atype->is_known_instance_field() && atype->offset() == offset &&
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   610
             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
   611
      done = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   612
    } else if (mem->is_Phi()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   613
      // try to find a phi's unique input
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   614
      Node *unique_input = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   615
      Node *top = C->top();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   616
      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
   617
        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
   618
        if (n == NULL || n == top || n == mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   619
          continue;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   620
        } else if (unique_input == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   621
          unique_input = n;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   622
        } else if (unique_input != n) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   623
          unique_input = top;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   624
          break;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   625
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   626
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   627
      if (unique_input != NULL && unique_input != top) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   628
        mem = unique_input;
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
        done = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   631
      }
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   632
    } else if (mem->is_ArrayCopy()) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   633
      done = true;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   634
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   635
      assert(false, "unexpected node");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   636
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   637
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   638
  if (mem != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   639
    if (mem == start_mem || mem == alloc_mem) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   640
      // hit a sentinel, return appropriate 0 value
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   641
      return _igvn.zerocon(ft);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   642
    } else if (mem->is_Store()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   643
      return mem->in(MemNode::ValueIn);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   644
    } else if (mem->is_Phi()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   645
      // 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
   646
      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
   647
      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
   648
      if (phi != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   649
        return phi;
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   650
      } else {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   651
        // Kill all new Phis
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   652
        while(value_phis.is_nonempty()) {
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   653
          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
   654
          _igvn.replace_node(n, C->top());
955
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   655
          value_phis.pop();
723d7b577fba 6723160: Nightly failure: Error: meet not symmetric
kvn
parents: 781
diff changeset
   656
        }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   657
      }
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   658
    } else if (mem->is_ArrayCopy()) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   659
      Node* ctl = mem->in(0);
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   660
      if (sfpt_ctl->is_Proj() && sfpt_ctl->as_Proj()->is_uncommon_trap_proj(Deoptimization::Reason_none)) {
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   661
        // pin the loads in the uncommon trap path
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   662
        ctl = sfpt_ctl;
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   663
      }
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   664
      return make_arraycopy_load(mem->as_ArrayCopy(), offset, ctl, ft, ftype, alloc);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   665
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   666
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   667
  // Something go wrong.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   668
  return NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   669
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   670
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   671
// Check the possibility of scalar replacement.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   672
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
   673
  //  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
   674
  //  prevent us from eliminating it.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   675
  NOT_PRODUCT( const char* fail_eliminate = NULL; )
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   676
  DEBUG_ONLY( Node* disq_node = NULL; )
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   677
  bool  can_eliminate = true;
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
  Node* res = alloc->result_cast();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   680
  const TypeOopPtr* res_type = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   681
  if (res == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   682
    // All users were eliminated.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   683
  } else if (!res->is_CheckCastPP()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   684
    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
   685
    can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   686
  } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   687
    res_type = _igvn.type(res)->isa_oopptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   688
    if (res_type == NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   689
      NOT_PRODUCT(fail_eliminate = "Neither instance or array allocation";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   690
      can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   691
    } else if (res_type->isa_aryptr()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   692
      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
   693
      if (length < 0) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   694
        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
   695
        can_eliminate = false;
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
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   698
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   699
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   700
  if (can_eliminate && res != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   701
    for (DUIterator_Fast jmax, j = res->fast_outs(jmax);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   702
                               j < jmax && can_eliminate; j++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   703
      Node* use = res->fast_out(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   704
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   705
      if (use->is_AddP()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   706
        const TypePtr* addp_type = _igvn.type(use)->is_ptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   707
        int offset = addp_type->offset();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   708
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   709
        if (offset == Type::OffsetTop || offset == Type::OffsetBot) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   710
          NOT_PRODUCT(fail_eliminate = "Undefined field referrence";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   711
          can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   712
          break;
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
        for (DUIterator_Fast kmax, k = use->fast_outs(kmax);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   715
                                   k < kmax && can_eliminate; k++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   716
          Node* n = use->fast_out(k);
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   717
          if (!n->is_Store() && n->Opcode() != Op_CastP2X &&
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   718
              !(n->is_ArrayCopy() &&
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   719
                n->as_ArrayCopy()->is_clonebasic() &&
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   720
                n->in(ArrayCopyNode::Dest) == use)) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   721
            DEBUG_ONLY(disq_node = n;)
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 955
diff changeset
   722
            if (n->is_Load() || n->is_LoadStore()) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   723
              NOT_PRODUCT(fail_eliminate = "Field load";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   724
            } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   725
              NOT_PRODUCT(fail_eliminate = "Not store field referrence";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   726
            }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   727
            can_eliminate = false;
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
        }
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   730
      } else if (use->is_ArrayCopy() &&
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   731
                 (use->as_ArrayCopy()->is_arraycopy_validated() ||
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   732
                  use->as_ArrayCopy()->is_copyof_validated() ||
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   733
                  use->as_ArrayCopy()->is_copyofrange_validated()) &&
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   734
                 use->in(ArrayCopyNode::Dest) == res) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
   735
        // ok to eliminate
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   736
      } else if (use->is_SafePoint()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   737
        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
   738
        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
   739
          // Object is passed as argument.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   740
          DEBUG_ONLY(disq_node = use;)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   741
          NOT_PRODUCT(fail_eliminate = "Object is passed as argument";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   742
          can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   743
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   744
        Node* sfptMem = sfpt->memory();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   745
        if (sfptMem == NULL || sfptMem->is_top()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   746
          DEBUG_ONLY(disq_node = use;)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   747
          NOT_PRODUCT(fail_eliminate = "NULL or TOP memory";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   748
          can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   749
        } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   750
          safepoints.append_if_missing(sfpt);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   751
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   752
      } 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
   753
        if (use->is_Phi()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   754
          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
   755
            NOT_PRODUCT(fail_eliminate = "Object is return value";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   756
          } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   757
            NOT_PRODUCT(fail_eliminate = "Object is referenced by Phi";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   758
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   759
          DEBUG_ONLY(disq_node = use;)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   760
        } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   761
          if (use->Opcode() == Op_Return) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   762
            NOT_PRODUCT(fail_eliminate = "Object is return value";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   763
          }else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   764
            NOT_PRODUCT(fail_eliminate = "Object is referenced by node";)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   765
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   766
          DEBUG_ONLY(disq_node = use;)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   767
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   768
        can_eliminate = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   769
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   770
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   771
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   772
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   773
#ifndef PRODUCT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   774
  if (PrintEliminateAllocations) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   775
    if (can_eliminate) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   776
      tty->print("Scalar ");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   777
      if (res == NULL)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   778
        alloc->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   779
      else
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   780
        res->dump();
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
   781
    } else if (alloc->_is_scalar_replaceable) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   782
      tty->print("NotScalar (%s)", fail_eliminate);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   783
      if (res == NULL)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   784
        alloc->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   785
      else
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   786
        res->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   787
#ifdef ASSERT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   788
      if (disq_node != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   789
          tty->print("  >>>> ");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   790
          disq_node->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   791
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   792
#endif /*ASSERT*/
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   793
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   794
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   795
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   796
  return can_eliminate;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   797
}
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
// Do scalar replacement.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   800
bool PhaseMacroExpand::scalar_replacement(AllocateNode *alloc, GrowableArray <SafePointNode *>& safepoints) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   801
  GrowableArray <SafePointNode *> safepoints_done;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   802
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   803
  ciKlass* klass = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   804
  ciInstanceKlass* iklass = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   805
  int nfields = 0;
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33077
diff changeset
   806
  int array_base = 0;
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33077
diff changeset
   807
  int element_size = 0;
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33077
diff changeset
   808
  BasicType basic_elem_type = T_ILLEGAL;
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33077
diff changeset
   809
  ciType* elem_type = NULL;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   810
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   811
  Node* res = alloc->result_cast();
25935
59b08808cb9c 8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents: 25926
diff changeset
   812
  assert(res == NULL || res->is_CheckCastPP(), "unexpected AllocateNode result");
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   813
  const TypeOopPtr* res_type = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   814
  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
   815
    res_type = _igvn.type(res)->isa_oopptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   816
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   817
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   818
  if (res != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   819
    klass = res_type->klass();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   820
    if (res_type->isa_instptr()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   821
      // 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
   822
      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
   823
      iklass = klass->as_instance_klass();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   824
      nfields = iklass->nof_nonstatic_fields();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   825
    } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   826
      // 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
   827
      nfields = alloc->in(AllocateNode::ALength)->find_int_con(-1);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   828
      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
   829
      elem_type = klass->as_array_klass()->element_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   830
      basic_elem_type = elem_type->basic_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   831
      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
   832
      element_size = type2aelembytes(basic_elem_type);
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
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   835
  //
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   836
  // Process the safepoint uses
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   837
  //
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   838
  while (safepoints.length() > 0) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   839
    SafePointNode* sfpt = safepoints.pop();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   840
    Node* mem = sfpt->memory();
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   841
    Node* ctl = sfpt->control();
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
   842
    assert(sfpt->jvms() != NULL, "missed JVMS");
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
   843
    // Fields of scalar objs are referenced only at the end
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
   844
    // of regular debuginfo at the last (youngest) JVMS.
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
   845
    // Record relative start index.
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
   846
    uint first_ind = (sfpt->req() - sfpt->jvms()->scloff());
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   847
    SafePointScalarObjectNode* sobj = new SafePointScalarObjectNode(res_type,
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   848
#ifdef ASSERT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   849
                                                 alloc,
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   850
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   851
                                                 first_ind, nfields);
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
   852
    sobj->init_req(0, C->root());
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   853
    transform_later(sobj);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   854
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   855
    // 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
   856
    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
   857
      intptr_t offset;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   858
      ciField* field = NULL;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   859
      if (iklass != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   860
        field = iklass->nonstatic_field_at(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   861
        offset = field->offset();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   862
        elem_type = field->type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   863
        basic_elem_type = field->layout_type();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   864
      } else {
1068
720698d9c89b 6741738: TypePtr::add_offset() set incorrect offset when the add overflows
kvn
parents: 961
diff changeset
   865
        offset = array_base + j * (intptr_t)element_size;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   866
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   867
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   868
      const Type *field_type;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   869
      // 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
   870
      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
   871
        if (!elem_type->is_loaded()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   872
          field_type = TypeInstPtr::BOTTOM;
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 35751
diff changeset
   873
        } else if (field != NULL && field->is_static_constant()) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   874
          // 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
   875
          ciObject* con = field->constant_value().as_object();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   876
          // 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
   877
          // 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
   878
          field_type = TypeOopPtr::make_from_constant(con)->isa_oopptr();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   879
          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
   880
        } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   881
          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
   882
        }
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   883
        if (UseCompressedOops) {
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 762
diff changeset
   884
          field_type = field_type->make_narrowoop();
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   885
          basic_elem_type = T_NARROWOOP;
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   886
        }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   887
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   888
        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
   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
      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
   892
32370
38b7b5772b4f 8130847: Cloned object's fields observed as null after C2 escape analysis
roland
parents: 30629
diff changeset
   893
      Node *field_val = value_from_mem(mem, ctl, basic_elem_type, field_type, field_addr_type, alloc);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   894
      if (field_val == NULL) {
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
   895
        // We weren't able to find a value for this field,
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
   896
        // give up on eliminating this allocation.
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
   897
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
   898
        // Remove any extra entries we added to the safepoint.
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   899
        uint last = sfpt->req() - 1;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   900
        for (int k = 0;  k < j; k++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   901
          sfpt->del_req(last--);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   902
        }
25926
486f1571b70f 8054081: Crashes with assert "modified node is not on IGVN._worklist"
thartmann
parents: 25913
diff changeset
   903
        _igvn._worklist.push(sfpt);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   904
        // rollback processed safepoints
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   905
        while (safepoints_done.length() > 0) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   906
          SafePointNode* sfpt_done = safepoints_done.pop();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   907
          // remove any extra entries we added to the safepoint
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   908
          last = sfpt_done->req() - 1;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   909
          for (int k = 0;  k < nfields; k++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   910
            sfpt_done->del_req(last--);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   911
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   912
          JVMState *jvms = sfpt_done->jvms();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   913
          jvms->set_endoff(sfpt_done->req());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   914
          // 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
   915
          // to SafePointScalarObjectNode with the allocated object.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   916
          int start = jvms->debug_start();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   917
          int end   = jvms->debug_end();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   918
          for (int i = start; i < end; i++) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   919
            if (sfpt_done->in(i)->is_SafePointScalarObject()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   920
              SafePointScalarObjectNode* scobj = sfpt_done->in(i)->as_SafePointScalarObject();
19708
64e8c91f5f3e 8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents: 17384
diff changeset
   921
              if (scobj->first_index(jvms) == sfpt_done->req() &&
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   922
                  scobj->n_fields() == (uint)nfields) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   923
                assert(scobj->alloc() == alloc, "sanity");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   924
                sfpt_done->set_req(i, res);
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
          }
25926
486f1571b70f 8054081: Crashes with assert "modified node is not on IGVN._worklist"
thartmann
parents: 25913
diff changeset
   928
          _igvn._worklist.push(sfpt_done);
246
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
#ifndef PRODUCT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   931
        if (PrintEliminateAllocations) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   932
          if (field != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   933
            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
   934
                       sfpt->_idx);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   935
            field->print();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   936
            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
   937
            tty->print(" (alias_idx=%d)", field_idx);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   938
          } else { // Array's element
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   939
            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
   940
                       sfpt->_idx, j);
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
          tty->print(", which prevents elimination of: ");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   943
          if (res == NULL)
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   944
            alloc->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   945
          else
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   946
            res->dump();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   947
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   948
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   949
        return false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   950
      }
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   951
      if (UseCompressedOops && field_type->isa_narrowoop()) {
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   952
        // Enable "DecodeN(EncodeP(Allocate)) --> Allocate" transformation
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   953
        // 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
   954
        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
   955
          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
   956
        } else {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   957
          field_val = transform_later(new DecodeNNode(field_val, field_val->get_ptr_type()));
767
64fb1fd7186d 6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
kvn
parents: 762
diff changeset
   958
        }
371
1aacedc9db7c 6689060: Escape Analysis does not work with Compressed Oops
kvn
parents: 360
diff changeset
   959
      }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   960
      sfpt->add_req(field_val);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   961
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   962
    JVMState *jvms = sfpt->jvms();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   963
    jvms->set_endoff(sfpt->req());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   964
    // 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
   965
    // to the allocated object with "sobj"
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   966
    int start = jvms->debug_start();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   967
    int end   = jvms->debug_end();
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
   968
    sfpt->replace_edges_in_range(res, sobj, start, end);
25913
81dbc151e91c 8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents: 24923
diff changeset
   969
    _igvn._worklist.push(sfpt);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   970
    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
   971
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   972
  return true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   973
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   974
41699
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   975
static void disconnect_projections(MultiNode* n, PhaseIterGVN& igvn) {
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   976
  Node* ctl_proj = n->proj_out(TypeFunc::Control);
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   977
  Node* mem_proj = n->proj_out(TypeFunc::Memory);
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   978
  if (ctl_proj != NULL) {
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   979
    igvn.replace_node(ctl_proj, n->in(0));
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   980
  }
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   981
  if (mem_proj != NULL) {
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   982
    igvn.replace_node(mem_proj, n->in(TypeFunc::Memory));
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   983
  }
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   984
}
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
   985
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   986
// Process users of eliminated allocation.
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
   987
void PhaseMacroExpand::process_users_of_allocation(CallNode *alloc) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   988
  Node* res = alloc->result_cast();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   989
  if (res != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   990
    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
   991
      Node *use = res->last_out(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   992
      uint oc1 = res->outcnt();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   993
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   994
      if (use->is_AddP()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   995
        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
   996
          Node *n = use->last_out(k);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   997
          uint oc2 = use->outcnt();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
   998
          if (n->is_Store()) {
4470
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
   999
#ifdef ASSERT
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
  1000
            // 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
  1001
            // 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
  1002
            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
  1003
                                       p < pmax; p++) {
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
  1004
              Node* mb = n->fast_out(p);
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
  1005
              assert(mb->is_Initialize() || !mb->is_MemBar() ||
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
  1006
                     mb->req() <= MemBarNode::Precedent ||
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
  1007
                     mb->in(MemBarNode::Precedent) != n,
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
  1008
                     "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
  1009
            }
1e6edcab3109 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents: 4450
diff changeset
  1010
#endif
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1011
            _igvn.replace_node(n, n->in(MemNode::Memory));
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1012
          } else if (n->is_ArrayCopy()) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1013
            // Disconnect ArrayCopy node
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1014
            ArrayCopyNode* ac = n->as_ArrayCopy();
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1015
            assert(ac->is_clonebasic(), "unexpected array copy kind");
41699
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
  1016
            Node* membar_after = ac->proj_out(TypeFunc::Control)->unique_ctrl_out();
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
  1017
            disconnect_projections(ac, _igvn);
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
  1018
            assert(alloc->in(0)->is_Proj() && alloc->in(0)->in(0)->Opcode() == Op_MemBarCPUOrder, "mem barrier expected before allocation");
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
  1019
            Node* membar_before = alloc->in(0)->in(0);
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
  1020
            disconnect_projections(membar_before->as_MemBar(), _igvn);
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
  1021
            if (membar_after->is_MemBar()) {
fcefeb90b468 8166836: Elimination of clone's ArrayCopyNode may make compilation fail silently
roland
parents: 40871
diff changeset
  1022
              disconnect_projections(membar_after->as_MemBar(), _igvn);
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1023
            }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1024
          } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1025
            eliminate_card_mark(n);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1026
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1027
          k -= (oc2 - use->outcnt());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1028
        }
30629
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1029
      } else if (use->is_ArrayCopy()) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1030
        // Disconnect ArrayCopy node
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1031
        ArrayCopyNode* ac = use->as_ArrayCopy();
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1032
        assert(ac->is_arraycopy_validated() ||
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1033
               ac->is_copyof_validated() ||
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1034
               ac->is_copyofrange_validated(), "unsupported");
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1035
        CallProjections callprojs;
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1036
        ac->extract_projections(&callprojs, true);
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1037
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1038
        _igvn.replace_node(callprojs.fallthrough_ioproj, ac->in(TypeFunc::I_O));
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1039
        _igvn.replace_node(callprojs.fallthrough_memproj, ac->in(TypeFunc::Memory));
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1040
        _igvn.replace_node(callprojs.fallthrough_catchproj, ac->in(TypeFunc::Control));
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1041
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1042
        // Set control to top. IGVN will remove the remaining projections
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1043
        ac->set_req(0, top());
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1044
        ac->replace_edge(res, top());
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1045
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1046
        // Disconnect src right away: it can help find new
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1047
        // opportunities for allocation elimination
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1048
        Node* src = ac->in(ArrayCopyNode::Src);
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1049
        ac->replace_edge(src, top());
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1050
        if (src->outcnt() == 0) {
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1051
          _igvn.remove_dead_node(src);
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1052
        }
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1053
b6e5ad2f18d5 8076188: Optimize arraycopy out for non escaping destination
roland
parents: 30248
diff changeset
  1054
        _igvn._worklist.push(ac);
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1055
      } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1056
        eliminate_card_mark(use);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1057
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1058
      j -= (oc1 - res->outcnt());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1059
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1060
    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
  1061
    _igvn.remove_dead_node(res);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1062
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1063
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1064
  //
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1065
  // Process other users of allocation's projections
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1066
  //
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1067
  if (_resproj != NULL && _resproj->outcnt() != 0) {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1068
    // First disconnect stores captured by Initialize node.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1069
    // If Initialize node is eliminated first in the following code,
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1070
    // it will kill such stores and DUIterator_Last will assert.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1071
    for (DUIterator_Fast jmax, j = _resproj->fast_outs(jmax);  j < jmax; j++) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1072
      Node *use = _resproj->fast_out(j);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1073
      if (use->is_AddP()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1074
        // raw memory addresses used only by the initialization
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1075
        _igvn.replace_node(use, C->top());
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1076
        --j; --jmax;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1077
      }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1078
    }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1079
    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
  1080
      Node *use = _resproj->last_out(j);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1081
      uint oc1 = _resproj->outcnt();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1082
      if (use->is_Initialize()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1083
        // Eliminate Initialize node.
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1084
        InitializeNode *init = use->as_Initialize();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1085
        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
  1086
        Node *ctrl_proj = init->proj_out(TypeFunc::Control);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1087
        if (ctrl_proj != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1088
           assert(init->in(TypeFunc::Control) == _fallthroughcatchproj, "allocation control projection");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1089
          _igvn.replace_node(ctrl_proj, _fallthroughcatchproj);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1090
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1091
        Node *mem_proj = init->proj_out(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1092
        if (mem_proj != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1093
          Node *mem = init->in(TypeFunc::Memory);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1094
#ifdef ASSERT
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1095
          if (mem->is_MergeMem()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1096
            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
  1097
          } else {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1098
            assert(mem == _memproj_fallthrough, "allocation memory projection");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1099
          }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1100
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1101
          _igvn.replace_node(mem_proj, mem);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1102
        }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1103
      } else  {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1104
        assert(false, "only Initialize or AddP expected");
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1105
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1106
      j -= (oc1 - _resproj->outcnt());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1107
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1108
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1109
  if (_fallthroughcatchproj != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1110
    _igvn.replace_node(_fallthroughcatchproj, alloc->in(TypeFunc::Control));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1111
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1112
  if (_memproj_fallthrough != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1113
    _igvn.replace_node(_memproj_fallthrough, alloc->in(TypeFunc::Memory));
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1114
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1115
  if (_memproj_catchall != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1116
    _igvn.replace_node(_memproj_catchall, C->top());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1117
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1118
  if (_ioproj_fallthrough != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1119
    _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
  1120
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1121
  if (_ioproj_catchall != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1122
    _igvn.replace_node(_ioproj_catchall, C->top());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1123
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1124
  if (_catchallcatchproj != NULL) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1125
    _igvn.replace_node(_catchallcatchproj, C->top());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1126
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1127
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1128
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1129
bool PhaseMacroExpand::eliminate_allocate_node(AllocateNode *alloc) {
28039
bf5a8340bf8a 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 27645
diff changeset
  1130
  // Don't do scalar replacement if the frame can be popped by JVMTI:
bf5a8340bf8a 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 27645
diff changeset
  1131
  // if reallocation fails during deoptimization we'll pop all
bf5a8340bf8a 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 27645
diff changeset
  1132
  // interpreter frames for this compiled frame and that won't play
bf5a8340bf8a 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 27645
diff changeset
  1133
  // nice with JVMTI popframe.
bf5a8340bf8a 6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94
roland
parents: 27645
diff changeset
  1134
  if (!EliminateAllocations || JvmtiExport::can_pop_frame() || !alloc->_is_non_escaping) {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1135
    return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1136
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1137
  Node* klass = alloc->in(AllocateNode::KlassNode);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1138
  const TypeKlassPtr* tklass = _igvn.type(klass)->is_klassptr();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1139
  Node* res = alloc->result_cast();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1140
  // Eliminate boxing allocations which are not used
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1141
  // regardless scalar replacable status.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1142
  bool boxing_alloc = C->eliminate_boxing() &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1143
                      tklass->klass()->is_instance_klass()  &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1144
                      tklass->klass()->as_instance_klass()->is_box_klass();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1145
  if (!alloc->_is_scalar_replaceable && (!boxing_alloc || (res != NULL))) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1146
    return false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1147
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1148
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1149
  extract_call_projections(alloc);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1150
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1151
  GrowableArray <SafePointNode *> safepoints;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1152
  if (!can_eliminate_allocation(alloc, safepoints)) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1153
    return false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1154
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1155
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1156
  if (!alloc->_is_scalar_replaceable) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1157
    assert(res == NULL, "sanity");
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1158
    // We can only eliminate allocation if all debug info references
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1159
    // are already replaced with SafePointScalarObject because
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1160
    // we can't search for a fields value without instance_id.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1161
    if (safepoints.length() > 0) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1162
      return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1163
    }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1164
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1165
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1166
  if (!scalar_replacement(alloc, safepoints)) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1167
    return false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1168
  }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1169
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1170
  CompileLog* log = C->log();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1171
  if (log != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1172
    log->head("eliminate_allocation type='%d'",
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1173
              log->identify(tklass->klass()));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1174
    JVMState* p = alloc->jvms();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1175
    while (p != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1176
      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
  1177
      p = p->caller();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1178
    }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1179
    log->tail("eliminate_allocation");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1180
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1181
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1182
  process_users_of_allocation(alloc);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1183
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1184
#ifndef PRODUCT
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1185
  if (PrintEliminateAllocations) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1186
    if (alloc->is_AllocateArray())
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1187
      tty->print_cr("++++ Eliminated: %d AllocateArray", alloc->_idx);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1188
    else
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1189
      tty->print_cr("++++ Eliminated: %d Allocate", alloc->_idx);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  1190
  }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1191
#endif
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1192
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1193
  return true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1194
}
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  1195
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1196
bool PhaseMacroExpand::eliminate_boxing_node(CallStaticJavaNode *boxing) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1197
  // EA should remove all uses of non-escaping boxing node.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1198
  if (!C->eliminate_boxing() || boxing->proj_out(TypeFunc::Parms) != NULL) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1199
    return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1200
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1201
25935
59b08808cb9c 8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents: 25926
diff changeset
  1202
  assert(boxing->result_cast() == NULL, "unexpected boxing node result");
59b08808cb9c 8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents: 25926
diff changeset
  1203
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1204
  extract_call_projections(boxing);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1205
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1206
  const TypeTuple* r = boxing->tf()->range();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1207
  assert(r->cnt() > TypeFunc::Parms, "sanity");
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1208
  const TypeInstPtr* t = r->field_at(TypeFunc::Parms)->isa_instptr();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1209
  assert(t != NULL, "sanity");
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1210
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1211
  CompileLog* log = C->log();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1212
  if (log != NULL) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1213
    log->head("eliminate_boxing type='%d'",
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1214
              log->identify(t->klass()));
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1215
    JVMState* p = boxing->jvms();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1216
    while (p != NULL) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1217
      log->elem("jvms bci='%d' method='%d'", p->bci(), log->identify(p->method()));
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1218
      p = p->caller();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1219
    }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1220
    log->tail("eliminate_boxing");
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1221
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1222
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1223
  process_users_of_allocation(boxing);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1224
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1225
#ifndef PRODUCT
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1226
  if (PrintEliminateAllocations) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1227
    tty->print("++++ Eliminated: %d ", boxing->_idx);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1228
    boxing->method()->print_short_name(tty);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1229
    tty->cr();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1230
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1231
#endif
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1232
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1233
  return true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  1234
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
//---------------------------set_eden_pointers-------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
void PhaseMacroExpand::set_eden_pointers(Node* &eden_top_adr, Node* &eden_end_adr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  if (UseTLAB) {                // Private allocation: load from TLS
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1239
    Node* thread = transform_later(new ThreadLocalNode());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
    int tlab_top_offset = in_bytes(JavaThread::tlab_top_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
    int tlab_end_offset = in_bytes(JavaThread::tlab_end_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
    eden_top_adr = basic_plus_adr(top()/*not oop*/, thread, tlab_top_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
    eden_end_adr = basic_plus_adr(top()/*not oop*/, thread, tlab_end_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
  } else {                      // Shared allocation: load from globals
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    CollectedHeap* ch = Universe::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
    address top_adr = (address)ch->top_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
    address end_adr = (address)ch->end_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
    eden_top_adr = makecon(TypeRawPtr::make(top_adr));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
    eden_end_adr = basic_plus_adr(eden_top_adr, end_adr - top_adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
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
  1255
  Node* adr = basic_plus_adr(base, offset);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  1256
  const TypePtr* adr_type = adr->bottom_type()->is_ptr();
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19979
diff changeset
  1257
  Node* value = LoadNode::make(_igvn, ctl, mem, adr, adr_type, value_type, bt, MemNode::unordered);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  transform_later(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
  return value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
Node* PhaseMacroExpand::make_store(Node* ctl, Node* mem, Node* base, int offset, Node* value, BasicType bt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
  Node* adr = basic_plus_adr(base, offset);
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19979
diff changeset
  1265
  mem = StoreNode::make(_igvn, ctl, mem, adr, NULL, value, bt, MemNode::unordered);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
  transform_later(mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  return mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
//                              A L L O C A T I O N
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
// Allocation attempts to be fast in the case of frequent small objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
// It breaks down like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
// 1) Size in doublewords is computed.  This is a constant for objects and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
// variable for most arrays.  Doubleword units are used to avoid size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
// overflow of huge doubleword arrays.  We need doublewords in the end for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
// rounding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
// 2) Size is checked for being 'too large'.  Too-large allocations will go
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
// the slow path into the VM.  The slow path can throw any required
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
// exceptions, and does all the special checks for very large arrays.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
// size test can constant-fold away for objects.  For objects with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
// finalizers it constant-folds the otherway: you always go slow with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
// finalizers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
// 3) If NOT using TLABs, this is the contended loop-back point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
// Load-Locked the heap top.  If using TLABs normal-load the heap top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
// 4) Check that heap top + size*8 < max.  If we fail go the slow ` route.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
// NOTE: "top+size*8" cannot wrap the 4Gig line!  Here's why: for largish
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
// "size*8" we always enter the VM, where "largish" is a constant picked small
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
// enough that there's always space between the eden max and 4Gig (old space is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
// there so it's quite large) and large enough that the cost of entering the VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
// is dwarfed by the cost to initialize the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
// 5) If NOT using TLABs, Store-Conditional the adjusted heap top back
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
// down.  If contended, repeat at step 3.  If using TLABs normal-store
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
// adjusted heap top back down; there is no contention.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
// 6) If !ZeroTLAB then Bulk-clear the object/array.  Fill in klass & mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
// fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
// 7) Merge with the slow-path; cast the raw memory pointer to the correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
// oop flavor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
// FastAllocateSizeLimit value is in DOUBLEWORDS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
// Allocations bigger than this always go the slow route.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
// This value must be small enough that allocation attempts that need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
// trigger exceptions go the slow route.  Also, it must be small enough so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
// that heap_top + size_in_bytes does not wrap around the 4Gig limit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
//=============================================================================j//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
// %%% Here is an old comment from parseHelper.cpp; is it outdated?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
// The allocator will coalesce int->oop copies away.  See comment in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
// coalesce.cpp about how this works.  It depends critically on the exact
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
// code shape produced here, so if you are changing this code shape
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
// make sure the GC info for the heap-top is correct in and around the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
// slow-path call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
void PhaseMacroExpand::expand_allocate_common(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
            AllocateNode* alloc, // allocation node to be expanded
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
            Node* length,  // array length for an array allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
            const TypeFunc* slow_call_type, // Type of slow call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
            address slow_call_address  // Address of slow call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  Node* ctrl = alloc->in(TypeFunc::Control);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
  Node* mem  = alloc->in(TypeFunc::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
  Node* i_o  = alloc->in(TypeFunc::I_O);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  Node* size_in_bytes     = alloc->in(AllocateNode::AllocSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  Node* klass_node        = alloc->in(AllocateNode::KlassNode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
  Node* initial_slow_test = alloc->in(AllocateNode::InitialTest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  assert(ctrl != NULL, "must have control");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  // We need a Region and corresponding Phi's to merge the slow-path and fast-path results.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  // they will not be used if "always_slow" is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  enum { slow_result_path = 1, fast_result_path = 2 };
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33077
diff changeset
  1343
  Node *result_region = NULL;
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33077
diff changeset
  1344
  Node *result_phi_rawmem = NULL;
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33077
diff changeset
  1345
  Node *result_phi_rawoop = NULL;
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33077
diff changeset
  1346
  Node *result_phi_i_o = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  // The initial slow comparison is a size check, the comparison
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  // we want to do is a BoolTest::gt
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  bool always_slow = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  int tv = _igvn.find_int_con(initial_slow_test, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
  if (tv >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
    always_slow = (tv == 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
    initial_slow_test = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
    initial_slow_test = BoolNode::make_predicate(initial_slow_test, &_igvn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 2532
diff changeset
  1359
  if (C->env()->dtrace_alloc_probes() ||
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 26180
diff changeset
  1360
      !UseTLAB && (!Universe::heap()->supports_inline_contig_alloc())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
    // Force slow-path allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
    always_slow = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
    initial_slow_test = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1366
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
  enum { too_big_or_final_path = 1, need_gc_path = 2 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
  Node *slow_region = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  Node *toobig_false = ctrl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  assert (initial_slow_test == NULL || !always_slow, "arguments must be consistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  // generate the initial test if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  if (initial_slow_test != NULL ) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1374
    slow_region = new RegionNode(3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
    // Now make the initial failure test.  Usually a too-big test but
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
    // might be a TRUE for finalizers or a fancy class check for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
    // newInstance0.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1379
    IfNode *toobig_iff = new IfNode(ctrl, initial_slow_test, PROB_MIN, COUNT_UNKNOWN);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
    transform_later(toobig_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
    // Plug the failing-too-big test into the slow-path region
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1382
    Node *toobig_true = new IfTrueNode( toobig_iff );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
    transform_later(toobig_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
    slow_region    ->init_req( too_big_or_final_path, toobig_true );
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1385
    toobig_false = new IfFalseNode( toobig_iff );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
    transform_later(toobig_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
  } else {         // No initial test, just fall into next case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
    toobig_false = ctrl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
    debug_only(slow_region = NodeSentinel);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  Node *slow_mem = mem;  // save the current memory state for slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  // generate the fast allocation code unless we know that the initial test will always go slow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
  if (!always_slow) {
2029
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1395
    // Fast path modifies only raw memory.
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1396
    if (mem->is_MergeMem()) {
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1397
      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
  1398
    }
4ba79339bc0c 6799693: Server compiler leads to data corruption when expression throws an Exception
kvn
parents: 1677
diff changeset
  1399
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1400
    Node* eden_top_adr;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1401
    Node* eden_end_adr;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1402
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1403
    set_eden_pointers(eden_top_adr, eden_end_adr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1404
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1405
    // Load Eden::end.  Loop invariant and hoisted.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1406
    //
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1407
    // 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
  1408
    //       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
  1409
    //       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
  1410
    //       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
  1411
    //       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
  1412
    //       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
  1413
    //       prevent a degradation of the optimization.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 371
diff changeset
  1414
    //       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
  1415
    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
  1416
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
    // allocate the Region and Phi nodes for the result
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1418
    result_region = new RegionNode(3);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1419
    result_phi_rawmem = new PhiNode(result_region, Type::MEMORY, TypeRawPtr::BOTTOM);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1420
    result_phi_rawoop = new PhiNode(result_region, TypeRawPtr::BOTTOM);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1421
    result_phi_i_o    = new PhiNode(result_region, Type::ABIO); // I/O is used for Prefetch
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
    // We need a Region for the loop-back contended case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
    enum { fall_in_path = 1, contended_loopback_path = 2 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
    Node *contended_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
    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
  1427
    if (UseTLAB) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
      contended_region = toobig_false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
      contended_phi_rawmem = mem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
    } else {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1431
      contended_region = new RegionNode(3);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1432
      contended_phi_rawmem = new PhiNode(contended_region, Type::MEMORY, TypeRawPtr::BOTTOM);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
      // Now handle the passing-too-big test.  We fall into the contended
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
      // 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
  1435
      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
  1436
      contended_phi_rawmem->init_req(fall_in_path, mem);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
      transform_later(contended_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
      transform_later(contended_phi_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
    // Load(-locked) the heap top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
    // See note above concerning the control input when using a TLAB
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
    Node *old_eden_top = UseTLAB
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1444
      ? new LoadPNode      (ctrl, contended_phi_rawmem, eden_top_adr, TypeRawPtr::BOTTOM, TypeRawPtr::BOTTOM, MemNode::unordered)
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1445
      : new LoadPLockedNode(contended_region, contended_phi_rawmem, eden_top_adr, MemNode::acquire);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
    transform_later(old_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
    // Add to heap top to get a new heap top
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1449
    Node *new_eden_top = new AddPNode(top(), old_eden_top, size_in_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
    transform_later(new_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
    // Check for needing a GC; compare against heap end
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1452
    Node *needgc_cmp = new CmpPNode(new_eden_top, eden_end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
    transform_later(needgc_cmp);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1454
    Node *needgc_bol = new BoolNode(needgc_cmp, BoolTest::ge);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
    transform_later(needgc_bol);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1456
    IfNode *needgc_iff = new IfNode(contended_region, needgc_bol, PROB_UNLIKELY_MAG(4), COUNT_UNKNOWN);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
    transform_later(needgc_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
    // Plug the failing-heap-space-need-gc test into the slow-path region
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1460
    Node *needgc_true = new IfTrueNode(needgc_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
    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
  1462
    if (initial_slow_test) {
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1463
      slow_region->init_req(need_gc_path, needgc_true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
      // This completes all paths into the slow merge point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
      transform_later(slow_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
    } else {                      // No initial slow path needed!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
      // 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
  1468
      slow_region = needgc_true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
    // No need for a GC.  Setup for the Store-Conditional
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1471
    Node *needgc_false = new IfFalseNode(needgc_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
    transform_later(needgc_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
    // Grab regular I/O before optional prefetch may change it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
    // 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
  1476
    result_phi_i_o->init_req(slow_result_path, i_o);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
    i_o = prefetch_allocation(i_o, needgc_false, contended_phi_rawmem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
                              old_eden_top, new_eden_top, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1481
    // 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
  1482
    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
  1483
    Node* fast_oop_ctrl;
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1484
    Node* fast_oop_rawmem;
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1485
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
    // Store (-conditional) the modified eden top back down.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
    // StorePConditional produces flags for a test PLUS a modified raw
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
    // memory state.
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1489
    if (UseTLAB) {
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1490
      Node* store_eden_top =
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1491
        new StorePNode(needgc_false, contended_phi_rawmem, eden_top_adr,
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19979
diff changeset
  1492
                              TypeRawPtr::BOTTOM, new_eden_top, MemNode::unordered);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
      transform_later(store_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
      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
  1495
      fast_oop_rawmem = store_eden_top;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    } else {
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1497
      Node* store_eden_top =
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1498
        new StorePConditionalNode(needgc_false, contended_phi_rawmem, eden_top_adr,
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1499
                                         new_eden_top, fast_oop/*old_eden_top*/);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
      transform_later(store_eden_top);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1501
      Node *contention_check = new BoolNode(store_eden_top, BoolTest::ne);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
      transform_later(contention_check);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1503
      store_eden_top = new SCMemProjNode(store_eden_top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
      transform_later(store_eden_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
      // If not using TLABs, check to see if there was contention.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1507
      IfNode *contention_iff = new IfNode (needgc_false, contention_check, PROB_MIN, COUNT_UNKNOWN);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
      transform_later(contention_iff);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1509
      Node *contention_true = new IfTrueNode(contention_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
      transform_later(contention_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
      // 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
  1512
      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
  1513
      contended_phi_rawmem->init_req(contended_loopback_path, store_eden_top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
      // Fast-path succeeded with no contention!
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1516
      Node *contention_false = new IfFalseNode(contention_iff);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
      transform_later(contention_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
      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
  1519
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1520
      // Bump total allocated bytes for this thread
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1521
      Node* thread = new ThreadLocalNode();
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1522
      transform_later(thread);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1523
      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
  1524
                                             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
  1525
      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
  1526
                                    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
  1527
#ifdef _LP64
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1528
      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
  1529
#else
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1530
      Node* alloc_size = new ConvI2LNode(size_in_bytes);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1531
      transform_later(alloc_size);
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1532
#endif
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1533
      Node* new_alloc_bytes = new AddLNode(alloc_bytes, alloc_size);
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
  1534
      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
  1535
      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
  1536
                                   0, new_alloc_bytes, T_LONG);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1539
    InitializeNode* init = alloc->initialization();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
    fast_oop_rawmem = initialize_object(alloc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
                                        fast_oop_ctrl, fast_oop_rawmem, fast_oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
                                        klass_node, length, size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1544
    // If initialization is performed by an array copy, any required
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1545
    // MemBarStoreStore was already added. If the object does not
35157
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1546
    // escape no need for a MemBarStoreStore. If the object does not
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1547
    // escape in its initializer and memory barrier (MemBarStoreStore or
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1548
    // stronger) is already added at exit of initializer, also no need
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1549
    // for a MemBarStoreStore. Otherwise we need a MemBarStoreStore
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1550
    // so that stores that initialize this object can't be reordered
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1551
    // with a subsequent store that makes this object accessible by
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1552
    // other threads.
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1553
    // Other threads include java threads and JVM internal threads
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1554
    // (for example concurrent GC threads). Current concurrent GC
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1555
    // implementation: CMS and G1 will not scan newly created object,
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1556
    // so it's safe to skip storestore barrier when allocation does
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1557
    // not escape.
33077
55f205e96044 8136596: Remove aarch64: MemBarRelease when final field's allocation is NoEscape or ArgEscape
roland
parents: 32402
diff changeset
  1558
    if (!alloc->does_not_escape_thread() &&
35157
1a5fa0acb08b 8144993: Elide redundant memory barrier after AllocationNode
hshi
parents: 34148
diff changeset
  1559
        !alloc->is_allocation_MemBar_redundant() &&
33077
55f205e96044 8136596: Remove aarch64: MemBarRelease when final field's allocation is NoEscape or ArgEscape
roland
parents: 32402
diff changeset
  1560
        (init == NULL || !init->is_complete_with_arraycopy())) {
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1561
      if (init == NULL || init->req() < InitializeNode::RawStores) {
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1562
        // No InitializeNode or no stores captured by zeroing
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1563
        // elimination. Simply add the MemBarStoreStore after object
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1564
        // initialization.
15874
57f16a8b609f 8009460: C2compiler crash in machnode::in_regmask(unsigned int)
roland
parents: 15242
diff changeset
  1565
        MemBarNode* mb = MemBarNode::make(C, Op_MemBarStoreStore, Compile::AliasIdxBot);
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1566
        transform_later(mb);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1567
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1568
        mb->init_req(TypeFunc::Memory, fast_oop_rawmem);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1569
        mb->init_req(TypeFunc::Control, fast_oop_ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1570
        fast_oop_ctrl = new ProjNode(mb,TypeFunc::Control);
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1571
        transform_later(fast_oop_ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1572
        fast_oop_rawmem = new ProjNode(mb,TypeFunc::Memory);
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1573
        transform_later(fast_oop_rawmem);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1574
      } else {
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1575
        // Add the MemBarStoreStore after the InitializeNode so that
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1576
        // all stores performing the initialization that were moved
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1577
        // before the InitializeNode happen before the storestore
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1578
        // barrier.
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1579
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1580
        Node* init_ctrl = init->proj_out(TypeFunc::Control);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1581
        Node* init_mem = init->proj_out(TypeFunc::Memory);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1582
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1583
        MemBarNode* mb = MemBarNode::make(C, Op_MemBarStoreStore, Compile::AliasIdxBot);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1584
        transform_later(mb);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1585
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1586
        Node* ctrl = new ProjNode(init,TypeFunc::Control);
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1587
        transform_later(ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1588
        Node* mem = new ProjNode(init,TypeFunc::Memory);
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1589
        transform_later(mem);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1590
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1591
        // The MemBarStoreStore depends on control and memory coming
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1592
        // from the InitializeNode
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1593
        mb->init_req(TypeFunc::Memory, mem);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1594
        mb->init_req(TypeFunc::Control, ctrl);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1595
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1596
        ctrl = new ProjNode(mb,TypeFunc::Control);
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1597
        transform_later(ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1598
        mem = new ProjNode(mb,TypeFunc::Memory);
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1599
        transform_later(mem);
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1600
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1601
        // All nodes that depended on the InitializeNode for control
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1602
        // and memory must now depend on the MemBarNode that itself
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1603
        // depends on the InitializeNode
40031
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39254
diff changeset
  1604
        if (init_ctrl != NULL) {
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39254
diff changeset
  1605
          _igvn.replace_node(init_ctrl, ctrl);
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39254
diff changeset
  1606
        }
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39254
diff changeset
  1607
        if (init_mem != NULL) {
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39254
diff changeset
  1608
          _igvn.replace_node(init_mem, mem);
6cc034201dba 8159016: Over-unrolled loop is partially removed
thartmann
parents: 39254
diff changeset
  1609
        }
11431
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1610
      }
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1611
    }
5ca3a19e559a 7121140: Allocation paths require explicit memory synchronization operations for RMO systems
roland
parents: 11430
diff changeset
  1612
2867
69187054225f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 2532
diff changeset
  1613
    if (C->env()->dtrace_extended_probes()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
      // Slow-path call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
      int size = TypeFunc::Parms + 2;
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1616
      CallLeafNode *call = new CallLeafNode(OptoRuntime::dtrace_object_alloc_Type(),
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1617
                                            CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_object_alloc_base),
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1618
                                            "dtrace_object_alloc",
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1619
                                            TypeRawPtr::BOTTOM);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
      // Get base of thread-local storage area
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1622
      Node* thread = new ThreadLocalNode();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
      transform_later(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
      call->init_req(TypeFunc::Parms+0, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
      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
  1627
      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
  1628
      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
  1629
      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
  1630
      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
  1631
      call->init_req(TypeFunc::FramePtr, alloc->in(TypeFunc::FramePtr));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
      transform_later(call);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1633
      fast_oop_ctrl = new ProjNode(call,TypeFunc::Control);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
      transform_later(fast_oop_ctrl);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1635
      fast_oop_rawmem = new ProjNode(call,TypeFunc::Memory);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
      transform_later(fast_oop_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
    // 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
  1640
    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
  1641
    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
  1642
    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
  1643
    result_phi_rawmem->init_req(fast_result_path, fast_oop_rawmem);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
    slow_region = ctrl;
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1646
    result_phi_i_o = i_o; // Rename it to use in the following code.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
  // Generate slow-path call
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1650
  CallNode *call = new CallStaticJavaNode(slow_call_type, slow_call_address,
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 13728
diff changeset
  1651
                               OptoRuntime::stub_name(slow_call_address),
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 13728
diff changeset
  1652
                               alloc->jvms()->bci(),
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 13728
diff changeset
  1653
                               TypePtr::BOTTOM);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
  call->init_req( TypeFunc::Control, slow_region );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
  call->init_req( TypeFunc::I_O    , top() )     ;   // does no i/o
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
  call->init_req( TypeFunc::Memory , slow_mem ); // may gc ptrs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
  call->init_req( TypeFunc::ReturnAdr, alloc->in(TypeFunc::ReturnAdr) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
  call->init_req( TypeFunc::FramePtr, alloc->in(TypeFunc::FramePtr) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
  call->init_req(TypeFunc::Parms+0, klass_node);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
  if (length != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
    call->init_req(TypeFunc::Parms+1, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
  // Copy debug information and adjust JVMState information, then replace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
  // allocate node with the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
  copy_call_debug_info((CallNode *) alloc,  call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
  if (!always_slow) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
    call->set_cnt(PROB_UNLIKELY_MAG(4));  // Same effect as RC_UNCOMMON.
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1670
  } else {
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1671
    // Hook i_o projection to avoid its elimination during allocation
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1672
    // replacement (when only a slow call is generated).
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1673
    call->set_req(TypeFunc::I_O, result_phi_i_o);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
  }
5901
c046f8e9c52b 6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents: 5889
diff changeset
  1675
  _igvn.replace_node(alloc, call);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
  transform_later(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
  // Identify the output projections from the allocate node and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
  // adjust any references to them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
  // The control and io projections look like:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
  //        v---Proj(ctrl) <-----+   v---CatchProj(ctrl)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
  //  Allocate                   Catch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
  //        ^---Proj(io) <-------+   ^---CatchProj(io)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
  //  We are interested in the CatchProj nodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
  extract_call_projections(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1690
  // An allocate node has separate memory projections for the uses on
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1691
  // the control and i_o paths. Replace the control memory projection with
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1692
  // result_phi_rawmem (unless we are only generating a slow call when
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1693
  // both memory projections are combined)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
  if (!always_slow && _memproj_fallthrough != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
    for (DUIterator_Fast imax, i = _memproj_fallthrough->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
      Node *use = _memproj_fallthrough->fast_out(i);
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 11724
diff changeset
  1697
      _igvn.rehash_node_delayed(use);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
      imax -= replace_input(use, _memproj_fallthrough, result_phi_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
      // back up iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
      --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
  }
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1703
  // Now change uses of _memproj_catchall to use _memproj_fallthrough and delete
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1704
  // _memproj_catchall so we end up with a call that has only 1 memory projection.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
  if (_memproj_catchall != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
    if (_memproj_fallthrough == NULL) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1707
      _memproj_fallthrough = new ProjNode(call, TypeFunc::Memory);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
      transform_later(_memproj_fallthrough);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
    for (DUIterator_Fast imax, i = _memproj_catchall->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
      Node *use = _memproj_catchall->fast_out(i);
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 11724
diff changeset
  1712
      _igvn.rehash_node_delayed(use);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
      imax -= replace_input(use, _memproj_catchall, _memproj_fallthrough);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
      // back up iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
      --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
    }
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1717
    assert(_memproj_catchall->outcnt() == 0, "all uses must be deleted");
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1718
    _igvn.remove_dead_node(_memproj_catchall);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1721
  // An allocate node has separate i_o projections for the uses on the control
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1722
  // and i_o paths. Always replace the control i_o projection with result i_o
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1723
  // otherwise incoming i_o become dead when only a slow call is generated
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1724
  // (it is different from memory projections where both projections are
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1725
  // combined in such case).
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1726
  if (_ioproj_fallthrough != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
    for (DUIterator_Fast imax, i = _ioproj_fallthrough->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
      Node *use = _ioproj_fallthrough->fast_out(i);
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 11724
diff changeset
  1729
      _igvn.rehash_node_delayed(use);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
      imax -= replace_input(use, _ioproj_fallthrough, result_phi_i_o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
      // back up iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
      --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
  }
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1735
  // Now change uses of _ioproj_catchall to use _ioproj_fallthrough and delete
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1736
  // _ioproj_catchall so we end up with a call that has only 1 i_o projection.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
  if (_ioproj_catchall != NULL ) {
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1738
    if (_ioproj_fallthrough == NULL) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1739
      _ioproj_fallthrough = new ProjNode(call, TypeFunc::I_O);
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1740
      transform_later(_ioproj_fallthrough);
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1741
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
    for (DUIterator_Fast imax, i = _ioproj_catchall->fast_outs(imax); i < imax; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
      Node *use = _ioproj_catchall->fast_out(i);
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 11724
diff changeset
  1744
      _igvn.rehash_node_delayed(use);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
      imax -= replace_input(use, _ioproj_catchall, _ioproj_fallthrough);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
      // back up iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
      --i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
    }
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1749
    assert(_ioproj_catchall->outcnt() == 0, "all uses must be deleted");
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1750
    _igvn.remove_dead_node(_ioproj_catchall);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
  // if we generated only a slow call, we are done
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1754
  if (always_slow) {
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1755
    // Now we can unhook i_o.
11437
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1756
    if (result_phi_i_o->outcnt() > 1) {
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1757
      call->set_req(TypeFunc::I_O, top());
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1758
    } else {
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1759
      assert(result_phi_i_o->unique_ctrl_out() == call, "");
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1760
      // Case of new array with negative size known during compilation.
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1761
      // AllocateArrayNode::Ideal() optimization disconnect unreachable
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1762
      // following code since call to runtime will throw exception.
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1763
      // As result there will be no users of i_o after the call.
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1764
      // Leave i_o attached to this call to avoid problems in preceding graph.
2fa33fde54b9 7125879: assert(proj != NULL) failed: must be found
kvn
parents: 11435
diff changeset
  1765
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
    return;
11435
3fde349bcbcf 7123954: Some CTW test crash with SIGSEGV
kvn
parents: 11431
diff changeset
  1767
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
  if (_fallthroughcatchproj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
    ctrl = _fallthroughcatchproj->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
    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
  1773
    _igvn.replace_node(_fallthroughcatchproj, result_region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
    ctrl = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
  Node *slow_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
  if (_resproj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
    // no uses of the allocation result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
    slow_result = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
    slow_result = _resproj->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
    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
  1784
    _igvn.replace_node(_resproj, result_phi_rawoop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
  // Plug slow-path into result merge point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
  result_region    ->init_req( slow_result_path, ctrl );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
  result_phi_rawoop->init_req( slow_result_path, slow_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
  result_phi_rawmem->init_req( slow_result_path, _memproj_fallthrough );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
  transform_later(result_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
  transform_later(result_phi_rawoop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
  transform_later(result_phi_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
  transform_later(result_phi_i_o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
  // This completes all paths into the result merge point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
// Helper for PhaseMacroExpand::expand_allocate_common.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
// Initializes the newly-allocated storage.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
Node*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
PhaseMacroExpand::initialize_object(AllocateNode* alloc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
                                    Node* control, Node* rawmem, Node* object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
                                    Node* klass_node, Node* length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
                                    Node* size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
  InitializeNode* init = alloc->initialization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
  // Store the klass & mark bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
  Node* mark_node = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
  // For now only enable fast locking for non-array types
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
  if (UseBiasedLocking && (length == NULL)) {
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 11191
diff changeset
  1811
    mark_node = make_load(control, rawmem, klass_node, in_bytes(Klass::prototype_header_offset()), TypeRawPtr::BOTTOM, T_ADDRESS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
    mark_node = makecon(TypeRawPtr::make((address)markOopDesc::prototype()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
  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
  1816
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
  1817
  rawmem = make_store(control, rawmem, object, oopDesc::klass_offset_in_bytes(), klass_node, T_METADATA);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
  int header_size = alloc->minimum_header_size();  // conservatively small
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
  // Array length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
  if (length != NULL) {         // Arrays need length field
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
    rawmem = make_store(control, rawmem, object, arrayOopDesc::length_offset_in_bytes(), length, T_INT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
    // conservatively small header size:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  1824
    header_size = arrayOopDesc::base_offset_in_bytes(T_BYTE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
    ciKlass* k = _igvn.type(klass_node)->is_klassptr()->klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
    if (k->is_array_klass())    // we know the exact header size in most cases:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
      header_size = Klass::layout_helper_header_size(k->layout_helper());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
  // Clear the object body, if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
  if (init == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
    // The init has somehow disappeared; be cautious and clear everything.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
    // This can happen if a node is allocated but an uncommon trap occurs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
    // immediately.  In this case, the Initialize gets associated with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
    // trap, and may be placed in a different (outer) loop, if the Allocate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
    // is in a loop.  If (this is rare) the inner loop gets unrolled, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
    // there can be two Allocates to one Initialize.  The answer in all these
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
    // edge cases is safety first.  It is always safe to clear immediately
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
    // within an Allocate, and then (maybe or maybe not) clear some more later.
35548
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35157
diff changeset
  1841
    if (!(UseTLAB && ZeroTLAB)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
      rawmem = ClearArrayNode::clear_memory(control, rawmem, object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
                                            header_size, size_in_bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
                                            &_igvn);
35548
8d3afe96ffea 8086053: Address inconsistencies regarding ZeroTLAB
zmajo
parents: 35157
diff changeset
  1845
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
    if (!init->is_complete()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
      // Try to win by zeroing only what the init does not store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
      // We can also try to do some peephole optimizations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
      // such as combining some adjacent subword stores.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
      rawmem = init->complete_stores(control, rawmem, object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
                                     header_size, size_in_bytes, &_igvn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
    // We have no more use for this link, since the AllocateNode goes away:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
    init->set_req(InitializeNode::RawAddress, top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
    // (If we keep the link, it just confuses the register allocator,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
    // who thinks he sees a real use of the address by the membar.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
  return rawmem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
// Generate prefetch instructions for next allocations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
Node* PhaseMacroExpand::prefetch_allocation(Node* i_o, Node*& needgc_false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
                                        Node*& contended_phi_rawmem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
                                        Node* old_eden_top, Node* new_eden_top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
                                        Node* length) {
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1868
   enum { fall_in_path = 1, pf_path = 2 };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
   if( UseTLAB && AllocatePrefetchStyle == 2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
      // Generate prefetch allocation with watermark check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
      // As an allocation hits the watermark, we will prefetch starting
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
      // at a "distance" away from watermark.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1874
      Node *pf_region = new RegionNode(3);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1875
      Node *pf_phi_rawmem = new PhiNode( pf_region, Type::MEMORY,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
                                                TypeRawPtr::BOTTOM );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
      // I/O is used for Prefetch
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1878
      Node *pf_phi_abio = new PhiNode( pf_region, Type::ABIO );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1880
      Node *thread = new ThreadLocalNode();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
      transform_later(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1883
      Node *eden_pf_adr = new AddPNode( top()/*not oop*/, thread,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
                   _igvn.MakeConX(in_bytes(JavaThread::tlab_pf_top_offset())) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
      transform_later(eden_pf_adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1887
      Node *old_pf_wm = new LoadPNode(needgc_false,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
                                   contended_phi_rawmem, eden_pf_adr,
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19979
diff changeset
  1889
                                   TypeRawPtr::BOTTOM, TypeRawPtr::BOTTOM,
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19979
diff changeset
  1890
                                   MemNode::unordered);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
      transform_later(old_pf_wm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
      // check against new_eden_top
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1894
      Node *need_pf_cmp = new CmpPNode( new_eden_top, old_pf_wm );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
      transform_later(need_pf_cmp);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1896
      Node *need_pf_bol = new BoolNode( need_pf_cmp, BoolTest::ge );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
      transform_later(need_pf_bol);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1898
      IfNode *need_pf_iff = new IfNode( needgc_false, need_pf_bol,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
                                       PROB_UNLIKELY_MAG(4), COUNT_UNKNOWN );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
      transform_later(need_pf_iff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
      // true node, add prefetchdistance
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1903
      Node *need_pf_true = new IfTrueNode( need_pf_iff );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
      transform_later(need_pf_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1906
      Node *need_pf_false = new IfFalseNode( need_pf_iff );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
      transform_later(need_pf_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1909
      Node *new_pf_wmt = new AddPNode( top(), old_pf_wm,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
                                    _igvn.MakeConX(AllocatePrefetchDistance) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
      transform_later(new_pf_wmt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
      new_pf_wmt->set_req(0, need_pf_true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1914
      Node *store_new_wmt = new StorePNode(need_pf_true,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
                                       contended_phi_rawmem, eden_pf_adr,
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19979
diff changeset
  1916
                                       TypeRawPtr::BOTTOM, new_pf_wmt,
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19979
diff changeset
  1917
                                       MemNode::unordered);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
      transform_later(store_new_wmt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
      // adding prefetches
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
      pf_phi_abio->init_req( fall_in_path, i_o );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
      Node *prefetch_adr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
      Node *prefetch;
38220
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1925
      uint lines = (length != NULL) ? AllocatePrefetchLines : AllocateInstancePrefetchLines;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
      uint step_size = AllocatePrefetchStepSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
      uint distance = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
      for ( uint i = 0; i < lines; i++ ) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1930
        prefetch_adr = new AddPNode( old_pf_wm, new_pf_wmt,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
                                            _igvn.MakeConX(distance) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
        transform_later(prefetch_adr);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1933
        prefetch = new PrefetchAllocationNode( i_o, prefetch_adr );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
        transform_later(prefetch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
        distance += step_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
        i_o = prefetch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
      pf_phi_abio->set_req( pf_path, i_o );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
      pf_region->init_req( fall_in_path, need_pf_false );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
      pf_region->init_req( pf_path, need_pf_true );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
      pf_phi_rawmem->init_req( fall_in_path, contended_phi_rawmem );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
      pf_phi_rawmem->init_req( pf_path, store_new_wmt );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
      transform_later(pf_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
      transform_later(pf_phi_rawmem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
      transform_later(pf_phi_abio);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
      needgc_false = pf_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
      contended_phi_rawmem = pf_phi_rawmem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
      i_o = pf_phi_abio;
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1953
   } else if( UseTLAB && AllocatePrefetchStyle == 3 ) {
38220
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1954
      // Insert a prefetch instruction for each allocation.
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1955
      // This code is used for SPARC with BIS.
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1956
10267
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1957
      // Generate several prefetch instructions.
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1958
      uint lines = (length != NULL) ? AllocatePrefetchLines : AllocateInstancePrefetchLines;
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1959
      uint step_size = AllocatePrefetchStepSize;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1960
      uint distance = AllocatePrefetchDistance;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1961
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1962
      // Next cache address.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1963
      Node *cache_adr = new AddPNode(old_eden_top, old_eden_top,
38220
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1964
                                     _igvn.MakeConX(step_size + distance));
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1965
      transform_later(cache_adr);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1966
      cache_adr = new CastP2XNode(needgc_false, cache_adr);
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1967
      transform_later(cache_adr);
38220
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1968
      // For BIS instructions to be emitted, the address must be aligned at cache line size.
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1969
      // (The VM sets AllocatePrefetchStepSize to the cache line size, unless a value is
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1970
      // specified at the command line.) If the address is not aligned at cache line size
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1971
      // boundary, a standard store instruction is triggered (instead of the BIS). For the
8d86b82e0ac7 8153340: Disallow misconfiguration and improve the consistency of allocation prefetching
zmajo
parents: 38030
diff changeset
  1972
      // latter, 8-byte alignment is necessary.
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1973
      Node* mask = _igvn.MakeConX(~(intptr_t)(step_size-1));
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1974
      cache_adr = new AndXNode(cache_adr, mask);
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1975
      transform_later(cache_adr);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1976
      cache_adr = new CastX2PNode(cache_adr);
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1977
      transform_later(cache_adr);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1978
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1979
      // Prefetch
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1980
      Node *prefetch = new PrefetchAllocationNode( contended_phi_rawmem, cache_adr );
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1981
      prefetch->set_req(0, needgc_false);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1982
      transform_later(prefetch);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1983
      contended_phi_rawmem = prefetch;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1984
      Node *prefetch_adr;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1985
      distance = step_size;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1986
      for ( uint i = 1; i < lines; i++ ) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1987
        prefetch_adr = new AddPNode( cache_adr, cache_adr,
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1988
                                            _igvn.MakeConX(distance) );
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1989
        transform_later(prefetch_adr);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  1990
        prefetch = new PrefetchAllocationNode( contended_phi_rawmem, prefetch_adr );
5251
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1991
        transform_later(prefetch);
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1992
        distance += step_size;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1993
        contended_phi_rawmem = prefetch;
f86f7a86d761 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents: 4470
diff changeset
  1994
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
   } else if( AllocatePrefetchStyle > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
      // Insert a prefetch for each allocation only on the fast-path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
      Node *prefetch_adr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
      Node *prefetch;
10267
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  1999
      // Generate several prefetch instructions.
8bdeec886dc4 7079329: Adjust allocation prefetching for T4
kvn
parents: 10262
diff changeset
  2000
      uint lines = (length != NULL) ? AllocatePrefetchLines : AllocateInstancePrefetchLines;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
      uint step_size = AllocatePrefetchStepSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
      uint distance = AllocatePrefetchDistance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
      for ( uint i = 0; i < lines; i++ ) {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2004
        prefetch_adr = new AddPNode( old_eden_top, new_eden_top,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
                                            _igvn.MakeConX(distance) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
        transform_later(prefetch_adr);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2007
        prefetch = new PrefetchAllocationNode( i_o, prefetch_adr );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
        // Do not let it float too high, since if eden_top == eden_end,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
        // both might be null.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
        if( i == 0 ) { // Set control for first prefetch, next follows it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
          prefetch->init_req(0, needgc_false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
        transform_later(prefetch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
        distance += step_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
        i_o = prefetch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
   return i_o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
void PhaseMacroExpand::expand_allocate(AllocateNode *alloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
  expand_allocate_common(alloc, NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
                         OptoRuntime::new_instance_Type(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
                         OptoRuntime::new_instance_Java());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
void PhaseMacroExpand::expand_allocate_array(AllocateArrayNode *alloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
  Node* length = alloc->in(AllocateNode::ALength);
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2030
  InitializeNode* init = alloc->initialization();
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2031
  Node* klass_node = alloc->in(AllocateNode::KlassNode);
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2032
  ciKlass* k = _igvn.type(klass_node)->is_klassptr()->klass();
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2033
  address slow_call_address;  // Address of slow call
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2034
  if (init != NULL && init->is_complete_with_arraycopy() &&
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2035
      k->is_type_array_klass()) {
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2036
    // Don't zero type array during slow allocation in VM since
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2037
    // it will be initialized later by arraycopy in compiled code.
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2038
    slow_call_address = OptoRuntime::new_array_nozero_Java();
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2039
  } else {
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2040
    slow_call_address = OptoRuntime::new_array_Java();
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2041
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
  expand_allocate_common(alloc, length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
                         OptoRuntime::new_array_Type(),
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 10267
diff changeset
  2044
                         slow_call_address);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2047
//-------------------mark_eliminated_box----------------------------------
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2048
//
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2049
// 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
  2050
// 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
  2051
// (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
  2052
// 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
  2053
// 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
  2054
// 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
  2055
// 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
  2056
// 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
  2057
// 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
  2058
// elimination if some of them marked already.
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2059
void PhaseMacroExpand::mark_eliminated_box(Node* oldbox, Node* obj) {
11460
06e676d0b512 7129618: assert(obj_node->eqv_uncast(obj),"");
kvn
parents: 11458
diff changeset
  2060
  if (oldbox->as_BoxLock()->is_eliminated())
06e676d0b512 7129618: assert(obj_node->eqv_uncast(obj),"");
kvn
parents: 11458
diff changeset
  2061
    return; // This BoxLock node was processed already.
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2062
11460
06e676d0b512 7129618: assert(obj_node->eqv_uncast(obj),"");
kvn
parents: 11458
diff changeset
  2063
  // New implementation (EliminateNestedLocks) has separate BoxLock
06e676d0b512 7129618: assert(obj_node->eqv_uncast(obj),"");
kvn
parents: 11458
diff changeset
  2064
  // node for each locked region so mark all associated locks/unlocks as
06e676d0b512 7129618: assert(obj_node->eqv_uncast(obj),"");
kvn
parents: 11458
diff changeset
  2065
  // eliminated even if different objects are referenced in one locked region
06e676d0b512 7129618: assert(obj_node->eqv_uncast(obj),"");
kvn
parents: 11458
diff changeset
  2066
  // (for example, OSR compilation of nested loop inside locked scope).
06e676d0b512 7129618: assert(obj_node->eqv_uncast(obj),"");
kvn
parents: 11458
diff changeset
  2067
  if (EliminateNestedLocks ||
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2068
      oldbox->as_BoxLock()->is_simple_lock_region(NULL, obj)) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2069
    // Box is used only in one lock region. Mark this box as eliminated.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2070
    _igvn.hash_delete(oldbox);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2071
    oldbox->as_BoxLock()->set_eliminated(); // This changes box's hash value
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2072
     _igvn.hash_insert(oldbox);
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2073
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2074
    for (uint i = 0; i < oldbox->outcnt(); i++) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2075
      Node* u = oldbox->raw_out(i);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2076
      if (u->is_AbstractLock() && !u->as_AbstractLock()->is_non_esc_obj()) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2077
        AbstractLockNode* alock = u->as_AbstractLock();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2078
        // Check lock's box since box could be referenced by Lock's debug info.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2079
        if (alock->box_node() == oldbox) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2080
          // Mark eliminated all related locks and unlocks.
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2081
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2082
          alock->log_lock_optimization(C, "eliminate_lock_set_non_esc4");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2083
#endif
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2084
          alock->set_non_esc_obj();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2085
        }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2086
      }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2087
    }
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2088
    return;
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2089
  }
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2090
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2091
  // Create new "eliminated" BoxLock node and use it in monitor debug info
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2092
  // instead of oldbox for the same object.
11458
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11446
diff changeset
  2093
  BoxLockNode* newbox = oldbox->clone()->as_BoxLock();
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2094
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2095
  // Note: BoxLock node is marked eliminated only here and it is used
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2096
  // to indicate that all associated lock and unlock nodes are marked
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2097
  // for elimination.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2098
  newbox->set_eliminated();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2099
  transform_later(newbox);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2100
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2101
  // Replace old box node with new box for all users of the same object.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2102
  for (uint i = 0; i < oldbox->outcnt();) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2103
    bool next_edge = true;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2104
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2105
    Node* u = oldbox->raw_out(i);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2106
    if (u->is_AbstractLock()) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2107
      AbstractLockNode* alock = u->as_AbstractLock();
11446
fd87432a895b 7128352: assert(obj_node == obj) failed
kvn
parents: 11445
diff changeset
  2108
      if (alock->box_node() == oldbox && alock->obj_node()->eqv_uncast(obj)) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2109
        // Replace Box and mark eliminated all related locks and unlocks.
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2110
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2111
        alock->log_lock_optimization(C, "eliminate_lock_set_non_esc5");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2112
#endif
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2113
        alock->set_non_esc_obj();
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 11724
diff changeset
  2114
        _igvn.rehash_node_delayed(alock);
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2115
        alock->set_box_node(newbox);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2116
        next_edge = false;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2117
      }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2118
    }
11446
fd87432a895b 7128352: assert(obj_node == obj) failed
kvn
parents: 11445
diff changeset
  2119
    if (u->is_FastLock() && u->as_FastLock()->obj_node()->eqv_uncast(obj)) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2120
      FastLockNode* flock = u->as_FastLock();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2121
      assert(flock->box_node() == oldbox, "sanity");
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 11724
diff changeset
  2122
      _igvn.rehash_node_delayed(flock);
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2123
      flock->set_box_node(newbox);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2124
      next_edge = false;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2125
    }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2126
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2127
    // Replace old box in monitor debug info.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2128
    if (u->is_SafePoint() && u->as_SafePoint()->jvms()) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2129
      SafePointNode* sfn = u->as_SafePoint();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2130
      JVMState* youngest_jvms = sfn->jvms();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2131
      int max_depth = youngest_jvms->depth();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2132
      for (int depth = 1; depth <= max_depth; depth++) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2133
        JVMState* jvms = youngest_jvms->of_depth(depth);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2134
        int num_mon  = jvms->nof_monitors();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2135
        // Loop over monitors
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2136
        for (int idx = 0; idx < num_mon; idx++) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2137
          Node* obj_node = sfn->monitor_obj(jvms, idx);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2138
          Node* box_node = sfn->monitor_box(jvms, idx);
11446
fd87432a895b 7128352: assert(obj_node == obj) failed
kvn
parents: 11445
diff changeset
  2139
          if (box_node == oldbox && obj_node->eqv_uncast(obj)) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2140
            int j = jvms->monitor_box_offset(idx);
12958
009b6c9586d8 7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents: 11724
diff changeset
  2141
            _igvn.replace_input_of(u, j, newbox);
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2142
            next_edge = false;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2143
          }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2144
        }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2145
      }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2146
    }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2147
    if (next_edge) i++;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2148
  }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2149
}
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2150
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2151
//-----------------------mark_eliminated_locking_nodes-----------------------
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2152
void PhaseMacroExpand::mark_eliminated_locking_nodes(AbstractLockNode *alock) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2153
  if (EliminateNestedLocks) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2154
    if (alock->is_nested()) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2155
       assert(alock->box_node()->as_BoxLock()->is_eliminated(), "sanity");
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2156
       return;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2157
    } else if (!alock->is_non_esc_obj()) { // Not eliminated or coarsened
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2158
      // Only Lock node has JVMState needed here.
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2159
      // Not that preceding claim is documented anywhere else.
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2160
      if (alock->jvms() != NULL) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2161
        if (alock->as_Lock()->is_nested_lock_region()) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2162
          // Mark eliminated related nested locks and unlocks.
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2163
          Node* obj = alock->obj_node();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2164
          BoxLockNode* box_node = alock->box_node()->as_BoxLock();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2165
          assert(!box_node->is_eliminated(), "should not be marked yet");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2166
          // Note: BoxLock node is marked eliminated only here
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2167
          // and it is used to indicate that all associated lock
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2168
          // and unlock nodes are marked for elimination.
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2169
          box_node->set_eliminated(); // Box's hash is always NO_HASH here
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2170
          for (uint i = 0; i < box_node->outcnt(); i++) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2171
            Node* u = box_node->raw_out(i);
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2172
            if (u->is_AbstractLock()) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2173
              alock = u->as_AbstractLock();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2174
              if (alock->box_node() == box_node) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2175
                // Verify that this Box is referenced only by related locks.
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2176
                assert(alock->obj_node()->eqv_uncast(obj), "");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2177
                // Mark all related locks and unlocks.
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2178
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2179
                alock->log_lock_optimization(C, "eliminate_lock_set_nested");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2180
#endif
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2181
                alock->set_nested();
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2182
              }
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2183
            }
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2184
          }
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2185
        } else {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2186
#ifdef ASSERT
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2187
          alock->log_lock_optimization(C, "eliminate_lock_NOT_nested_lock_region");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2188
          if (C->log() != NULL)
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2189
            alock->as_Lock()->is_nested_lock_region(C); // rerun for debugging output
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2190
#endif
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2191
        }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2192
      }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2193
      return;
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2194
    }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2195
    // Process locks for non escaping object
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2196
    assert(alock->is_non_esc_obj(), "");
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2197
  } // EliminateNestedLocks
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2198
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2199
  if (alock->is_non_esc_obj()) { // Lock is used for non escaping object
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2200
    // Look for all locks of this object and mark them and
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2201
    // corresponding BoxLock nodes as eliminated.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2202
    Node* obj = alock->obj_node();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2203
    for (uint j = 0; j < obj->outcnt(); j++) {
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2204
      Node* o = obj->raw_out(j);
11446
fd87432a895b 7128352: assert(obj_node == obj) failed
kvn
parents: 11445
diff changeset
  2205
      if (o->is_AbstractLock() &&
fd87432a895b 7128352: assert(obj_node == obj) failed
kvn
parents: 11445
diff changeset
  2206
          o->as_AbstractLock()->obj_node()->eqv_uncast(obj)) {
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2207
        alock = o->as_AbstractLock();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2208
        Node* box = alock->box_node();
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2209
        // Replace old box node with new eliminated box for all users
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2210
        // of the same object and mark related locks as eliminated.
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2211
        mark_eliminated_box(box, obj);
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2212
      }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2213
    }
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2214
  }
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2215
}
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2216
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2217
// 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
  2218
// eliminate the node without expanding it.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2219
//
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2220
// 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
  2221
//        eliminated.  This should be investigated as a future enhancement.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2222
//
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2223
bool PhaseMacroExpand::eliminate_locking_node(AbstractLockNode *alock) {
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2224
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2225
  if (!alock->is_eliminated()) {
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2226
    return false;
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2227
  }
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2228
#ifdef ASSERT
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2229
  if (!alock->is_coarsened()) {
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2230
    // Check that new "eliminated" BoxLock node is created.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2231
    BoxLockNode* oldbox = alock->box_node()->as_BoxLock();
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2232
    assert(oldbox->is_eliminated(), "should be done already");
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2233
  }
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2234
#endif
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3268
diff changeset
  2235
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2236
  alock->log_lock_optimization(C, "eliminate_lock");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2237
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2238
#ifndef PRODUCT
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2239
  if (PrintEliminateLocks) {
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2240
    if (alock->is_Lock()) {
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2241
      tty->print_cr("++++ Eliminated: %d Lock", alock->_idx);
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2242
    } else {
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2243
      tty->print_cr("++++ Eliminated: %d Unlock", alock->_idx);
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2244
    }
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2245
  }
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 28643
diff changeset
  2246
#endif
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2247
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2248
  Node* mem  = alock->in(TypeFunc::Memory);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2249
  Node* ctrl = alock->in(TypeFunc::Control);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2250
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2251
  extract_call_projections(alock);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2252
  // 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
  2253
  // be deleted when its last use is subsumed below.
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2254
  assert(alock->outcnt() == 2 &&
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2255
         _fallthroughproj != NULL &&
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2256
         _memproj_fallthrough != NULL,
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2257
         "Unexpected projections from Lock/Unlock");
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2258
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2259
  Node* fallthroughproj = _fallthroughproj;
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2260
  Node* memproj_fallthrough = _memproj_fallthrough;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
  // The memory projection from a lock/unlock is RawMem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
  // The input to a Lock is merged memory, so extract its RawMem input
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
  // (unless the MergeMem has been optimized away.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
  if (alock->is_Lock()) {
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 10011
diff changeset
  2266
    // Seach for MemBarAcquireLock node and delete it also.
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2267
    MemBarNode* membar = fallthroughproj->unique_ctrl_out()->as_MemBar();
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 10011
diff changeset
  2268
    assert(membar != NULL && membar->Opcode() == Op_MemBarAcquireLock, "");
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2269
    Node* ctrlproj = membar->proj_out(TypeFunc::Control);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2270
    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
  2271
    _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
  2272
    _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
  2273
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2274
    // 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
  2275
    // (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
  2276
    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
  2277
    if (flock->outcnt() == 1) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2278
      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
  2279
      _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
  2280
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 10011
diff changeset
  2283
  // Seach for MemBarReleaseLock node and delete it also.
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2284
  if (alock->is_Unlock() && ctrl != NULL && ctrl->is_Proj() &&
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2285
      ctrl->in(0)->is_MemBar()) {
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2286
    MemBarNode* membar = ctrl->in(0)->as_MemBar();
10262
c5f62d314bee 7074017: Introduce MemBarAcquireLock/MemBarReleaseLock nodes for monitor enter/exit code paths
roland
parents: 10011
diff changeset
  2287
    assert(membar->Opcode() == Op_MemBarReleaseLock &&
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2288
           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
  2289
    _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
  2290
    _igvn.replace_node(memproj_fallthrough, mem);
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2291
    fallthroughproj = ctrl;
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2292
    memproj_fallthrough = mem;
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2293
    ctrl = membar->in(TypeFunc::Control);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2294
    mem  = membar->in(TypeFunc::Memory);
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2295
  }
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2296
2532
da0b1680593b 6711117: Assertion in 64bit server vm (flat != TypePtr::BOTTOM,"cannot alias-analyze an untyped ptr")
kvn
parents: 2154
diff changeset
  2297
  _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
  2298
  _igvn.replace_node(memproj_fallthrough, mem);
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2299
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
//------------------------------expand_lock_node----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
void PhaseMacroExpand::expand_lock_node(LockNode *lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
  Node* ctrl = lock->in(TypeFunc::Control);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
  Node* mem = lock->in(TypeFunc::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
  Node* obj = lock->obj_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
  Node* box = lock->box_node();
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2310
  Node* flock = lock->fastlock_node();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
11458
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11446
diff changeset
  2312
  assert(!box->as_BoxLock()->is_eliminated(), "sanity");
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2313
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
  // Make the merge point
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2315
  Node *region;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2316
  Node *mem_phi;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2317
  Node *slow_path;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2318
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2319
  if (UseOptoBiasInlining) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2320
    /*
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
  2321
     *  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
  2322
     *
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2323
     *  if( (mark_word & biased_lock_mask) == biased_lock_pattern ) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2324
     *    // The object is biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2325
     *    proto_node = klass->prototype_header;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2326
     *    o_node = thread | proto_node;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2327
     *    x_node = o_node ^ mark_word;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2328
     *    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
  2329
     *      // Done.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2330
     *    } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2331
     *      if( (x_node & biased_lock_mask) != 0 ) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2332
     *        // The klass's prototype header is no longer biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2333
     *        cas(&mark_word, mark_word, proto_node)
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2334
     *        goto cas_lock;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2335
     *      } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2336
     *        // The klass's prototype header is still biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2337
     *        if( (x_node & epoch_mask) != 0 ) { // Expired epoch?
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2338
     *          old = mark_word;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2339
     *          new = o_node;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2340
     *        } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2341
     *          // Different thread or anonymous biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2342
     *          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
  2343
     *          new = thread | old;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2344
     *        }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2345
     *        // Try to rebias.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2346
     *        if( cas(&mark_word, old, new) == 0 ) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2347
     *          // Done.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2348
     *        } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2349
     *          goto slow_path; // Failed.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2350
     *        }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2351
     *      }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2352
     *    }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2353
     *  } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2354
     *    // The object is not biased.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2355
     *    cas_lock:
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2356
     *    if( FastLock(obj) == 0 ) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2357
     *      // Done.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2358
     *    } else {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2359
     *      slow_path:
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2360
     *      OptoRuntime::complete_monitor_locking_Java(obj);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2361
     *    }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2362
     *  }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2363
     */
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2364
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2365
    region  = new RegionNode(5);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2366
    // create a Phi for the memory state
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2367
    mem_phi = new PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2368
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2369
    Node* fast_lock_region  = new RegionNode(3);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2370
    Node* fast_lock_mem_phi = new PhiNode( fast_lock_region, Type::MEMORY, TypeRawPtr::BOTTOM);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2371
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2372
    // First, check mark word for the biased lock pattern.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2373
    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
  2374
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2375
    // 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
  2376
    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
  2377
                         markOopDesc::biased_lock_mask_in_place,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2378
                         markOopDesc::biased_lock_pattern, true);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2379
    // 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
  2380
    fast_lock_mem_phi->init_req(1, mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2381
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2382
    // 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
  2383
    // the same epoch and bias as Klass::_prototype_header.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2384
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2385
    // Special-case a fresh allocation to avoid building nodes:
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2386
    Node* klass_node = AllocateNode::Ideal_klass(obj, &_igvn);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2387
    if (klass_node == NULL) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2388
      Node* k_adr = basic_plus_adr(obj, oopDesc::klass_offset_in_bytes());
27637
cf68c0af6882 8057622: java/util/stream/test/org/openjdk/tests/java/util/stream/InfiniteStreamWithLimitOpTest: SEGV inside compiled code (sparc)
zmajo
parents: 26180
diff changeset
  2389
      klass_node = transform_later(LoadKlassNode::make(_igvn, NULL, 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
  2390
#ifdef _LP64
19979
ebe1dbb6e1aa 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 19708
diff changeset
  2391
      if (UseCompressedClassPointers && klass_node->is_DecodeNKlass()) {
1677
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  2392
        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
  2393
        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
  2394
      } else
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  2395
#endif
f632e4c20c3e 6782820: Server VM fails with "unhandled implicit exception in compiled code"
kvn
parents: 1613
diff changeset
  2396
      klass_node->init_req(0, ctrl);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2397
    }
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 11191
diff changeset
  2398
    Node *proto_node = make_load(ctrl, mem, klass_node, in_bytes(Klass::prototype_header_offset()), TypeX_X, TypeX_X->basic_type());
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2399
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2400
    Node* thread = transform_later(new ThreadLocalNode());
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2401
    Node* cast_thread = transform_later(new CastP2XNode(ctrl, thread));
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2402
    Node* o_node = transform_later(new OrXNode(cast_thread, proto_node));
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2403
    Node* x_node = transform_later(new XorXNode(o_node, mark_node));
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2404
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2405
    // 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
  2406
    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
  2407
                                      (~markOopDesc::age_mask_in_place), 0);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2408
    // 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
  2409
    mem_phi->init_req(3, mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2410
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2411
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2412
    // 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
  2413
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2415
    // First, check biased pattern.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2416
    // 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
  2417
    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
  2418
                          markOopDesc::biased_lock_mask_in_place, 0, true);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2419
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2420
    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
  2421
    // 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
  2422
    // 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
  2423
    // 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
  2424
    // 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
  2425
    Node* adr = basic_plus_adr(obj, oopDesc::mark_offset_in_bytes());
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2426
    Node* cas = new StoreXConditionalNode(not_biased_ctrl, mem, adr,
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2427
                                          proto_node, mark_node);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2428
    transform_later(cas);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2429
    Node* proj = transform_later(new SCMemProjNode(cas));
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2430
    fast_lock_mem_phi->init_req(2, proj);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2431
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2432
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2433
    // Second, check epoch bits.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2434
    Node* rebiased_region  = new RegionNode(3);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2435
    Node* old_phi = new PhiNode( rebiased_region, TypeX_X);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2436
    Node* new_phi = new PhiNode( rebiased_region, TypeX_X);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2437
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2438
    // 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
  2439
    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
  2440
                                      markOopDesc::epoch_mask_in_place, 0);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2441
    // 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
  2442
    // toward the current thread.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2443
    rebiased_region->init_req(2, epoch_ctrl);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2444
    old_phi->init_req(2, mark_node);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2445
    new_phi->init_req(2, o_node);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2446
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2447
    // rebiased_region->in(1) is set to fast path.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2448
    // 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
  2449
    // 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
  2450
    Node* cmask   = MakeConX(markOopDesc::biased_lock_mask_in_place |
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2451
                             markOopDesc::age_mask_in_place |
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2452
                             markOopDesc::epoch_mask_in_place);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2453
    Node* old = transform_later(new AndXNode(mark_node, cmask));
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2454
    cast_thread = transform_later(new CastP2XNode(ctrl, thread));
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2455
    Node* new_mark = transform_later(new OrXNode(cast_thread, old));
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2456
    old_phi->init_req(1, old);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2457
    new_phi->init_req(1, new_mark);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2458
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2459
    transform_later(rebiased_region);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2460
    transform_later(old_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2461
    transform_later(new_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2462
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2463
    // 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
  2464
    // If this fails we will go in to the runtime to revoke the object's bias.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2465
    cas = new StoreXConditionalNode(rebiased_region, mem, adr, new_phi, old_phi);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2466
    transform_later(cas);
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2467
    proj = transform_later(new SCMemProjNode(cas));
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2468
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2469
    // Get slow path - Failed to CAS.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2470
    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
  2471
    mem_phi->init_req(4, proj);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2472
    // 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
  2473
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2474
    // Failed to CAS.
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2475
    slow_path  = new RegionNode(3);
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2476
    Node *slow_mem = new PhiNode( slow_path, Type::MEMORY, TypeRawPtr::BOTTOM);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2477
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2478
    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
  2479
    slow_mem->init_req(1, proj);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2480
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2481
    // Call CAS-based locking scheme (FastLock node).
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2482
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2483
    transform_later(fast_lock_region);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2484
    transform_later(fast_lock_mem_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2485
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2486
    // Get slow path - FastLock failed to lock the object.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2487
    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
  2488
    mem_phi->init_req(2, fast_lock_mem_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2489
    // 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
  2490
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2491
    slow_path->init_req(2, ctrl); // Capture slow-control
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2492
    slow_mem->init_req(2, fast_lock_mem_phi);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2493
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2494
    transform_later(slow_path);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2495
    transform_later(slow_mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2496
    // Reset lock's memory edge.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2497
    lock->set_req(TypeFunc::Memory, slow_mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2498
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2499
  } else {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2500
    region  = new RegionNode(3);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2501
    // create a Phi for the memory state
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2502
    mem_phi = new PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2503
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2504
    // Optimize test; set region slot 2
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2505
    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
  2506
    mem_phi->init_req(2, mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2507
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
  // Make slow path call
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
  2510
  CallNode *call = make_slow_call((CallNode *) lock, OptoRuntime::complete_monitor_enter_Type(),
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
  2511
                                  OptoRuntime::complete_monitor_locking_Java(), NULL, slow_path,
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
  2512
                                  obj, box, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
  extract_call_projections(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
  // Slow path can only throw asynchronous exceptions, which are always
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
  // de-opted.  So the compiler thinks the slow-call can never throw an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
  // exception.  If it DOES throw an exception we would need the debug
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
  // info removed first (since if it throws there is no monitor).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
  assert ( _ioproj_fallthrough == NULL && _ioproj_catchall == NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
           _memproj_catchall == NULL && _catchallcatchproj == NULL, "Unexpected projection from Lock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
  // Capture slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
  // disconnect fall-through projection from call and create a new one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
  // hook up users of fall-through projection to region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
  Node *slow_ctrl = _fallthroughproj->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
  transform_later(slow_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
  _igvn.hash_delete(_fallthroughproj);
14623
70c4c1be0a14 7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents: 13969
diff changeset
  2529
  _fallthroughproj->disconnect_inputs(NULL, C);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
  region->init_req(1, slow_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
  // region inputs are now complete
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
  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
  2533
  _igvn.replace_node(_fallthroughproj, region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2535
  Node *memproj = transform_later(new ProjNode(call, TypeFunc::Memory));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
  mem_phi->init_req(1, memproj );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
  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
  2538
  _igvn.replace_node(_memproj_fallthrough, mem_phi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
//------------------------------expand_unlock_node----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
void PhaseMacroExpand::expand_unlock_node(UnlockNode *unlock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
239
fb31825d5444 6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents: 236
diff changeset
  2544
  Node* ctrl = unlock->in(TypeFunc::Control);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
  Node* mem = unlock->in(TypeFunc::Memory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
  Node* obj = unlock->obj_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
  Node* box = unlock->box_node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
11458
5ba160829cef 7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents: 11446
diff changeset
  2549
  assert(!box->as_BoxLock()->is_eliminated(), "sanity");
11445
3c768dca60f5 7125896: Eliminate nested locks
kvn
parents: 11437
diff changeset
  2550
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
  // No need for a null check on unlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
  // Make the merge point
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2554
  Node *region;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2555
  Node *mem_phi;
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2556
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2557
  if (UseOptoBiasInlining) {
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2558
    // Check for biased locking unlock case, which is a no-op.
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
  2559
    // See the full description in MacroAssembler::biased_locking_exit().
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2560
    region  = new RegionNode(4);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2561
    // create a Phi for the memory state
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2562
    mem_phi = new PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2563
    mem_phi->init_req(3, mem);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2564
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2565
    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
  2566
    ctrl = opt_bits_test(ctrl, region, 3, mark_node,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2567
                         markOopDesc::biased_lock_mask_in_place,
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2568
                         markOopDesc::biased_lock_pattern);
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2569
  } else {
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2570
    region  = new RegionNode(3);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2571
    // create a Phi for the memory state
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2572
    mem_phi = new PhiNode( region, Type::MEMORY, TypeRawPtr::BOTTOM);
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2573
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2575
  FastUnlockNode *funlock = new FastUnlockNode( ctrl, obj, box );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
  funlock = transform_later( funlock )->as_FastUnlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
  // Optimize test; set region slot 2
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1394
diff changeset
  2578
  Node *slow_path = opt_bits_test(ctrl, region, 2, funlock, 0, 0);
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
  2579
  Node *thread = transform_later(new ThreadLocalNode());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
  2581
  CallNode *call = make_slow_call((CallNode *) unlock, OptoRuntime::complete_monitor_exit_Type(),
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
  2582
                                  CAST_FROM_FN_PTR(address, SharedRuntime::complete_monitor_unlocking_C),
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29086
diff changeset
  2583
                                  "complete_monitor_unlocking_C", slow_path, obj, box, thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
  extract_call_projections(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
  assert ( _ioproj_fallthrough == NULL && _ioproj_catchall == NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
           _memproj_catchall == NULL && _catchallcatchproj == NULL, "Unexpected projection from Lock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
  // No exceptions for unlocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
  // Capture slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
  // disconnect fall-through projection from call and create a new one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
  // hook up users of fall-through projection to region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
  Node *slow_ctrl = _fallthroughproj->clone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
  transform_later(slow_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
  _igvn.hash_delete(_fallthroughproj);
14623
70c4c1be0a14 7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents: 13969
diff changeset
  2597
  _fallthroughproj->disconnect_inputs(NULL, C);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
  region->init_req(1, slow_ctrl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
  // region inputs are now complete
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
  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
  2601
  _igvn.replace_node(_fallthroughproj, region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
  2603
  Node *memproj = transform_later(new ProjNode(call, TypeFunc::Memory) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
  mem_phi->init_req(1, memproj );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
  mem_phi->init_req(2, mem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
  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
  2607
  _igvn.replace_node(_memproj_fallthrough, mem_phi);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2610
//---------------------------eliminate_macro_nodes----------------------
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2611
// Eliminate scalar replaced allocations and associated locks.
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2612
void PhaseMacroExpand::eliminate_macro_nodes() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
  if (C->macro_count() == 0)
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2614
    return;
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2615
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2616
  // First, attempt to eliminate locks
9977
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2617
  int cnt = C->macro_count();
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2618
  for (int i=0; i < cnt; i++) {
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2619
    Node *n = C->macro_node(i);
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2620
    if (n->is_AbstractLock()) { // Lock and Unlock nodes
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2621
      // Before elimination mark all associated (same box and obj)
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2622
      // lock and unlock nodes.
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2623
      mark_eliminated_locking_nodes(n->as_AbstractLock());
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2624
    }
c23d1a8dcaa9 7050280: assert(u->as_Unlock()->is_eliminated()) failed: sanity
kvn
parents: 9446
diff changeset
  2625
  }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2626
  bool progress = true;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2627
  while (progress) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2628
    progress = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2629
    for (int i = C->macro_count(); i > 0; i--) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2630
      Node * n = C->macro_node(i-1);
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2631
      bool success = false;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2632
      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
  2633
      if (n->is_AbstractLock()) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2634
        success = eliminate_locking_node(n->as_AbstractLock());
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2635
      }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2636
      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
  2637
      progress = progress || success;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2638
    }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2639
  }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2640
  // Next, attempt to eliminate allocations
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2641
  _has_locks = false;
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2642
  progress = true;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2643
  while (progress) {
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2644
    progress = false;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2645
    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
  2646
      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
  2647
      bool success = false;
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1555
diff changeset
  2648
      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
  2649
      switch (n->class_id()) {
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2650
      case Node::Class_Allocate:
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2651
      case Node::Class_AllocateArray:
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2652
        success = eliminate_allocate_node(n->as_Allocate());
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2653
        break;
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  2654
      case Node::Class_CallStaticJava:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  2655
        success = eliminate_boxing_node(n->as_CallStaticJava());
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  2656
        break;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2657
      case Node::Class_Lock:
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2658
      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
  2659
        assert(!n->as_AbstractLock()->is_eliminated(), "sanity");
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2660
        _has_locks = true;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2661
        break;
26166
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2662
      case Node::Class_ArrayCopy:
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2663
        break;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2664
      default:
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2665
        assert(n->Opcode() == Op_LoopLimit ||
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2666
               n->Opcode() == Op_Opaque1   ||
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2667
               n->Opcode() == Op_Opaque2   ||
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2668
               n->Opcode() == Op_Opaque3, "unknown node type in macro list");
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2669
      }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2670
      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
  2671
      progress = progress || success;
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2672
    }
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2673
  }
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2674
}
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2675
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2676
//------------------------------expand_macro_nodes----------------------
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2677
//  Returns true if a failure occurred.
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2678
bool PhaseMacroExpand::expand_macro_nodes() {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2679
  // Last attempt to eliminate macro nodes.
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2680
  eliminate_macro_nodes();
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2681
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2682
  // Make sure expansion will not cause node limit to be exceeded.
35751
6a057f120b11 8146478: Node limit exceeded with -XX:AllocateInstancePrefetchLines=1073741823
zmajo
parents: 35552
diff changeset
  2683
  // Worst case is a macro node gets expanded into about 200 nodes.
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2684
  // Allow 50% more for optimization.
35751
6a057f120b11 8146478: Node limit exceeded with -XX:AllocateInstancePrefetchLines=1073741823
zmajo
parents: 35552
diff changeset
  2685
  if (C->check_node_count(C->macro_count() * 300, "out of nodes before macro expansion" ) )
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
    return true;
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2687
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2688
  // Eliminate Opaque and LoopLimit nodes. Do it after all loop optimizations.
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2689
  bool progress = true;
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2690
  while (progress) {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2691
    progress = false;
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2692
    for (int i = C->macro_count(); i > 0; i--) {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2693
      Node * n = C->macro_node(i-1);
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2694
      bool success = false;
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2695
      debug_only(int old_macro_count = C->macro_count(););
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2696
      if (n->Opcode() == Op_LoopLimit) {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2697
        // Remove it from macro list and put on IGVN worklist to optimize.
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2698
        C->remove_macro_node(n);
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2699
        _igvn._worklist.push(n);
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2700
        success = true;
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  2701
      } else if (n->Opcode() == Op_CallStaticJava) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  2702
        // Remove it from macro list and put on IGVN worklist to optimize.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  2703
        C->remove_macro_node(n);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  2704
        _igvn._worklist.push(n);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15874
diff changeset
  2705
        success = true;
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2706
      } else if (n->Opcode() == Op_Opaque1 || n->Opcode() == Op_Opaque2) {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2707
        _igvn.replace_node(n, n->in(1));
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2708
        success = true;
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2709
#if INCLUDE_RTM_OPT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2710
      } else if ((n->Opcode() == Op_Opaque3) && ((Opaque3Node*)n)->rtm_opt()) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2711
        assert(C->profile_rtm(), "should be used only in rtm deoptimization code");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2712
        assert((n->outcnt() == 1) && n->unique_out()->is_Cmp(), "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2713
        Node* cmp = n->unique_out();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2714
#ifdef ASSERT
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2715
        // Validate graph.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2716
        assert((cmp->outcnt() == 1) && cmp->unique_out()->is_Bool(), "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2717
        BoolNode* bol = cmp->unique_out()->as_Bool();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2718
        assert((bol->outcnt() == 1) && bol->unique_out()->is_If() &&
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2719
               (bol->_test._test == BoolTest::ne), "");
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2720
        IfNode* ifn = bol->unique_out()->as_If();
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2721
        assert((ifn->outcnt() == 2) &&
30183
a6588c0a3259 8073480: C2 should optimize explicit range checks
roland
parents: 29086
diff changeset
  2722
               ifn->proj_out(1)->is_uncommon_trap_proj(Deoptimization::Reason_rtm_state_change) != NULL, "");
23491
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2723
#endif
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2724
        Node* repl = n->in(1);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2725
        if (!_has_locks) {
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2726
          // Remove RTM state check if there are no locks in the code.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2727
          // Replace input to compare the same value.
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2728
          repl = (cmp->in(1) == n) ? cmp->in(2) : cmp->in(1);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2729
        }
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2730
        _igvn.replace_node(n, repl);
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2731
        success = true;
f690330b10b9 8031320: Use Intel RTM instructions for locks
kvn
parents: 22872
diff changeset
  2732
#endif
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2733
      }
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2734
      assert(success == (C->macro_count() < old_macro_count), "elimination reduces macro count");
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2735
      progress = progress || success;
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2736
    }
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2737
  }
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2738
26166
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2739
  // expand arraycopy "macro" nodes first
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2740
  // For ReduceBulkZeroing, we must first process all arraycopy nodes
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2741
  // before the allocate nodes are expanded.
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2742
  int macro_idx = C->macro_count() - 1;
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2743
  while (macro_idx >= 0) {
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2744
    Node * n = C->macro_node(macro_idx);
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2745
    assert(n->is_macro(), "only macro nodes expected here");
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2746
    if (_igvn.type(n) == Type::TOP || n->in(0)->is_top() ) {
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2747
      // node is unreachable, so don't try to expand it
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2748
      C->remove_macro_node(n);
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2749
    } else if (n->is_ArrayCopy()){
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2750
      int macro_count = C->macro_count();
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2751
      expand_arraycopy_node(n->as_ArrayCopy());
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2752
      assert(C->macro_count() < macro_count, "must have deleted a node from macro list");
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2753
    }
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2754
    if (C->failing())  return true;
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2755
    macro_idx --;
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2756
  }
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 25935
diff changeset
  2757
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
  // expand "macro" nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
  // nodes are removed from the macro list as they are processed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
  while (C->macro_count() > 0) {
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2761
    int macro_count = C->macro_count();
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2762
    Node * n = C->macro_node(macro_count-1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
    assert(n->is_macro(), "only macro nodes expected here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
    if (_igvn.type(n) == Type::TOP || n->in(0)->is_top() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
      // node is unreachable, so don't try to expand it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
      C->remove_macro_node(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
    switch (n->class_id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
    case Node::Class_Allocate:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
      expand_allocate(n->as_Allocate());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
    case Node::Class_AllocateArray:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
      expand_allocate_array(n->as_AllocateArray());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
    case Node::Class_Lock:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
      expand_lock_node(n->as_Lock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
    case Node::Class_Unlock:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
      expand_unlock_node(n->as_Unlock());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
      assert(false, "unknown node type in macro list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
    }
246
b029af7e69d3 6259129: (Escape Analysis) scalar replacement for not escaping objects
kvn
parents: 239
diff changeset
  2785
    assert(C->macro_count() < macro_count, "must have deleted a node from macro list");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
    if (C->failing())  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  2788
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 246
diff changeset
  2789
  _igvn.set_delay_transform(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
  _igvn.optimize();
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10566
diff changeset
  2791
  if (C->failing())  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
}