src/share/vm/opto/cfgnode.hpp

Thu, 20 Mar 2008 15:11:44 -0700

author
kvn
date
Thu, 20 Mar 2008 15:11:44 -0700
changeset 509
2a9af0b9cb1c
parent 499
b8f5ba577b02
child 562
e0bd2e08e3d0
permissions
-rw-r--r--

6674600: (Escape Analysis) Optimize memory graph for instance's fields
Summary: EA gives opportunite to do more aggressive memory optimizations.
Reviewed-by: never, jrose

     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   PhiNode* split_out_instance(const TypePtr* at, PhaseIterGVN *igvn) const;
   152   // like make(r, x), but does not initialize the in edges to x
   153   static PhiNode* make_blank( Node* r, Node* x );
   155   // Accessors
   156   RegionNode* region() const { Node* r = in(Region); assert(!r || r->is_Region(), ""); return (RegionNode*)r; }
   158   Node* is_copy() const {
   159     // The node is a real phi if _in[0] is a Region node.
   160     DEBUG_ONLY(const Node* r = _in[Region];)
   161     assert(r != NULL && r->is_Region(), "Not valid control");
   162     return NULL;  // not a copy!
   163   }
   165   // Determine a unique non-trivial input, if any.
   166   // Ignore casts if it helps.  Return NULL on failure.
   167   Node* unique_input(PhaseTransform *phase);
   169   // Check for a simple dead loop.
   170   enum LoopSafety { Safe = 0, Unsafe, UnsafeLoop };
   171   LoopSafety simple_data_loop_check(Node *in) const;
   172   // Is it unsafe data loop? It becomes a dead loop if this phi node removed.
   173   bool is_unsafe_data_reference(Node *in) const;
   174   int  is_diamond_phi() const;
   175   virtual int Opcode() const;
   176   virtual bool pinned() const { return in(0) != 0; }
   177   virtual const TypePtr *adr_type() const { verify_adr_type(true); return _adr_type; }
   179   const int inst_id()     const { return _inst_id; }
   180   const int inst_index()  const { return _inst_index; }
   181   const int inst_offset() const { return _inst_offset; }
   182   bool is_same_inst_field(const Type* tp, int id, int index, int offset) {
   183     return type()->basic_type() == tp->basic_type() &&
   184            inst_id()     == id     &&
   185            inst_index()  == index  &&
   186            inst_offset() == offset &&
   187            type()->higher_equal(tp);
   188   }
   190   virtual const Type *Value( PhaseTransform *phase ) const;
   191   virtual Node *Identity( PhaseTransform *phase );
   192   virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
   193   virtual const RegMask &out_RegMask() const;
   194   virtual const RegMask &in_RegMask(uint) const;
   195 #ifndef PRODUCT
   196   virtual void dump_spec(outputStream *st) const;
   197 #endif
   198 #ifdef ASSERT
   199   void verify_adr_type(VectorSet& visited, const TypePtr* at) const;
   200   void verify_adr_type(bool recursive = false) const;
   201 #else //ASSERT
   202   void verify_adr_type(bool recursive = false) const {}
   203 #endif //ASSERT
   204 };
   206 //------------------------------GotoNode---------------------------------------
   207 // GotoNodes perform direct branches.
   208 class GotoNode : public Node {
   209 public:
   210   GotoNode( Node *control ) : Node(control) {
   211     init_flags(Flag_is_Goto);
   212   }
   213   virtual int Opcode() const;
   214   virtual bool pinned() const { return true; }
   215   virtual bool  is_CFG() const { return true; }
   216   virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
   217   virtual const Node *is_block_proj() const { return this; }
   218   virtual bool depends_only_on_test() const { return false; }
   219   virtual const Type *bottom_type() const { return Type::CONTROL; }
   220   virtual const Type *Value( PhaseTransform *phase ) const;
   221   virtual Node *Identity( PhaseTransform *phase );
   222   virtual const RegMask &out_RegMask() const;
   223 };
   225 //------------------------------CProjNode--------------------------------------
   226 // control projection for node that produces multiple control-flow paths
   227 class CProjNode : public ProjNode {
   228 public:
   229   CProjNode( Node *ctrl, uint idx ) : ProjNode(ctrl,idx) {}
   230   virtual int Opcode() const;
   231   virtual bool  is_CFG() const { return true; }
   232   virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
   233   virtual const Node *is_block_proj() const { return in(0); }
   234   virtual const RegMask &out_RegMask() const;
   235   virtual uint ideal_reg() const { return 0; }
   236 };
   238 //---------------------------MultiBranchNode-----------------------------------
   239 // This class defines a MultiBranchNode, a MultiNode which yields multiple
   240 // control values. These are distinguished from other types of MultiNodes
   241 // which yield multiple values, but control is always and only projection #0.
   242 class MultiBranchNode : public MultiNode {
   243 public:
   244   MultiBranchNode( uint required ) : MultiNode(required) {
   245     init_class_id(Class_MultiBranch);
   246   }
   247 };
   249 //------------------------------IfNode-----------------------------------------
   250 // Output selected Control, based on a boolean test
   251 class IfNode : public MultiBranchNode {
   252   // Size is bigger to hold the probability field.  However, _prob does not
   253   // change the semantics so it does not appear in the hash & cmp functions.
   254   virtual uint size_of() const { return sizeof(*this); }
   255 public:
   257   // Degrees of branch prediction probability by order of magnitude:
   258   // PROB_UNLIKELY_1e(N) is a 1 in 1eN chance.
   259   // PROB_LIKELY_1e(N) is a 1 - PROB_UNLIKELY_1e(N)
   260 #define PROB_UNLIKELY_MAG(N)    (1e- ## N ## f)
   261 #define PROB_LIKELY_MAG(N)      (1.0f-PROB_UNLIKELY_MAG(N))
   263   // Maximum and minimum branch prediction probabilties
   264   // 1 in 1,000,000 (magnitude 6)
   265   //
   266   // Although PROB_NEVER == PROB_MIN and PROB_ALWAYS == PROB_MAX
   267   // they are used to distinguish different situations:
   268   //
   269   // The name PROB_MAX (PROB_MIN) is for probabilities which correspond to
   270   // very likely (unlikely) but with a concrete possibility of a rare
   271   // contrary case.  These constants would be used for pinning
   272   // measurements, and as measures for assertions that have high
   273   // confidence, but some evidence of occasional failure.
   274   //
   275   // The name PROB_ALWAYS (PROB_NEVER) is to stand for situations for which
   276   // there is no evidence at all that the contrary case has ever occurred.
   278 #define PROB_NEVER              PROB_UNLIKELY_MAG(6)
   279 #define PROB_ALWAYS             PROB_LIKELY_MAG(6)
   281 #define PROB_MIN                PROB_UNLIKELY_MAG(6)
   282 #define PROB_MAX                PROB_LIKELY_MAG(6)
   284   // Static branch prediction probabilities
   285   // 1 in 10 (magnitude 1)
   286 #define PROB_STATIC_INFREQUENT  PROB_UNLIKELY_MAG(1)
   287 #define PROB_STATIC_FREQUENT    PROB_LIKELY_MAG(1)
   289   // Fair probability 50/50
   290 #define PROB_FAIR               (0.5f)
   292   // Unknown probability sentinel
   293 #define PROB_UNKNOWN            (-1.0f)
   295   // Probability "constructors", to distinguish as a probability any manifest
   296   // constant without a names
   297 #define PROB_LIKELY(x)          ((float) (x))
   298 #define PROB_UNLIKELY(x)        (1.0f - (float)(x))
   300   // Other probabilities in use, but without a unique name, are documented
   301   // here for lack of a better place:
   302   //
   303   // 1 in 1000 probabilities (magnitude 3):
   304   //     threshold for converting to conditional move
   305   //     likelihood of null check failure if a null HAS been seen before
   306   //     likelihood of slow path taken in library calls
   307   //
   308   // 1 in 10,000 probabilities (magnitude 4):
   309   //     threshold for making an uncommon trap probability more extreme
   310   //     threshold for for making a null check implicit
   311   //     likelihood of needing a gc if eden top moves during an allocation
   312   //     likelihood of a predicted call failure
   313   //
   314   // 1 in 100,000 probabilities (magnitude 5):
   315   //     threshold for ignoring counts when estimating path frequency
   316   //     likelihood of FP clipping failure
   317   //     likelihood of catching an exception from a try block
   318   //     likelihood of null check failure if a null has NOT been seen before
   319   //
   320   // Magic manifest probabilities such as 0.83, 0.7, ... can be found in
   321   // gen_subtype_check() and catch_inline_exceptions().
   323   float _prob;                  // Probability of true path being taken.
   324   float _fcnt;                  // Frequency counter
   325   IfNode( Node *control, Node *b, float p, float fcnt )
   326     : MultiBranchNode(2), _prob(p), _fcnt(fcnt) {
   327     init_class_id(Class_If);
   328     init_req(0,control);
   329     init_req(1,b);
   330   }
   331   virtual int Opcode() const;
   332   virtual bool pinned() const { return true; }
   333   virtual const Type *bottom_type() const { return TypeTuple::IFBOTH; }
   334   virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
   335   virtual const Type *Value( PhaseTransform *phase ) const;
   336   virtual const RegMask &out_RegMask() const;
   337   void dominated_by(Node* prev_dom, PhaseIterGVN* igvn);
   338   int is_range_check(Node* &range, Node* &index, jint &offset);
   339   Node* fold_compares(PhaseGVN* phase);
   340   static Node* up_one_dom(Node* curr, bool linear_only = false);
   342   // Takes the type of val and filters it through the test represented
   343   // by if_proj and returns a more refined type if one is produced.
   344   // Returns NULL is it couldn't improve the type.
   345   static const TypeInt* filtered_int_type(PhaseGVN* phase, Node* val, Node* if_proj);
   347 #ifndef PRODUCT
   348   virtual void dump_spec(outputStream *st) const;
   349 #endif
   350 };
   352 class IfTrueNode : public CProjNode {
   353 public:
   354   IfTrueNode( IfNode *ifnode ) : CProjNode(ifnode,1) {
   355     init_class_id(Class_IfTrue);
   356   }
   357   virtual int Opcode() const;
   358   virtual Node *Identity( PhaseTransform *phase );
   359 };
   361 class IfFalseNode : public CProjNode {
   362 public:
   363   IfFalseNode( IfNode *ifnode ) : CProjNode(ifnode,0) {
   364     init_class_id(Class_IfFalse);
   365   }
   366   virtual int Opcode() const;
   367   virtual Node *Identity( PhaseTransform *phase );
   368 };
   371 //------------------------------PCTableNode------------------------------------
   372 // Build an indirect branch table.  Given a control and a table index,
   373 // control is passed to the Projection matching the table index.  Used to
   374 // implement switch statements and exception-handling capabilities.
   375 // Undefined behavior if passed-in index is not inside the table.
   376 class PCTableNode : public MultiBranchNode {
   377   virtual uint hash() const;    // Target count; table size
   378   virtual uint cmp( const Node &n ) const;
   379   virtual uint size_of() const { return sizeof(*this); }
   381 public:
   382   const uint _size;             // Number of targets
   384   PCTableNode( Node *ctrl, Node *idx, uint size ) : MultiBranchNode(2), _size(size) {
   385     init_class_id(Class_PCTable);
   386     init_req(0, ctrl);
   387     init_req(1, idx);
   388   }
   389   virtual int Opcode() const;
   390   virtual const Type *Value( PhaseTransform *phase ) const;
   391   virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
   392   virtual const Type *bottom_type() const;
   393   virtual bool pinned() const { return true; }
   394 };
   396 //------------------------------JumpNode---------------------------------------
   397 // Indirect branch.  Uses PCTable above to implement a switch statement.
   398 // It emits as a table load and local branch.
   399 class JumpNode : public PCTableNode {
   400 public:
   401   JumpNode( Node* control, Node* switch_val, uint size) : PCTableNode(control, switch_val, size) {
   402     init_class_id(Class_Jump);
   403   }
   404   virtual int   Opcode() const;
   405   virtual const RegMask& out_RegMask() const;
   406   virtual const Node* is_block_proj() const { return this; }
   407 };
   409 class JumpProjNode : public JProjNode {
   410   virtual uint hash() const;
   411   virtual uint cmp( const Node &n ) const;
   412   virtual uint size_of() const { return sizeof(*this); }
   414  private:
   415   const int  _dest_bci;
   416   const uint _proj_no;
   417   const int  _switch_val;
   418  public:
   419   JumpProjNode(Node* jumpnode, uint proj_no, int dest_bci, int switch_val)
   420     : JProjNode(jumpnode, proj_no), _dest_bci(dest_bci), _proj_no(proj_no), _switch_val(switch_val) {
   421     init_class_id(Class_JumpProj);
   422   }
   424   virtual int Opcode() const;
   425   virtual const Type* bottom_type() const { return Type::CONTROL; }
   426   int  dest_bci()    const { return _dest_bci; }
   427   int  switch_val()  const { return _switch_val; }
   428   uint proj_no()     const { return _proj_no; }
   429 #ifndef PRODUCT
   430   virtual void dump_spec(outputStream *st) const;
   431 #endif
   432 };
   434 //------------------------------CatchNode--------------------------------------
   435 // Helper node to fork exceptions.  "Catch" catches any exceptions thrown by
   436 // a just-prior call.  Looks like a PCTableNode but emits no code - just the
   437 // table.  The table lookup and branch is implemented by RethrowNode.
   438 class CatchNode : public PCTableNode {
   439 public:
   440   CatchNode( Node *ctrl, Node *idx, uint size ) : PCTableNode(ctrl,idx,size){
   441     init_class_id(Class_Catch);
   442   }
   443   virtual int Opcode() const;
   444   virtual const Type *Value( PhaseTransform *phase ) const;
   445 };
   447 // CatchProjNode controls which exception handler is targetted after a call.
   448 // It is passed in the bci of the target handler, or no_handler_bci in case
   449 // the projection doesn't lead to an exception handler.
   450 class CatchProjNode : public CProjNode {
   451   virtual uint hash() const;
   452   virtual uint cmp( const Node &n ) const;
   453   virtual uint size_of() const { return sizeof(*this); }
   455 private:
   456   const int _handler_bci;
   458 public:
   459   enum {
   460     fall_through_index =  0,      // the fall through projection index
   461     catch_all_index    =  1,      // the projection index for catch-alls
   462     no_handler_bci     = -1       // the bci for fall through or catch-all projs
   463   };
   465   CatchProjNode(Node* catchnode, uint proj_no, int handler_bci)
   466     : CProjNode(catchnode, proj_no), _handler_bci(handler_bci) {
   467     init_class_id(Class_CatchProj);
   468     assert(proj_no != fall_through_index || handler_bci < 0, "fall through case must have bci < 0");
   469   }
   471   virtual int Opcode() const;
   472   virtual Node *Identity( PhaseTransform *phase );
   473   virtual const Type *bottom_type() const { return Type::CONTROL; }
   474   int  handler_bci() const        { return _handler_bci; }
   475   bool is_handler_proj() const    { return _handler_bci >= 0; }
   476 #ifndef PRODUCT
   477   virtual void dump_spec(outputStream *st) const;
   478 #endif
   479 };
   482 //---------------------------------CreateExNode--------------------------------
   483 // Helper node to create the exception coming back from a call
   484 class CreateExNode : public TypeNode {
   485 public:
   486   CreateExNode(const Type* t, Node* control, Node* i_o) : TypeNode(t, 2) {
   487     init_req(0, control);
   488     init_req(1, i_o);
   489   }
   490   virtual int Opcode() const;
   491   virtual Node *Identity( PhaseTransform *phase );
   492   virtual bool pinned() const { return true; }
   493   uint match_edge(uint idx) const { return 0; }
   494   virtual uint ideal_reg() const { return Op_RegP; }
   495 };
   497 //------------------------------NeverBranchNode-------------------------------
   498 // The never-taken branch.  Used to give the appearance of exiting infinite
   499 // loops to those algorithms that like all paths to be reachable.  Encodes
   500 // empty.
   501 class NeverBranchNode : public MultiBranchNode {
   502 public:
   503   NeverBranchNode( Node *ctrl ) : MultiBranchNode(1) { init_req(0,ctrl); }
   504   virtual int Opcode() const;
   505   virtual bool pinned() const { return true; };
   506   virtual const Type *bottom_type() const { return TypeTuple::IFBOTH; }
   508   virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const { }
   509   virtual uint size(PhaseRegAlloc *ra_) const { return 0; }
   510 #ifndef PRODUCT
   511   virtual void format( PhaseRegAlloc *, outputStream *st ) const;
   512 #endif
   513 };

mercurial