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