hotspot/src/share/vm/opto/parse.hpp
author kvn
Tue, 18 Nov 2008 12:40:28 -0800
changeset 1554 59019800a87c
parent 1399 9648dfd4ce09
child 2131 98f9cef66a34
permissions -rw-r--r--
6766316: assert(!nocreate,"Cannot build a phi for a block already parsed.") Summary: Don't use the invariant local information if there are irreducible loops. Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 214
diff changeset
     2
 * Copyright 1997-2008 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class BytecodeParseHistogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class InlineTree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class Parse;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class SwitchRange;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//------------------------------InlineTree-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class InlineTree : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  Compile*    C;                  // cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  JVMState*   _caller_jvms;       // state of caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  ciMethod*   _method;            // method being called by the caller_jvms
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  InlineTree* _caller_tree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  uint        _count_inline_bcs;  // Accumulated count of inlined bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // Call-site count / interpreter invocation count, scaled recursively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // Always between 0.0 and 1.0.  Represents the percentage of the method's
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // total execution time used at this call site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  const float _site_invoke_ratio;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  float compute_callee_frequency( int caller_bci ) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  GrowableArray<InlineTree*> _subtrees;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  friend class Compile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  InlineTree(Compile* C,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
             const InlineTree* caller_tree,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
             ciMethod* callee_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
             JVMState* caller_jvms,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
             int caller_bci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
             float site_invoke_ratio);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  InlineTree *build_inline_tree_for_callee(ciMethod* callee_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
                                           JVMState* caller_jvms,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
                                           int caller_bci);
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    57
  const char* try_to_inline(ciMethod* callee_method, ciMethod* caller_method, int caller_bci, ciCallProfile& profile, WarmCallInfo* wci_result);
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    58
  const char* shouldInline(ciMethod* callee_method, ciMethod* caller_method, int caller_bci, ciCallProfile& profile, WarmCallInfo* wci_result) const;
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    59
  const char* shouldNotInline(ciMethod* callee_method, ciMethod* caller_method, WarmCallInfo* wci_result) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  void        print_inlining(ciMethod *callee_method, int caller_bci, const char *failure_msg) const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  InlineTree *caller_tree()       const { return _caller_tree;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  InlineTree* callee_at(int bci, ciMethod* m) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  int         inline_depth()      const { return _caller_jvms ? _caller_jvms->depth() : 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  static InlineTree* build_inline_tree_root();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static InlineTree* find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee, bool create_if_not_found = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // For temporary (stack-allocated, stateless) ilts:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  InlineTree(Compile* c, ciMethod* callee_method, JVMState* caller_jvms, float site_invoke_ratio);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // InlineTree enum
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  enum InlineStyle {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    Inline_do_not_inline             =   0, //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    Inline_cha_is_monomorphic        =   1, //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    Inline_type_profile_monomorphic  =   2  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // See if it is OK to inline.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // The reciever is the inline tree for the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // The result is a temperature indication.  If it is hot or cold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // inlining is immediate or undesirable.  Otherwise, the info block
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // returned is newly allocated and may be enqueued.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // If the method is inlinable, a new inline subtree is created on the fly,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // and may be accessed by find_subtree_from_root.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // The call_method is the dest_method for a special or static invocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // The call_method is an optimized virtual method candidate otherwise.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  WarmCallInfo* ok_to_inline(ciMethod *call_method, JVMState* caller_jvms, ciCallProfile& profile, WarmCallInfo* wci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // Information about inlined method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  JVMState*   caller_jvms()       const { return _caller_jvms; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  ciMethod   *method()            const { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  int         caller_bci()        const { return _caller_jvms ? _caller_jvms->bci() : InvocationEntryBci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  uint        count_inline_bcs()  const { return _count_inline_bcs; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  float       site_invoke_ratio() const { return _site_invoke_ratio; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  uint        _count_inlines;     // Count of inlined methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // Debug information collected during parse
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  uint        count_inlines()     const { return _count_inlines; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  GrowableArray<InlineTree*> subtrees() { return _subtrees; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
//------------------------------Parse------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// Parse bytecodes, build a Graph
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
class Parse : public GraphKit {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Per-block information needed by the parser:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  class Block {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
   private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    ciTypeFlow::Block* _flow;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    int                _pred_count;     // how many predecessors in CFG?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    int                _preds_parsed;   // how many of these have been parsed?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    uint               _count;          // how many times executed?  Currently only set by _goto's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    bool               _is_parsed;      // has this block been parsed yet?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    bool               _is_handler;     // is this block an exception handler?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    SafePointNode*     _start_map;      // all values flowing into this block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    MethodLivenessResult _live_locals;  // lazily initialized liveness bitmap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    int                _num_successors; // Includes only normal control flow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    int                _all_successors; // Include exception paths also.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    Block**            _successors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    // Use init_node/init_graph to initialize Blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    // Block() : _live_locals((uintptr_t*)NULL,0) { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    Block() : _live_locals(NULL,0) { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    // Set up the block data structure itself.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    void init_node(Parse* outer, int po);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    // Set up the block's relations to other blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    void init_graph(Parse* outer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    ciTypeFlow::Block* flow() const        { return _flow; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    int pred_count() const                 { return _pred_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    int preds_parsed() const               { return _preds_parsed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    bool is_parsed() const                 { return _is_parsed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    bool is_handler() const                { return _is_handler; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    void set_count( uint x )               { _count = x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    uint count() const                     { return _count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    SafePointNode* start_map() const       { assert(is_merged(),"");   return _start_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    void set_start_map(SafePointNode* m)   { assert(!is_merged(), ""); _start_map = m; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    // True after any predecessor flows control into this block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    bool is_merged() const                 { return _start_map != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    // True when all non-exception predecessors have been parsed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    bool is_ready() const                  { return preds_parsed() == pred_count(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    int num_successors() const             { return _num_successors; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    int all_successors() const             { return _all_successors; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    Block* successor_at(int i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
      assert((uint)i < (uint)all_successors(), "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      return _successors[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    Block* successor_for_bci(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    int start() const                      { return flow()->start(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    int limit() const                      { return flow()->limit(); }
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   170
    int rpo() const                        { return flow()->rpo(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    int start_sp() const                   { return flow()->stack_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   173
    bool is_loop_head() const              { return flow()->is_loop_head(); }
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   174
    bool is_SEL_head() const               { return flow()->is_single_entry_loop_head(); }
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   175
    bool is_SEL_backedge(Block* pred) const{ return is_SEL_head() && pred->rpo() >= rpo(); }
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   176
    bool is_invariant_local(uint i) const  {
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   177
      const JVMState* jvms = start_map()->jvms();
1554
59019800a87c 6766316: assert(!nocreate,"Cannot build a phi for a block already parsed.")
kvn
parents: 1399
diff changeset
   178
      if (!jvms->is_loc(i) || flow()->outer()->has_irreducible_entry()) return false;
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   179
      return flow()->is_invariant_local(i - jvms->locoff());
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   180
    }
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   181
    bool can_elide_SEL_phi(uint i) const  { assert(is_SEL_head(),""); return is_invariant_local(i); }
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   182
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    const Type* peek(int off=0) const      { return stack_type_at(start_sp() - (off+1)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    const Type* stack_type_at(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    const Type* local_type_at(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    static const Type* get_type(ciType* t) { return Type::get_typeflow_type(t); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    bool has_trap_at(int bci) const        { return flow()->has_trap() && flow()->trap_bci() == bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    // Call this just before parsing a block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    void mark_parsed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      assert(!_is_parsed, "must parse each block exactly once");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      _is_parsed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    // Return the phi/region input index for the "current" pred,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    // and bump the pred number.  For historical reasons these index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    // numbers are handed out in descending order.  The last index is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    // always PhiNode::Input (i.e., 1).  The value returned is known
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    // as a "path number" because it distinguishes by which path we are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    // entering the block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    int next_path_num() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      assert(preds_parsed() < pred_count(), "too many preds?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
      return pred_count() - _preds_parsed++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    // Add a previously unaccounted predecessor to this block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    // This operates by increasing the size of the block's region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    // and all its phi nodes (if any).  The value returned is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    // path number ("pnum").
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    int add_new_path();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    // Initialize me by recording the parser's map.  My own map must be NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    void record_state(Parse* outer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // BytecodeParseHistogram collects number of bytecodes parsed, nodes constructed, and transformations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  class BytecodeParseHistogram : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
   private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    enum BPHType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      BPH_transforms,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
      BPH_values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    static bool _initialized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    static uint _bytecodes_parsed [Bytecodes::number_of_codes];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    static uint _nodes_constructed[Bytecodes::number_of_codes];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    static uint _nodes_transformed[Bytecodes::number_of_codes];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    static uint _new_values       [Bytecodes::number_of_codes];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    Bytecodes::Code _initial_bytecode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    int             _initial_node_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    int             _initial_transforms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    int             _initial_values;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    Parse     *_parser;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    Compile   *_compiler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    static void reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    // Return info being collected, select with global flag 'BytecodeParseInfo'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    int current_count(BPHType info_selector);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    BytecodeParseHistogram(Parse *p, Compile *c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    static bool initialized();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    // Record info when starting to parse one bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    void set_initial_state( Bytecodes::Code bc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    // Record results of parsing one bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    void record_change();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    // Profile printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    static void print(float cutoff = 0.01F); // cutoff in percent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    // Record work done during parsing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    BytecodeParseHistogram* _parse_histogram;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    void set_parse_histogram(BytecodeParseHistogram *bph) { _parse_histogram = bph; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    BytecodeParseHistogram* parse_histogram()      { return _parse_histogram; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  friend class Block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // Variables which characterize this compilation as a whole:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  JVMState*     _caller;        // JVMS which carries incoming args & state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  float         _expected_uses; // expected number of calls to this code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  float         _prof_factor;   // discount applied to my profile counts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  int           _depth;         // Inline tree depth, for debug printouts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  const TypeFunc*_tf;           // My kind of function type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  int           _entry_bci;     // the osr bci or InvocationEntryBci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  ciTypeFlow*   _flow;          // Results of previous flow pass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  Block*        _blocks;        // Array of basic-block structs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  int           _block_count;   // Number of elements in _blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  GraphKit      _exits;         // Record all normal returns and throws here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  bool          _wrote_final;   // Did we write a final field?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  bool          _count_invocations; // update and test invocation counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  bool          _method_data_update; // update method data oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // Variables which track Java semantics during bytecode parsing:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  Block*            _block;     // block currently getting parsed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  ciBytecodeStream  _iter;      // stream of this method's bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  int           _blocks_merged; // Progress meter: state merges from BB preds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  int           _blocks_parsed; // Progress meter: BBs actually parsed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  const FastLockNode* _synch_lock; // FastLockNode for synchronized method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  int _max_switch_depth;        // Debugging SwitchRanges.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  int _est_switch_depth;        // Debugging SwitchRanges.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  Parse(JVMState* caller, ciMethod* parse_method, float expected_uses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  virtual Parse* is_Parse() const { return (Parse*)this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // Accessors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  JVMState*     caller()        const { return _caller; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  float         expected_uses() const { return _expected_uses; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  float         prof_factor()   const { return _prof_factor; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  int           depth()         const { return _depth; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  const TypeFunc* tf()          const { return _tf; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  //            entry_bci()     -- see osr_bci, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  ciTypeFlow*   flow()          const { return _flow; }
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   318
  //            blocks()        -- see rpo_at, start_block, etc.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  int           block_count()   const { return _block_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  GraphKit&     exits()               { return _exits; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  bool          wrote_final() const   { return _wrote_final; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  void      set_wrote_final(bool z)   { _wrote_final = z; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  bool          count_invocations() const  { return _count_invocations; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  bool          method_data_update() const { return _method_data_update; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  Block*             block()    const { return _block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  ciBytecodeStream&  iter()           { return _iter; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  Bytecodes::Code    bc()       const { return _iter.cur_bc(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  void set_block(Block* b)            { _block = b; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  // Derived accessors:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  bool is_normal_parse() const  { return _entry_bci == InvocationEntryBci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  bool is_osr_parse() const     { return _entry_bci != InvocationEntryBci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  int osr_bci() const           { assert(is_osr_parse(),""); return _entry_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  void set_parse_bci(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // Must this parse be aborted?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  bool failing()                { return C->failing(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   343
  Block* rpo_at(int rpo) {
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   344
    assert(0 <= rpo && rpo < _block_count, "oob");
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   345
    return &_blocks[rpo];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  Block* start_block() {
1399
9648dfd4ce09 6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents: 956
diff changeset
   348
    return rpo_at(flow()->start_block()->rpo());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  // Can return NULL if the flow pass did not complete a block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  Block* successor_for_bci(int bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    return block()->successor_for_bci(bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // Create a JVMS & map for the initial state of this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  SafePointNode* create_entry_map();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // OSR helpers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  Node *fetch_interpreter_state(int index, BasicType bt, Node *local_addrs, Node *local_addrs_base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  Node* check_interpreter_type(Node* l, const Type* type, SafePointNode* &bad_type_exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  void  load_interpreter_state(Node* osr_buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // Functions for managing basic blocks:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  void init_blocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  void load_state_from(Block* b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  void store_state_to(Block* b) { b->record_state(this); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // Parse all the basic blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  void do_all_blocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // Parse the current basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  void do_one_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // Raise an error if we get a bad ciTypeFlow CFG.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  void handle_missing_successor(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // first actions (before BCI 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  void do_method_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // implementation of monitorenter/monitorexit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  void do_monitor_enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  void do_monitor_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // Eagerly create phie throughout the state, to cope with back edges.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  void ensure_phis_everywhere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // Merge the current mapping into the basic block starting at bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  void merge(          int target_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // Same as plain merge, except that it allocates a new path number.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  void merge_new_path( int target_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // Merge the current mapping into an exception handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  void merge_exception(int target_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // Helper: Merge the current mapping into the given basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  void merge_common(Block* target, int pnum);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // Helper functions for merging individual cells.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  PhiNode *ensure_phi(       int idx, bool nocreate = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  PhiNode *ensure_memory_phi(int idx, bool nocreate = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // Helper to merge the current memory state into the given basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  void merge_memory_edges(MergeMemNode* n, int pnum, bool nophi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // Parse this bytecode, and alter the Parsers JVM->Node mapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  void do_one_bytecode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // helper function to generate array store check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  void array_store_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // Helper function to generate array load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  void array_load(BasicType etype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // Helper function to generate array store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  void array_store(BasicType etype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // Helper function to compute array addressing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  Node* array_addressing(BasicType type, int vals, const Type* *result2=NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // Pass current map to exits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  void return_current(Node* value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // Register finalizers on return from Object.<init>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  void call_register_finalizer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // Insert a compiler safepoint into the graph
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  void add_safepoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // Insert a compiler safepoint into the graph, if there is a back-branch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  void maybe_add_safepoint(int target_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    if (UseLoopSafepoints && target_bci <= bci()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      add_safepoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  // Note:  Intrinsic generation routines may be found in library_call.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // Helper function to setup Ideal Call nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  void do_call();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // Helper function to uncommon-trap or bailout for non-compilable call-sites
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  bool can_not_compile_call_site(ciMethod *dest_method, ciInstanceKlass *klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // Helper function to identify inlining potential at call-site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  ciMethod* optimize_inlining(ciMethod* caller, int bci, ciInstanceKlass* klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
                              ciMethod *dest_method, const TypeOopPtr* receiver_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // Helper function to setup for type-profile based inlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  bool prepare_type_profile_inline(ciInstanceKlass* prof_klass, ciMethod* prof_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  // Helper functions for type checking bytecodes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  void  do_checkcast();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  void  do_instanceof();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // Helper functions for shifting & arithmetic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  void modf();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  void modd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  void l2f();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  void do_irem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // implementation of _get* and _put* bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  void do_getstatic() { do_field_access(true,  false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  void do_getfield () { do_field_access(true,  true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  void do_putstatic() { do_field_access(false, false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  void do_putfield () { do_field_access(false, true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // common code for making initial checks and forming addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  void do_field_access(bool is_get, bool is_field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  bool static_field_ok_in_clinit(ciField *field, ciMethod *method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  // common code for actually performing the load or store
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  void do_get_xxx(const TypePtr* obj_type, Node* obj, ciField* field, bool is_field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  void do_put_xxx(const TypePtr* obj_type, Node* obj, ciField* field, bool is_field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  // loading from a constant field or the constant pool
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  // returns false if push failed (non-perm field constants only, not ldcs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  bool push_constant(ciConstant con);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  // implementation of object creation bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  void do_new();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  void do_newarray(BasicType elemtype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  void do_anewarray();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  void do_multianewarray();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  Node* expand_multianewarray(ciArrayKlass* array_klass, Node* *lengths, int ndimensions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // implementation of jsr/ret
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  void do_jsr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  void do_ret();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  float   dynamic_branch_prediction(float &cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  float   branch_prediction(float &cnt, BoolTest::mask btest, int target_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  bool    seems_never_taken(float prob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
956
f1aadc829f59 6726504: handle do_ifxxx calls in parser more uniformly
rasbold
parents: 670
diff changeset
   489
  void    do_ifnull(BoolTest::mask btest, Node* c);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  void    do_if(BoolTest::mask btest, Node* c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  void    repush_if_args();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  void    adjust_map_after_if(BoolTest::mask btest, Node* c, float prob,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
                              Block* path, Block* other_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  IfNode* jump_if_fork_int(Node* a, Node* b, BoolTest::mask mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  Node*   jump_if_join(Node* iffalse, Node* iftrue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  void    jump_if_true_fork(IfNode *ifNode, int dest_bci_if_true, int prof_table_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  void    jump_if_false_fork(IfNode *ifNode, int dest_bci_if_false, int prof_table_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  void    jump_if_always_fork(int dest_bci_if_true, int prof_table_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  friend class SwitchRange;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  void    do_tableswitch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  void    do_lookupswitch();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  void    jump_switch_ranges(Node* a, SwitchRange* lo, SwitchRange* hi, int depth = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  bool    create_jump_tables(Node* a, SwitchRange* lo, SwitchRange* hi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  // helper functions for methodData style profiling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  void test_counter_against_threshold(Node* cnt, int limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  void increment_and_test_invocation_counter(int limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  void test_for_osr_md_counter_at(ciMethodData* md, ciProfileData* data, ByteSize offset, int limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  Node* method_data_addressing(ciMethodData* md, ciProfileData* data, ByteSize offset, Node* idx = NULL, uint stride = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  void increment_md_counter_at(ciMethodData* md, ciProfileData* data, ByteSize offset, Node* idx = NULL, uint stride = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  void set_md_flag_at(ciMethodData* md, ciProfileData* data, int flag_constant);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  void profile_method_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  void profile_taken_branch(int target_bci, bool force_update = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  void profile_not_taken_branch(bool force_update = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  void profile_call(Node* receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  void profile_generic_call();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  void profile_receiver_type(Node* receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  void profile_ret(int target_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  void profile_null_checkcast();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  void profile_switch_case(int table_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  // helper function for call statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  void count_compiled_calls(bool at_method_entry, bool is_inline) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  Node_Notes* make_node_notes(Node_Notes* caller_nn);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // Helper functions for handling normal and abnormal exits.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  void build_exits();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // Fix up all exceptional control flow exiting a single bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  void do_exceptions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // Fix up all exiting control flow at the end of the parse.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  void do_exits();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  // Add Catch/CatchProjs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  // The call is either a Java call or the VM's rethrow stub
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  void catch_call_exceptions(ciExceptionHandlerStream&);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  // Handle all exceptions thrown by the inlined method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  // Also handles exceptions for individual bytecodes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  void catch_inline_exceptions(SafePointNode* ex_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  // Bytecode classifier, helps decide to use uncommon_trap vs. rethrow_C.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  bool can_rerun_bytecode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  // Merge the given map into correct exceptional exit state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  // Assumes that there is no applicable local handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  void throw_to_exit(SafePointNode* ex_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  // Handle PrintOpto, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  void show_parse_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  void dump_map_adr_mem() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  static void print_statistics(); // Print some performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  void dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  void dump_bci(int bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
};