src/share/vm/opto/macro.cpp

Fri, 28 Oct 2016 22:36:23 +0000

author
poonam
date
Fri, 28 Oct 2016 22:36:23 +0000
changeset 8945
3b6372514697
parent 8940
eb9e617d6f64
child 9041
95a08233f46c
child 9311
cb0b95b67cb2
permissions
-rw-r--r--

8038348: Instance field load is replaced by wrong data Phi
Summary: Store additional information in PhiNodes corresponding to known instance field values to avoid incorrect reusage.
Reviewed-by: kvn, thartmann

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

mercurial