src/share/vm/opto/macro.cpp

Sat, 09 Feb 2013 12:55:09 -0800

author
drchase
date
Sat, 09 Feb 2013 12:55:09 -0800
changeset 4585
2c673161698a
parent 4479
b30b3c2a0cf2
child 4694
8651f608fea4
permissions
-rw-r--r--

8007402: Code cleanup to remove Parfait false positive
Summary: add array access range check
Reviewed-by: kvn

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

mercurial