hotspot/src/share/vm/opto/callnode.hpp
author twisti
Tue, 05 Jan 2010 13:05:58 +0100
changeset 4566 b363f6ef4068
parent 4450 6d700b859b3e
child 5547 f4b087cbb361
permissions -rw-r--r--
6829187: compiler optimizations required for JSR 292 Summary: C2 implementation for invokedynamic support. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2528
diff changeset
     2
 * Copyright 1997-2009 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
// Portions of code courtesy of Clifford Click
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// Optimization - Graph Style
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class Chaitin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class NamedCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class MultiNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class  SafePointNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class   CallNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class     CallJavaNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class       CallStaticJavaNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class       CallDynamicJavaNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class     CallRuntimeNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class       CallLeafNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class         CallLeafNoFPNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class     AllocateNode;
206
d61cf247afd5 6667580: Optimize CmpP for allocations
kvn
parents: 1
diff changeset
    41
class       AllocateArrayNode;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class     LockNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class     UnlockNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class JVMState;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class OopMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class State;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class StartNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
class MachCallNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class FastLockNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//------------------------------StartNode--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// The method start node
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class StartNode : public MultiNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  const TypeTuple *_domain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  StartNode( Node *root, const TypeTuple *domain ) : MultiNode(2), _domain(domain) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    init_class_id(Class_Start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    init_flags(Flag_is_block_start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    init_req(0,this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    init_req(1,root);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual bool pinned() const { return true; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  virtual const Type *bottom_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  virtual const TypePtr *adr_type() const { return TypePtr::BOTTOM; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  virtual void  calling_convention( BasicType* sig_bt, VMRegPair *parm_reg, uint length ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  virtual const RegMask &in_RegMask(uint) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  virtual Node *match( const ProjNode *proj, const Matcher *m );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  virtual uint ideal_reg() const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  virtual void  dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
//------------------------------StartOSRNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// The method start node for on stack replacement code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
class StartOSRNode : public StartNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  StartOSRNode( Node *root, const TypeTuple *domain ) : StartNode(root, domain) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  virtual int   Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static  const TypeTuple *osr_domain();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
//------------------------------ParmNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// Incoming parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
class ParmNode : public ProjNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static const char * const names[TypeFunc::Parms+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
public:
206
d61cf247afd5 6667580: Optimize CmpP for allocations
kvn
parents: 1
diff changeset
    94
  ParmNode( StartNode *src, uint con ) : ProjNode(src,con) {
d61cf247afd5 6667580: Optimize CmpP for allocations
kvn
parents: 1
diff changeset
    95
    init_class_id(Class_Parm);
d61cf247afd5 6667580: Optimize CmpP for allocations
kvn
parents: 1
diff changeset
    96
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  virtual bool  is_CFG() const { return (_con == TypeFunc::Control); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  virtual uint ideal_reg() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  virtual void dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
//------------------------------ReturnNode-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// Return from subroutine node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
class ReturnNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  ReturnNode( uint edges, Node *cntrl, Node *i_o, Node *memory, Node *retadr, Node *frameptr );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  virtual bool  is_CFG() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  virtual void dump_req() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
//------------------------------RethrowNode------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// Rethrow of exception at call site.  Ends a procedure before rethrowing;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
// ends the current basic block like a ReturnNode.  Restores registers and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
// unwinds stack.  Rethrow happens in the caller's method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
class RethrowNode : public Node {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  RethrowNode( Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *ret_adr, Node *exception );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  virtual bool  is_CFG() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  virtual uint hash() const { return NO_HASH; }  // CFG nodes do not hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  virtual bool depends_only_on_test() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  virtual uint ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  virtual void dump_req() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
//------------------------------TailCallNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// Pop stack frame and jump indirect
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
class TailCallNode : public ReturnNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  TailCallNode( Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *retadr, Node *target, Node *moop )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    : ReturnNode( TypeFunc::Parms+2, cntrl, i_o, memory, frameptr, retadr ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    init_req(TypeFunc::Parms, target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    init_req(TypeFunc::Parms+1, moop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
//------------------------------TailJumpNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// Pop stack frame and jump indirect
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
class TailJumpNode : public ReturnNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  TailJumpNode( Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *target, Node *ex_oop)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    : ReturnNode(TypeFunc::Parms+2, cntrl, i_o, memory, frameptr, Compile::current()->top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    init_req(TypeFunc::Parms, target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    init_req(TypeFunc::Parms+1, ex_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
//-------------------------------JVMState-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// A linked list of JVMState nodes captures the whole interpreter state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// plus GC roots, for all active calls at some call site in this compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// unit.  (If there is no inlining, then the list has exactly one link.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
// This provides a way to map the optimized program back into the interpreter,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
// or to let the GC mark the stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
class JVMState : public ResourceObj {
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   181
public:
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   182
  typedef enum {
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   183
    Reexecute_Undefined = -1, // not defined -- will be translated into false later
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   184
    Reexecute_False     =  0, // false       -- do not reexecute
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   185
    Reexecute_True      =  1  // true        -- reexecute the bytecode
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   186
  } ReexecuteState; //Reexecute State
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   187
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  JVMState*         _caller;    // List pointer for forming scope chains
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  uint              _depth;     // One mroe than caller depth, or one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  uint              _locoff;    // Offset to locals in input edge mapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  uint              _stkoff;    // Offset to stack in input edge mapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  uint              _monoff;    // Offset to monitors in input edge mapping
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   194
  uint              _scloff;    // Offset to fields of scalar objs in input edge mapping
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  uint              _endoff;    // Offset to end of input edge mapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  uint              _sp;        // Jave Expression Stack Pointer for this state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  int               _bci;       // Byte Code Index of this JVM point
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   198
  ReexecuteState    _reexecute; // Whether this bytecode need to be re-executed
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  ciMethod*         _method;    // Method Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  SafePointNode*    _map;       // Map node associated with this scope
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  friend class Compile;
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   203
  friend class PreserveReexecuteState;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // Because JVMState objects live over the entire lifetime of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // Compile object, they are allocated into the comp_arena, which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // does not get resource marked or reset during the compile process
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  void *operator new( size_t x, Compile* C ) { return C->comp_arena()->Amalloc(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  void operator delete( void * ) { } // fast deallocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Create a new JVMState, ready for abstract interpretation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  JVMState(ciMethod* method, JVMState* caller);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  JVMState(int stack_size);  // root state; has a null method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Access functions for the JVM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  uint              locoff() const { return _locoff; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  uint              stkoff() const { return _stkoff; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  uint              argoff() const { return _stkoff + _sp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  uint              monoff() const { return _monoff; }
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   220
  uint              scloff() const { return _scloff; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  uint              endoff() const { return _endoff; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  uint              oopoff() const { return debug_end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  int            loc_size() const { return _stkoff - _locoff; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  int            stk_size() const { return _monoff - _stkoff; }
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   226
  int            mon_size() const { return _scloff - _monoff; }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   227
  int            scl_size() const { return _endoff - _scloff; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  bool        is_loc(uint i) const { return i >= _locoff && i < _stkoff; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  bool        is_stk(uint i) const { return i >= _stkoff && i < _monoff; }
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   231
  bool        is_mon(uint i) const { return i >= _monoff && i < _scloff; }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   232
  bool        is_scl(uint i) const { return i >= _scloff && i < _endoff; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   234
  uint                      sp() const { return _sp; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   235
  int                      bci() const { return _bci; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   236
  bool        should_reexecute() const { return _reexecute==Reexecute_True; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   237
  bool  is_reexecute_undefined() const { return _reexecute==Reexecute_Undefined; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   238
  bool              has_method() const { return _method != NULL; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   239
  ciMethod*             method() const { assert(has_method(), ""); return _method; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   240
  JVMState*             caller() const { return _caller; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   241
  SafePointNode*           map() const { return _map; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   242
  uint                   depth() const { return _depth; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   243
  uint             debug_start() const; // returns locoff of root caller
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   244
  uint               debug_end() const; // returns endoff of self
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   245
  uint              debug_size() const {
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   246
    return loc_size() + sp() + mon_size() + scl_size();
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   247
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  uint        debug_depth()  const; // returns sum of debug_size values at all depths
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // Returns the JVM state at the desired depth (1 == root).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  JVMState* of_depth(int d) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // Tells if two JVM states have the same call chain (depth, methods, & bcis).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  bool same_calls_as(const JVMState* that) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // Monitors (monitors are stored as (boxNode, objNode) pairs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  enum { logMonitorEdges = 1 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  int  nof_monitors()              const { return mon_size() >> logMonitorEdges; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  int  monitor_depth()             const { return nof_monitors() + (caller() ? caller()->monitor_depth() : 0); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  int  monitor_box_offset(int idx) const { return monoff() + (idx << logMonitorEdges) + 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  int  monitor_obj_offset(int idx) const { return monoff() + (idx << logMonitorEdges) + 1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  bool is_monitor_box(uint off)    const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    assert(is_mon(off), "should be called only for monitor edge");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    return (0 == bitfield(off - monoff(), 0, logMonitorEdges));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  bool is_monitor_use(uint off)    const { return (is_mon(off)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                                                   && is_monitor_box(off))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                                             || (caller() && caller()->is_monitor_use(off)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // Initialization functions for the JVM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void              set_locoff(uint off) { _locoff = off; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  void              set_stkoff(uint off) { _stkoff = off; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  void              set_monoff(uint off) { _monoff = off; }
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   274
  void              set_scloff(uint off) { _scloff = off; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  void              set_endoff(uint off) { _endoff = off; }
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   276
  void              set_offsets(uint off) {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   277
    _locoff = _stkoff = _monoff = _scloff = _endoff = off;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   278
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  void              set_map(SafePointNode *map) { _map = map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  void              set_sp(uint sp) { _sp = sp; }
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   281
                    // _reexecute is initialized to "undefined" for a new bci
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   282
  void              set_bci(int bci) {if(_bci != bci)_reexecute=Reexecute_Undefined; _bci = bci; }
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 2528
diff changeset
   283
  void              set_should_reexecute(bool reexec) {_reexecute = reexec ? Reexecute_True : Reexecute_False;}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Miscellaneous utility functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  JVMState* clone_deep(Compile* C) const;    // recursively clones caller chain
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  JVMState* clone_shallow(Compile* C) const; // retains uncloned caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  void      format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  void      dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  void      dump_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  void      dump() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    dump_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
//------------------------------SafePointNode----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
// A SafePointNode is a subclass of a MultiNode for convenience (and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
// potential code sharing) only - conceptually it is independent of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
// the Node semantics.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
class SafePointNode : public MultiNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  virtual uint           cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  virtual uint           size_of() const;       // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  SafePointNode(uint edges, JVMState* jvms,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
                // A plain safepoint advertises no memory effects (NULL):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
                const TypePtr* adr_type = NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    : MultiNode( edges ),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      _jvms(jvms),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      _oop_map(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      _adr_type(adr_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    init_class_id(Class_SafePoint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  OopMap*         _oop_map;   // Array of OopMap info (8-bit char) for GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  JVMState* const _jvms;      // Pointer to list of JVM State objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  const TypePtr*  _adr_type;  // What type of memory does this node produce?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // Many calls take *all* of memory as input,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // but some produce a limited subset of that memory as output.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // The adr_type reports the call's behavior as a store, not a load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  virtual JVMState* jvms() const { return _jvms; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  void set_jvms(JVMState* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    *(JVMState**)&_jvms = s;  // override const attribute in the accessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  OopMap *oop_map() const { return _oop_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  void set_oop_map(OopMap *om) { _oop_map = om; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  // Functionality from old debug nodes which has changed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  Node *local(JVMState* jvms, uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    return in(jvms->locoff() + idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  Node *stack(JVMState* jvms, uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    return in(jvms->stkoff() + idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  Node *argument(JVMState* jvms, uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    return in(jvms->argoff() + idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  Node *monitor_box(JVMState* jvms, uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    return in(jvms->monitor_box_offset(idx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  Node *monitor_obj(JVMState* jvms, uint idx) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    return in(jvms->monitor_obj_offset(idx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  void  set_local(JVMState* jvms, uint idx, Node *c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  void  set_stack(JVMState* jvms, uint idx, Node *c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    set_req(jvms->stkoff() + idx, c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  void  set_argument(JVMState* jvms, uint idx, Node *c) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    set_req(jvms->argoff() + idx, c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  void ensure_stack(JVMState* jvms, uint stk_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    assert(verify_jvms(jvms), "jvms must match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    int grow_by = (int)stk_size - (int)jvms->stk_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
    if (grow_by > 0)  grow_stack(jvms, grow_by);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  void grow_stack(JVMState* jvms, uint grow_by);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // Handle monitor stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  void push_monitor( const FastLockNode *lock );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  void pop_monitor ();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  Node *peek_monitor_box() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  Node *peek_monitor_obj() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // Access functions for the JVM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  Node *control  () const { return in(TypeFunc::Control  ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  Node *i_o      () const { return in(TypeFunc::I_O      ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  Node *memory   () const { return in(TypeFunc::Memory   ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  Node *returnadr() const { return in(TypeFunc::ReturnAdr); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  Node *frameptr () const { return in(TypeFunc::FramePtr ); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  void set_control  ( Node *c ) { set_req(TypeFunc::Control,c); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  void set_i_o      ( Node *c ) { set_req(TypeFunc::I_O    ,c); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  void set_memory   ( Node *c ) { set_req(TypeFunc::Memory ,c); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  MergeMemNode* merged_memory() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    return in(TypeFunc::Memory)->as_MergeMem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // The parser marks useless maps as dead when it's done with them:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  bool is_killed() { return in(TypeFunc::Control) == NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // Exception states bubbling out of subgraphs such as inlined calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // are recorded here.  (There might be more than one, hence the "next".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // This feature is used only for safepoints which serve as "maps"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // for JVM states during parsing, intrinsic expansion, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  SafePointNode*         next_exception() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  void               set_next_exception(SafePointNode* n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  bool                   has_exceptions() const { return next_exception() != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // Standard Node stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  virtual int            Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  virtual bool           pinned() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  virtual const Type    *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  virtual const Type    *bottom_type() const { return Type::CONTROL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  virtual const TypePtr *adr_type() const { return _adr_type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  virtual Node          *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  virtual Node          *Identity( PhaseTransform *phase );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  virtual uint           ideal_reg() const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  virtual const RegMask &in_RegMask(uint) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  virtual const RegMask &out_RegMask() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  virtual uint           match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  static  bool           needs_polling_address_input();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  virtual void              dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   424
//------------------------------SafePointScalarObjectNode----------------------
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   425
// A SafePointScalarObjectNode represents the state of a scalarized object
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   426
// at a safepoint.
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   427
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   428
class SafePointScalarObjectNode: public TypeNode {
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   429
  uint _first_index; // First input edge index of a SafePoint node where
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   430
                     // states of the scalarized object fields are collected.
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   431
  uint _n_fields;    // Number of non-static fields of the scalarized object.
247
2aeab9ac7fea 6674600: (Escape Analysis) Optimize memory graph for instance's fields
kvn
parents: 238
diff changeset
   432
  DEBUG_ONLY(AllocateNode* _alloc;)
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   433
public:
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   434
  SafePointScalarObjectNode(const TypeOopPtr* tp,
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   435
#ifdef ASSERT
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   436
                            AllocateNode* alloc,
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   437
#endif
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   438
                            uint first_index, uint n_fields);
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   439
  virtual int Opcode() const;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   440
  virtual uint           ideal_reg() const;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   441
  virtual const RegMask &in_RegMask(uint) const;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   442
  virtual const RegMask &out_RegMask() const;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   443
  virtual uint           match_edge(uint idx) const;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   444
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   445
  uint first_index() const { return _first_index; }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   446
  uint n_fields()    const { return _n_fields; }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   447
  DEBUG_ONLY(AllocateNode* alloc() const { return _alloc; })
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   448
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   449
  // SafePointScalarObject should be always pinned to the control edge
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   450
  // of the SafePoint node for which it was generated.
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   451
  virtual bool pinned() const; // { return true; }
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 1398
diff changeset
   452
2127
268ea58ed775 6809798: SafePointScalarObject node placed into incorrect block during GCM
kvn
parents: 1613
diff changeset
   453
  // SafePointScalarObject depends on the SafePoint node
268ea58ed775 6809798: SafePointScalarObject node placed into incorrect block during GCM
kvn
parents: 1613
diff changeset
   454
  // for which it was generated.
268ea58ed775 6809798: SafePointScalarObject node placed into incorrect block during GCM
kvn
parents: 1613
diff changeset
   455
  virtual bool depends_only_on_test() const; // { return false; }
268ea58ed775 6809798: SafePointScalarObject node placed into incorrect block during GCM
kvn
parents: 1613
diff changeset
   456
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   457
  virtual uint size_of() const { return sizeof(*this); }
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   458
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   459
  // Assumes that "this" is an argument to a safepoint node "s", and that
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   460
  // "new_call" is being created to correspond to "s".  But the difference
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   461
  // between the start index of the jvmstates of "new_call" and "s" is
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   462
  // "jvms_adj".  Produce and return a SafePointScalarObjectNode that
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   463
  // corresponds appropriately to "this" in "new_call".  Assumes that
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   464
  // "sosn_map" is a map, specific to the translation of "s" to "new_call",
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   465
  // mapping old SafePointScalarObjectNodes to new, to avoid multiple copies.
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   466
  SafePointScalarObjectNode* clone(int jvms_adj, Dict* sosn_map) const;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   467
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   468
#ifndef PRODUCT
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   469
  virtual void              dump_spec(outputStream *st) const;
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   470
#endif
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   471
};
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 212
diff changeset
   472
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   473
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   474
// Simple container for the outgoing projections of a call.  Useful
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   475
// for serious surgery on calls.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   476
class CallProjections : public StackObj {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   477
public:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   478
  Node* fallthrough_proj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   479
  Node* fallthrough_catchproj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   480
  Node* fallthrough_memproj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   481
  Node* fallthrough_ioproj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   482
  Node* catchall_catchproj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   483
  Node* catchall_memproj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   484
  Node* catchall_ioproj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   485
  Node* resproj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   486
  Node* exobj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   487
};
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   488
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   489
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
//------------------------------CallNode---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
// Call nodes now subsume the function of debug nodes at callsites, so they
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
// contain the functionality of a full scope chain of debug nodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
class CallNode : public SafePointNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  const TypeFunc *_tf;        // Function type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  address      _entry_point;  // Address of method being called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  float        _cnt;          // Estimate of number of times called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  CallNode(const TypeFunc* tf, address addr, const TypePtr* adr_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    : SafePointNode(tf->domain()->cnt(), NULL, adr_type),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
      _tf(tf),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
      _entry_point(addr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
      _cnt(COUNT_UNKNOWN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    init_class_id(Class_Call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
    init_flags(Flag_is_Call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  const TypeFunc* tf()        const { return _tf; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  const address entry_point() const { return _entry_point; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  const float   cnt()         const { return _cnt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  void set_tf(const TypeFunc* tf) { _tf = tf; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  void set_entry_point(address p) { _entry_point = p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  void set_cnt(float c)           { _cnt = c; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  virtual const Type *bottom_type() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  virtual const Type *Value( PhaseTransform *phase ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  virtual Node *Identity( PhaseTransform *phase ) { return this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  virtual uint        cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  virtual uint        size_of() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  virtual void        calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  virtual Node       *match( const ProjNode *proj, const Matcher *m );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  virtual uint        ideal_reg() const { return NotAMachineReg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  // Are we guaranteed that this node is a safepoint?  Not true for leaf calls and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // for some macro nodes whose expansion does not have a safepoint on the fast path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  virtual bool        guaranteed_safepoint()  { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  // For macro nodes, the JVMState gets modified during expansion, so when cloning
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // the node the JVMState must be cloned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  virtual void        clone_jvms() { }   // default is not to clone
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   532
  // Returns true if the call may modify n
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   533
  virtual bool        may_modify(const TypePtr *addr_t, PhaseTransform *phase);
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   534
  // Does this node have a use of n other than in debug information?
594
9f4474e5dbaf 6705887: Compressed Oops: generate x64 addressing and implicit null checks with narrow oops
kvn
parents: 360
diff changeset
   535
  bool                has_non_debug_use(Node *n);
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   536
  // Returns the unique CheckCastPP of a call
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   537
  // or result projection is there are several CheckCastPP
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   538
  // or returns NULL if there is no one.
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   539
  Node *result_cast();
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   540
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   541
  // Collect all the interesting edges from a call for use in
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   542
  // replacing the call by something else.  Used by macro expansion
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   543
  // and the late inlining support.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   544
  void extract_projections(CallProjections* projs, bool separate_io_proj);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   545
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  virtual uint match_edge(uint idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  virtual void        dump_req()  const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  virtual void        dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 3603
diff changeset
   554
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
//------------------------------CallJavaNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
// Make a static or dynamic subroutine call node using Java calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
// convention.  (The "Java" calling convention is the compiler's calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
// convention, as opposed to the interpreter's or that of native C.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
class CallJavaNode : public CallNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  bool    _optimized_virtual;
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   565
  bool    _method_handle_invoke;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  ciMethod* _method;            // Method being direct called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  const int       _bci;         // Byte Code Index of call byte code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  CallJavaNode(const TypeFunc* tf , address addr, ciMethod* method, int bci)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    : CallNode(tf, addr, TypePtr::BOTTOM),
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   571
      _method(method), _bci(bci),
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   572
      _optimized_virtual(false),
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   573
      _method_handle_invoke(false)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    init_class_id(Class_CallJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  virtual int   Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  ciMethod* method() const                { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  void  set_method(ciMethod *m)           { _method = m; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  void  set_optimized_virtual(bool f)     { _optimized_virtual = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  bool  is_optimized_virtual() const      { return _optimized_virtual; }
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   583
  void  set_method_handle_invoke(bool f)  { _method_handle_invoke = f; }
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   584
  bool  is_method_handle_invoke() const   { return _method_handle_invoke; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  virtual void  dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
//------------------------------CallStaticJavaNode-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
// Make a direct subroutine call using Java calling convention (for static
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
// calls and optimized virtual calls, plus calls to wrappers for run-time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
// routines); generates static stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
class CallStaticJavaNode : public CallJavaNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  CallStaticJavaNode(const TypeFunc* tf, address addr, ciMethod* method, int bci)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    : CallJavaNode(tf, addr, method, bci), _name(NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    init_class_id(Class_CallStaticJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  CallStaticJavaNode(const TypeFunc* tf, address addr, const char* name, int bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
                     const TypePtr* adr_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    : CallJavaNode(tf, addr, NULL, bci), _name(name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    init_class_id(Class_CallStaticJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    // This node calls a runtime stub, which often has narrow memory effects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    _adr_type = adr_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  const char *_name;            // Runtime wrapper name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  // If this is an uncommon trap, return the request code, else zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  int uncommon_trap_request() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  static int extract_uncommon_trap_request(const Node* call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  virtual int         Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  virtual void        dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
//------------------------------CallDynamicJavaNode----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
// Make a dispatched call using Java calling convention.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
class CallDynamicJavaNode : public CallJavaNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  CallDynamicJavaNode( const TypeFunc *tf , address addr, ciMethod* method, int vtable_index, int bci ) : CallJavaNode(tf,addr,method,bci), _vtable_index(vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    init_class_id(Class_CallDynamicJava);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  int _vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  virtual int   Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  virtual void  dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
//------------------------------CallRuntimeNode--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
// Make a direct subroutine call node into compiled C++ code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
class CallRuntimeNode : public CallNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  virtual uint cmp( const Node &n ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  CallRuntimeNode(const TypeFunc* tf, address addr, const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
                  const TypePtr* adr_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    : CallNode(tf, addr, adr_type),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      _name(name)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    init_class_id(Class_CallRuntime);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  const char *_name;            // Printable name, if _method is NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  virtual int   Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  virtual void  calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  virtual void  dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
//------------------------------CallLeafNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
// Make a direct subroutine call node into compiled C++ code, without
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
// safepoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
class CallLeafNode : public CallRuntimeNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  CallLeafNode(const TypeFunc* tf, address addr, const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
               const TypePtr* adr_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    : CallRuntimeNode(tf, addr, name, adr_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    init_class_id(Class_CallLeaf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  virtual int   Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  virtual bool        guaranteed_safepoint()  { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  virtual void  dump_spec(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
//------------------------------CallLeafNoFPNode-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
// CallLeafNode, not using floating point or using it in the same manner as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
// the generated code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
class CallLeafNoFPNode : public CallLeafNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  CallLeafNoFPNode(const TypeFunc* tf, address addr, const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
                   const TypePtr* adr_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
    : CallLeafNode(tf, addr, name, adr_type)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  virtual int   Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
//------------------------------Allocate---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
// High-level memory allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
//  AllocateNode and AllocateArrayNode are subclasses of CallNode because they will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
//  get expanded into a code sequence containing a call.  Unlike other CallNodes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
//  they have 2 memory projections and 2 i_o projections (which are distinguished by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
//  the _is_io_use flag in the projection.)  This is needed when expanding the node in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
//  order to differentiate the uses of the projection on the normal control path from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
//  those on the exception return path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
class AllocateNode : public CallNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    // Output:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    RawAddress  = TypeFunc::Parms,    // the newly-allocated raw address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    // Inputs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    AllocSize   = TypeFunc::Parms,    // size (in bytes) of the new object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    KlassNode,                        // type (maybe dynamic) of the obj.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    InitialTest,                      // slow-path test (may be constant)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    ALength,                          // array length (or TOP if none)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    ParmLimit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  static const TypeFunc* alloc_type() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    const Type** fields = TypeTuple::fields(ParmLimit - TypeFunc::Parms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    fields[AllocSize]   = TypeInt::POS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    fields[KlassNode]   = TypeInstPtr::NOTNULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    fields[InitialTest] = TypeInt::BOOL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    fields[ALength]     = TypeInt::INT;  // length (can be a bad length)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    const TypeTuple *domain = TypeTuple::make(ParmLimit, fields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    // create result type (range)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    fields = TypeTuple::fields(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    return TypeFunc::make(domain, range);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
212
cd4963e67949 6667612: (Escape Analysis) disable loop cloning if it has a scalar replaceable allocation
kvn
parents: 206
diff changeset
   735
  bool _is_scalar_replaceable;  // Result of Escape Analysis
cd4963e67949 6667612: (Escape Analysis) disable loop cloning if it has a scalar replaceable allocation
kvn
parents: 206
diff changeset
   736
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  AllocateNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
               Node *size, Node *klass_node, Node *initial_test);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  // Expansion modifies the JVMState, so we need to clone it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  virtual void  clone_jvms() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    set_jvms(jvms()->clone_deep(Compile::current()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  virtual uint ideal_reg() const { return Op_RegP; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  virtual bool        guaranteed_safepoint()  { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   748
  // allocations do not modify their arguments
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   749
  virtual bool        may_modify(const TypePtr *addr_t, PhaseTransform *phase) { return false;}
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   750
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  // Pattern-match a possible usage of AllocateNode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  // Return null if no allocation is recognized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  // The operand is the pointer produced by the (possible) allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  // It must be a projection of the Allocate or its subsequent CastPP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  // (Note:  This function is defined in file graphKit.cpp, near
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  // GraphKit::new_instance/new_array, whose output it recognizes.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  // The 'ptr' may not have an offset unless the 'offset' argument is given.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  static AllocateNode* Ideal_allocation(Node* ptr, PhaseTransform* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  // Fancy version which uses AddPNode::Ideal_base_and_offset to strip
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  // an offset, which is reported back to the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  // (Note:  AllocateNode::Ideal_allocation is defined in graphKit.cpp.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  static AllocateNode* Ideal_allocation(Node* ptr, PhaseTransform* phase,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
                                        intptr_t& offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  // Dig the klass operand out of a (possible) allocation site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  static Node* Ideal_klass(Node* ptr, PhaseTransform* phase) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    AllocateNode* allo = Ideal_allocation(ptr, phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    return (allo == NULL) ? NULL : allo->in(KlassNode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  // Conservatively small estimate of offset of first non-header byte.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  int minimum_header_size() {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   774
    return is_AllocateArray() ? arrayOopDesc::base_offset_in_bytes(T_BYTE) :
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 247
diff changeset
   775
                                instanceOopDesc::base_offset_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  // Return the corresponding initialization barrier (or null if none).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  // Walks out edges to find it...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  // (Note: Both InitializeNode::allocation and AllocateNode::initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  // are defined in graphKit.cpp, which sets up the bidirectional relation.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  InitializeNode* initialization();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  // Convenience for initialization->maybe_set_complete(phase)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  bool maybe_set_complete(PhaseGVN* phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
//------------------------------AllocateArray---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
// High-level array allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
class AllocateArrayNode : public AllocateNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  AllocateArrayNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
                    Node* size, Node* klass_node, Node* initial_test,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
                    Node* count_val
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
                    )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    : AllocateNode(C, atype, ctrl, mem, abio, size, klass_node,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
                   initial_test)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    init_class_id(Class_AllocateArray);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    set_req(AllocateNode::ALength,        count_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  virtual uint size_of() const; // Size is bigger
2528
feeff04a3129 6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents: 2127
diff changeset
   806
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
1398
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   808
  // Dig the length operand out of a array allocation site.
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   809
  Node* Ideal_length() {
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   810
    return in(AllocateNode::ALength);
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   811
  }
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   812
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   813
  // Dig the length operand out of a array allocation site and narrow the
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   814
  // type with a CastII, if necesssary
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   815
  Node* make_ideal_length(const TypeOopPtr* ary_type, PhaseTransform *phase, bool can_create = true);
342890a5d031 6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents: 670
diff changeset
   816
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  // Pattern-match a possible usage of AllocateArrayNode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  // Return null if no allocation is recognized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  static AllocateArrayNode* Ideal_array_allocation(Node* ptr, PhaseTransform* phase) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    AllocateNode* allo = Ideal_allocation(ptr, phase);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    return (allo == NULL || !allo->is_AllocateArray())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
           ? NULL : allo->as_AllocateArray();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
//------------------------------AbstractLockNode-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
class AbstractLockNode: public CallNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
private:
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   829
  bool _eliminate;    // indicates this lock can be safely eliminated
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   830
  bool _coarsened;    // indicates this lock was coarsened
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  NamedCounter* _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  // helper functions for lock elimination
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  bool find_matching_unlock(const Node* ctrl, LockNode* lock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
                            GrowableArray<AbstractLockNode*> &lock_ops);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  bool find_lock_and_unlock_through_if(Node* node, LockNode* lock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
                                       GrowableArray<AbstractLockNode*> &lock_ops);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  bool find_unlocks_for_region(const RegionNode* region, LockNode* lock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
                               GrowableArray<AbstractLockNode*> &lock_ops);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  LockNode *find_matching_lock(UnlockNode* unlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  AbstractLockNode(const TypeFunc *tf)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    : CallNode(tf, NULL, TypeRawPtr::BOTTOM),
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   851
      _coarsened(false),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
      _eliminate(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    _counter = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  virtual int Opcode() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  Node *   obj_node() const       {return in(TypeFunc::Parms + 0); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  Node *   box_node() const       {return in(TypeFunc::Parms + 1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  Node *   fastlock_node() const  {return in(TypeFunc::Parms + 2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  const Type *sub(const Type *t1, const Type *t2) const { return TypeInt::CC;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  virtual uint size_of() const { return sizeof(*this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  bool is_eliminated()         {return _eliminate; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  // mark node as eliminated and update the counter if there is one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  void set_eliminated();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
1613
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   870
  bool is_coarsened()  { return _coarsened; }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   871
  void set_coarsened() { _coarsened = true; }
be097ec639a2 6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents: 1500
diff changeset
   872
238
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   873
  // locking does not modify its arguments
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   874
  virtual bool        may_modify(const TypePtr *addr_t, PhaseTransform *phase){ return false;}
803c80713999 6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents: 236
diff changeset
   875
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  void create_lock_counter(JVMState* s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  NamedCounter* counter() const { return _counter; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
//------------------------------Lock---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
// High-level lock operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
// This is a subclass of CallNode because it is a macro node which gets expanded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
// into a code sequence containing a call.  This node takes 3 "parameters":
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
//    0  -  object to lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
//    1 -   a BoxLockNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
//    2 -   a FastLockNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
class LockNode : public AbstractLockNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  static const TypeFunc *lock_type() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    // create input type (domain)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    const Type **fields = TypeTuple::fields(3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL;  // Object to be Locked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
    fields[TypeFunc::Parms+1] = TypeRawPtr::BOTTOM;    // Address of stack location for lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    fields[TypeFunc::Parms+2] = TypeInt::BOOL;         // FastLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+3,fields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    // create result type (range)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    fields = TypeTuple::fields(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+0,fields);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    return TypeFunc::make(domain,range);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  LockNode(Compile* C, const TypeFunc *tf) : AbstractLockNode( tf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
    init_class_id(Class_Lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
    init_flags(Flag_is_macro);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
    C->add_macro_node(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  virtual bool        guaranteed_safepoint()  { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  // Expansion modifies the JVMState, so we need to clone it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  virtual void  clone_jvms() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    set_jvms(jvms()->clone_deep(Compile::current()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
//------------------------------Unlock---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
// High-level unlock operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
class UnlockNode : public AbstractLockNode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  virtual int Opcode() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  virtual uint size_of() const; // Size is bigger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  UnlockNode(Compile* C, const TypeFunc *tf) : AbstractLockNode( tf ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    init_class_id(Class_Unlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    init_flags(Flag_is_macro);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    C->add_macro_node(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  // unlock is never a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  virtual bool        guaranteed_safepoint()  { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
};