You need to sign in or sign up before continuing.
escape.cpp 91.8 KB
Newer Older
D
duke 已提交
1
/*
X
xdono 已提交
2
 * Copyright 2005-2009 Sun Microsystems, Inc.  All Rights Reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 *
 */

#include "incls/_precompiled.incl"
#include "incls/_escape.cpp.incl"

void PointsToNode::add_edge(uint targIdx, PointsToNode::EdgeType et) {
  uint v = (targIdx << EdgeShift) + ((uint) et);
  if (_edges == NULL) {
     Arena *a = Compile::current()->comp_arena();
    _edges = new(a) GrowableArray<uint>(a, INITIAL_EDGE_COUNT, 0, 0);
  }
  _edges->append_if_missing(v);
}

void PointsToNode::remove_edge(uint targIdx, PointsToNode::EdgeType et) {
  uint v = (targIdx << EdgeShift) + ((uint) et);

  _edges->remove(v);
}

#ifndef PRODUCT
K
kvn 已提交
44
static const char *node_type_names[] = {
D
duke 已提交
45 46 47 48 49 50
  "UnknownType",
  "JavaObject",
  "LocalVar",
  "Field"
};

K
kvn 已提交
51
static const char *esc_names[] = {
D
duke 已提交
52
  "UnknownEscape",
53 54 55
  "NoEscape",
  "ArgEscape",
  "GlobalEscape"
D
duke 已提交
56 57
};

K
kvn 已提交
58
static const char *edge_type_suffix[] = {
D
duke 已提交
59 60 61 62 63 64
 "?", // UnknownEdge
 "P", // PointsToEdge
 "D", // DeferredEdge
 "F"  // FieldEdge
};

65
void PointsToNode::dump(bool print_state) const {
D
duke 已提交
66
  NodeType nt = node_type();
67 68 69 70 71 72
  tty->print("%s ", node_type_names[(int) nt]);
  if (print_state) {
    EscapeState es = escape_state();
    tty->print("%s %s ", esc_names[(int) es], _scalar_replaceable ? "":"NSR");
  }
  tty->print("[[");
D
duke 已提交
73 74 75 76 77 78 79 80 81 82 83
  for (uint i = 0; i < edge_count(); i++) {
    tty->print(" %d%s", edge_target(i), edge_type_suffix[(int) edge_type(i)]);
  }
  tty->print("]]  ");
  if (_node == NULL)
    tty->print_cr("<null>");
  else
    _node->dump();
}
#endif

84 85 86 87 88 89 90
ConnectionGraph::ConnectionGraph(Compile * C) :
  _nodes(C->comp_arena(), C->unique(), C->unique(), PointsToNode()),
  _processed(C->comp_arena()),
  _collecting(true),
  _compile(C),
  _node_map(C->comp_arena()) {

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
  _phantom_object = C->top()->_idx,
  add_node(C->top(), PointsToNode::JavaObject, PointsToNode::GlobalEscape,true);

  // Add ConP(#NULL) and ConN(#NULL) nodes.
  PhaseGVN* igvn = C->initial_gvn();
  Node* oop_null = igvn->zerocon(T_OBJECT);
  _oop_null = oop_null->_idx;
  assert(_oop_null < C->unique(), "should be created already");
  add_node(oop_null, PointsToNode::JavaObject, PointsToNode::NoEscape, true);

  if (UseCompressedOops) {
    Node* noop_null = igvn->zerocon(T_NARROWOOP);
    _noop_null = noop_null->_idx;
    assert(_noop_null < C->unique(), "should be created already");
    add_node(noop_null, PointsToNode::JavaObject, PointsToNode::NoEscape, true);
  }
D
duke 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
}

void ConnectionGraph::add_pointsto_edge(uint from_i, uint to_i) {
  PointsToNode *f = ptnode_adr(from_i);
  PointsToNode *t = ptnode_adr(to_i);

  assert(f->node_type() != PointsToNode::UnknownType && t->node_type() != PointsToNode::UnknownType, "node types must be set");
  assert(f->node_type() == PointsToNode::LocalVar || f->node_type() == PointsToNode::Field, "invalid source of PointsTo edge");
  assert(t->node_type() == PointsToNode::JavaObject, "invalid destination of PointsTo edge");
  f->add_edge(to_i, PointsToNode::PointsToEdge);
}

void ConnectionGraph::add_deferred_edge(uint from_i, uint to_i) {
  PointsToNode *f = ptnode_adr(from_i);
  PointsToNode *t = ptnode_adr(to_i);

  assert(f->node_type() != PointsToNode::UnknownType && t->node_type() != PointsToNode::UnknownType, "node types must be set");
  assert(f->node_type() == PointsToNode::LocalVar || f->node_type() == PointsToNode::Field, "invalid source of Deferred edge");
  assert(t->node_type() == PointsToNode::LocalVar || t->node_type() == PointsToNode::Field, "invalid destination of Deferred edge");
  // don't add a self-referential edge, this can occur during removal of
  // deferred edges
  if (from_i != to_i)
    f->add_edge(to_i, PointsToNode::DeferredEdge);
}

132 133 134 135 136 137 138 139 140 141 142 143 144 145
int ConnectionGraph::address_offset(Node* adr, PhaseTransform *phase) {
  const Type *adr_type = phase->type(adr);
  if (adr->is_AddP() && adr_type->isa_oopptr() == NULL &&
      adr->in(AddPNode::Address)->is_Proj() &&
      adr->in(AddPNode::Address)->in(0)->is_Allocate()) {
    // We are computing a raw address for a store captured by an Initialize
    // compute an appropriate address type. AddP cases #3 and #5 (see below).
    int offs = (int)phase->find_intptr_t_con(adr->in(AddPNode::Offset), Type::OffsetBot);
    assert(offs != Type::OffsetBot ||
           adr->in(AddPNode::Address)->in(0)->is_AllocateArray(),
           "offset must be a constant or it is initialization of array");
    return offs;
  }
  const TypePtr *t_ptr = adr_type->isa_ptr();
D
duke 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
  assert(t_ptr != NULL, "must be a pointer type");
  return t_ptr->offset();
}

void ConnectionGraph::add_field_edge(uint from_i, uint to_i, int offset) {
  PointsToNode *f = ptnode_adr(from_i);
  PointsToNode *t = ptnode_adr(to_i);

  assert(f->node_type() != PointsToNode::UnknownType && t->node_type() != PointsToNode::UnknownType, "node types must be set");
  assert(f->node_type() == PointsToNode::JavaObject, "invalid destination of Field edge");
  assert(t->node_type() == PointsToNode::Field, "invalid destination of Field edge");
  assert (t->offset() == -1 || t->offset() == offset, "conflicting field offsets");
  t->set_offset(offset);

  f->add_edge(to_i, PointsToNode::FieldEdge);
}

void ConnectionGraph::set_escape_state(uint ni, PointsToNode::EscapeState es) {
  PointsToNode *npt = ptnode_adr(ni);
  PointsToNode::EscapeState old_es = npt->escape_state();
  if (es > old_es)
    npt->set_escape_state(es);
}

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
void ConnectionGraph::add_node(Node *n, PointsToNode::NodeType nt,
                               PointsToNode::EscapeState es, bool done) {
  PointsToNode* ptadr = ptnode_adr(n->_idx);
  ptadr->_node = n;
  ptadr->set_node_type(nt);

  // inline set_escape_state(idx, es);
  PointsToNode::EscapeState old_es = ptadr->escape_state();
  if (es > old_es)
    ptadr->set_escape_state(es);

  if (done)
    _processed.set(n->_idx);
}

D
duke 已提交
185 186 187 188
PointsToNode::EscapeState ConnectionGraph::escape_state(Node *n, PhaseTransform *phase) {
  uint idx = n->_idx;
  PointsToNode::EscapeState es;

189 190
  // If we are still collecting or there were no non-escaping allocations
  // we don't know the answer yet
191
  if (_collecting)
D
duke 已提交
192 193 194 195
    return PointsToNode::UnknownEscape;

  // if the node was created after the escape computation, return
  // UnknownEscape
196
  if (idx >= nodes_size())
D
duke 已提交
197 198
    return PointsToNode::UnknownEscape;

199
  es = ptnode_adr(idx)->escape_state();
D
duke 已提交
200 201

  // if we have already computed a value, return it
202 203
  if (es != PointsToNode::UnknownEscape &&
      ptnode_adr(idx)->node_type() == PointsToNode::JavaObject)
D
duke 已提交
204 205
    return es;

206 207 208 209
  // PointsTo() calls n->uncast() which can return a new ideal node.
  if (n->uncast()->_idx >= nodes_size())
    return PointsToNode::UnknownEscape;

D
duke 已提交
210 211 212
  // compute max escape state of anything this node could point to
  VectorSet ptset(Thread::current()->resource_area());
  PointsTo(ptset, n, phase);
213
  for(VectorSetI i(&ptset); i.test() && es != PointsToNode::GlobalEscape; ++i) {
D
duke 已提交
214
    uint pt = i.elem;
215
    PointsToNode::EscapeState pes = ptnode_adr(pt)->escape_state();
D
duke 已提交
216 217 218 219 220
    if (pes > es)
      es = pes;
  }
  // cache the computed escape state
  assert(es != PointsToNode::UnknownEscape, "should have computed an escape state");
221
  ptnode_adr(idx)->set_escape_state(es);
D
duke 已提交
222 223 224 225 226 227 228
  return es;
}

void ConnectionGraph::PointsTo(VectorSet &ptset, Node * n, PhaseTransform *phase) {
  VectorSet visited(Thread::current()->resource_area());
  GrowableArray<uint>  worklist;

229 230 231 232
#ifdef ASSERT
  Node *orig_n = n;
#endif

233
  n = n->uncast();
234
  PointsToNode* npt = ptnode_adr(n->_idx);
D
duke 已提交
235 236

  // If we have a JavaObject, return just that object
237
  if (npt->node_type() == PointsToNode::JavaObject) {
D
duke 已提交
238 239 240
    ptset.set(n->_idx);
    return;
  }
241
#ifdef ASSERT
242
  if (npt->_node == NULL) {
243 244 245
    if (orig_n != n)
      orig_n->dump();
    n->dump();
246
    assert(npt->_node != NULL, "unregistered node");
247 248
  }
#endif
D
duke 已提交
249 250 251
  worklist.push(n->_idx);
  while(worklist.length() > 0) {
    int ni = worklist.pop();
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
    if (visited.test_set(ni))
      continue;

    PointsToNode* pn = ptnode_adr(ni);
    // ensure that all inputs of a Phi have been processed
    assert(!_collecting || !pn->_node->is_Phi() || _processed.test(ni),"");

    int edges_processed = 0;
    uint e_cnt = pn->edge_count();
    for (uint e = 0; e < e_cnt; e++) {
      uint etgt = pn->edge_target(e);
      PointsToNode::EdgeType et = pn->edge_type(e);
      if (et == PointsToNode::PointsToEdge) {
        ptset.set(etgt);
        edges_processed++;
      } else if (et == PointsToNode::DeferredEdge) {
        worklist.push(etgt);
        edges_processed++;
      } else {
        assert(false,"neither PointsToEdge or DeferredEdge");
D
duke 已提交
272 273
      }
    }
274 275 276 277 278
    if (edges_processed == 0) {
      // no deferred or pointsto edges found.  Assume the value was set
      // outside this method.  Add the phantom object to the pointsto set.
      ptset.set(_phantom_object);
    }
D
duke 已提交
279 280 281
  }
}

282 283 284 285 286
void ConnectionGraph::remove_deferred(uint ni, GrowableArray<uint>* deferred_edges, VectorSet* visited) {
  // This method is most expensive during ConnectionGraph construction.
  // Reuse vectorSet and an additional growable array for deferred edges.
  deferred_edges->clear();
  visited->Clear();
D
duke 已提交
287

288
  visited->set(ni);
D
duke 已提交
289 290
  PointsToNode *ptn = ptnode_adr(ni);

291
  // Mark current edges as visited and move deferred edges to separate array.
292
  for (uint i = 0; i < ptn->edge_count(); ) {
293
    uint t = ptn->edge_target(i);
294 295 296 297 298 299
#ifdef ASSERT
    assert(!visited->test_set(t), "expecting no duplications");
#else
    visited->set(t);
#endif
    if (ptn->edge_type(i) == PointsToNode::DeferredEdge) {
D
duke 已提交
300
      ptn->remove_edge(t, PointsToNode::DeferredEdge);
301
      deferred_edges->append(t);
302 303
    } else {
      i++;
304 305 306 307 308
    }
  }
  for (int next = 0; next < deferred_edges->length(); ++next) {
    uint t = deferred_edges->at(next);
    PointsToNode *ptt = ptnode_adr(t);
309 310 311 312
    uint e_cnt = ptt->edge_count();
    for (uint e = 0; e < e_cnt; e++) {
      uint etgt = ptt->edge_target(e);
      if (visited->test_set(etgt))
313
        continue;
314 315 316 317 318 319 320 321 322 323 324 325

      PointsToNode::EdgeType et = ptt->edge_type(e);
      if (et == PointsToNode::PointsToEdge) {
        add_pointsto_edge(ni, etgt);
        if(etgt == _phantom_object) {
          // Special case - field set outside (globally escaping).
          ptn->set_escape_state(PointsToNode::GlobalEscape);
        }
      } else if (et == PointsToNode::DeferredEdge) {
        deferred_edges->append(etgt);
      } else {
        assert(false,"invalid connection graph");
D
duke 已提交
326 327 328 329 330 331 332 333 334 335 336
      }
    }
  }
}


//  Add an edge to node given by "to_i" from any field of adr_i whose offset
//  matches "offset"  A deferred edge is added if to_i is a LocalVar, and
//  a pointsto edge is added if it is a JavaObject

void ConnectionGraph::add_edge_from_fields(uint adr_i, uint to_i, int offs) {
337 338 339 340 341 342 343 344 345
  PointsToNode* an = ptnode_adr(adr_i);
  PointsToNode* to = ptnode_adr(to_i);
  bool deferred = (to->node_type() == PointsToNode::LocalVar);

  for (uint fe = 0; fe < an->edge_count(); fe++) {
    assert(an->edge_type(fe) == PointsToNode::FieldEdge, "expecting a field edge");
    int fi = an->edge_target(fe);
    PointsToNode* pf = ptnode_adr(fi);
    int po = pf->offset();
D
duke 已提交
346 347 348 349 350 351 352 353 354
    if (po == offs || po == Type::OffsetBot || offs == Type::OffsetBot) {
      if (deferred)
        add_deferred_edge(fi, to_i);
      else
        add_pointsto_edge(fi, to_i);
    }
  }
}

355 356
// Add a deferred  edge from node given by "from_i" to any field of adr_i
// whose offset matches "offset".
D
duke 已提交
357
void ConnectionGraph::add_deferred_edge_to_fields(uint from_i, uint adr_i, int offs) {
358 359 360 361 362 363 364
  PointsToNode* an = ptnode_adr(adr_i);
  for (uint fe = 0; fe < an->edge_count(); fe++) {
    assert(an->edge_type(fe) == PointsToNode::FieldEdge, "expecting a field edge");
    int fi = an->edge_target(fe);
    PointsToNode* pf = ptnode_adr(fi);
    int po = pf->offset();
    if (pf->edge_count() == 0) {
D
duke 已提交
365 366 367 368 369 370 371 372 373
      // we have not seen any stores to this field, assume it was set outside this method
      add_pointsto_edge(fi, _phantom_object);
    }
    if (po == offs || po == Type::OffsetBot || offs == Type::OffsetBot) {
      add_deferred_edge(from_i, fi);
    }
  }
}

374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
// Helper functions

static Node* get_addp_base(Node *addp) {
  assert(addp->is_AddP(), "must be AddP");
  //
  // AddP cases for Base and Address inputs:
  // case #1. Direct object's field reference:
  //     Allocate
  //       |
  //     Proj #5 ( oop result )
  //       |
  //     CheckCastPP (cast to instance type)
  //      | |
  //     AddP  ( base == address )
  //
  // case #2. Indirect object's field reference:
  //      Phi
  //       |
  //     CastPP (cast to instance type)
  //      | |
  //     AddP  ( base == address )
  //
  // case #3. Raw object's field reference for Initialize node:
  //      Allocate
  //        |
  //      Proj #5 ( oop result )
  //  top   |
  //     \  |
  //     AddP  ( base == top )
  //
  // case #4. Array's element reference:
  //   {CheckCastPP | CastPP}
  //     |  | |
  //     |  AddP ( array's element offset )
  //     |  |
  //     AddP ( array's offset )
  //
  // case #5. Raw object's field reference for arraycopy stub call:
  //          The inline_native_clone() case when the arraycopy stub is called
  //          after the allocation before Initialize and CheckCastPP nodes.
  //      Allocate
  //        |
  //      Proj #5 ( oop result )
  //       | |
  //       AddP  ( base == address )
  //
K
kvn 已提交
420 421 422
  // case #6. Constant Pool, ThreadLocal, CastX2P or
  //          Raw object's field reference:
  //      {ConP, ThreadLocal, CastX2P, raw Load}
423 424 425 426
  //  top   |
  //     \  |
  //     AddP  ( base == top )
  //
K
kvn 已提交
427 428 429 430 431
  // case #7. Klass's field reference.
  //      LoadKlass
  //       | |
  //       AddP  ( base == address )
  //
432 433 434 435 436 437 438
  // case #8. narrow Klass's field reference.
  //      LoadNKlass
  //       |
  //      DecodeN
  //       | |
  //       AddP  ( base == address )
  //
439 440 441
  Node *base = addp->in(AddPNode::Base)->uncast();
  if (base->is_top()) { // The AddP case #3 and #6.
    base = addp->in(AddPNode::Address)->uncast();
442 443 444 445 446
    while (base->is_AddP()) {
      // Case #6 (unsafe access) may have several chained AddP nodes.
      assert(base->in(AddPNode::Base)->is_top(), "expected unsafe access address only");
      base = base->in(AddPNode::Address)->uncast();
    }
447
    assert(base->Opcode() == Op_ConP || base->Opcode() == Op_ThreadLocal ||
448
           base->Opcode() == Op_CastX2P || base->is_DecodeN() ||
K
kvn 已提交
449 450
           (base->is_Mem() && base->bottom_type() == TypeRawPtr::NOTNULL) ||
           (base->is_Proj() && base->in(0)->is_Allocate()), "sanity");
D
duke 已提交
451
  }
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
  return base;
}

static Node* find_second_addp(Node* addp, Node* n) {
  assert(addp->is_AddP() && addp->outcnt() > 0, "Don't process dead nodes");

  Node* addp2 = addp->raw_out(0);
  if (addp->outcnt() == 1 && addp2->is_AddP() &&
      addp2->in(AddPNode::Base) == n &&
      addp2->in(AddPNode::Address) == addp) {

    assert(addp->in(AddPNode::Base) == n, "expecting the same base");
    //
    // Find array's offset to push it on worklist first and
    // as result process an array's element offset first (pushed second)
    // to avoid CastPP for the array's offset.
    // Otherwise the inserted CastPP (LocalVar) will point to what
    // the AddP (Field) points to. Which would be wrong since
    // the algorithm expects the CastPP has the same point as
    // as AddP's base CheckCastPP (LocalVar).
    //
    //    ArrayAllocation
    //     |
    //    CheckCastPP
    //     |
    //    memProj (from ArrayAllocation CheckCastPP)
    //     |  ||
    //     |  ||   Int (element index)
    //     |  ||    |   ConI (log(element size))
    //     |  ||    |   /
    //     |  ||   LShift
    //     |  ||  /
    //     |  AddP (array's element offset)
    //     |  |
    //     |  | ConI (array's offset: #12(32-bits) or #24(64-bits))
    //     | / /
    //     AddP (array's offset)
    //      |
    //     Load/Store (memory operation on array's element)
    //
    return addp2;
  }
  return NULL;
D
duke 已提交
495 496 497 498 499 500
}

//
// Adjust the type and inputs of an AddP which computes the
// address of a field of an instance
//
501
bool ConnectionGraph::split_AddP(Node *addp, Node *base,  PhaseGVN  *igvn) {
D
duke 已提交
502
  const TypeOopPtr *base_t = igvn->type(base)->isa_oopptr();
503
  assert(base_t != NULL && base_t->is_known_instance(), "expecting instance oopptr");
504 505 506
  const TypeOopPtr *t = igvn->type(addp)->isa_oopptr();
  if (t == NULL) {
    // We are computing a raw address for a store captured by an Initialize
507
    // compute an appropriate address type (cases #3 and #5).
508 509
    assert(igvn->type(addp) == TypeRawPtr::NOTNULL, "must be raw pointer");
    assert(addp->in(AddPNode::Address)->is_Proj(), "base of raw address must be result projection from allocation");
510
    intptr_t offs = (int)igvn->find_intptr_t_con(addp->in(AddPNode::Offset), Type::OffsetBot);
511 512 513
    assert(offs != Type::OffsetBot, "offset must be a constant");
    t = base_t->add_offset(offs)->is_oopptr();
  }
514 515
  int inst_id =  base_t->instance_id();
  assert(!t->is_known_instance() || t->instance_id() == inst_id,
D
duke 已提交
516
                             "old type must be non-instance or match new type");
517 518 519 520 521 522

  // The type 't' could be subclass of 'base_t'.
  // As result t->offset() could be large then base_t's size and it will
  // cause the failure in add_offset() with narrow oops since TypeOopPtr()
  // constructor verifies correctness of the offset.
  //
T
twisti 已提交
523
  // It could happened on subclass's branch (from the type profiling
524 525 526
  // inlining) which was not eliminated during parsing since the exactness
  // of the allocation type was not propagated to the subclass type check.
  //
527 528 529 530
  // Or the type 't' could be not related to 'base_t' at all.
  // It could happened when CHA type is different from MDO type on a dead path
  // (for example, from instanceof check) which is not collapsed during parsing.
  //
531 532 533 534
  // Do nothing for such AddP node and don't process its users since
  // this code branch will go away.
  //
  if (!t->is_known_instance() &&
535
      !base_t->klass()->is_subtype_of(t->klass())) {
536 537 538
     return false; // bail out
  }

D
duke 已提交
539
  const TypeOopPtr *tinst = base_t->add_offset(t->offset())->is_oopptr();
540 541 542
  // Do NOT remove the next line: ensure a new alias index is allocated
  // for the instance type. Note: C++ will not remove it since the call
  // has side effect.
D
duke 已提交
543 544 545 546
  int alias_idx = _compile->get_alias_index(tinst);
  igvn->set_type(addp, tinst);
  // record the allocation in the node map
  set_map(addp->_idx, get_map(base->_idx));
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570

  // Set addp's Base and Address to 'base'.
  Node *abase = addp->in(AddPNode::Base);
  Node *adr   = addp->in(AddPNode::Address);
  if (adr->is_Proj() && adr->in(0)->is_Allocate() &&
      adr->in(0)->_idx == (uint)inst_id) {
    // Skip AddP cases #3 and #5.
  } else {
    assert(!abase->is_top(), "sanity"); // AddP case #3
    if (abase != base) {
      igvn->hash_delete(addp);
      addp->set_req(AddPNode::Base, base);
      if (abase == adr) {
        addp->set_req(AddPNode::Address, base);
      } else {
        // AddP case #4 (adr is array's element offset AddP node)
#ifdef ASSERT
        const TypeOopPtr *atype = igvn->type(adr)->isa_oopptr();
        assert(adr->is_AddP() && atype != NULL &&
               atype->instance_id() == inst_id, "array's element offset should be processed first");
#endif
      }
      igvn->hash_insert(addp);
    }
D
duke 已提交
571
  }
572 573
  // Put on IGVN worklist since at least addp's type was changed above.
  record_for_optimizer(addp);
574
  return true;
D
duke 已提交
575 576 577 578 579 580 581 582 583 584 585 586
}

//
// Create a new version of orig_phi if necessary. Returns either the newly
// created phi or an existing phi.  Sets create_new to indicate wheter  a new
// phi was created.  Cache the last newly created phi in the node map.
//
PhiNode *ConnectionGraph::create_split_phi(PhiNode *orig_phi, int alias_idx, GrowableArray<PhiNode *>  &orig_phi_worklist, PhaseGVN  *igvn, bool &new_created) {
  Compile *C = _compile;
  new_created = false;
  int phi_alias_idx = C->get_alias_index(orig_phi->adr_type());
  // nothing to do if orig_phi is bottom memory or matches alias_idx
587
  if (phi_alias_idx == alias_idx) {
D
duke 已提交
588 589
    return orig_phi;
  }
590
  // Have we recently created a Phi for this alias index?
D
duke 已提交
591 592 593 594
  PhiNode *result = get_map_phi(orig_phi->_idx);
  if (result != NULL && C->get_alias_index(result->adr_type()) == alias_idx) {
    return result;
  }
595 596 597 598 599 600 601 602 603 604 605 606 607
  // Previous check may fail when the same wide memory Phi was split into Phis
  // for different memory slices. Search all Phis for this region.
  if (result != NULL) {
    Node* region = orig_phi->in(0);
    for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) {
      Node* phi = region->fast_out(i);
      if (phi->is_Phi() &&
          C->get_alias_index(phi->as_Phi()->adr_type()) == alias_idx) {
        assert(phi->_idx >= nodes_size(), "only new Phi per instance memory slice");
        return phi->as_Phi();
      }
    }
  }
608 609 610 611 612 613 614 615 616
  if ((int)C->unique() + 2*NodeLimitFudgeFactor > MaxNodeLimit) {
    if (C->do_escape_analysis() == true && !C->failing()) {
      // Retry compilation without escape analysis.
      // If this is the first failure, the sentinel string will "stick"
      // to the Compile object, and the C2Compiler will see it and retry.
      C->record_failure(C2Compiler::retry_no_escape_analysis());
    }
    return NULL;
  }
D
duke 已提交
617
  orig_phi_worklist.append_if_missing(orig_phi);
618
  const TypePtr *atype = C->get_adr_type(alias_idx);
D
duke 已提交
619
  result = PhiNode::make(orig_phi->in(0), NULL, Type::MEMORY, atype);
620
  C->copy_node_notes_to(result, orig_phi);
D
duke 已提交
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
  set_map_phi(orig_phi->_idx, result);
  igvn->set_type(result, result->bottom_type());
  record_for_optimizer(result);
  new_created = true;
  return result;
}

//
// Return a new version  of Memory Phi "orig_phi" with the inputs having the
// specified alias index.
//
PhiNode *ConnectionGraph::split_memory_phi(PhiNode *orig_phi, int alias_idx, GrowableArray<PhiNode *>  &orig_phi_worklist, PhaseGVN  *igvn) {

  assert(alias_idx != Compile::AliasIdxBot, "can't split out bottom memory");
  Compile *C = _compile;
  bool new_phi_created;
637
  PhiNode *result = create_split_phi(orig_phi, alias_idx, orig_phi_worklist, igvn, new_phi_created);
D
duke 已提交
638 639 640 641 642 643 644 645 646 647 648 649
  if (!new_phi_created) {
    return result;
  }

  GrowableArray<PhiNode *>  phi_list;
  GrowableArray<uint>  cur_input;

  PhiNode *phi = orig_phi;
  uint idx = 1;
  bool finished = false;
  while(!finished) {
    while (idx < phi->req()) {
650
      Node *mem = find_inst_mem(phi->in(idx), alias_idx, orig_phi_worklist, igvn);
D
duke 已提交
651
      if (mem != NULL && mem->is_Phi()) {
652
        PhiNode *newphi = create_split_phi(mem->as_Phi(), alias_idx, orig_phi_worklist, igvn, new_phi_created);
D
duke 已提交
653 654 655 656 657 658
        if (new_phi_created) {
          // found an phi for which we created a new split, push current one on worklist and begin
          // processing new one
          phi_list.push(phi);
          cur_input.push(idx);
          phi = mem->as_Phi();
659
          result = newphi;
D
duke 已提交
660 661 662
          idx = 1;
          continue;
        } else {
663
          mem = newphi;
D
duke 已提交
664 665
        }
      }
666 667 668
      if (C->failing()) {
        return NULL;
      }
D
duke 已提交
669 670 671 672 673 674
      result->set_req(idx++, mem);
    }
#ifdef ASSERT
    // verify that the new Phi has an input for each input of the original
    assert( phi->req() == result->req(), "must have same number of inputs.");
    assert( result->in(0) != NULL && result->in(0) == phi->in(0), "regions must match");
675 676 677
#endif
    // Check if all new phi's inputs have specified alias index.
    // Otherwise use old phi.
D
duke 已提交
678
    for (uint i = 1; i < phi->req(); i++) {
679 680
      Node* in = result->in(i);
      assert((phi->in(i) == NULL) == (in == NULL), "inputs must correspond.");
D
duke 已提交
681 682 683 684 685 686
    }
    // we have finished processing a Phi, see if there are any more to do
    finished = (phi_list.length() == 0 );
    if (!finished) {
      phi = phi_list.pop();
      idx = cur_input.pop();
687 688 689
      PhiNode *prev_result = get_map_phi(phi->_idx);
      prev_result->set_req(idx++, result);
      result = prev_result;
D
duke 已提交
690 691 692 693 694
    }
  }
  return result;
}

695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721

//
// The next methods are derived from methods in MemNode.
//
static Node *step_through_mergemem(MergeMemNode *mmem, int alias_idx, const TypeOopPtr *tinst) {
  Node *mem = mmem;
  // TypeInstPtr::NOTNULL+any is an OOP with unknown offset - generally
  // means an array I have not precisely typed yet.  Do not do any
  // alias stuff with it any time soon.
  if( tinst->base() != Type::AnyPtr &&
      !(tinst->klass()->is_java_lang_Object() &&
        tinst->offset() == Type::OffsetBot) ) {
    mem = mmem->memory_at(alias_idx);
    // Update input if it is progress over what we have now
  }
  return mem;
}

//
// Search memory chain of "mem" to find a MemNode whose address
// is the specified alias index.
//
Node* ConnectionGraph::find_inst_mem(Node *orig_mem, int alias_idx, GrowableArray<PhiNode *>  &orig_phis, PhaseGVN *phase) {
  if (orig_mem == NULL)
    return orig_mem;
  Compile* C = phase->C;
  const TypeOopPtr *tinst = C->get_adr_type(alias_idx)->isa_oopptr();
722
  bool is_instance = (tinst != NULL) && tinst->is_known_instance();
723
  Node *start_mem = C->start()->proj_out(TypeFunc::Memory);
724 725 726 727
  Node *prev = NULL;
  Node *result = orig_mem;
  while (prev != result) {
    prev = result;
728
    if (result == start_mem)
T
twisti 已提交
729
      break;  // hit one of our sentinels
730
    if (result->is_Mem()) {
731
      const Type *at = phase->type(result->in(MemNode::Address));
732 733 734 735 736 737
      if (at != Type::TOP) {
        assert (at->isa_ptr() != NULL, "pointer type required.");
        int idx = C->get_alias_index(at->is_ptr());
        if (idx == alias_idx)
          break;
      }
738
      result = result->in(MemNode::Memory);
739 740 741 742 743 744
    }
    if (!is_instance)
      continue;  // don't search further for non-instance types
    // skip over a call which does not affect this memory slice
    if (result->is_Proj() && result->as_Proj()->_con == TypeFunc::Memory) {
      Node *proj_in = result->in(0);
745
      if (proj_in->is_Allocate() && proj_in->_idx == (uint)tinst->instance_id()) {
T
twisti 已提交
746
        break;  // hit one of our sentinels
747
      } else if (proj_in->is_Call()) {
748 749 750 751 752 753 754 755
        CallNode *call = proj_in->as_Call();
        if (!call->may_modify(tinst, phase)) {
          result = call->in(TypeFunc::Memory);
        }
      } else if (proj_in->is_Initialize()) {
        AllocateNode* alloc = proj_in->as_Initialize()->allocation();
        // Stop if this is the initialization for the object instance which
        // which contains this memory slice, otherwise skip over it.
756
        if (alloc == NULL || alloc->_idx != (uint)tinst->instance_id()) {
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
          result = proj_in->in(TypeFunc::Memory);
        }
      } else if (proj_in->is_MemBar()) {
        result = proj_in->in(TypeFunc::Memory);
      }
    } else if (result->is_MergeMem()) {
      MergeMemNode *mmem = result->as_MergeMem();
      result = step_through_mergemem(mmem, alias_idx, tinst);
      if (result == mmem->base_memory()) {
        // Didn't find instance memory, search through general slice recursively.
        result = mmem->memory_at(C->get_general_index(alias_idx));
        result = find_inst_mem(result, alias_idx, orig_phis, phase);
        if (C->failing()) {
          return NULL;
        }
        mmem->set_memory_at(alias_idx, result);
      }
    } else if (result->is_Phi() &&
               C->get_alias_index(result->as_Phi()->adr_type()) != alias_idx) {
      Node *un = result->as_Phi()->unique_input(phase);
      if (un != NULL) {
        result = un;
      } else {
        break;
      }
782 783 784 785 786 787 788
    } else if (result->is_ClearArray()) {
      if (!ClearArrayNode::step_through(&result, (uint)tinst->instance_id(), phase)) {
        // Can not bypass initialization of the instance
        // we are looking for.
        break;
      }
      // Otherwise skip it (the call updated 'result' value).
789 790 791 792 793 794 795 796 797 798
    } else if (result->Opcode() == Op_SCMemProj) {
      assert(result->in(0)->is_LoadStore(), "sanity");
      const Type *at = phase->type(result->in(0)->in(MemNode::Address));
      if (at != Type::TOP) {
        assert (at->isa_ptr() != NULL, "pointer type required.");
        int idx = C->get_alias_index(at->is_ptr());
        assert(idx != alias_idx, "Object is not scalar replaceable if a LoadStore node access its field");
        break;
      }
      result = result->in(0)->in(MemNode::Memory);
799 800
    }
  }
801
  if (result->is_Phi()) {
802 803 804 805
    PhiNode *mphi = result->as_Phi();
    assert(mphi->bottom_type() == Type::MEMORY, "memory phi required");
    const TypePtr *t = mphi->adr_type();
    if (C->get_alias_index(t) != alias_idx) {
806
      // Create a new Phi with the specified alias index type.
807
      result = split_memory_phi(mphi, alias_idx, orig_phis, phase);
808 809 810 811
    } else if (!is_instance) {
      // Push all non-instance Phis on the orig_phis worklist to update inputs
      // during Phase 4 if needed.
      orig_phis.append_if_missing(mphi);
812 813 814 815 816 817
    }
  }
  // the result is either MemNode, PhiNode, InitializeNode.
  return result;
}

D
duke 已提交
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
//
//  Convert the types of unescaped object to instance types where possible,
//  propagate the new type information through the graph, and update memory
//  edges and MergeMem inputs to reflect the new type.
//
//  We start with allocations (and calls which may be allocations)  on alloc_worklist.
//  The processing is done in 4 phases:
//
//  Phase 1:  Process possible allocations from alloc_worklist.  Create instance
//            types for the CheckCastPP for allocations where possible.
//            Propagate the the new types through users as follows:
//               casts and Phi:  push users on alloc_worklist
//               AddP:  cast Base and Address inputs to the instance type
//                      push any AddP users on alloc_worklist and push any memnode
//                      users onto memnode_worklist.
//  Phase 2:  Process MemNode's from memnode_worklist. compute new address type and
//            search the Memory chain for a store with the appropriate type
//            address type.  If a Phi is found, create a new version with
T
twisti 已提交
836
//            the appropriate memory slices from each of the Phi inputs.
D
duke 已提交
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
//            For stores, process the users as follows:
//               MemNode:  push on memnode_worklist
//               MergeMem: push on mergemem_worklist
//  Phase 3:  Process MergeMem nodes from mergemem_worklist.  Walk each memory slice
//            moving the first node encountered of each  instance type to the
//            the input corresponding to its alias index.
//            appropriate memory slice.
//  Phase 4:  Update the inputs of non-instance memory Phis and the Memory input of memnodes.
//
// In the following example, the CheckCastPP nodes are the cast of allocation
// results and the allocation of node 29 is unescaped and eligible to be an
// instance type.
//
// We start with:
//
//     7 Parm #memory
//    10  ConI  "12"
//    19  CheckCastPP   "Foo"
//    20  AddP  _ 19 19 10  Foo+12  alias_index=4
//    29  CheckCastPP   "Foo"
//    30  AddP  _ 29 29 10  Foo+12  alias_index=4
//
//    40  StoreP  25   7  20   ... alias_index=4
//    50  StoreP  35  40  30   ... alias_index=4
//    60  StoreP  45  50  20   ... alias_index=4
//    70  LoadP    _  60  30   ... alias_index=4
//    80  Phi     75  50  60   Memory alias_index=4
//    90  LoadP    _  80  30   ... alias_index=4
//   100  LoadP    _  80  20   ... alias_index=4
//
//
// Phase 1 creates an instance type for node 29 assigning it an instance id of 24
// and creating a new alias index for node 30.  This gives:
//
//     7 Parm #memory
//    10  ConI  "12"
//    19  CheckCastPP   "Foo"
//    20  AddP  _ 19 19 10  Foo+12  alias_index=4
//    29  CheckCastPP   "Foo"  iid=24
//    30  AddP  _ 29 29 10  Foo+12  alias_index=6  iid=24
//
//    40  StoreP  25   7  20   ... alias_index=4
//    50  StoreP  35  40  30   ... alias_index=6
//    60  StoreP  45  50  20   ... alias_index=4
//    70  LoadP    _  60  30   ... alias_index=6
//    80  Phi     75  50  60   Memory alias_index=4
//    90  LoadP    _  80  30   ... alias_index=6
//   100  LoadP    _  80  20   ... alias_index=4
//
// In phase 2, new memory inputs are computed for the loads and stores,
// And a new version of the phi is created.  In phase 4, the inputs to
// node 80 are updated and then the memory nodes are updated with the
// values computed in phase 2.  This results in:
//
//     7 Parm #memory
//    10  ConI  "12"
//    19  CheckCastPP   "Foo"
//    20  AddP  _ 19 19 10  Foo+12  alias_index=4
//    29  CheckCastPP   "Foo"  iid=24
//    30  AddP  _ 29 29 10  Foo+12  alias_index=6  iid=24
//
//    40  StoreP  25  7   20   ... alias_index=4
//    50  StoreP  35  7   30   ... alias_index=6
//    60  StoreP  45  40  20   ... alias_index=4
//    70  LoadP    _  50  30   ... alias_index=6
//    80  Phi     75  40  60   Memory alias_index=4
//   120  Phi     75  50  50   Memory alias_index=6
//    90  LoadP    _ 120  30   ... alias_index=6
//   100  LoadP    _  80  20   ... alias_index=4
//
void ConnectionGraph::split_unique_types(GrowableArray<Node *>  &alloc_worklist) {
  GrowableArray<Node *>  memnode_worklist;
  GrowableArray<PhiNode *>  orig_phis;
  PhaseGVN  *igvn = _compile->initial_gvn();
  uint new_index_start = (uint) _compile->num_alias_types();
  VectorSet visited(Thread::current()->resource_area());
  VectorSet ptset(Thread::current()->resource_area());

915 916 917

  //  Phase 1:  Process possible allocations from alloc_worklist.
  //  Create instance types for the CheckCastPP for allocations where possible.
918 919 920 921 922
  //
  // (Note: don't forget to change the order of the second AddP node on
  //  the alloc_worklist if the order of the worklist processing is changed,
  //  see the comment in find_second_addp().)
  //
D
duke 已提交
923 924 925
  while (alloc_worklist.length() != 0) {
    Node *n = alloc_worklist.pop();
    uint ni = n->_idx;
926
    const TypeOopPtr* tinst = NULL;
D
duke 已提交
927 928 929
    if (n->is_Call()) {
      CallNode *alloc = n->as_Call();
      // copy escape information to call node
930
      PointsToNode* ptn = ptnode_adr(alloc->_idx);
D
duke 已提交
931
      PointsToNode::EscapeState es = escape_state(alloc, igvn);
932 933 934
      // We have an allocation or call which returns a Java object,
      // see if it is unescaped.
      if (es != PointsToNode::NoEscape || !ptn->_scalar_replaceable)
D
duke 已提交
935
        continue;
936 937

      // Find CheckCastPP for the allocate or for the return value of a call
938
      n = alloc->result_cast();
939 940 941 942 943 944 945 946 947 948
      if (n == NULL) {            // No uses except Initialize node
        if (alloc->is_Allocate()) {
          // Set the scalar_replaceable flag for allocation
          // so it could be eliminated if it has no uses.
          alloc->as_Allocate()->_is_scalar_replaceable = true;
        }
        continue;
      }
      if (!n->is_CheckCastPP()) { // not unique CheckCastPP.
        assert(!alloc->is_Allocate(), "allocation should have unique type");
949
        continue;
950 951
      }

952
      // The inline code for Object.clone() casts the allocation result to
953
      // java.lang.Object and then to the actual type of the allocated
954
      // object. Detect this case and use the second cast.
955 956 957
      // Also detect j.l.reflect.Array.newInstance(jobject, jint) case when
      // the allocation result is cast to java.lang.Object and then
      // to the actual Array type.
958
      if (alloc->is_Allocate() && n->as_Type()->type() == TypeInstPtr::NOTNULL
959 960
          && (alloc->is_AllocateArray() ||
              igvn->type(alloc->in(AllocateNode::KlassNode)) != TypeKlassPtr::OBJECT)) {
961 962 963 964 965 966 967 968 969 970 971
        Node *cast2 = NULL;
        for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
          Node *use = n->fast_out(i);
          if (use->is_CheckCastPP()) {
            cast2 = use;
            break;
          }
        }
        if (cast2 != NULL) {
          n = cast2;
        } else {
972 973 974
          // Non-scalar replaceable if the allocation type is unknown statically
          // (reflection allocation), the object can't be restored during
          // deoptimization without precise type.
975 976 977
          continue;
        }
      }
978 979 980 981 982
      if (alloc->is_Allocate()) {
        // Set the scalar_replaceable flag for allocation
        // so it could be eliminated.
        alloc->as_Allocate()->_is_scalar_replaceable = true;
      }
983
      set_escape_state(n->_idx, es);
984
      // in order for an object to be scalar-replaceable, it must be:
985 986 987 988
      //   - a direct allocation (not a call returning an object)
      //   - non-escaping
      //   - eligible to be a unique type
      //   - not determined to be ineligible by escape analysis
D
duke 已提交
989 990
      set_map(alloc->_idx, n);
      set_map(n->_idx, alloc);
991 992
      const TypeOopPtr *t = igvn->type(n)->isa_oopptr();
      if (t == NULL)
D
duke 已提交
993
        continue;  // not a TypeInstPtr
994
      tinst = t->cast_to_exactness(true)->is_oopptr()->cast_to_instance_id(ni);
D
duke 已提交
995 996 997 998
      igvn->hash_delete(n);
      igvn->set_type(n,  tinst);
      n->raise_bottom_type(tinst);
      igvn->hash_insert(n);
999 1000 1001
      record_for_optimizer(n);
      if (alloc->is_Allocate() && ptn->_scalar_replaceable &&
          (t->isa_instptr() || t->isa_aryptr())) {
1002 1003 1004 1005

        // First, put on the worklist all Field edges from Connection Graph
        // which is more accurate then putting immediate users from Ideal Graph.
        for (uint e = 0; e < ptn->edge_count(); e++) {
1006
          Node *use = ptnode_adr(ptn->edge_target(e))->_node;
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
          assert(ptn->edge_type(e) == PointsToNode::FieldEdge && use->is_AddP(),
                 "only AddP nodes are Field edges in CG");
          if (use->outcnt() > 0) { // Don't process dead nodes
            Node* addp2 = find_second_addp(use, use->in(AddPNode::Base));
            if (addp2 != NULL) {
              assert(alloc->is_AllocateArray(),"array allocation was expected");
              alloc_worklist.append_if_missing(addp2);
            }
            alloc_worklist.append_if_missing(use);
          }
        }

1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
        // An allocation may have an Initialize which has raw stores. Scan
        // the users of the raw allocation result and push AddP users
        // on alloc_worklist.
        Node *raw_result = alloc->proj_out(TypeFunc::Parms);
        assert (raw_result != NULL, "must have an allocation result");
        for (DUIterator_Fast imax, i = raw_result->fast_outs(imax); i < imax; i++) {
          Node *use = raw_result->fast_out(i);
          if (use->is_AddP() && use->outcnt() > 0) { // Don't process dead nodes
            Node* addp2 = find_second_addp(use, raw_result);
            if (addp2 != NULL) {
              assert(alloc->is_AllocateArray(),"array allocation was expected");
              alloc_worklist.append_if_missing(addp2);
            }
            alloc_worklist.append_if_missing(use);
1033
          } else if (use->is_MemBar()) {
1034 1035 1036 1037
            memnode_worklist.append_if_missing(use);
          }
        }
      }
D
duke 已提交
1038 1039
    } else if (n->is_AddP()) {
      ptset.Clear();
1040
      PointsTo(ptset, get_addp_base(n), igvn);
D
duke 已提交
1041
      assert(ptset.Size() == 1, "AddP address is unique");
1042
      uint elem = ptset.getelem(); // Allocation node's index
1043 1044
      if (elem == _phantom_object) {
        assert(false, "escaped allocation");
1045
        continue; // Assume the value was set outside this method.
1046
      }
1047
      Node *base = get_map(elem);  // CheckCastPP node
1048
      if (!split_AddP(n, base, igvn)) continue; // wrong type from dead path
1049 1050 1051
      tinst = igvn->type(base)->isa_oopptr();
    } else if (n->is_Phi() ||
               n->is_CheckCastPP() ||
1052 1053
               n->is_EncodeP() ||
               n->is_DecodeN() ||
1054
               (n->is_ConstraintCast() && n->Opcode() == Op_CastPP)) {
D
duke 已提交
1055 1056 1057 1058 1059 1060 1061
      if (visited.test_set(n->_idx)) {
        assert(n->is_Phi(), "loops only through Phi's");
        continue;  // already processed
      }
      ptset.Clear();
      PointsTo(ptset, n, igvn);
      if (ptset.Size() == 1) {
1062
        uint elem = ptset.getelem(); // Allocation node's index
1063 1064
        if (elem == _phantom_object) {
          assert(false, "escaped allocation");
1065
          continue; // Assume the value was set outside this method.
1066
        }
1067
        Node *val = get_map(elem);   // CheckCastPP node
D
duke 已提交
1068
        TypeNode *tn = n->as_Type();
1069
        tinst = igvn->type(val)->isa_oopptr();
1070 1071
        assert(tinst != NULL && tinst->is_known_instance() &&
               (uint)tinst->instance_id() == elem , "instance type expected.");
1072 1073

        const Type *tn_type = igvn->type(tn);
1074
        const TypeOopPtr *tn_t;
1075
        if (tn_type->isa_narrowoop()) {
1076
          tn_t = tn_type->make_ptr()->isa_oopptr();
1077 1078 1079
        } else {
          tn_t = tn_type->isa_oopptr();
        }
D
duke 已提交
1080

1081
        if (tn_t != NULL && tinst->klass()->is_subtype_of(tn_t->klass())) {
1082 1083 1084 1085 1086
          if (tn_type->isa_narrowoop()) {
            tn_type = tinst->make_narrowoop();
          } else {
            tn_type = tinst;
          }
D
duke 已提交
1087
          igvn->hash_delete(tn);
1088 1089
          igvn->set_type(tn, tn_type);
          tn->set_type(tn_type);
D
duke 已提交
1090
          igvn->hash_insert(tn);
1091
          record_for_optimizer(n);
1092
        } else {
1093 1094 1095 1096
          assert(tn_type == TypePtr::NULL_PTR ||
                 tn_t != NULL && !tinst->klass()->is_subtype_of(tn_t->klass()),
                 "unexpected type");
          continue; // Skip dead path with different type
D
duke 已提交
1097 1098 1099
        }
      }
    } else {
1100 1101
      debug_only(n->dump();)
      assert(false, "EA: unexpected node");
D
duke 已提交
1102 1103
      continue;
    }
1104
    // push allocation's users on appropriate worklist
D
duke 已提交
1105 1106 1107
    for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
      Node *use = n->fast_out(i);
      if(use->is_Mem() && use->in(MemNode::Address) == n) {
1108
        // Load/store to instance's field
1109
        memnode_worklist.append_if_missing(use);
1110
      } else if (use->is_MemBar()) {
1111 1112 1113 1114 1115 1116 1117 1118 1119
        memnode_worklist.append_if_missing(use);
      } else if (use->is_AddP() && use->outcnt() > 0) { // No dead nodes
        Node* addp2 = find_second_addp(use, n);
        if (addp2 != NULL) {
          alloc_worklist.append_if_missing(addp2);
        }
        alloc_worklist.append_if_missing(use);
      } else if (use->is_Phi() ||
                 use->is_CheckCastPP() ||
1120 1121
                 use->is_EncodeP() ||
                 use->is_DecodeN() ||
1122 1123
                 (use->is_ConstraintCast() && use->Opcode() == Op_CastPP)) {
        alloc_worklist.append_if_missing(use);
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
#ifdef ASSERT
      } else if (use->is_Mem()) {
        assert(use->in(MemNode::Address) != n, "EA: missing allocation reference path");
      } else if (use->is_MergeMem()) {
        assert(_mergemem_worklist.contains(use->as_MergeMem()), "EA: missing MergeMem node in the worklist");
      } else if (use->is_SafePoint()) {
        // Look for MergeMem nodes for calls which reference unique allocation
        // (through CheckCastPP nodes) even for debug info.
        Node* m = use->in(TypeFunc::Memory);
        if (m->is_MergeMem()) {
          assert(_mergemem_worklist.contains(m->as_MergeMem()), "EA: missing MergeMem node in the worklist");
        }
      } else {
        uint op = use->Opcode();
        if (!(op == Op_CmpP || op == Op_Conv2B ||
              op == Op_CastP2X || op == Op_StoreCM ||
              op == Op_FastLock || op == Op_AryEq || op == Op_StrComp ||
              op == Op_StrEquals || op == Op_StrIndexOf)) {
          n->dump();
          use->dump();
          assert(false, "EA: missing allocation reference path");
        }
#endif
D
duke 已提交
1147 1148 1149 1150
      }
    }

  }
1151
  // New alias types were created in split_AddP().
D
duke 已提交
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
  uint new_index_end = (uint) _compile->num_alias_types();

  //  Phase 2:  Process MemNode's from memnode_worklist. compute new address type and
  //            compute new values for Memory inputs  (the Memory inputs are not
  //            actually updated until phase 4.)
  if (memnode_worklist.length() == 0)
    return;  // nothing to do

  while (memnode_worklist.length() != 0) {
    Node *n = memnode_worklist.pop();
1162 1163
    if (visited.test_set(n->_idx))
      continue;
1164 1165 1166 1167 1168
    if (n->is_Phi() || n->is_ClearArray()) {
      // we don't need to do anything, but the users must be pushed
    } else if (n->is_MemBar()) { // Initialize, MemBar nodes
      // we don't need to do anything, but the users must be pushed
      n = n->as_MemBar()->proj_out(TypeFunc::Memory);
1169
      if (n == NULL)
D
duke 已提交
1170 1171 1172 1173 1174 1175 1176 1177 1178
        continue;
    } else {
      assert(n->is_Mem(), "memory node required.");
      Node *addr = n->in(MemNode::Address);
      const Type *addr_t = igvn->type(addr);
      if (addr_t == Type::TOP)
        continue;
      assert (addr_t->isa_ptr() != NULL, "pointer type required.");
      int alias_idx = _compile->get_alias_index(addr_t->is_ptr());
1179 1180
      assert ((uint)alias_idx < new_index_end, "wrong alias index");
      Node *mem = find_inst_mem(n->in(MemNode::Memory), alias_idx, orig_phis, igvn);
1181 1182 1183
      if (_compile->failing()) {
        return;
      }
1184
      if (mem != n->in(MemNode::Memory)) {
D
duke 已提交
1185
        set_map(n->_idx, mem);
1186
        ptnode_adr(n->_idx)->_node = n;
1187
      }
D
duke 已提交
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
      if (n->is_Load()) {
        continue;  // don't push users
      } else if (n->is_LoadStore()) {
        // get the memory projection
        for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
          Node *use = n->fast_out(i);
          if (use->Opcode() == Op_SCMemProj) {
            n = use;
            break;
          }
        }
        assert(n->Opcode() == Op_SCMemProj, "memory projection required");
      }
    }
    // push user on appropriate worklist
    for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
      Node *use = n->fast_out(i);
1205
      if (use->is_Phi() || use->is_ClearArray()) {
1206
        memnode_worklist.append_if_missing(use);
D
duke 已提交
1207
      } else if(use->is_Mem() && use->in(MemNode::Memory) == n) {
1208 1209
        if (use->Opcode() == Op_StoreCM) // Ignore cardmark stores
          continue;
1210
        memnode_worklist.append_if_missing(use);
1211
      } else if (use->is_MemBar()) {
1212
        memnode_worklist.append_if_missing(use);
1213 1214 1215
#ifdef ASSERT
      } else if(use->is_Mem()) {
        assert(use->in(MemNode::Memory) != n, "EA: missing memory path");
D
duke 已提交
1216
      } else if (use->is_MergeMem()) {
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
        assert(_mergemem_worklist.contains(use->as_MergeMem()), "EA: missing MergeMem node in the worklist");
      } else {
        uint op = use->Opcode();
        if (!(op == Op_StoreCM ||
              (op == Op_CallLeaf && use->as_CallLeaf()->_name != NULL &&
               strcmp(use->as_CallLeaf()->_name, "g1_wb_pre") == 0) ||
              op == Op_AryEq || op == Op_StrComp ||
              op == Op_StrEquals || op == Op_StrIndexOf)) {
          n->dump();
          use->dump();
          assert(false, "EA: missing memory path");
        }
#endif
D
duke 已提交
1230 1231 1232 1233
      }
    }
  }

1234
  //  Phase 3:  Process MergeMem nodes from mergemem_worklist.
1235
  //            Walk each memory slice moving the first node encountered of each
1236
  //            instance type to the the input corresponding to its alias index.
1237 1238 1239 1240
  uint length = _mergemem_worklist.length();
  for( uint next = 0; next < length; ++next ) {
    MergeMemNode* nmm = _mergemem_worklist.at(next);
    assert(!visited.test_set(nmm->_idx), "should not be visited before");
D
duke 已提交
1241
    // Note: we don't want to use MergeMemStream here because we only want to
1242 1243 1244
    // scan inputs which exist at the start, not ones we add during processing.
    // Note 2: MergeMem may already contains instance memory slices added
    // during find_inst_mem() call when memory nodes were processed above.
D
duke 已提交
1245
    igvn->hash_delete(nmm);
1246
    uint nslices = nmm->req();
D
duke 已提交
1247
    for (uint i = Compile::AliasIdxRaw+1; i < nslices; i++) {
1248 1249
      Node* mem = nmm->in(i);
      Node* cur = NULL;
D
duke 已提交
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
      if (mem == NULL || mem->is_top())
        continue;
      while (mem->is_Mem()) {
        const Type *at = igvn->type(mem->in(MemNode::Address));
        if (at != Type::TOP) {
          assert (at->isa_ptr() != NULL, "pointer type required.");
          uint idx = (uint)_compile->get_alias_index(at->is_ptr());
          if (idx == i) {
            if (cur == NULL)
              cur = mem;
          } else {
            if (idx >= nmm->req() || nmm->is_empty_memory(nmm->in(idx))) {
              nmm->set_memory_at(idx, mem);
            }
          }
        }
        mem = mem->in(MemNode::Memory);
      }
      nmm->set_memory_at(i, (cur != NULL) ? cur : mem);
1269 1270 1271 1272 1273 1274 1275 1276 1277
      // Find any instance of the current type if we haven't encountered
      // a value of the instance along the chain.
      for (uint ni = new_index_start; ni < new_index_end; ni++) {
        if((uint)_compile->get_general_index(ni) == i) {
          Node *m = (ni >= nmm->req()) ? nmm->empty_memory() : nmm->in(ni);
          if (nmm->is_empty_memory(m)) {
            Node* result = find_inst_mem(mem, ni, orig_phis, igvn);
            if (_compile->failing()) {
              return;
D
duke 已提交
1278
            }
1279
            nmm->set_memory_at(ni, result);
D
duke 已提交
1280 1281 1282 1283
          }
        }
      }
    }
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
    // Find the rest of instances values
    for (uint ni = new_index_start; ni < new_index_end; ni++) {
      const TypeOopPtr *tinst = igvn->C->get_adr_type(ni)->isa_oopptr();
      Node* result = step_through_mergemem(nmm, ni, tinst);
      if (result == nmm->base_memory()) {
        // Didn't find instance memory, search through general slice recursively.
        result = nmm->memory_at(igvn->C->get_general_index(ni));
        result = find_inst_mem(result, ni, orig_phis, igvn);
        if (_compile->failing()) {
          return;
        }
        nmm->set_memory_at(ni, result);
      }
    }
D
duke 已提交
1298 1299 1300 1301
    igvn->hash_insert(nmm);
    record_for_optimizer(nmm);
  }

1302 1303
  //  Phase 4:  Update the inputs of non-instance memory Phis and
  //            the Memory input of memnodes
D
duke 已提交
1304 1305 1306 1307 1308
  // First update the inputs of any non-instance Phi's from
  // which we split out an instance Phi.  Note we don't have
  // to recursively process Phi's encounted on the input memory
  // chains as is done in split_memory_phi() since they  will
  // also be processed here.
1309 1310
  for (int j = 0; j < orig_phis.length(); j++) {
    PhiNode *phi = orig_phis.at(j);
D
duke 已提交
1311 1312 1313 1314
    int alias_idx = _compile->get_alias_index(phi->adr_type());
    igvn->hash_delete(phi);
    for (uint i = 1; i < phi->req(); i++) {
      Node *mem = phi->in(i);
1315 1316 1317 1318
      Node *new_mem = find_inst_mem(mem, alias_idx, orig_phis, igvn);
      if (_compile->failing()) {
        return;
      }
D
duke 已提交
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
      if (mem != new_mem) {
        phi->set_req(i, new_mem);
      }
    }
    igvn->hash_insert(phi);
    record_for_optimizer(phi);
  }

  // Update the memory inputs of MemNodes with the value we computed
  // in Phase 2.
1329
  for (uint i = 0; i < nodes_size(); i++) {
D
duke 已提交
1330 1331
    Node *nmem = get_map(i);
    if (nmem != NULL) {
1332
      Node *n = ptnode_adr(i)->_node;
D
duke 已提交
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
      if (n != NULL && n->is_Mem()) {
        igvn->hash_delete(n);
        n->set_req(MemNode::Memory, nmem);
        igvn->hash_insert(n);
        record_for_optimizer(n);
      }
    }
  }
}

1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
bool ConnectionGraph::has_candidates(Compile *C) {
  // EA brings benefits only when the code has allocations and/or locks which
  // are represented by ideal Macro nodes.
  int cnt = C->macro_count();
  for( int i=0; i < cnt; i++ ) {
    Node *n = C->macro_node(i);
    if ( n->is_Allocate() )
      return true;
    if( n->is_Lock() ) {
      Node* obj = n->as_Lock()->obj_node()->uncast();
      if( !(obj->is_Parm() || obj->is_Con()) )
        return true;
    }
  }
  return false;
}

bool ConnectionGraph::compute_escape() {
  Compile* C = _compile;
D
duke 已提交
1362

1363
  // 1. Populate Connection Graph (CG) with Ideal nodes.
D
duke 已提交
1364

1365
  Unique_Node_List worklist_init;
1366
  worklist_init.map(C->unique(), NULL);  // preallocate space
1367 1368

  // Initialize worklist
1369 1370
  if (C->root() != NULL) {
    worklist_init.push(C->root());
1371 1372 1373
  }

  GrowableArray<int> cg_worklist;
1374
  PhaseGVN* igvn = C->initial_gvn();
1375 1376 1377 1378 1379 1380
  bool has_allocations = false;

  // Push all useful nodes onto CG list and set their type.
  for( uint next = 0; next < worklist_init.size(); ++next ) {
    Node* n = worklist_init.at(next);
    record_for_escape_analysis(n, igvn);
1381 1382 1383 1384
    // Only allocations and java static calls results are checked
    // for an escape status. See process_call_result() below.
    if (n->is_Allocate() || n->is_CallStaticJava() &&
        ptnode_adr(n->_idx)->node_type() == PointsToNode::JavaObject) {
1385 1386
      has_allocations = true;
    }
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
    if(n->is_AddP()) {
      // Collect address nodes which directly reference an allocation.
      // Use them during stage 3 below to build initial connection graph
      // field edges. Other field edges could be added after StoreP/LoadP
      // nodes are processed during stage 4 below.
      Node* base = get_addp_base(n);
      if(base->is_Proj() && base->in(0)->is_Allocate()) {
        cg_worklist.append(n->_idx);
      }
    } else if (n->is_MergeMem()) {
      // Collect all MergeMem nodes to add memory slices for
      // scalar replaceable objects in split_unique_types().
      _mergemem_worklist.append(n->as_MergeMem());
    }
1401 1402 1403 1404 1405 1406
    for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
      Node* m = n->fast_out(i);   // Get user
      worklist_init.push(m);
    }
  }

1407
  if (!has_allocations) {
1408
    _collecting = false;
1409
    return false; // Nothing to do.
1410 1411 1412
  }

  // 2. First pass to create simple CG edges (doesn't require to walk CG).
1413 1414
  uint delayed_size = _delayed_worklist.size();
  for( uint next = 0; next < delayed_size; ++next ) {
1415 1416 1417 1418 1419
    Node* n = _delayed_worklist.at(next);
    build_connection_graph(n, igvn);
  }

  // 3. Pass to create fields edges (Allocate -F-> AddP).
1420 1421
  uint cg_length = cg_worklist.length();
  for( uint next = 0; next < cg_length; ++next ) {
1422
    int ni = cg_worklist.at(next);
1423
    build_connection_graph(ptnode_adr(ni)->_node, igvn);
1424 1425 1426 1427 1428 1429 1430
  }

  cg_worklist.clear();
  cg_worklist.append(_phantom_object);

  // 4. Build Connection Graph which need
  //    to walk the connection graph.
1431 1432
  for (uint ni = 0; ni < nodes_size(); ni++) {
    PointsToNode* ptn = ptnode_adr(ni);
1433 1434 1435 1436 1437 1438
    Node *n = ptn->_node;
    if (n != NULL) { // Call, AddP, LoadP, StoreP
      build_connection_graph(n, igvn);
      if (ptn->node_type() != PointsToNode::UnknownType)
        cg_worklist.append(n->_idx); // Collect CG nodes
    }
D
duke 已提交
1439 1440
  }

1441 1442
  Arena* arena = Thread::current()->resource_area();
  VectorSet ptset(arena);
1443
  GrowableArray<uint>  deferred_edges;
1444
  VectorSet visited(arena);
D
duke 已提交
1445

1446 1447
  // 5. Remove deferred edges from the graph and adjust
  //    escape state of nonescaping objects.
1448 1449
  cg_length = cg_worklist.length();
  for( uint next = 0; next < cg_length; ++next ) {
1450
    int ni = cg_worklist.at(next);
1451
    PointsToNode* ptn = ptnode_adr(ni);
D
duke 已提交
1452 1453
    PointsToNode::NodeType nt = ptn->node_type();
    if (nt == PointsToNode::LocalVar || nt == PointsToNode::Field) {
1454
      remove_deferred(ni, &deferred_edges, &visited);
1455
      Node *n = ptn->_node;
D
duke 已提交
1456
      if (n->is_AddP()) {
1457 1458 1459
        // Search for objects which are not scalar replaceable
        // and adjust their escape state.
        verify_escape_state(ni, ptset, igvn);
D
duke 已提交
1460 1461 1462
      }
    }
  }
1463

1464 1465 1466 1467
  // 6. Propagate escape states.
  GrowableArray<int>  worklist;
  bool has_non_escaping_obj = false;

D
duke 已提交
1468
  // push all GlobalEscape nodes on the worklist
1469
  for( uint next = 0; next < cg_length; ++next ) {
1470
    int nk = cg_worklist.at(next);
1471 1472
    if (ptnode_adr(nk)->escape_state() == PointsToNode::GlobalEscape)
      worklist.push(nk);
D
duke 已提交
1473
  }
1474
  // mark all nodes reachable from GlobalEscape nodes
D
duke 已提交
1475
  while(worklist.length() > 0) {
1476 1477 1478 1479
    PointsToNode* ptn = ptnode_adr(worklist.pop());
    uint e_cnt = ptn->edge_count();
    for (uint ei = 0; ei < e_cnt; ei++) {
      uint npi = ptn->edge_target(ei);
D
duke 已提交
1480
      PointsToNode *np = ptnode_adr(npi);
1481
      if (np->escape_state() < PointsToNode::GlobalEscape) {
D
duke 已提交
1482
        np->set_escape_state(PointsToNode::GlobalEscape);
1483
        worklist.push(npi);
D
duke 已提交
1484 1485 1486 1487 1488
      }
    }
  }

  // push all ArgEscape nodes on the worklist
1489
  for( uint next = 0; next < cg_length; ++next ) {
1490
    int nk = cg_worklist.at(next);
1491
    if (ptnode_adr(nk)->escape_state() == PointsToNode::ArgEscape)
D
duke 已提交
1492 1493
      worklist.push(nk);
  }
1494
  // mark all nodes reachable from ArgEscape nodes
D
duke 已提交
1495
  while(worklist.length() > 0) {
1496 1497 1498 1499 1500 1501
    PointsToNode* ptn = ptnode_adr(worklist.pop());
    if (ptn->node_type() == PointsToNode::JavaObject)
      has_non_escaping_obj = true; // Non GlobalEscape
    uint e_cnt = ptn->edge_count();
    for (uint ei = 0; ei < e_cnt; ei++) {
      uint npi = ptn->edge_target(ei);
D
duke 已提交
1502
      PointsToNode *np = ptnode_adr(npi);
1503
      if (np->escape_state() < PointsToNode::ArgEscape) {
D
duke 已提交
1504
        np->set_escape_state(PointsToNode::ArgEscape);
1505
        worklist.push(npi);
D
duke 已提交
1506 1507 1508 1509
      }
    }
  }

1510 1511
  GrowableArray<Node*> alloc_worklist;

1512
  // push all NoEscape nodes on the worklist
1513
  for( uint next = 0; next < cg_length; ++next ) {
1514
    int nk = cg_worklist.at(next);
1515
    if (ptnode_adr(nk)->escape_state() == PointsToNode::NoEscape)
1516 1517
      worklist.push(nk);
  }
1518
  // mark all nodes reachable from NoEscape nodes
1519
  while(worklist.length() > 0) {
1520 1521 1522 1523 1524
    PointsToNode* ptn = ptnode_adr(worklist.pop());
    if (ptn->node_type() == PointsToNode::JavaObject)
      has_non_escaping_obj = true; // Non GlobalEscape
    Node* n = ptn->_node;
    if (n->is_Allocate() && ptn->_scalar_replaceable ) {
T
twisti 已提交
1525
      // Push scalar replaceable allocations on alloc_worklist
1526 1527 1528 1529 1530 1531
      // for processing in split_unique_types().
      alloc_worklist.append(n);
    }
    uint e_cnt = ptn->edge_count();
    for (uint ei = 0; ei < e_cnt; ei++) {
      uint npi = ptn->edge_target(ei);
1532 1533 1534
      PointsToNode *np = ptnode_adr(npi);
      if (np->escape_state() < PointsToNode::NoEscape) {
        np->set_escape_state(PointsToNode::NoEscape);
1535
        worklist.push(npi);
1536 1537 1538
      }
    }
  }
1539

1540
  _collecting = false;
1541
  assert(C->unique() == nodes_size(), "there should be no new ideal nodes during ConnectionGraph build");
D
duke 已提交
1542

1543 1544 1545
  bool has_scalar_replaceable_candidates = alloc_worklist.length() > 0;
  if ( has_scalar_replaceable_candidates &&
       C->AliasLevel() >= 3 && EliminateAllocations ) {
D
duke 已提交
1546

1547
    // Now use the escape information to create unique types for
1548
    // scalar replaceable objects.
1549
    split_unique_types(alloc_worklist);
1550 1551

    if (C->failing())  return false;
D
duke 已提交
1552

1553 1554
    // Clean up after split unique types.
    ResourceMark rm;
1555 1556 1557
    PhaseRemoveUseless pru(C->initial_gvn(), C->for_igvn());

    C->print_method("After Escape Analysis", 2);
D
duke 已提交
1558

1559
#ifdef ASSERT
1560
  } else if (Verbose && (PrintEscapeAnalysis || PrintEliminateAllocations)) {
1561
    tty->print("=== No allocations eliminated for ");
1562
    C->method()->print_short_name();
1563 1564
    if(!EliminateAllocations) {
      tty->print(" since EliminateAllocations is off ===");
1565 1566 1567
    } else if(!has_scalar_replaceable_candidates) {
      tty->print(" since there are no scalar replaceable candidates ===");
    } else if(C->AliasLevel() < 3) {
1568
      tty->print(" since AliasLevel < 3 ===");
D
duke 已提交
1569
    }
1570 1571
    tty->cr();
#endif
D
duke 已提交
1572
  }
1573
  return has_non_escaping_obj;
D
duke 已提交
1574 1575
}

1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719
// Search for objects which are not scalar replaceable.
void ConnectionGraph::verify_escape_state(int nidx, VectorSet& ptset, PhaseTransform* phase) {
  PointsToNode* ptn = ptnode_adr(nidx);
  Node* n = ptn->_node;
  assert(n->is_AddP(), "Should be called for AddP nodes only");
  // Search for objects which are not scalar replaceable.
  // Mark their escape state as ArgEscape to propagate the state
  // to referenced objects.
  // Note: currently there are no difference in compiler optimizations
  // for ArgEscape objects and NoEscape objects which are not
  // scalar replaceable.

  Compile* C = _compile;

  int offset = ptn->offset();
  Node* base = get_addp_base(n);
  ptset.Clear();
  PointsTo(ptset, base, phase);
  int ptset_size = ptset.Size();

  // Check if a oop field's initializing value is recorded and add
  // a corresponding NULL field's value if it is not recorded.
  // Connection Graph does not record a default initialization by NULL
  // captured by Initialize node.
  //
  // Note: it will disable scalar replacement in some cases:
  //
  //    Point p[] = new Point[1];
  //    p[0] = new Point(); // Will be not scalar replaced
  //
  // but it will save us from incorrect optimizations in next cases:
  //
  //    Point p[] = new Point[1];
  //    if ( x ) p[0] = new Point(); // Will be not scalar replaced
  //
  // Do a simple control flow analysis to distinguish above cases.
  //
  if (offset != Type::OffsetBot && ptset_size == 1) {
    uint elem = ptset.getelem(); // Allocation node's index
    // It does not matter if it is not Allocation node since
    // only non-escaping allocations are scalar replaced.
    if (ptnode_adr(elem)->_node->is_Allocate() &&
        ptnode_adr(elem)->escape_state() == PointsToNode::NoEscape) {
      AllocateNode* alloc = ptnode_adr(elem)->_node->as_Allocate();
      InitializeNode* ini = alloc->initialization();

      // Check only oop fields.
      const Type* adr_type = n->as_AddP()->bottom_type();
      BasicType basic_field_type = T_INT;
      if (adr_type->isa_instptr()) {
        ciField* field = C->alias_type(adr_type->isa_instptr())->field();
        if (field != NULL) {
          basic_field_type = field->layout_type();
        } else {
          // Ignore non field load (for example, klass load)
        }
      } else if (adr_type->isa_aryptr()) {
        const Type* elemtype = adr_type->isa_aryptr()->elem();
        basic_field_type = elemtype->array_element_basic_type();
      } else {
        // Raw pointers are used for initializing stores so skip it.
        assert(adr_type->isa_rawptr() && base->is_Proj() &&
               (base->in(0) == alloc),"unexpected pointer type");
      }
      if (basic_field_type == T_OBJECT ||
          basic_field_type == T_NARROWOOP ||
          basic_field_type == T_ARRAY) {
        Node* value = NULL;
        if (ini != NULL) {
          BasicType ft = UseCompressedOops ? T_NARROWOOP : T_OBJECT;
          Node* store = ini->find_captured_store(offset, type2aelembytes(ft), phase);
          if (store != NULL && store->is_Store()) {
            value = store->in(MemNode::ValueIn);
          } else if (ptn->edge_count() > 0) { // Are there oop stores?
            // Check for a store which follows allocation without branches.
            // For example, a volatile field store is not collected
            // by Initialize node. TODO: it would be nice to use idom() here.
            for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
              store = n->fast_out(i);
              if (store->is_Store() && store->in(0) != NULL) {
                Node* ctrl = store->in(0);
                while(!(ctrl == ini || ctrl == alloc || ctrl == NULL ||
                        ctrl == C->root() || ctrl == C->top() || ctrl->is_Region() ||
                        ctrl->is_IfTrue() || ctrl->is_IfFalse())) {
                   ctrl = ctrl->in(0);
                }
                if (ctrl == ini || ctrl == alloc) {
                  value = store->in(MemNode::ValueIn);
                  break;
                }
              }
            }
          }
        }
        if (value == NULL || value != ptnode_adr(value->_idx)->_node) {
          // A field's initializing value was not recorded. Add NULL.
          uint null_idx = UseCompressedOops ? _noop_null : _oop_null;
          add_pointsto_edge(nidx, null_idx);
        }
      }
    }
  }

  // An object is not scalar replaceable if the field which may point
  // to it has unknown offset (unknown element of an array of objects).
  //
  if (offset == Type::OffsetBot) {
    uint e_cnt = ptn->edge_count();
    for (uint ei = 0; ei < e_cnt; ei++) {
      uint npi = ptn->edge_target(ei);
      set_escape_state(npi, PointsToNode::ArgEscape);
      ptnode_adr(npi)->_scalar_replaceable = false;
    }
  }

  // Currently an object is not scalar replaceable if a LoadStore node
  // access its field since the field value is unknown after it.
  //
  bool has_LoadStore = false;
  for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
    Node *use = n->fast_out(i);
    if (use->is_LoadStore()) {
      has_LoadStore = true;
      break;
    }
  }
  // An object is not scalar replaceable if the address points
  // to unknown field (unknown element for arrays, offset is OffsetBot).
  //
  // Or the address may point to more then one object. This may produce
  // the false positive result (set scalar_replaceable to false)
  // since the flow-insensitive escape analysis can't separate
  // the case when stores overwrite the field's value from the case
  // when stores happened on different control branches.
  //
  if (ptset_size > 1 || ptset_size != 0 &&
      (has_LoadStore || offset == Type::OffsetBot)) {
    for( VectorSetI j(&ptset); j.test(); ++j ) {
      set_escape_state(j.elem, PointsToNode::ArgEscape);
      ptnode_adr(j.elem)->_scalar_replaceable = false;
    }
  }
}

D
duke 已提交
1720 1721 1722
void ConnectionGraph::process_call_arguments(CallNode *call, PhaseTransform *phase) {

    switch (call->Opcode()) {
1723
#ifdef ASSERT
D
duke 已提交
1724 1725 1726 1727
    case Op_Allocate:
    case Op_AllocateArray:
    case Op_Lock:
    case Op_Unlock:
1728 1729 1730
      assert(false, "should be done already");
      break;
#endif
1731
    case Op_CallLeaf:
1732 1733 1734 1735 1736 1737 1738 1739 1740 1741
    case Op_CallLeafNoFP:
    {
      // Stub calls, objects do not escape but they are not scale replaceable.
      // Adjust escape state for outgoing arguments.
      const TypeTuple * d = call->tf()->domain();
      VectorSet ptset(Thread::current()->resource_area());
      for (uint i = TypeFunc::Parms; i < d->cnt(); i++) {
        const Type* at = d->field_at(i);
        Node *arg = call->in(i)->uncast();
        const Type *aat = phase->type(arg);
1742 1743 1744
        if (!arg->is_top() && at->isa_ptr() && aat->isa_ptr() &&
            ptnode_adr(arg->_idx)->escape_state() < PointsToNode::ArgEscape) {

1745 1746
          assert(aat == Type::TOP || aat == TypePtr::NULL_PTR ||
                 aat->isa_ptr() != NULL, "expecting an Ptr");
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758
#ifdef ASSERT
          if (!(call->Opcode() == Op_CallLeafNoFP &&
                call->as_CallLeaf()->_name != NULL &&
                (strstr(call->as_CallLeaf()->_name, "arraycopy")  != 0) ||
                call->as_CallLeaf()->_name != NULL &&
                (strcmp(call->as_CallLeaf()->_name, "g1_wb_pre")  == 0 ||
                 strcmp(call->as_CallLeaf()->_name, "g1_wb_post") == 0 ))
          ) {
            call->dump();
            assert(false, "EA: unexpected CallLeaf");
          }
#endif
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777
          set_escape_state(arg->_idx, PointsToNode::ArgEscape);
          if (arg->is_AddP()) {
            //
            // The inline_native_clone() case when the arraycopy stub is called
            // after the allocation before Initialize and CheckCastPP nodes.
            //
            // Set AddP's base (Allocate) as not scalar replaceable since
            // pointer to the base (with offset) is passed as argument.
            //
            arg = get_addp_base(arg);
          }
          ptset.Clear();
          PointsTo(ptset, arg, phase);
          for( VectorSetI j(&ptset); j.test(); ++j ) {
            uint pt = j.elem;
            set_escape_state(pt, PointsToNode::ArgEscape);
          }
        }
      }
D
duke 已提交
1778
      break;
1779
    }
D
duke 已提交
1780 1781 1782 1783 1784 1785

    case Op_CallStaticJava:
    // For a static call, we know exactly what method is being called.
    // Use bytecode estimator to record the call's escape affects
    {
      ciMethod *meth = call->as_CallJava()->method();
1786 1787 1788
      BCEscapeAnalyzer *call_analyzer = (meth !=NULL) ? meth->get_bcea() : NULL;
      // fall-through if not a Java method or no analyzer information
      if (call_analyzer != NULL) {
D
duke 已提交
1789 1790
        const TypeTuple * d = call->tf()->domain();
        VectorSet ptset(Thread::current()->resource_area());
1791
        bool copy_dependencies = false;
D
duke 已提交
1792 1793 1794
        for (uint i = TypeFunc::Parms; i < d->cnt(); i++) {
          const Type* at = d->field_at(i);
          int k = i - TypeFunc::Parms;
1795
          Node *arg = call->in(i)->uncast();
D
duke 已提交
1796

1797 1798
          if (at->isa_oopptr() != NULL &&
              ptnode_adr(arg->_idx)->escape_state() < PointsToNode::ArgEscape) {
D
duke 已提交
1799

1800 1801 1802
            bool global_escapes = false;
            bool fields_escapes = false;
            if (!call_analyzer->is_arg_stack(k)) {
D
duke 已提交
1803
              // The argument global escapes, mark everything it could point to
1804 1805 1806 1807 1808 1809 1810 1811 1812 1813
              set_escape_state(arg->_idx, PointsToNode::GlobalEscape);
              global_escapes = true;
            } else {
              if (!call_analyzer->is_arg_local(k)) {
                // The argument itself doesn't escape, but any fields might
                fields_escapes = true;
              }
              set_escape_state(arg->_idx, PointsToNode::ArgEscape);
              copy_dependencies = true;
            }
D
duke 已提交
1814

1815 1816 1817 1818 1819 1820
            ptset.Clear();
            PointsTo(ptset, arg, phase);
            for( VectorSetI j(&ptset); j.test(); ++j ) {
              uint pt = j.elem;
              if (global_escapes) {
                //The argument global escapes, mark everything it could point to
D
duke 已提交
1821
                set_escape_state(pt, PointsToNode::GlobalEscape);
1822 1823 1824 1825 1826 1827
              } else {
                if (fields_escapes) {
                  // The argument itself doesn't escape, but any fields might
                  add_edge_from_fields(pt, _phantom_object, Type::OffsetBot);
                }
                set_escape_state(pt, PointsToNode::ArgEscape);
D
duke 已提交
1828 1829 1830 1831
              }
            }
          }
        }
1832
        if (copy_dependencies)
1833
          call_analyzer->copy_dependencies(_compile->dependencies());
D
duke 已提交
1834 1835 1836 1837 1838
        break;
      }
    }

    default:
1839 1840
    // Fall-through here if not a Java method or no analyzer information
    // or some other type of call, assume the worst case: all arguments
D
duke 已提交
1841 1842 1843 1844 1845 1846 1847 1848
    // globally escape.
    {
      // adjust escape state for  outgoing arguments
      const TypeTuple * d = call->tf()->domain();
      VectorSet ptset(Thread::current()->resource_area());
      for (uint i = TypeFunc::Parms; i < d->cnt(); i++) {
        const Type* at = d->field_at(i);
        if (at->isa_oopptr() != NULL) {
1849 1850
          Node *arg = call->in(i)->uncast();
          set_escape_state(arg->_idx, PointsToNode::GlobalEscape);
D
duke 已提交
1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
          ptset.Clear();
          PointsTo(ptset, arg, phase);
          for( VectorSetI j(&ptset); j.test(); ++j ) {
            uint pt = j.elem;
            set_escape_state(pt, PointsToNode::GlobalEscape);
          }
        }
      }
    }
  }
}
void ConnectionGraph::process_call_result(ProjNode *resproj, PhaseTransform *phase) {
1863 1864 1865
  CallNode   *call = resproj->in(0)->as_Call();
  uint    call_idx = call->_idx;
  uint resproj_idx = resproj->_idx;
D
duke 已提交
1866 1867 1868 1869 1870 1871 1872 1873 1874

  switch (call->Opcode()) {
    case Op_Allocate:
    {
      Node *k = call->in(AllocateNode::KlassNode);
      const TypeKlassPtr *kt;
      if (k->Opcode() == Op_LoadKlass) {
        kt = k->as_Load()->type()->isa_klassptr();
      } else {
1875
        // Also works for DecodeN(LoadNKlass).
D
duke 已提交
1876 1877 1878 1879 1880 1881
        kt = k->as_Type()->type()->isa_klassptr();
      }
      assert(kt != NULL, "TypeKlassPtr  required.");
      ciKlass* cik = kt->klass();
      ciInstanceKlass* ciik = cik->as_instance_klass();

1882 1883
      PointsToNode::EscapeState es;
      uint edge_to;
D
duke 已提交
1884
      if (cik->is_subclass_of(_compile->env()->Thread_klass()) || ciik->has_finalizer()) {
1885 1886
        es = PointsToNode::GlobalEscape;
        edge_to = _phantom_object; // Could not be worse
D
duke 已提交
1887
      } else {
1888
        es = PointsToNode::NoEscape;
1889
        edge_to = call_idx;
D
duke 已提交
1890
      }
1891 1892 1893
      set_escape_state(call_idx, es);
      add_pointsto_edge(resproj_idx, edge_to);
      _processed.set(resproj_idx);
D
duke 已提交
1894 1895 1896 1897 1898
      break;
    }

    case Op_AllocateArray:
    {
1899 1900 1901
      int length = call->in(AllocateNode::ALength)->find_int_con(-1);
      if (length < 0 || length > EliminateAllocationArraySizeLimit) {
        // Not scalar replaceable if the length is not constant or too big.
1902
        ptnode_adr(call_idx)->_scalar_replaceable = false;
1903
      }
1904 1905 1906
      set_escape_state(call_idx, PointsToNode::NoEscape);
      add_pointsto_edge(resproj_idx, call_idx);
      _processed.set(resproj_idx);
D
duke 已提交
1907 1908 1909 1910 1911 1912 1913
      break;
    }

    case Op_CallStaticJava:
    // For a static call, we know exactly what method is being called.
    // Use bytecode estimator to record whether the call's return value escapes
    {
1914
      bool done = true;
D
duke 已提交
1915 1916 1917 1918 1919 1920 1921 1922
      const TypeTuple *r = call->tf()->range();
      const Type* ret_type = NULL;

      if (r->cnt() > TypeFunc::Parms)
        ret_type = r->field_at(TypeFunc::Parms);

      // Note:  we use isa_ptr() instead of isa_oopptr()  here because the
      //        _multianewarray functions return a TypeRawPtr.
1923
      if (ret_type == NULL || ret_type->isa_ptr() == NULL) {
1924
        _processed.set(resproj_idx);
D
duke 已提交
1925
        break;  // doesn't return a pointer type
1926
      }
D
duke 已提交
1927
      ciMethod *meth = call->as_CallJava()->method();
1928
      const TypeTuple * d = call->tf()->domain();
D
duke 已提交
1929 1930
      if (meth == NULL) {
        // not a Java method, assume global escape
1931 1932
        set_escape_state(call_idx, PointsToNode::GlobalEscape);
        add_pointsto_edge(resproj_idx, _phantom_object);
D
duke 已提交
1933
      } else {
1934 1935
        BCEscapeAnalyzer *call_analyzer = meth->get_bcea();
        bool copy_dependencies = false;
D
duke 已提交
1936

1937 1938 1939 1940 1941
        if (call_analyzer->is_return_allocated()) {
          // Returns a newly allocated unescaped object, simply
          // update dependency information.
          // Mark it as NoEscape so that objects referenced by
          // it's fields will be marked as NoEscape at least.
1942 1943
          set_escape_state(call_idx, PointsToNode::NoEscape);
          add_pointsto_edge(resproj_idx, call_idx);
1944
          copy_dependencies = true;
1945
        } else if (call_analyzer->is_return_local()) {
D
duke 已提交
1946
          // determine whether any arguments are returned
1947
          set_escape_state(call_idx, PointsToNode::NoEscape);
1948
          bool ret_arg = false;
D
duke 已提交
1949 1950 1951 1952
          for (uint i = TypeFunc::Parms; i < d->cnt(); i++) {
            const Type* at = d->field_at(i);

            if (at->isa_oopptr() != NULL) {
1953
              Node *arg = call->in(i)->uncast();
D
duke 已提交
1954

1955
              if (call_analyzer->is_arg_returned(i - TypeFunc::Parms)) {
1956
                ret_arg = true;
1957
                PointsToNode *arg_esp = ptnode_adr(arg->_idx);
1958 1959 1960
                if (arg_esp->node_type() == PointsToNode::UnknownType)
                  done = false;
                else if (arg_esp->node_type() == PointsToNode::JavaObject)
1961
                  add_pointsto_edge(resproj_idx, arg->_idx);
D
duke 已提交
1962
                else
1963
                  add_deferred_edge(resproj_idx, arg->_idx);
D
duke 已提交
1964 1965 1966 1967
                arg_esp->_hidden_alias = true;
              }
            }
          }
1968 1969 1970 1971 1972
          if (done && !ret_arg) {
            // Returns unknown object.
            set_escape_state(call_idx, PointsToNode::GlobalEscape);
            add_pointsto_edge(resproj_idx, _phantom_object);
          }
1973
          copy_dependencies = true;
D
duke 已提交
1974
        } else {
1975 1976
          set_escape_state(call_idx, PointsToNode::GlobalEscape);
          add_pointsto_edge(resproj_idx, _phantom_object);
1977 1978 1979 1980
          for (uint i = TypeFunc::Parms; i < d->cnt(); i++) {
            const Type* at = d->field_at(i);
            if (at->isa_oopptr() != NULL) {
              Node *arg = call->in(i)->uncast();
1981
              PointsToNode *arg_esp = ptnode_adr(arg->_idx);
1982 1983 1984
              arg_esp->_hidden_alias = true;
            }
          }
D
duke 已提交
1985
        }
1986
        if (copy_dependencies)
1987
          call_analyzer->copy_dependencies(_compile->dependencies());
D
duke 已提交
1988
      }
1989
      if (done)
1990
        _processed.set(resproj_idx);
D
duke 已提交
1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
      break;
    }

    default:
    // Some other type of call, assume the worst case that the
    // returned value, if any, globally escapes.
    {
      const TypeTuple *r = call->tf()->range();
      if (r->cnt() > TypeFunc::Parms) {
        const Type* ret_type = r->field_at(TypeFunc::Parms);

        // Note:  we use isa_ptr() instead of isa_oopptr()  here because the
        //        _multianewarray functions return a TypeRawPtr.
        if (ret_type->isa_ptr() != NULL) {
2005 2006
          set_escape_state(call_idx, PointsToNode::GlobalEscape);
          add_pointsto_edge(resproj_idx, _phantom_object);
D
duke 已提交
2007 2008
        }
      }
2009
      _processed.set(resproj_idx);
D
duke 已提交
2010 2011 2012 2013
    }
  }
}

2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031
// Populate Connection Graph with Ideal nodes and create simple
// connection graph edges (do not need to check the node_type of inputs
// or to call PointsTo() to walk the connection graph).
void ConnectionGraph::record_for_escape_analysis(Node *n, PhaseTransform *phase) {
  if (_processed.test(n->_idx))
    return; // No need to redefine node's state.

  if (n->is_Call()) {
    // Arguments to allocation and locking don't escape.
    if (n->is_Allocate()) {
      add_node(n, PointsToNode::JavaObject, PointsToNode::UnknownEscape, true);
      record_for_optimizer(n);
    } else if (n->is_Lock() || n->is_Unlock()) {
      // Put Lock and Unlock nodes on IGVN worklist to process them during
      // the first IGVN optimization when escape information is still available.
      record_for_optimizer(n);
      _processed.set(n->_idx);
    } else {
2032
      // Don't mark as processed since call's arguments have to be processed.
2033
      PointsToNode::NodeType nt = PointsToNode::UnknownType;
2034
      PointsToNode::EscapeState es = PointsToNode::UnknownEscape;
2035 2036 2037

      // Check if a call returns an object.
      const TypeTuple *r = n->as_Call()->tf()->range();
2038 2039
      if (r->cnt() > TypeFunc::Parms &&
          r->field_at(TypeFunc::Parms)->isa_ptr() &&
2040
          n->as_Call()->proj_out(TypeFunc::Parms) != NULL) {
2041 2042 2043 2044 2045
        nt = PointsToNode::JavaObject;
        if (!n->is_CallStaticJava()) {
          // Since the called mathod is statically unknown assume
          // the worst case that the returned value globally escapes.
          es = PointsToNode::GlobalEscape;
2046
        }
D
duke 已提交
2047
      }
2048
      add_node(n, nt, es, false);
D
duke 已提交
2049
    }
2050
    return;
D
duke 已提交
2051 2052
  }

2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067
  // Using isa_ptr() instead of isa_oopptr() for LoadP and Phi because
  // ThreadLocal has RawPrt type.
  switch (n->Opcode()) {
    case Op_AddP:
    {
      add_node(n, PointsToNode::Field, PointsToNode::UnknownEscape, false);
      break;
    }
    case Op_CastX2P:
    { // "Unsafe" memory access.
      add_node(n, PointsToNode::JavaObject, PointsToNode::GlobalEscape, true);
      break;
    }
    case Op_CastPP:
    case Op_CheckCastPP:
2068 2069
    case Op_EncodeP:
    case Op_DecodeN:
2070 2071 2072
    {
      add_node(n, PointsToNode::LocalVar, PointsToNode::UnknownEscape, false);
      int ti = n->in(1)->_idx;
2073
      PointsToNode::NodeType nt = ptnode_adr(ti)->node_type();
2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092
      if (nt == PointsToNode::UnknownType) {
        _delayed_worklist.push(n); // Process it later.
        break;
      } else if (nt == PointsToNode::JavaObject) {
        add_pointsto_edge(n->_idx, ti);
      } else {
        add_deferred_edge(n->_idx, ti);
      }
      _processed.set(n->_idx);
      break;
    }
    case Op_ConP:
    {
      // assume all pointer constants globally escape except for null
      PointsToNode::EscapeState es;
      if (phase->type(n) == TypePtr::NULL_PTR)
        es = PointsToNode::NoEscape;
      else
        es = PointsToNode::GlobalEscape;
D
duke 已提交
2093

2094 2095 2096
      add_node(n, PointsToNode::JavaObject, es, true);
      break;
    }
2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
    case Op_ConN:
    {
      // assume all narrow oop constants globally escape except for null
      PointsToNode::EscapeState es;
      if (phase->type(n) == TypeNarrowOop::NULL_PTR)
        es = PointsToNode::NoEscape;
      else
        es = PointsToNode::GlobalEscape;

      add_node(n, PointsToNode::JavaObject, es, true);
      break;
    }
2109 2110 2111 2112 2113 2114
    case Op_CreateEx:
    {
      // assume that all exception objects globally escape
      add_node(n, PointsToNode::JavaObject, PointsToNode::GlobalEscape, true);
      break;
    }
2115
    case Op_LoadKlass:
2116
    case Op_LoadNKlass:
2117 2118 2119 2120 2121
    {
      add_node(n, PointsToNode::JavaObject, PointsToNode::GlobalEscape, true);
      break;
    }
    case Op_LoadP:
2122
    case Op_LoadN:
2123 2124
    {
      const Type *t = phase->type(n);
2125
      if (t->make_ptr() == NULL) {
2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147
        _processed.set(n->_idx);
        return;
      }
      add_node(n, PointsToNode::LocalVar, PointsToNode::UnknownEscape, false);
      break;
    }
    case Op_Parm:
    {
      _processed.set(n->_idx); // No need to redefine it state.
      uint con = n->as_Proj()->_con;
      if (con < TypeFunc::Parms)
        return;
      const Type *t = n->in(0)->as_Start()->_domain->field_at(con);
      if (t->isa_ptr() == NULL)
        return;
      // We have to assume all input parameters globally escape
      // (Note: passing 'false' since _processed is already set).
      add_node(n, PointsToNode::JavaObject, PointsToNode::GlobalEscape, false);
      break;
    }
    case Op_Phi:
    {
2148 2149 2150
      const Type *t = n->as_Phi()->type();
      if (t->make_ptr() == NULL) {
        // nothing to do if not an oop or narrow oop
2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163
        _processed.set(n->_idx);
        return;
      }
      add_node(n, PointsToNode::LocalVar, PointsToNode::UnknownEscape, false);
      uint i;
      for (i = 1; i < n->req() ; i++) {
        Node* in = n->in(i);
        if (in == NULL)
          continue;  // ignore NULL
        in = in->uncast();
        if (in->is_top() || in == n)
          continue;  // ignore top or inputs which go back this node
        int ti = in->_idx;
2164
        PointsToNode::NodeType nt = ptnode_adr(ti)->node_type();
2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180
        if (nt == PointsToNode::UnknownType) {
          break;
        } else if (nt == PointsToNode::JavaObject) {
          add_pointsto_edge(n->_idx, ti);
        } else {
          add_deferred_edge(n->_idx, ti);
        }
      }
      if (i >= n->req())
        _processed.set(n->_idx);
      else
        _delayed_worklist.push(n);
      break;
    }
    case Op_Proj:
    {
2181
      // we are only interested in the oop result projection from a call
2182
      if (n->as_Proj()->_con == TypeFunc::Parms && n->in(0)->is_Call() ) {
2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198
        const TypeTuple *r = n->in(0)->as_Call()->tf()->range();
        assert(r->cnt() > TypeFunc::Parms, "sanity");
        if (r->field_at(TypeFunc::Parms)->isa_ptr() != NULL) {
          add_node(n, PointsToNode::LocalVar, PointsToNode::UnknownEscape, false);
          int ti = n->in(0)->_idx;
          // The call may not be registered yet (since not all its inputs are registered)
          // if this is the projection from backbranch edge of Phi.
          if (ptnode_adr(ti)->node_type() != PointsToNode::UnknownType) {
            process_call_result(n->as_Proj(), phase);
          }
          if (!_processed.test(n->_idx)) {
            // The call's result may need to be processed later if the call
            // returns it's argument and the argument is not processed yet.
            _delayed_worklist.push(n);
          }
          break;
2199 2200
        }
      }
2201
      _processed.set(n->_idx);
2202 2203 2204 2205 2206 2207 2208 2209 2210
      break;
    }
    case Op_Return:
    {
      if( n->req() > TypeFunc::Parms &&
          phase->type(n->in(TypeFunc::Parms))->isa_oopptr() ) {
        // Treat Return value as LocalVar with GlobalEscape escape state.
        add_node(n, PointsToNode::LocalVar, PointsToNode::GlobalEscape, false);
        int ti = n->in(TypeFunc::Parms)->_idx;
2211
        PointsToNode::NodeType nt = ptnode_adr(ti)->node_type();
2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224
        if (nt == PointsToNode::UnknownType) {
          _delayed_worklist.push(n); // Process it later.
          break;
        } else if (nt == PointsToNode::JavaObject) {
          add_pointsto_edge(n->_idx, ti);
        } else {
          add_deferred_edge(n->_idx, ti);
        }
      }
      _processed.set(n->_idx);
      break;
    }
    case Op_StoreP:
2225
    case Op_StoreN:
2226 2227
    {
      const Type *adr_type = phase->type(n->in(MemNode::Address));
2228
      adr_type = adr_type->make_ptr();
2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249
      if (adr_type->isa_oopptr()) {
        add_node(n, PointsToNode::UnknownType, PointsToNode::UnknownEscape, false);
      } else {
        Node* adr = n->in(MemNode::Address);
        if (adr->is_AddP() && phase->type(adr) == TypeRawPtr::NOTNULL &&
            adr->in(AddPNode::Address)->is_Proj() &&
            adr->in(AddPNode::Address)->in(0)->is_Allocate()) {
          add_node(n, PointsToNode::UnknownType, PointsToNode::UnknownEscape, false);
          // We are computing a raw address for a store captured
          // by an Initialize compute an appropriate address type.
          int offs = (int)phase->find_intptr_t_con(adr->in(AddPNode::Offset), Type::OffsetBot);
          assert(offs != Type::OffsetBot, "offset must be a constant");
        } else {
          _processed.set(n->_idx);
          return;
        }
      }
      break;
    }
    case Op_StorePConditional:
    case Op_CompareAndSwapP:
2250
    case Op_CompareAndSwapN:
2251 2252
    {
      const Type *adr_type = phase->type(n->in(MemNode::Address));
2253
      adr_type = adr_type->make_ptr();
2254 2255 2256 2257 2258 2259 2260 2261
      if (adr_type->isa_oopptr()) {
        add_node(n, PointsToNode::UnknownType, PointsToNode::UnknownEscape, false);
      } else {
        _processed.set(n->_idx);
        return;
      }
      break;
    }
2262 2263 2264 2265 2266 2267 2268 2269 2270
    case Op_AryEq:
    case Op_StrComp:
    case Op_StrEquals:
    case Op_StrIndexOf:
    {
      // char[] arrays passed to string intrinsics are not scalar replaceable.
      add_node(n, PointsToNode::UnknownType, PointsToNode::UnknownEscape, false);
      break;
    }
2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281
    case Op_ThreadLocal:
    {
      add_node(n, PointsToNode::JavaObject, PointsToNode::ArgEscape, true);
      break;
    }
    default:
      ;
      // nothing to do
  }
  return;
}
D
duke 已提交
2282

2283
void ConnectionGraph::build_connection_graph(Node *n, PhaseTransform *phase) {
2284
  uint n_idx = n->_idx;
2285
  assert(ptnode_adr(n_idx)->_node != NULL, "node should be registered");
2286

2287 2288
  // Don't set processed bit for AddP, LoadP, StoreP since
  // they may need more then one pass to process.
2289
  if (_processed.test(n_idx))
2290 2291
    return; // No need to redefine node's state.

D
duke 已提交
2292 2293 2294
  if (n->is_Call()) {
    CallNode *call = n->as_Call();
    process_call_arguments(call, phase);
2295
    _processed.set(n_idx);
D
duke 已提交
2296 2297 2298
    return;
  }

2299
  switch (n->Opcode()) {
D
duke 已提交
2300 2301
    case Op_AddP:
    {
2302 2303
      Node *base = get_addp_base(n);
      // Create a field edge to this node from everything base could point to.
D
duke 已提交
2304 2305 2306 2307
      VectorSet ptset(Thread::current()->resource_area());
      PointsTo(ptset, base, phase);
      for( VectorSetI i(&ptset); i.test(); ++i ) {
        uint pt = i.elem;
2308
        add_field_edge(pt, n_idx, address_offset(n, phase));
D
duke 已提交
2309 2310 2311
      }
      break;
    }
2312
    case Op_CastX2P:
D
duke 已提交
2313
    {
2314 2315 2316 2317 2318
      assert(false, "Op_CastX2P");
      break;
    }
    case Op_CastPP:
    case Op_CheckCastPP:
2319 2320
    case Op_EncodeP:
    case Op_DecodeN:
2321 2322
    {
      int ti = n->in(1)->_idx;
2323
      assert(ptnode_adr(ti)->node_type() != PointsToNode::UnknownType, "all nodes should be registered");
2324 2325
      if (ptnode_adr(ti)->node_type() == PointsToNode::JavaObject) {
        add_pointsto_edge(n_idx, ti);
D
duke 已提交
2326
      } else {
2327
        add_deferred_edge(n_idx, ti);
D
duke 已提交
2328
      }
2329
      _processed.set(n_idx);
D
duke 已提交
2330 2331
      break;
    }
2332
    case Op_ConP:
D
duke 已提交
2333
    {
2334
      assert(false, "Op_ConP");
D
duke 已提交
2335 2336
      break;
    }
2337 2338 2339 2340 2341
    case Op_ConN:
    {
      assert(false, "Op_ConN");
      break;
    }
D
duke 已提交
2342 2343
    case Op_CreateEx:
    {
2344
      assert(false, "Op_CreateEx");
D
duke 已提交
2345 2346 2347
      break;
    }
    case Op_LoadKlass:
2348
    case Op_LoadNKlass:
D
duke 已提交
2349
    {
2350
      assert(false, "Op_LoadKlass");
D
duke 已提交
2351 2352 2353
      break;
    }
    case Op_LoadP:
2354
    case Op_LoadN:
D
duke 已提交
2355 2356
    {
      const Type *t = phase->type(n);
2357
#ifdef ASSERT
2358
      if (t->make_ptr() == NULL)
2359 2360
        assert(false, "Op_LoadP");
#endif
D
duke 已提交
2361

2362 2363 2364 2365 2366 2367 2368
      Node* adr = n->in(MemNode::Address)->uncast();
      Node* adr_base;
      if (adr->is_AddP()) {
        adr_base = get_addp_base(adr);
      } else {
        adr_base = adr;
      }
D
duke 已提交
2369

2370 2371
      // For everything "adr_base" could point to, create a deferred edge from
      // this node to each field with the same offset.
D
duke 已提交
2372 2373
      VectorSet ptset(Thread::current()->resource_area());
      PointsTo(ptset, adr_base, phase);
2374
      int offset = address_offset(adr, phase);
D
duke 已提交
2375 2376
      for( VectorSetI i(&ptset); i.test(); ++i ) {
        uint pt = i.elem;
2377
        add_deferred_edge_to_fields(n_idx, pt, offset);
D
duke 已提交
2378 2379 2380
      }
      break;
    }
2381 2382 2383 2384 2385 2386 2387 2388
    case Op_Parm:
    {
      assert(false, "Op_Parm");
      break;
    }
    case Op_Phi:
    {
#ifdef ASSERT
2389 2390
      const Type *t = n->as_Phi()->type();
      if (t->make_ptr() == NULL)
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
        assert(false, "Op_Phi");
#endif
      for (uint i = 1; i < n->req() ; i++) {
        Node* in = n->in(i);
        if (in == NULL)
          continue;  // ignore NULL
        in = in->uncast();
        if (in->is_top() || in == n)
          continue;  // ignore top or inputs which go back this node
        int ti = in->_idx;
2401 2402 2403
        PointsToNode::NodeType nt = ptnode_adr(ti)->node_type();
        assert(nt != PointsToNode::UnknownType, "all nodes should be known");
        if (nt == PointsToNode::JavaObject) {
2404
          add_pointsto_edge(n_idx, ti);
2405
        } else {
2406
          add_deferred_edge(n_idx, ti);
2407 2408
        }
      }
2409
      _processed.set(n_idx);
2410 2411 2412 2413
      break;
    }
    case Op_Proj:
    {
2414
      // we are only interested in the oop result projection from a call
2415
      if (n->as_Proj()->_con == TypeFunc::Parms && n->in(0)->is_Call() ) {
2416 2417 2418 2419 2420 2421 2422 2423 2424
        assert(ptnode_adr(n->in(0)->_idx)->node_type() != PointsToNode::UnknownType,
               "all nodes should be registered");
        const TypeTuple *r = n->in(0)->as_Call()->tf()->range();
        assert(r->cnt() > TypeFunc::Parms, "sanity");
        if (r->field_at(TypeFunc::Parms)->isa_ptr() != NULL) {
          process_call_result(n->as_Proj(), phase);
          assert(_processed.test(n_idx), "all call results should be processed");
          break;
        }
2425
      }
2426
      assert(false, "Op_Proj");
2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437
      break;
    }
    case Op_Return:
    {
#ifdef ASSERT
      if( n->req() <= TypeFunc::Parms ||
          !phase->type(n->in(TypeFunc::Parms))->isa_oopptr() ) {
        assert(false, "Op_Return");
      }
#endif
      int ti = n->in(TypeFunc::Parms)->_idx;
2438
      assert(ptnode_adr(ti)->node_type() != PointsToNode::UnknownType, "node should be registered");
2439 2440
      if (ptnode_adr(ti)->node_type() == PointsToNode::JavaObject) {
        add_pointsto_edge(n_idx, ti);
2441
      } else {
2442
        add_deferred_edge(n_idx, ti);
2443
      }
2444
      _processed.set(n_idx);
2445 2446
      break;
    }
D
duke 已提交
2447
    case Op_StoreP:
2448
    case Op_StoreN:
D
duke 已提交
2449 2450
    case Op_StorePConditional:
    case Op_CompareAndSwapP:
2451
    case Op_CompareAndSwapN:
D
duke 已提交
2452 2453
    {
      Node *adr = n->in(MemNode::Address);
2454
      const Type *adr_type = phase->type(adr)->make_ptr();
2455
#ifdef ASSERT
D
duke 已提交
2456
      if (!adr_type->isa_oopptr())
2457 2458
        assert(phase->type(adr) == TypeRawPtr::NOTNULL, "Op_StoreP");
#endif
D
duke 已提交
2459

2460 2461 2462 2463 2464
      assert(adr->is_AddP(), "expecting an AddP");
      Node *adr_base = get_addp_base(adr);
      Node *val = n->in(MemNode::ValueIn)->uncast();
      // For everything "adr_base" could point to, create a deferred edge
      // to "val" from each field with the same offset.
D
duke 已提交
2465 2466 2467 2468
      VectorSet ptset(Thread::current()->resource_area());
      PointsTo(ptset, adr_base, phase);
      for( VectorSetI i(&ptset); i.test(); ++i ) {
        uint pt = i.elem;
2469
        add_edge_from_fields(pt, val->_idx, address_offset(adr, phase));
D
duke 已提交
2470 2471 2472
      }
      break;
    }
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
    case Op_AryEq:
    case Op_StrComp:
    case Op_StrEquals:
    case Op_StrIndexOf:
    {
      // char[] arrays passed to string intrinsic do not escape but
      // they are not scalar replaceable. Adjust escape state for them.
      // Start from in(2) edge since in(1) is memory edge.
      for (uint i = 2; i < n->req(); i++) {
        Node* adr = n->in(i)->uncast();
        const Type *at = phase->type(adr);
        if (!adr->is_top() && at->isa_ptr()) {
          assert(at == Type::TOP || at == TypePtr::NULL_PTR ||
                 at->isa_ptr() != NULL, "expecting an Ptr");
          if (adr->is_AddP()) {
            adr = get_addp_base(adr);
          }
          // Mark as ArgEscape everything "adr" could point to.
          set_escape_state(adr->_idx, PointsToNode::ArgEscape);
        }
      }
      _processed.set(n_idx);
      break;
    }
2497
    case Op_ThreadLocal:
D
duke 已提交
2498
    {
2499
      assert(false, "Op_ThreadLocal");
D
duke 已提交
2500 2501 2502
      break;
    }
    default:
2503 2504
      // This method should be called only for EA specific nodes.
      ShouldNotReachHere();
D
duke 已提交
2505 2506 2507 2508 2509 2510 2511 2512
  }
}

#ifndef PRODUCT
void ConnectionGraph::dump() {
  PhaseGVN  *igvn = _compile->initial_gvn();
  bool first = true;

2513
  uint size = nodes_size();
2514
  for (uint ni = 0; ni < size; ni++) {
2515
    PointsToNode *ptn = ptnode_adr(ni);
2516 2517 2518
    PointsToNode::NodeType ptn_type = ptn->node_type();

    if (ptn_type != PointsToNode::JavaObject || ptn->_node == NULL)
D
duke 已提交
2519
      continue;
2520 2521 2522 2523 2524
    PointsToNode::EscapeState es = escape_state(ptn->_node, igvn);
    if (ptn->_node->is_Allocate() && (es == PointsToNode::NoEscape || Verbose)) {
      if (first) {
        tty->cr();
        tty->print("======== Connection graph for ");
2525
        _compile->method()->print_short_name();
2526 2527 2528 2529 2530 2531 2532
        tty->cr();
        first = false;
      }
      tty->print("%6d ", ni);
      ptn->dump();
      // Print all locals which reference this allocation
      for (uint li = ni; li < size; li++) {
2533
        PointsToNode *ptn_loc = ptnode_adr(li);
2534 2535 2536
        PointsToNode::NodeType ptn_loc_type = ptn_loc->node_type();
        if ( ptn_loc_type == PointsToNode::LocalVar && ptn_loc->_node != NULL &&
             ptn_loc->edge_count() == 1 && ptn_loc->edge_target(0) == ni ) {
2537
          ptnode_adr(li)->dump(false);
2538 2539 2540 2541 2542 2543
        }
      }
      if (Verbose) {
        // Print all fields which reference this allocation
        for (uint i = 0; i < ptn->edge_count(); i++) {
          uint ei = ptn->edge_target(i);
2544
          ptnode_adr(ei)->dump(false);
D
duke 已提交
2545 2546
        }
      }
2547
      tty->cr();
D
duke 已提交
2548 2549 2550 2551
    }
  }
}
#endif