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