hotspot/src/share/vm/opto/escape.hpp
author kvn
Fri, 01 Aug 2008 10:06:45 -0700
changeset 1055 f4fb9fb08038
parent 961 7fb3b13d4205
child 4470 1e6edcab3109
permissions -rw-r--r--
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type") Summary: fixed few addP node type and narrow oop type problems. Reviewed-by: rasbold, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 348
diff changeset
     2
 * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// Adaptation for C2 of the escape analysis algorithm described in:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    28
// [Choi99] Jong-Deok Shoi, Manish Gupta, Mauricio Seffano,
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    29
//          Vugranam C. Sreedhar, Sam Midkiff,
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    30
//          "Escape Analysis for Java", Procedings of ACM SIGPLAN
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    31
//          OOPSLA  Conference, November 1, 1999
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// The flow-insensitive analysis described in the paper has been implemented.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    35
// The analysis requires construction of a "connection graph" (CG) for
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    36
// the method being analyzed.  The nodes of the connection graph are:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//     -  Java objects (JO)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//     -  Local variables (LV)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//     -  Fields of an object (OF),  these also include array elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// The CG contains 3 types of edges:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    44
//   -  PointsTo  (-P>)    {LV, OF} to JO
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    45
//   -  Deferred  (-D>)    from {LV, OF} to {LV, OF}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//   -  Field     (-F>)    from JO to OF
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// The following  utility functions is used by the algorithm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    50
//   PointsTo(n) - n is any CG node, it returns the set of JO that n could
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    51
//                 point to.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    53
// The algorithm describes how to construct the connection graph
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    54
// in the following 4 cases:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
//          Case                  Edges Created
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    58
// (1)   p   = new T()              LV -P> JO
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    59
// (2)   p   = q                    LV -D> LV
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    60
// (3)   p.f = q                    JO -F> OF,  OF -D> LV
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    61
// (4)   p   = q.f                  JO -F> OF,  LV -D> OF
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    63
// In all these cases, p and q are local variables.  For static field
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    64
// references, we can construct a local variable containing a reference
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    65
// to the static memory.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// C2 does not have local variables.  However for the purposes of constructing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// the connection graph, the following IR nodes are treated as local variables:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
//     Phi    (pointer values)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
//     LoadP
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    71
//     Proj#5 (value returned from callnodes including allocations)
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    72
//     CheckCastPP, CastPP
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    74
// The LoadP, Proj and CheckCastPP behave like variables assigned to only once.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    75
// Only a Phi can have multiple assignments.  Each input to a Phi is treated
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// as an assignment to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
//
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    78
// The following node types are JavaObject:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
//     top()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
//     Allocate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
//     AllocateArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
//     Parm  (for incoming arguments)
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    84
//     CastX2P ("unsafe" operations)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
//     CreateEx
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
//     ConP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
//     LoadKlass
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    88
//     ThreadLocal
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// AddP nodes are fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// After building the graph, a pass is made over the nodes, deleting deferred
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// nodes and copying the edges from the target of the deferred edge to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// source.  This results in a graph with no deferred edges, only:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
//    LV -P> JO
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
    97
//    OF -P> JO (the object whose oop is stored in the field)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
//    JO -F> OF
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// Then, for each node which is GlobalEscape, anything it could point to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// is marked GlobalEscape.  Finally, for any node marked ArgEscape, anything
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
// it could point to is marked ArgEscape.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
class  Compile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
class  Node;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
class  CallNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
class  PhiNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
class  PhaseTransform;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
class  Type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
class  TypePtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
class  VectorSet;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
class PointsToNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
friend class ConnectionGraph;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  typedef enum {
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   118
    UnknownType = 0,
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   119
    JavaObject  = 1,
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   120
    LocalVar    = 2,
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   121
    Field       = 3
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  } NodeType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  typedef enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    UnknownEscape = 0,
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   126
    NoEscape      = 1, // A scalar replaceable object with unique type.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   127
    ArgEscape     = 2, // An object passed as argument or referenced by
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   128
                       // argument (and not globally escape during call).
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   129
    GlobalEscape  = 3  // An object escapes the method and thread.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  } EscapeState;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  typedef enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    UnknownEdge   = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    PointsToEdge  = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    DeferredEdge  = 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    FieldEdge     = 3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  } EdgeType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    EdgeMask = 3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    EdgeShift = 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    INITIAL_EDGE_COUNT = 4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  NodeType             _type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  EscapeState          _escape;
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   149
  GrowableArray<uint>* _edges;   // outgoing edges
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
public:
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   152
  Node* _node;              // Ideal node corresponding to this PointsTo node.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   153
  int   _offset;            // Object fields offsets.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   154
  bool  _scalar_replaceable;// Not escaped object could be replaced with scalar
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   155
  bool  _hidden_alias;      // This node is an argument to a function.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   156
                            // which may return it creating a hidden alias.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   158
  PointsToNode():
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   159
    _type(UnknownType),
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   160
    _escape(UnknownEscape),
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   161
    _edges(NULL),
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   162
    _node(NULL),
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   163
    _offset(-1),
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   164
    _scalar_replaceable(true),
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   165
    _hidden_alias(false) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  EscapeState escape_state() const { return _escape; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  NodeType node_type() const { return _type;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  int offset() { return _offset;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void set_offset(int offs) { _offset = offs;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  void set_escape_state(EscapeState state) { _escape = state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void set_node_type(NodeType ntype) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    assert(_type == UnknownType || _type == ntype, "Can't change node type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    _type = ntype;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // count of outgoing edges
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  uint edge_count() const { return (_edges == NULL) ? 0 : _edges->length(); }
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   181
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // node index of target of outgoing edge "e"
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   183
  uint edge_target(uint e) const {
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   184
    assert(_edges != NULL, "valid edge index");
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   185
    return (_edges->at(e) >> EdgeShift);
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   186
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // type of outgoing edge "e"
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   188
  EdgeType edge_type(uint e) const {
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   189
    assert(_edges != NULL, "valid edge index");
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   190
    return (EdgeType) (_edges->at(e) & EdgeMask);
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   191
  }
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   192
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // add a edge of the specified type pointing to the specified target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  void add_edge(uint targIdx, EdgeType et);
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   195
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // remove an edge of the specified type pointing to the specified target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  void remove_edge(uint targIdx, EdgeType et);
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   198
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#ifndef PRODUCT
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 953
diff changeset
   200
  void dump(bool print_state=true) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
class ConnectionGraph: public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
private:
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   207
  GrowableArray<PointsToNode>  _nodes; // Connection graph nodes indexed
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   208
                                       // by ideal node index.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   210
  Unique_Node_List  _delayed_worklist; // Nodes to be processed before
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   211
                                       // the call build_connection_graph().
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   212
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   213
  VectorSet                _processed; // Records which nodes have been
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   214
                                       // processed.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   216
  bool                    _collecting; // Indicates whether escape information
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   217
                                       // is still being collected. If false,
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   218
                                       // no new nodes will be processed.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   219
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   220
  uint                _phantom_object; // Index of globally escaping object
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   221
                                       // that pointer values loaded from
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   222
                                       // a field which has not been set
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   223
                                       // are assumed to point to.
961
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 953
diff changeset
   224
  uint                      _oop_null; // ConP(#NULL)
7fb3b13d4205 6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents: 953
diff changeset
   225
  uint                     _noop_null; // ConN(#NULL)
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   226
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   227
  Compile *                  _compile; // Compile object for current compilation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   229
  // Address of an element in _nodes.  Used when the element is to be modified
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   230
  PointsToNode *ptnode_adr(uint idx) const {
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   231
    // There should be no new ideal nodes during ConnectionGraph build,
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   232
    // growableArray::adr_at() will throw assert otherwise.
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   233
    return _nodes.adr_at(idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   235
  uint nodes_size() const { return _nodes.length(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   237
  // Add node to ConnectionGraph.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   238
  void add_node(Node *n, PointsToNode::NodeType nt, PointsToNode::EscapeState es, bool done);
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   239
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // offset of a field reference
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   241
  int address_offset(Node* adr, PhaseTransform *phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // compute the escape state for arguments to a call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  void process_call_arguments(CallNode *call, PhaseTransform *phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // compute the escape state for the return value of a call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  void process_call_result(ProjNode *resproj, PhaseTransform *phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   249
  // Populate Connection Graph with Ideal nodes.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   250
  void record_for_escape_analysis(Node *n, PhaseTransform *phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   252
  // Build Connection Graph and set nodes escape state.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   253
  void build_connection_graph(Node *n, PhaseTransform *phase);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // walk the connection graph starting at the node corresponding to "n" and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // add the index of everything it could point to, to "ptset".  This may cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // Phi's encountered to get (re)processed  (which requires "phase".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  void PointsTo(VectorSet &ptset, Node * n, PhaseTransform *phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  //  Edge manipulation.  The "from_i" and "to_i" arguments are the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  //  node indices of the source and destination of the edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  void add_pointsto_edge(uint from_i, uint to_i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  void add_deferred_edge(uint from_i, uint to_i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void add_field_edge(uint from_i, uint to_i, int offs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // Add an edge to node given by "to_i" from any field of adr_i whose offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // matches "offset"  A deferred edge is added if to_i is a LocalVar, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // a pointsto edge is added if it is a JavaObject
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  void add_edge_from_fields(uint adr, uint to_i, int offs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   272
  // Add a deferred  edge from node given by "from_i" to any field
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   273
  // of adr_i whose offset matches "offset"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  void add_deferred_edge_to_fields(uint from_i, uint adr, int offs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // Remove outgoing deferred edges from the node referenced by "ni".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // Any outgoing edges from the target of the deferred edge are copied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // to "ni".
348
905c4cbf5d6a 6681577: PIT: some VM tests fails with -XX:+AggressiveOpts in 6u5p b01
kvn
parents: 238
diff changeset
   280
  void remove_deferred(uint ni, GrowableArray<uint>* deferred_edges, VectorSet* visited);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  Node_Array _node_map; // used for bookeeping during type splitting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
                        // Used for the following purposes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                        // Memory Phi    - most recent unique Phi split out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                        //                 from this Phi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
                        // MemNode       - new memory input for this node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                        // ChecCastPP    - allocation that this is a cast of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                        // allocation    - CheckCastPP of the allocation
1055
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 961
diff changeset
   289
  bool split_AddP(Node *addp, Node *base,  PhaseGVN  *igvn);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  PhiNode *create_split_phi(PhiNode *orig_phi, int alias_idx, GrowableArray<PhiNode *>  &orig_phi_worklist, PhaseGVN  *igvn, bool &new_created);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  PhiNode *split_memory_phi(PhiNode *orig_phi, int alias_idx, GrowableArray<PhiNode *>  &orig_phi_worklist, PhaseGVN  *igvn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  Node *find_mem(Node *mem, int alias_idx, PhaseGVN  *igvn);
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   293
  Node *find_inst_mem(Node *mem, int alias_idx,GrowableArray<PhiNode *>  &orig_phi_worklist,  PhaseGVN  *igvn);
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   294
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // Propagate unique types created for unescaped allocated objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // through the graph
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  void split_unique_types(GrowableArray<Node *>  &alloc_worklist);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // manage entries in _node_map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void  set_map(int idx, Node *n)        { _node_map.map(idx, n); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  void  set_map_phi(int idx, PhiNode *p) { _node_map.map(idx, (Node *) p); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  Node *get_map(int idx)                 { return _node_map[idx]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  PhiNode *get_map_phi(int idx) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    Node *phi = _node_map[idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    return (phi == NULL) ? NULL : phi->as_Phi();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // Notify optimizer that a node has been modified
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // Node:  This assumes that escape analysis is run before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  //        PhaseIterGVN creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  void record_for_optimizer(Node *n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    _compile->record_for_igvn(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  // Set the escape state of a node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  void set_escape_state(uint ni, PointsToNode::EscapeState es);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  ConnectionGraph(Compile *C);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   321
  // Check for non-escaping candidates
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   322
  static bool has_candidates(Compile *C);
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   323
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   324
  // Compute the escape information
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   325
  bool compute_escape();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // escape state of a node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  PointsToNode::EscapeState escape_state(Node *n, PhaseTransform *phase);
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   329
  // other information we have collected
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   330
  bool is_scalar_replaceable(Node *n) {
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   331
    if (_collecting || (n->_idx >= nodes_size()))
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   332
      return false;
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   333
    PointsToNode* ptn = ptnode_adr(n->_idx);
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   334
    return ptn->escape_state() == PointsToNode::NoEscape && ptn->_scalar_replaceable;
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 1
diff changeset
   335
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  bool hidden_alias(Node *n) {
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   338
    if (_collecting || (n->_idx >= nodes_size()))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
      return true;
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   340
    PointsToNode* ptn = ptnode_adr(n->_idx);
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 348
diff changeset
   341
    return (ptn->escape_state() != PointsToNode::NoEscape) || ptn->_hidden_alias;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  void dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
};