src/share/vm/opto/cfgnode.hpp

Fri, 14 Mar 2008 15:26:33 -0700

author
kvn
date
Fri, 14 Mar 2008 15:26:33 -0700
changeset 500
99269dbf4ba8
parent 499
b8f5ba577b02
child 509
2a9af0b9cb1c
permissions
-rw-r--r--

6674588: (Escape Analysis) Improve Escape Analysis code
Summary: Current EA code has several problems which have to be fixed.
Reviewed-by: jrose, sgoldman

     1 /*
     2  * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
    21  * have any questions.
    22  *
    23  */
    25 // Portions of code courtesy of Clifford Click
    27 // Optimization - Graph Style
    29 class Matcher;
    30 class Node;
    31 class   RegionNode;
    32 class   TypeNode;
    33 class     PhiNode;
    34 class   GotoNode;
    35 class   MultiNode;
    36 class     MultiBranchNode;
    37 class       IfNode;
    38 class       PCTableNode;
    39 class         JumpNode;
    40 class         CatchNode;
    41 class       NeverBranchNode;
    42 class   ProjNode;
    43 class     CProjNode;
    44 class       IfTrueNode;
    45 class       IfFalseNode;
    46 class       CatchProjNode;
    47 class     JProjNode;
    48 class       JumpProjNode;
    49 class     SCMemProjNode;
    50 class PhaseIdealLoop;
    52 //------------------------------RegionNode-------------------------------------
    53 // The class of RegionNodes, which can be mapped to basic blocks in the
    54 // program.  Their inputs point to Control sources.  PhiNodes (described
    55 // below) have an input point to a RegionNode.  Merged data inputs to PhiNodes
    56 // correspond 1-to-1 with RegionNode inputs.  The zero input of a PhiNode is
    57 // the RegionNode, and the zero input of the RegionNode is itself.
    58 class RegionNode : public Node {
    59 public:
    60   // Node layout (parallels PhiNode):
    61   enum { Region,                // Generally points to self.
    62          Control                // Control arcs are [1..len)
    63   };
    65   RegionNode( uint required ) : Node(required) {
    66     init_class_id(Class_Region);
    67     init_req(0,this);
    68   }
    70   Node* is_copy() const {
    71     const Node* r = _in[Region];
    72     if (r == NULL)
    73       return nonnull_req();
    74     return NULL;  // not a copy!
    75   }
    76   PhiNode* has_phi() const;        // returns an arbitrary phi user, or NULL
    77   PhiNode* has_unique_phi() const; // returns the unique phi user, or NULL
    78   // Is this region node unreachable from root?
    79   bool is_unreachable_region(PhaseGVN *phase) const;
    80   virtual int Opcode() const;
    81   virtual bool pinned() const { return (const Node *)in(0) == this; }
    82   virtual bool  is_CFG   () const { return true; }
    83   virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
    84   virtual bool depends_only_on_test() const { return false; }
    85   virtual const Type *bottom_type() const { return Type::CONTROL; }
    86   virtual const Type *Value( PhaseTransform *phase ) const;
    87   virtual Node *Identity( PhaseTransform *phase );
    88   virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
    89   virtual const RegMask &out_RegMask() const;
    90 };
    92 //------------------------------JProjNode--------------------------------------
    93 // jump projection for node that produces multiple control-flow paths
    94 class JProjNode : public ProjNode {
    95  public:
    96   JProjNode( Node* ctrl, uint idx ) : ProjNode(ctrl,idx) {}
    97   virtual int Opcode() const;
    98   virtual bool  is_CFG() const { return true; }
    99   virtual uint  hash() const { return NO_HASH; }  // CFG nodes do not hash
   100   virtual const Node* is_block_proj() const { return in(0); }
   101   virtual const RegMask& out_RegMask() const;
   102   virtual uint  ideal_reg() const { return 0; }
   103 };
   105 //------------------------------PhiNode----------------------------------------
   106 // PhiNodes merge values from different Control paths.  Slot 0 points to the
   107 // controlling RegionNode.  Other slots map 1-for-1 with incoming control flow
   108 // paths to the RegionNode.  For speed reasons (to avoid another pass) we
   109 // can turn PhiNodes into copys in-place by NULL'ing out their RegionNode
   110 // input in slot 0.
   111 class PhiNode : public TypeNode {
   112   const TypePtr* const _adr_type; // non-null only for Type::MEMORY nodes.
   113   const int _inst_id;     // Instance id of the memory slice.
   114   const int _inst_index;  // Alias index of the instance memory slice.
   115   // Array elements references have the same alias_idx but different offset.
   116   const int _inst_offset; // Offset of the instance memory slice.
   117   // Size is bigger to hold the _adr_type field.
   118   virtual uint hash() const;    // Check the type
   119   virtual uint cmp( const Node &n ) const;
   120   virtual uint size_of() const { return sizeof(*this); }
   122   // Determine if CMoveNode::is_cmove_id can be used at this join point.
   123   Node* is_cmove_id(PhaseTransform* phase, int true_path);
   125 public:
   126   // Node layout (parallels RegionNode):
   127   enum { Region,                // Control input is the Phi's region.
   128          Input                  // Input values are [1..len)
   129   };
   131   PhiNode( Node *r, const Type *t, const TypePtr* at = NULL,
   132            const int iid = TypeOopPtr::UNKNOWN_INSTANCE,
   133            const int iidx = Compile::AliasIdxTop,
   134            const int ioffs = Type::OffsetTop )
   135     : TypeNode(t,r->req()),
   136       _adr_type(at),
   137       _inst_id(iid),
   138       _inst_index(iidx),
   139       _inst_offset(ioffs)
   140   {
   141     init_class_id(Class_Phi);
   142     init_req(0, r);
   143     verify_adr_type();
   144   }
   145   // create a new phi with in edges matching r and set (initially) to x
   146   static PhiNode* make( Node* r, Node* x );
   147   // extra type arguments override the new phi's bottom_type and adr_type
   148   static PhiNode* make( Node* r, Node* x, const Type *t, const TypePtr* at = NULL );
   149   // create a new phi with narrowed memory type
   150   PhiNode* slice_memory(const TypePtr* adr_type) const;
   151   // like make(r, x), but does not initialize the in edges to x
   152   static PhiNode* make_blank( Node* r, Node* x );
   154   // Accessors
   155   RegionNode* region() const { Node* r = in(Region); assert(!r || r->is_Region(), ""); return (RegionNode*)r; }
   157   Node* is_copy() const {
   158     // The node is a real phi if _in[0] is a Region node.
   159     DEBUG_ONLY(const Node* r = _in[Region];)
   160     assert(r != NULL && r->is_Region(), "Not valid control");
   161     return NULL;  // not a copy!
   162   }
   164   // Determine a unique non-trivial input, if any.
   165   // Ignore casts if it helps.  Return NULL on failure.
   166   Node* unique_input(PhaseTransform *phase);
   168   // Check for a simple dead loop.
   169   enum LoopSafety { Safe = 0, Unsafe, UnsafeLoop };
   170   LoopSafety simple_data_loop_check(Node *in) const;
   171   // Is it unsafe data loop? It becomes a dead loop if this phi node removed.
   172   bool is_unsafe_data_reference(Node *in) const;
   173   int  is_diamond_phi() const;
   174   virtual int Opcode() const;
   175   virtual bool pinned() const { return in(0) != 0; }
   176   virtual const TypePtr *adr_type() const { verify_adr_type(true); return _adr_type; }
   178   const int inst_id()     const { return _inst_id; }
   179   const int inst_index()  const { return _inst_index; }
   180   const int inst_offset() const { return _inst_offset; }
   181   bool is_same_inst_field(const Type* tp, int id, int index, int offset) {
   182     return type()->basic_type() == tp->basic_type() &&
   183            inst_id()     == id     &&
   184            inst_index()  == index  &&
   185            inst_offset() == offset &&
   186            type()->higher_equal(tp);
   187   }
   189   virtual const Type *Value( PhaseTransform *phase ) const;
   190   virtual Node *Identity( PhaseTransform *phase );
   191   virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
   192   virtual const RegMask &out_RegMask() const;
   193   virtual const RegMask &in_RegMask(uint) const;
   194 #ifndef PRODUCT
   195   virtual void dump_spec(outputStream *st) const;
   196 #endif
   197 #ifdef ASSERT
   198   void verify_adr_type(VectorSet& visited, const TypePtr* at) const;
   199   void verify_adr_type(bool recursive = false) const;
   200 #else //ASSERT
   201   void verify_adr_type(bool recursive = false) const {}
   202 #endif //ASSERT
   203 };
   205 //------------------------------GotoNode---------------------------------------
   206 // GotoNodes perform direct branches.
   207 class GotoNode : public Node {
   208 public:
   209   GotoNode( Node *control ) : Node(control) {
   210     init_flags(Flag_is_Goto);
   211   }
   212   virtual int Opcode() const;
   213   virtual bool pinned() const { return true; }
   214   virtual bool  is_CFG() const { return true; }
   215   virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
   216   virtual const Node *is_block_proj() const { return this; }
   217   virtual bool depends_only_on_test() const { return false; }
   218   virtual const Type *bottom_type() const { return Type::CONTROL; }
   219   virtual const Type *Value( PhaseTransform *phase ) const;
   220   virtual Node *Identity( PhaseTransform *phase );
   221   virtual const RegMask &out_RegMask() const;
   222 };
   224 //------------------------------CProjNode--------------------------------------
   225 // control projection for node that produces multiple control-flow paths
   226 class CProjNode : public ProjNode {
   227 public:
   228   CProjNode( Node *ctrl, uint idx ) : ProjNode(ctrl,idx) {}
   229   virtual int Opcode() const;
   230   virtual bool  is_CFG() const { return true; }
   231   virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
   232   virtual const Node *is_block_proj() const { return in(0); }
   233   virtual const RegMask &out_RegMask() const;
   234   virtual uint ideal_reg() const { return 0; }
   235 };
   237 //---------------------------MultiBranchNode-----------------------------------
   238 // This class defines a MultiBranchNode, a MultiNode which yields multiple
   239 // control values. These are distinguished from other types of MultiNodes
   240 // which yield multiple values, but control is always and only projection #0.
   241 class MultiBranchNode : public MultiNode {
   242 public:
   243   MultiBranchNode( uint required ) : MultiNode(required) {
   244     init_class_id(Class_MultiBranch);
   245   }
   246 };
   248 //------------------------------IfNode-----------------------------------------
   249 // Output selected Control, based on a boolean test
   250 class IfNode : public MultiBranchNode {
   251   // Size is bigger to hold the probability field.  However, _prob does not
   252   // change the semantics so it does not appear in the hash & cmp functions.
   253   virtual uint size_of() const { return sizeof(*this); }
   254 public:
   256   // Degrees of branch prediction probability by order of magnitude:
   257   // PROB_UNLIKELY_1e(N) is a 1 in 1eN chance.
   258   // PROB_LIKELY_1e(N) is a 1 - PROB_UNLIKELY_1e(N)
   259 #define PROB_UNLIKELY_MAG(N)    (1e- ## N ## f)
   260 #define PROB_LIKELY_MAG(N)      (1.0f-PROB_UNLIKELY_MAG(N))
   262   // Maximum and minimum branch prediction probabilties
   263   // 1 in 1,000,000 (magnitude 6)
   264   //
   265   // Although PROB_NEVER == PROB_MIN and PROB_ALWAYS == PROB_MAX
   266   // they are used to distinguish different situations:
   267   //
   268   // The name PROB_MAX (PROB_MIN) is for probabilities which correspond to
   269   // very likely (unlikely) but with a concrete possibility of a rare
   270   // contrary case.  These constants would be used for pinning
   271   // measurements, and as measures for assertions that have high
   272   // confidence, but some evidence of occasional failure.
   273   //
   274   // The name PROB_ALWAYS (PROB_NEVER) is to stand for situations for which
   275   // there is no evidence at all that the contrary case has ever occurred.
   277 #define PROB_NEVER              PROB_UNLIKELY_MAG(6)
   278 #define PROB_ALWAYS             PROB_LIKELY_MAG(6)
   280 #define PROB_MIN                PROB_UNLIKELY_MAG(6)
   281 #define PROB_MAX                PROB_LIKELY_MAG(6)
   283   // Static branch prediction probabilities
   284   // 1 in 10 (magnitude 1)
   285 #define PROB_STATIC_INFREQUENT  PROB_UNLIKELY_MAG(1)
   286 #define PROB_STATIC_FREQUENT    PROB_LIKELY_MAG(1)
   288   // Fair probability 50/50
   289 #define PROB_FAIR               (0.5f)
   291   // Unknown probability sentinel
   292 #define PROB_UNKNOWN            (-1.0f)
   294   // Probability "constructors", to distinguish as a probability any manifest
   295   // constant without a names
   296 #define PROB_LIKELY(x)          ((float) (x))
   297 #define PROB_UNLIKELY(x)        (1.0f - (float)(x))
   299   // Other probabilities in use, but without a unique name, are documented
   300   // here for lack of a better place:
   301   //
   302   // 1 in 1000 probabilities (magnitude 3):
   303   //     threshold for converting to conditional move
   304   //     likelihood of null check failure if a null HAS been seen before
   305   //     likelihood of slow path taken in library calls
   306   //
   307   // 1 in 10,000 probabilities (magnitude 4):
   308   //     threshold for making an uncommon trap probability more extreme
   309   //     threshold for for making a null check implicit
   310   //     likelihood of needing a gc if eden top moves during an allocation
   311   //     likelihood of a predicted call failure
   312   //
   313   // 1 in 100,000 probabilities (magnitude 5):
   314   //     threshold for ignoring counts when estimating path frequency
   315   //     likelihood of FP clipping failure
   316   //     likelihood of catching an exception from a try block
   317   //     likelihood of null check failure if a null has NOT been seen before
   318   //
   319   // Magic manifest probabilities such as 0.83, 0.7, ... can be found in
   320   // gen_subtype_check() and catch_inline_exceptions().
   322   float _prob;                  // Probability of true path being taken.
   323   float _fcnt;                  // Frequency counter
   324   IfNode( Node *control, Node *b, float p, float fcnt )
   325     : MultiBranchNode(2), _prob(p), _fcnt(fcnt) {
   326     init_class_id(Class_If);
   327     init_req(0,control);
   328     init_req(1,b);
   329   }
   330   virtual int Opcode() const;
   331   virtual bool pinned() const { return true; }
   332   virtual const Type *bottom_type() const { return TypeTuple::IFBOTH; }
   333   virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
   334   virtual const Type *Value( PhaseTransform *phase ) const;
   335   virtual const RegMask &out_RegMask() const;
   336   void dominated_by(Node* prev_dom, PhaseIterGVN* igvn);
   337   int is_range_check(Node* &range, Node* &index, jint &offset);
   338   Node* fold_compares(PhaseGVN* phase);
   339   static Node* up_one_dom(Node* curr, bool linear_only = false);
   341   // Takes the type of val and filters it through the test represented
   342   // by if_proj and returns a more refined type if one is produced.
   343   // Returns NULL is it couldn't improve the type.
   344   static const TypeInt* filtered_int_type(PhaseGVN* phase, Node* val, Node* if_proj);
   346 #ifndef PRODUCT
   347   virtual void dump_spec(outputStream *st) const;
   348 #endif
   349 };
   351 class IfTrueNode : public CProjNode {
   352 public:
   353   IfTrueNode( IfNode *ifnode ) : CProjNode(ifnode,1) {
   354     init_class_id(Class_IfTrue);
   355   }
   356   virtual int Opcode() const;
   357   virtual Node *Identity( PhaseTransform *phase );
   358 };
   360 class IfFalseNode : public CProjNode {
   361 public:
   362   IfFalseNode( IfNode *ifnode ) : CProjNode(ifnode,0) {
   363     init_class_id(Class_IfFalse);
   364   }
   365   virtual int Opcode() const;
   366   virtual Node *Identity( PhaseTransform *phase );
   367 };
   370 //------------------------------PCTableNode------------------------------------
   371 // Build an indirect branch table.  Given a control and a table index,
   372 // control is passed to the Projection matching the table index.  Used to
   373 // implement switch statements and exception-handling capabilities.
   374 // Undefined behavior if passed-in index is not inside the table.
   375 class PCTableNode : public MultiBranchNode {
   376   virtual uint hash() const;    // Target count; table size
   377   virtual uint cmp( const Node &n ) const;
   378   virtual uint size_of() const { return sizeof(*this); }
   380 public:
   381   const uint _size;             // Number of targets
   383   PCTableNode( Node *ctrl, Node *idx, uint size ) : MultiBranchNode(2), _size(size) {
   384     init_class_id(Class_PCTable);
   385     init_req(0, ctrl);
   386     init_req(1, idx);
   387   }
   388   virtual int Opcode() const;
   389   virtual const Type *Value( PhaseTransform *phase ) const;
   390   virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
   391   virtual const Type *bottom_type() const;
   392   virtual bool pinned() const { return true; }
   393 };
   395 //------------------------------JumpNode---------------------------------------
   396 // Indirect branch.  Uses PCTable above to implement a switch statement.
   397 // It emits as a table load and local branch.
   398 class JumpNode : public PCTableNode {
   399 public:
   400   JumpNode( Node* control, Node* switch_val, uint size) : PCTableNode(control, switch_val, size) {
   401     init_class_id(Class_Jump);
   402   }
   403   virtual int   Opcode() const;
   404   virtual const RegMask& out_RegMask() const;
   405   virtual const Node* is_block_proj() const { return this; }
   406 };
   408 class JumpProjNode : public JProjNode {
   409   virtual uint hash() const;
   410   virtual uint cmp( const Node &n ) const;
   411   virtual uint size_of() const { return sizeof(*this); }
   413  private:
   414   const int  _dest_bci;
   415   const uint _proj_no;
   416   const int  _switch_val;
   417  public:
   418   JumpProjNode(Node* jumpnode, uint proj_no, int dest_bci, int switch_val)
   419     : JProjNode(jumpnode, proj_no), _dest_bci(dest_bci), _proj_no(proj_no), _switch_val(switch_val) {
   420     init_class_id(Class_JumpProj);
   421   }
   423   virtual int Opcode() const;
   424   virtual const Type* bottom_type() const { return Type::CONTROL; }
   425   int  dest_bci()    const { return _dest_bci; }
   426   int  switch_val()  const { return _switch_val; }
   427   uint proj_no()     const { return _proj_no; }
   428 #ifndef PRODUCT
   429   virtual void dump_spec(outputStream *st) const;
   430 #endif
   431 };
   433 //------------------------------CatchNode--------------------------------------
   434 // Helper node to fork exceptions.  "Catch" catches any exceptions thrown by
   435 // a just-prior call.  Looks like a PCTableNode but emits no code - just the
   436 // table.  The table lookup and branch is implemented by RethrowNode.
   437 class CatchNode : public PCTableNode {
   438 public:
   439   CatchNode( Node *ctrl, Node *idx, uint size ) : PCTableNode(ctrl,idx,size){
   440     init_class_id(Class_Catch);
   441   }
   442   virtual int Opcode() const;
   443   virtual const Type *Value( PhaseTransform *phase ) const;
   444 };
   446 // CatchProjNode controls which exception handler is targetted after a call.
   447 // It is passed in the bci of the target handler, or no_handler_bci in case
   448 // the projection doesn't lead to an exception handler.
   449 class CatchProjNode : public CProjNode {
   450   virtual uint hash() const;
   451   virtual uint cmp( const Node &n ) const;
   452   virtual uint size_of() const { return sizeof(*this); }
   454 private:
   455   const int _handler_bci;
   457 public:
   458   enum {
   459     fall_through_index =  0,      // the fall through projection index
   460     catch_all_index    =  1,      // the projection index for catch-alls
   461     no_handler_bci     = -1       // the bci for fall through or catch-all projs
   462   };
   464   CatchProjNode(Node* catchnode, uint proj_no, int handler_bci)
   465     : CProjNode(catchnode, proj_no), _handler_bci(handler_bci) {
   466     init_class_id(Class_CatchProj);
   467     assert(proj_no != fall_through_index || handler_bci < 0, "fall through case must have bci < 0");
   468   }
   470   virtual int Opcode() const;
   471   virtual Node *Identity( PhaseTransform *phase );
   472   virtual const Type *bottom_type() const { return Type::CONTROL; }
   473   int  handler_bci() const        { return _handler_bci; }
   474   bool is_handler_proj() const    { return _handler_bci >= 0; }
   475 #ifndef PRODUCT
   476   virtual void dump_spec(outputStream *st) const;
   477 #endif
   478 };
   481 //---------------------------------CreateExNode--------------------------------
   482 // Helper node to create the exception coming back from a call
   483 class CreateExNode : public TypeNode {
   484 public:
   485   CreateExNode(const Type* t, Node* control, Node* i_o) : TypeNode(t, 2) {
   486     init_req(0, control);
   487     init_req(1, i_o);
   488   }
   489   virtual int Opcode() const;
   490   virtual Node *Identity( PhaseTransform *phase );
   491   virtual bool pinned() const { return true; }
   492   uint match_edge(uint idx) const { return 0; }
   493   virtual uint ideal_reg() const { return Op_RegP; }
   494 };
   496 //------------------------------NeverBranchNode-------------------------------
   497 // The never-taken branch.  Used to give the appearance of exiting infinite
   498 // loops to those algorithms that like all paths to be reachable.  Encodes
   499 // empty.
   500 class NeverBranchNode : public MultiBranchNode {
   501 public:
   502   NeverBranchNode( Node *ctrl ) : MultiBranchNode(1) { init_req(0,ctrl); }
   503   virtual int Opcode() const;
   504   virtual bool pinned() const { return true; };
   505   virtual const Type *bottom_type() const { return TypeTuple::IFBOTH; }
   507   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const { }
   508   virtual uint size(PhaseRegAlloc *ra_) const { return 0; }
   509 #ifndef PRODUCT
   510   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
   511 #endif
   512 };

mercurial