hotspot/src/share/vm/opto/block.cpp
author mikael
Thu, 04 Apr 2013 10:01:26 -0700
changeset 16670 4af09aff4237
parent 13963 e5b53c306fb5
child 19279 4be3c2e6663c
permissions -rw-r--r--
8003310: Enable -Wunused-function when compiling with gcc Summary: Add the -Wunused-function flag and remove a number of unused functions. Reviewed-by: dholmes, coleenp, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 13895
diff changeset
     2
 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3593
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3593
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3593
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    26
#include "libadt/vectset.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    27
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    28
#include "opto/block.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    29
#include "opto/cfgnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    30
#include "opto/chaitin.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    31
#include "opto/loopnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    32
#include "opto/machnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    33
#include "opto/matcher.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    34
#include "opto/opcodes.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    35
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    36
#include "utilities/copy.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6180
diff changeset
    38
// Optimization - Graph Style
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
void Block_Array::grow( uint i ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  assert(i >= Max(), "must be an overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  debug_only(_limit = i+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  if( i < _size )  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  if( !_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    _size = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _blocks = (Block**)_arena->Amalloc( _size * sizeof(Block*) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    _blocks[0] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  uint old = _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  while( i >= _size ) _size <<= 1;      // Double to fit
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _blocks = (Block**)_arena->Arealloc( _blocks, old*sizeof(Block*),_size*sizeof(Block*));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  Copy::zero_to_bytes( &_blocks[old], (_size-old)*sizeof(Block*) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void Block_List::remove(uint i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  assert(i < _cnt, "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  Copy::conjoint_words_to_lower((HeapWord*)&_blocks[i+1], (HeapWord*)&_blocks[i], ((_cnt-i-1)*sizeof(Block*)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  pop(); // shrink list by one block
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
void Block_List::insert(uint i, Block *b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  push(b); // grow list by one block
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  Copy::conjoint_words_to_higher((HeapWord*)&_blocks[i], (HeapWord*)&_blocks[i+1], ((_cnt-i-1)*sizeof(Block*)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  _blocks[i] = b;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    70
#ifndef PRODUCT
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    71
void Block_List::print() {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    72
  for (uint i=0; i < size(); i++) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    73
    tty->print("B%d ", _blocks[i]->_pre_order);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    74
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    75
  tty->print("size = %d\n", size());
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    76
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    77
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
uint Block::code_alignment() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Check for Root block
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
    83
  if (_pre_order == 0) return CodeEntryAlignment;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Check for Start block
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
    85
  if (_pre_order == 1) return InteriorEntryAlignment;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Check for loop alignment
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
    87
  if (has_loop_alignment()) return loop_alignment();
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    88
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
    89
  return relocInfo::addr_unit(); // no particular alignment
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    90
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    91
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
    92
uint Block::compute_loop_alignment() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  Node *h = head();
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
    94
  int unit_sz = relocInfo::addr_unit();
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
    95
  if (h->is_Loop() && h->as_Loop()->is_inner_loop())  {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    // Pre- and post-loops have low trip count so do not bother with
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    // NOPs for align loop head.  The constants are hidden from tuning
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    // but only because my "divide by 4" heuristic surely gets nearly
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    // all possible gain (a "do not align at all" heuristic has a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    // chance of getting a really tiny gain).
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   101
    if (h->is_CountedLoop() && (h->as_CountedLoop()->is_pre_loop() ||
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   102
                                h->as_CountedLoop()->is_post_loop())) {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   103
      return (OptoLoopAlignment > 4*unit_sz) ? (OptoLoopAlignment>>2) : unit_sz;
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   104
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    // Loops with low backedge frequency should not be aligned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    Node *n = h->in(LoopNode::LoopBackControl)->in(0);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   107
    if (n->is_MachIf() && n->as_MachIf()->_prob < 0.01) {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   108
      return unit_sz; // Loop does not loop, more often than not!
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    return OptoLoopAlignment; // Otherwise align loop head
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   112
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   113
  return unit_sz; // no particular alignment
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// Compute the size of first 'inst_cnt' instructions in this block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// Return the number of instructions left to compute if the block has
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   119
// less then 'inst_cnt' instructions. Stop, and return 0 if sum_size
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   120
// exceeds OptoLoopAlignment.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
uint Block::compute_first_inst_size(uint& sum_size, uint inst_cnt,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
                                    PhaseRegAlloc* ra) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  uint last_inst = _nodes.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  for( uint j = 0; j < last_inst && inst_cnt > 0; j++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    uint inst_size = _nodes[j]->size(ra);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    if( inst_size > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      inst_cnt--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      uint sz = sum_size + inst_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      if( sz <= (uint)OptoLoopAlignment ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
        // Compute size of instructions which fit into fetch buffer only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
        // since all inst_cnt instructions will not fit even if we align them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
        sum_size = sz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
        return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  return inst_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
uint Block::find_node( const Node *n ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  for( uint i = 0; i < _nodes.size(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    if( _nodes[i] == n )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// Find and remove n from block list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
void Block::find_remove( const Node *n ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  _nodes.remove(find_node(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
//------------------------------is_Empty---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
// Return empty status of a block.  Empty blocks contain only the head, other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
// ideal nodes, and an optional trailing goto.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
int Block::is_Empty() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Root or start block is not considered empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  if (head()->is_Root() || head()->is_Start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    return not_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int success_result = completely_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  int end_idx = _nodes.size()-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Check for ending goto
10255
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 7397
diff changeset
   170
  if ((end_idx > 0) && (_nodes[end_idx]->is_MachGoto())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    success_result = empty_with_goto;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    end_idx--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // Unreachable blocks are considered empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  if (num_preds() <= 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    return success_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Ideal nodes are allowable in empty blocks: skip them  Only MachNodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // turn directly into code, because only MachNodes have non-trivial
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // emit() functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  while ((end_idx > 0) && !_nodes[end_idx]->is_Mach()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    end_idx--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // No room for any interesting instructions?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  if (end_idx == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    return success_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  return not_empty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
//------------------------------has_uncommon_code------------------------------
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
   196
// Return true if the block's code implies that it is likely to be
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
// executed infrequently.  Check to see if the block ends in a Halt or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
// a low probability call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
bool Block::has_uncommon_code() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  Node* en = end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
10255
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 7397
diff changeset
   202
  if (en->is_MachGoto())
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    en = en->in(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  if (en->is_Catch())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    en = en->in(0);
10255
bab46e6f7661 7069452: Cleanup NodeFlags
kvn
parents: 7397
diff changeset
   206
  if (en->is_MachProj() && en->in(0)->is_MachCall()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    MachCallNode* call = en->in(0)->as_MachCall();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    if (call->cnt() != COUNT_UNKNOWN && call->cnt() <= PROB_UNLIKELY_MAG(4)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      // This is true for slow-path stubs like new_{instance,array},
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      // slow_arraycopy, complete_monitor_locking, uncommon_trap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      // The magic number corresponds to the probability of an uncommon_trap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      // even though it is a count not a probability.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  int op = en->is_Mach() ? en->as_Mach()->ideal_Opcode() : en->Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  return op == Op_Halt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
//------------------------------is_uncommon------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// True if block is low enough frequency or guarded by a test which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// mostly does not go here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
bool Block::is_uncommon( Block_Array &bbs ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // Initial blocks must never be moved, so are never uncommon.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  if (head()->is_Root() || head()->is_Start())  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Check for way-low freq
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if( _freq < BLOCK_FREQUENCY(0.00001f) ) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // Look for code shape indicating uncommon_trap or slow path
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  if (has_uncommon_code()) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  const float epsilon = 0.05f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  const float guard_factor = PROB_UNLIKELY_MAG(4) / (1.f - epsilon);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  uint uncommon_preds = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  uint freq_preds = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  uint uncommon_for_freq_preds = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  for( uint i=1; i<num_preds(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    Block* guard = bbs[pred(i)->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    // Check to see if this block follows its guard 1 time out of 10000
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    // or less.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    // See list of magnitude-4 unlikely probabilities in cfgnode.hpp which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    // we intend to be "uncommon", such as slow-path TLE allocation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    // predicted call failure, and uncommon trap triggers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    // Use an epsilon value of 5% to allow for variability in frequency
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    // predictions and floating point calculations. The net effect is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    // that guard_factor is set to 9500.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    // Ignore low-frequency blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    // The next check is (guard->_freq < 1.e-5 * 9500.).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    if(guard->_freq*BLOCK_FREQUENCY(guard_factor) < BLOCK_FREQUENCY(0.00001f)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      uncommon_preds++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      freq_preds++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      if( _freq < guard->_freq * guard_factor ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
        uncommon_for_freq_preds++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  if( num_preds() > 1 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      // The block is uncommon if all preds are uncommon or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      (uncommon_preds == (num_preds()-1) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
      // it is uncommon for all frequent preds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
       uncommon_for_freq_preds == freq_preds) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
//------------------------------dump-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
#ifndef PRODUCT
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   276
void Block::dump_bidx(const Block* orig, outputStream* st) const {
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   277
  if (_pre_order) st->print("B%d",_pre_order);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   278
  else st->print("N%d", head()->_idx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  if (Verbose && orig != this) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    // Dump the original block's idx
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   282
    st->print(" (");
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   283
    orig->dump_bidx(orig, st);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   284
    st->print(")");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   288
void Block::dump_pred(const Block_Array *bbs, Block* orig, outputStream* st) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  if (is_connector()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    for (uint i=1; i<num_preds(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      Block *p = ((*bbs)[pred(i)->_idx]);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   292
      p->dump_pred(bbs, orig, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  } else {
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   295
    dump_bidx(orig, st);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   296
    st->print(" ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   300
void Block::dump_head( const Block_Array *bbs, outputStream* st ) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // Print the basic block
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   302
  dump_bidx(this, st);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   303
  st->print(": #\t");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // Print the incoming CFG edges and the outgoing CFG edges
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  for( uint i=0; i<_num_succs; i++ ) {
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   307
    non_connector_successor(i)->dump_bidx(_succs[i], st);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   308
    st->print(" ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  }
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   310
  st->print("<- ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  if( head()->is_block_start() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    for (uint i=1; i<num_preds(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      Node *s = pred(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      if (bbs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
        Block *p = (*bbs)[s->_idx];
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   316
        p->dump_pred(bbs, p, st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
        while (!s->is_block_start())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
          s = s->in(0);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   320
        st->print("N%d ", s->_idx );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  } else
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   324
    st->print("BLOCK HEAD IS JUNK  ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Print loop, if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  const Block *bhead = this;    // Head of self-loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  Node *bh = bhead->head();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  if( bbs && bh->is_Loop() && !head()->is_Root() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    LoopNode *loop = bh->as_Loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    const Block *bx = (*bbs)[loop->in(LoopNode::LoopBackControl)->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    while (bx->is_connector()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      bx = (*bbs)[bx->pred(1)->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    }
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   335
    st->print("\tLoop: B%d-B%d ", bhead->_pre_order, bx->_pre_order);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    // Dump any loop-specific bits, especially for CountedLoops.
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   337
    loop->dump_spec(st);
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   338
  } else if (has_loop_alignment()) {
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   339
    st->print(" top-of-loop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  }
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   341
  st->print(" Freq: %g",_freq);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  if( Verbose || WizardMode ) {
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   343
    st->print(" IDom: %d/#%d", _idom ? _idom->_pre_order : 0, _dom_depth);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   344
    st->print(" RegPressure: %d",_reg_pressure);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   345
    st->print(" IHRP Index: %d",_ihrp_index);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   346
    st->print(" FRegPressure: %d",_freg_pressure);
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   347
    st->print(" FHRP Index: %d",_fhrp_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  }
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   349
  st->print_cr("");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   352
void Block::dump() const { dump(NULL); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
void Block::dump( const Block_Array *bbs ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  dump_head(bbs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  uint cnt = _nodes.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  for( uint i=0; i<cnt; i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    _nodes[i]->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  tty->print("\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
//------------------------------PhaseCFG---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
PhaseCFG::PhaseCFG( Arena *a, RootNode *r, Matcher &m ) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  Phase(CFG),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  _bbs(a),
6180
53c1bf468c81 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 5547
diff changeset
   368
  _root(r),
53c1bf468c81 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 5547
diff changeset
   369
  _node_latency(NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  , _trace_opto_pipelining(TraceOptoPipelining || C->method_has_option("TraceOptoPipelining"))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
#endif
3186
11ba3d09bd0e 6840775: Multiple JVM crashes seen with 1.6.0_10 through 1.6.0_14
kvn
parents: 2154
diff changeset
   373
#ifdef ASSERT
11ba3d09bd0e 6840775: Multiple JVM crashes seen with 1.6.0_10 through 1.6.0_14
kvn
parents: 2154
diff changeset
   374
  , _raw_oops(a)
11ba3d09bd0e 6840775: Multiple JVM crashes seen with 1.6.0_10 through 1.6.0_14
kvn
parents: 2154
diff changeset
   375
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // I'll need a few machine-specific GotoNodes.  Make an Ideal GotoNode,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // then Match it into a machine-specific Node.  Then clone the machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // Node on demand.
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 11191
diff changeset
   381
  Node *x = new (C) GotoNode(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  x->init_req(0, x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  _goto = m.match_tree(x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  assert(_goto != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  _goto->set_req(0,_goto);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // Build the CFG in Reverse Post Order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  _num_blocks = build_cfg();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  _broot = _bbs[_root->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
//------------------------------build_cfg--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
// Build a proper looking CFG.  Make every block begin with either a StartNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// or a RegionNode.  Make every block end with either a Goto, If or Return.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// The RootNode both starts and ends it's own block.  Do this with a recursive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
// backwards walk over the control edges.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
uint PhaseCFG::build_cfg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  Arena *a = Thread::current()->resource_area();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  VectorSet visited(a);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // Allocate stack with enough space to avoid frequent realloc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  Node_Stack nstack(a, C->unique() >> 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  nstack.push(_root, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  uint sum = 0;                 // Counter for blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  while (nstack.is_nonempty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    // node and in's index from stack's top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    // 'np' is _root (see above) or RegionNode, StartNode: we push on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    // only nodes which point to the start of basic block (see below).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    Node *np = nstack.node();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    // idx > 0, except for the first node (_root) pushed on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    // at the beginning when idx == 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    // We will use the condition (idx == 0) later to end the build.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    uint idx = nstack.index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    Node *proj = np->in(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    const Node *x = proj->is_block_proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    // Does the block end with a proper block-ending Node?  One of Return,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    // If or Goto? (This check should be done for visited nodes also).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    if (x == NULL) {                    // Does not end right...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
      Node *g = _goto->clone(); // Force it to end in a Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      g->set_req(0, proj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
      np->set_req(idx, g);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      x = proj = g;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    if (!visited.test_set(x->_idx)) { // Visit this block once
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      // Skip any control-pinned middle'in stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
      Node *p = proj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
      do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
        proj = p;                   // Update pointer to last Control
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
        p = p->in(0);               // Move control forward
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
      } while( !p->is_block_proj() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
               !p->is_block_start() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
      // Make the block begin with one of Region or StartNode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
      if( !p->is_block_start() ) {
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 11191
diff changeset
   435
        RegionNode *r = new (C) RegionNode( 2 );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
        r->init_req(1, p);         // Insert RegionNode in the way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
        proj->set_req(0, r);        // Insert RegionNode in the way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
        p = r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
      // 'p' now points to the start of this basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
      // Put self in array of basic blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
      Block *bb = new (_bbs._arena) Block(_bbs._arena,p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
      _bbs.map(p->_idx,bb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      _bbs.map(x->_idx,bb);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   446
      if( x != p ) {                // Only for root is x == p
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
        bb->_nodes.push((Node*)x);
10264
6879f93d268d 7063629: use cbcond in C2 generated code on T4
kvn
parents: 10255
diff changeset
   448
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      // Now handle predecessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
      ++sum;                        // Count 1 for self block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
      uint cnt = bb->num_preds();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      for (int i = (cnt - 1); i > 0; i-- ) { // For all predecessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
        Node *prevproj = p->in(i);  // Get prior input
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
        assert( !prevproj->is_Con(), "dead input not removed" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
        // Check to see if p->in(i) is a "control-dependent" CFG edge -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
        // i.e., it splits at the source (via an IF or SWITCH) and merges
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
        // at the destination (via a many-input Region).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
        // This breaks critical edges.  The RegionNode to start the block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
        // will be added when <p,i> is pulled off the node stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
        if ( cnt > 2 ) {             // Merging many things?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
          assert( prevproj== bb->pred(i),"");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
          if(prevproj->is_block_proj() != prevproj) { // Control-dependent edge?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
            // Force a block on the control-dependent edge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
            Node *g = _goto->clone();       // Force it to end in a Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
            g->set_req(0,prevproj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
            p->set_req(i,g);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
        nstack.push(p, i);  // 'p' is RegionNode or StartNode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    } else { // Post-processing visited nodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
      nstack.pop();                 // remove node from stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
      // Check if it the fist node pushed on stack at the beginning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
      if (idx == 0) break;          // end of the build
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
      // Find predecessor basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
      Block *pb = _bbs[x->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
      // Insert into nodes array, if not already there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
      if( !_bbs.lookup(proj->_idx) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
        assert( x != proj, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
        // Map basic block of projection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
        _bbs.map(proj->_idx,pb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
        pb->_nodes.push(proj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      // Insert self as a child of my predecessor block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
      pb->_succs.map(pb->_num_succs++, _bbs[np->_idx]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
      assert( pb->_nodes[ pb->_nodes.size() - pb->_num_succs ]->is_block_proj(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
              "too many control users, not a CFG?" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  // Return number of basic blocks for all children and self
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  return sum;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
//------------------------------insert_goto_at---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
// Inserts a goto & corresponding basic block between
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
// block[block_no] and its succ_no'th successor block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
void PhaseCFG::insert_goto_at(uint block_no, uint succ_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  // get block with block_no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  assert(block_no < _num_blocks, "illegal block number");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  Block* in  = _blocks[block_no];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  // get successor block succ_no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  assert(succ_no < in->_num_succs, "illegal successor number");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  Block* out = in->_succs[succ_no];
1070
e03de091796e 6611837: block frequency is zero
rasbold
parents: 1
diff changeset
   504
  // Compute frequency of the new block. Do this before inserting
e03de091796e 6611837: block frequency is zero
rasbold
parents: 1
diff changeset
   505
  // new block in case succ_prob() needs to infer the probability from
e03de091796e 6611837: block frequency is zero
rasbold
parents: 1
diff changeset
   506
  // surrounding blocks.
e03de091796e 6611837: block frequency is zero
rasbold
parents: 1
diff changeset
   507
  float freq = in->_freq * in->succ_prob(succ_no);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  // get ProjNode corresponding to the succ_no'th successor of the in block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  ProjNode* proj = in->_nodes[in->_nodes.size() - in->_num_succs + succ_no]->as_Proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // create region for basic block
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 11191
diff changeset
   511
  RegionNode* region = new (C) RegionNode(2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  region->init_req(1, proj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  // setup corresponding basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  Block* block = new (_bbs._arena) Block(_bbs._arena, region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  _bbs.map(region->_idx, block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  C->regalloc()->set_bad(region->_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  // add a goto node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  Node* gto = _goto->clone(); // get a new goto node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  gto->set_req(0, region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  // add it to the basic block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  block->_nodes.push(gto);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  _bbs.map(gto->_idx, block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  C->regalloc()->set_bad(gto->_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  // hook up successor block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  block->_succs.map(block->_num_succs++, out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // remap successor's predecessors if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  for (uint i = 1; i < out->num_preds(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    if (out->pred(i) == proj) out->head()->set_req(i, gto);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  // remap predecessor's successor to new block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  in->_succs.map(succ_no, block);
1070
e03de091796e 6611837: block frequency is zero
rasbold
parents: 1
diff changeset
   532
  // Set the frequency of the new block
e03de091796e 6611837: block frequency is zero
rasbold
parents: 1
diff changeset
   533
  block->_freq = freq;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  // add new basic block to basic block list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  _blocks.insert(block_no + 1, block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  _num_blocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
//------------------------------no_flip_branch---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
// Does this block end in a multiway branch that cannot have the default case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
// flipped for another case?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
static bool no_flip_branch( Block *b ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  int branch_idx = b->_nodes.size() - b->_num_succs-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  if( branch_idx < 1 ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  Node *bra = b->_nodes[branch_idx];
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   546
  if( bra->is_Catch() )
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   547
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  if( bra->is_Mach() ) {
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   549
    if( bra->is_MachNullCheck() )
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   550
      return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    int iop = bra->as_Mach()->ideal_Opcode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    if( iop == Op_FastLock || iop == Op_FastUnlock )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
//------------------------------convert_NeverBranch_to_Goto--------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
// Check for NeverBranch at block end.  This needs to become a GOTO to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
// true target.  NeverBranch are treated as a conditional branch that always
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
// goes the same direction for most of the optimizer and are used to give a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
// fake exit path to infinite loops.  At this late stage they need to turn
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
// into Goto's so that when you enter the infinite loop you indeed hang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
void PhaseCFG::convert_NeverBranch_to_Goto(Block *b) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  // Find true target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  int end_idx = b->end_idx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  int idx = b->_nodes[end_idx+1]->as_Proj()->_con;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  Block *succ = b->_succs[idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  Node* gto = _goto->clone(); // get a new goto node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  gto->set_req(0, b->head());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  Node *bp = b->_nodes[end_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  b->_nodes.map(end_idx,gto); // Slam over NeverBranch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  _bbs.map(gto->_idx, b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  C->regalloc()->set_bad(gto->_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  b->_nodes.pop();              // Yank projections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  b->_nodes.pop();              // Yank projections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  b->_succs.map(0,succ);        // Map only successor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  b->_num_succs = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  // remap successor's predecessors if necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  uint j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  for( j = 1; j < succ->num_preds(); j++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    if( succ->pred(j)->in(0) == bp )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
      succ->head()->set_req(j, gto);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // Kill alternate exit path
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  Block *dead = b->_succs[1-idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  for( j = 1; j < dead->num_preds(); j++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    if( dead->pred(j)->in(0) == bp )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  // Scan through block, yanking dead path from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  // all regions and phis.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  dead->head()->del_req(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  for( int k = 1; dead->_nodes[k]->is_Phi(); k++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    dead->_nodes[k]->del_req(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   596
//------------------------------move_to_next-----------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
// Helper function to move block bx to the slot following b_index. Return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
// true if the move is successful, otherwise false
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   599
bool PhaseCFG::move_to_next(Block* bx, uint b_index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  if (bx == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  // Return false if bx is already scheduled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  uint bx_index = bx->_pre_order;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  if ((bx_index <= b_index) && (_blocks[bx_index] == bx)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  // Find the current index of block bx on the block list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  bx_index = b_index + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  while( bx_index < _num_blocks && _blocks[bx_index] != bx ) bx_index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  assert(_blocks[bx_index] == bx, "block not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  // If the previous block conditionally falls into bx, return false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  // because moving bx will create an extra jump.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  for(uint k = 1; k < bx->num_preds(); k++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    Block* pred = _bbs[bx->pred(k)->_idx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    if (pred == _blocks[bx_index-1]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
      if (pred->_num_succs != 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  // Reinsert bx just past block 'b'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  _blocks.remove(bx_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  _blocks.insert(b_index + 1, bx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   630
//------------------------------move_to_end------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
// Move empty and uncommon blocks to the end.
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   632
void PhaseCFG::move_to_end(Block *b, uint i) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  int e = b->is_Empty();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  if (e != Block::not_empty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    if (e == Block::empty_with_goto) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
      // Remove the goto, but leave the block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
      b->_nodes.pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    // Mark this block as a connector block, which will cause it to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    // ignored in certain functions such as non_connector_successor().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    b->set_connector();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  // Move the empty block to the end, and don't recheck.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  _blocks.remove(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  _blocks.push(b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   648
//---------------------------set_loop_alignment--------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   649
// Set loop alignment for every block
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   650
void PhaseCFG::set_loop_alignment() {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   651
  uint last = _num_blocks;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   652
  assert( _blocks[0] == _broot, "" );
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   653
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   654
  for (uint i = 1; i < last; i++ ) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   655
    Block *b = _blocks[i];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   656
    if (b->head()->is_Loop()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   657
      b->set_loop_alignment(b);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   658
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   659
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   660
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   661
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   662
//-----------------------------remove_empty------------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   663
// Make empty basic blocks to be "connector" blocks, Move uncommon blocks
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   664
// to the end.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   665
void PhaseCFG::remove_empty() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  // Move uncommon blocks to the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  uint last = _num_blocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  assert( _blocks[0] == _broot, "" );
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   669
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   670
  for (uint i = 1; i < last; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    Block *b = _blocks[i];
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   672
    if (b->is_connector()) break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    // Check for NeverBranch at block end.  This needs to become a GOTO to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    // true target.  NeverBranch are treated as a conditional branch that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    // always goes the same direction for most of the optimizer and are used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    // to give a fake exit path to infinite loops.  At this late stage they
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    // need to turn into Goto's so that when you enter the infinite loop you
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    // indeed hang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
    if( b->_nodes[b->end_idx()]->Opcode() == Op_NeverBranch )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
      convert_NeverBranch_to_Goto(b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    // Look for uncommon blocks and move to end.
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   684
    if (!C->do_freq_based_layout()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   685
      if( b->is_uncommon(_bbs) ) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   686
        move_to_end(b, i);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   687
        last--;                   // No longer check for being uncommon!
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   688
        if( no_flip_branch(b) ) { // Fall-thru case must follow?
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   689
          b = _blocks[i];         // Find the fall-thru block
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   690
          move_to_end(b, i);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   691
          last--;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   692
        }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   693
        i--;                      // backup block counter post-increment
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   698
  // Move empty blocks to the end
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  last = _num_blocks;
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   700
  for (uint i = 1; i < last; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    Block *b = _blocks[i];
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   702
    if (b->is_Empty() != Block::not_empty) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   703
      move_to_end(b, i);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   704
      last--;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   705
      i--;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  } // End of for all blocks
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   708
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   710
//-----------------------------fixup_flow--------------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   711
// Fix up the final control flow for basic blocks.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   712
void PhaseCFG::fixup_flow() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  // Fixup final control flow for the blocks.  Remove jump-to-next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  // block.  If neither arm of a IF follows the conditional branch, we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  // have to add a second jump after the conditional.  We place the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  // TRUE branch target in succs[0] for both GOTOs and IFs.
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   717
  for (uint i=0; i < _num_blocks; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    Block *b = _blocks[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    b->_pre_order = i;          // turn pre-order into block-index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    // Connector blocks need no further processing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    if (b->is_connector()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
      assert((i+1) == _num_blocks || _blocks[i+1]->is_connector(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
             "All connector blocks should sink to the end");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    assert(b->is_Empty() != Block::completely_empty,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
           "Empty blocks should be connectors");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    Block *bnext = (i < _num_blocks-1) ? _blocks[i+1] : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    Block *bs0 = b->non_connector_successor(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    // Check for multi-way branches where I cannot negate the test to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    // exchange the true and false targets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    if( no_flip_branch( b ) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
      // Find fall through case - if must fall into its target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
      int branch_idx = b->_nodes.size() - b->_num_succs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
      for (uint j2 = 0; j2 < b->_num_succs; j2++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
        const ProjNode* p = b->_nodes[branch_idx + j2]->as_Proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
        if (p->_con == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
          // successor j2 is fall through case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
          if (b->non_connector_successor(j2) != bnext) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
            // but it is not the next block => insert a goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
            insert_goto_at(i, j2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
          // Put taken branch in slot 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
          if( j2 == 0 && b->_num_succs == 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
            // Flip targets in succs map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
            Block *tbs0 = b->_succs[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
            Block *tbs1 = b->_succs[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
            b->_succs.map( 0, tbs1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
            b->_succs.map( 1, tbs0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
      // Remove all CatchProjs
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   758
      for (uint j1 = 0; j1 < b->_num_succs; j1++) b->_nodes.pop();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    } else if (b->_num_succs == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
      // Block ends in a Goto?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
      if (bnext == bs0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
        // We fall into next block; remove the Goto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
        b->_nodes.pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    } else if( b->_num_succs == 2 ) { // Block ends in a If?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
      // Get opcode of 1st projection (matches _succs[0])
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
      // Note: Since this basic block has 2 exits, the last 2 nodes must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
      //       be projections (in any order), the 3rd last node must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
      //       the IfNode (we have excluded other 2-way exits such as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
      //       CatchNodes already).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
      MachNode *iff   = b->_nodes[b->_nodes.size()-3]->as_Mach();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
      ProjNode *proj0 = b->_nodes[b->_nodes.size()-2]->as_Proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
      ProjNode *proj1 = b->_nodes[b->_nodes.size()-1]->as_Proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      // Assert that proj0 and succs[0] match up. Similarly for proj1 and succs[1].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      assert(proj0->raw_out(0) == b->_succs[0]->head(), "Mismatch successor 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      assert(proj1->raw_out(0) == b->_succs[1]->head(), "Mismatch successor 1");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      Block *bs1 = b->non_connector_successor(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      // Check for neither successor block following the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
      // block ending in a conditional. If so, move one of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      // successors after the current one, provided that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      // successor was previously unscheduled, but moveable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
      // (i.e., all paths to it involve a branch).
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   788
      if( !C->do_freq_based_layout() && bnext != bs0 && bnext != bs1 ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
        // Choose the more common successor based on the probability
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
        // of the conditional branch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
        Block *bx = bs0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
        Block *by = bs1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
        // _prob is the probability of taking the true path. Make
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
        // p the probability of taking successor #1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
        float p = iff->as_MachIf()->_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
        if( proj0->Opcode() == Op_IfTrue ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
          p = 1.0 - p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
        // Prefer successor #1 if p > 0.5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
        if (p > PROB_FAIR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
          bx = bs1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
          by = bs0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
        // Attempt the more common successor first
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   808
        if (move_to_next(bx, i)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
          bnext = bx;
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   810
        } else if (move_to_next(by, i)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
          bnext = by;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
      // Check for conditional branching the wrong way.  Negate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      // conditional, if needed, so it falls into the following block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      // and branches to the not-following block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
      // Check for the next block being in succs[0].  We are going to branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
      // to succs[0], so we want the fall-thru case as the next block in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
      // succs[1].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
      if (bnext == bs0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
        // Fall-thru case in succs[0], so flip targets in succs map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
        Block *tbs0 = b->_succs[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
        Block *tbs1 = b->_succs[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
        b->_succs.map( 0, tbs1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
        b->_succs.map( 1, tbs0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
        // Flip projection for each target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
        { ProjNode *tmp = proj0; proj0 = proj1; proj1 = tmp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   831
      } else if( bnext != bs1 ) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   832
        // Need a double-branch
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
        // The existing conditional branch need not change.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
        // Add a unconditional branch to the false target.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
        // Alas, it must appear in its own block and adding a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
        // block this late in the game is complicated.  Sigh.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
        insert_goto_at(i, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
      // Make sure we TRUE branch to the target
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   841
      if( proj0->Opcode() == Op_IfFalse ) {
10266
2ea344c79e33 7079317: Incorrect branch's destination block in PrintoOptoAssembly output
kvn
parents: 10264
diff changeset
   842
        iff->as_MachIf()->negate();
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   843
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
      b->_nodes.pop();          // Remove IfFalse & IfTrue projections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
      b->_nodes.pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
      // Multi-exit block, e.g. a switch statement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
      // But we don't need to do anything here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  } // End of for all blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
//------------------------------dump-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
void PhaseCFG::_dump_cfg( const Node *end, VectorSet &visited  ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  const Node *x = end->is_block_proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  assert( x, "not a CFG" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  // Do not visit this block again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  if( visited.test_set(x->_idx) ) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  // Skip through this block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  const Node *p = x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
    p = p->in(0);               // Move control forward
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
    assert( !p->is_block_proj() || p->is_Root(), "not a CFG" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  } while( !p->is_block_start() );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  // Recursively visit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  for( uint i=1; i<p->req(); i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    _dump_cfg(p->in(i),visited);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  // Dump the block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  _bbs[p->_idx]->dump(&_bbs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
void PhaseCFG::dump( ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  tty->print("\n--- CFG --- %d BBs\n",_num_blocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  if( _blocks.size() ) {        // Did we do basic-block layout?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    for( uint i=0; i<_num_blocks; i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
      _blocks[i]->dump(&_bbs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  } else {                      // Else do it with a DFS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    VectorSet visited(_bbs._arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    _dump_cfg(_root,visited);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
void PhaseCFG::dump_headers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  for( uint i = 0; i < _num_blocks; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    if( _blocks[i] == NULL ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    _blocks[i]->dump_head(&_bbs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
void PhaseCFG::verify( ) const {
2030
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   899
#ifdef ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  // Verify sane CFG
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   901
  for (uint i = 0; i < _num_blocks; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    Block *b = _blocks[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    uint cnt = b->_nodes.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    uint j;
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   905
    for (j = 0; j < cnt; j++)  {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      Node *n = b->_nodes[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
      assert( _bbs[n->_idx] == b, "" );
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   908
      if (j >= 1 && n->is_Mach() &&
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   909
          n->as_Mach()->ideal_Opcode() == Op_CreateEx) {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   910
        assert(j == 1 || b->_nodes[j-1]->is_Phi(),
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   911
               "CreateEx must be first instruction in block");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
      }
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   913
      for (uint k = 0; k < n->req(); k++) {
2030
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   914
        Node *def = n->in(k);
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   915
        if (def && def != n) {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   916
          assert(_bbs[def->_idx] || def->is_Con(),
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   917
                 "must have block; constants for debug info ok");
2030
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   918
          // Verify that instructions in the block is in correct order.
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   919
          // Uses must follow their definition if they are at the same block.
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   920
          // Mostly done to check that MachSpillCopy nodes are placed correctly
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   921
          // when CreateEx node is moved in build_ifg_physical().
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   922
          if (_bbs[def->_idx] == b &&
2030
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   923
              !(b->head()->is_Loop() && n->is_Phi()) &&
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   924
              // See (+++) comment in reg_split.cpp
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   925
              !(n->jvms() != NULL && n->jvms()->is_monitor_use(k))) {
3593
51f613a50db6 6851386: assert(b->find_node(def) < j,"uses must follow definitions")
kvn
parents: 3186
diff changeset
   926
            bool is_loop = false;
51f613a50db6 6851386: assert(b->find_node(def) < j,"uses must follow definitions")
kvn
parents: 3186
diff changeset
   927
            if (n->is_Phi()) {
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   928
              for (uint l = 1; l < def->req(); l++) {
3593
51f613a50db6 6851386: assert(b->find_node(def) < j,"uses must follow definitions")
kvn
parents: 3186
diff changeset
   929
                if (n == def->in(l)) {
51f613a50db6 6851386: assert(b->find_node(def) < j,"uses must follow definitions")
kvn
parents: 3186
diff changeset
   930
                  is_loop = true;
51f613a50db6 6851386: assert(b->find_node(def) < j,"uses must follow definitions")
kvn
parents: 3186
diff changeset
   931
                  break; // Some kind of loop
51f613a50db6 6851386: assert(b->find_node(def) < j,"uses must follow definitions")
kvn
parents: 3186
diff changeset
   932
                }
51f613a50db6 6851386: assert(b->find_node(def) < j,"uses must follow definitions")
kvn
parents: 3186
diff changeset
   933
              }
51f613a50db6 6851386: assert(b->find_node(def) < j,"uses must follow definitions")
kvn
parents: 3186
diff changeset
   934
            }
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   935
            assert(is_loop || b->find_node(def) < j, "uses must follow definitions");
2127
268ea58ed775 6809798: SafePointScalarObject node placed into incorrect block during GCM
kvn
parents: 2030
diff changeset
   936
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    j = b->end_idx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    Node *bp = (Node*)b->_nodes[b->_nodes.size()-1]->is_block_proj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
    assert( bp, "last instruction must be a block proj" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    assert( bp == b->_nodes[j], "wrong number of successors for this block" );
11191
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   945
    if (bp->is_Catch()) {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   946
      while (b->_nodes[--j]->is_MachProj()) ;
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   947
      assert(b->_nodes[j]->is_MachCall(), "CatchProj must follow call");
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   948
    } else if (bp->is_Mach() && bp->as_Mach()->ideal_Opcode() == Op_If) {
d54ab5dcba83 6890673: Eliminate allocations immediately after EA
kvn
parents: 10537
diff changeset
   949
      assert(b->_num_succs == 2, "Conditional branch must have two targets");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  }
2030
39d55e4534b4 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 1498
diff changeset
   952
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
//------------------------------UnionFind--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
UnionFind::UnionFind( uint max ) : _cnt(max), _max(max), _indices(NEW_RESOURCE_ARRAY(uint,max)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  Copy::zero_to_bytes( _indices, sizeof(uint)*max );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
void UnionFind::extend( uint from_idx, uint to_idx ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  _nesting.check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  if( from_idx >= _max ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    uint size = 16;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    while( size <= from_idx ) size <<=1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    _indices = REALLOC_RESOURCE_ARRAY( uint, _indices, _max, size );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    _max = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  while( _cnt <= from_idx ) _indices[_cnt++] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  _indices[from_idx] = to_idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
void UnionFind::reset( uint max ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  assert( max <= max_uint, "Must fit within uint" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  // Force the Union-Find mapping to be at least this large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  extend(max,0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  // Initialize to be the ID mapping.
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
   979
  for( uint i=0; i<max; i++ ) map(i,i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
//------------------------------Find_compress----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
// Straight out of Tarjan's union-find algorithm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
uint UnionFind::Find_compress( uint idx ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  uint cur  = idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  uint next = lookup(cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  while( next != cur ) {        // Scan chain of equivalences
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
    assert( next < cur, "always union smaller" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
    cur = next;                 // until find a fixed-point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
    next = lookup(cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  // Core of union-find algorithm: update chain of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  // equivalences to be equal to the root.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  while( idx != next ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    uint tmp = lookup(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
    map(idx, next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
    idx = tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  return idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
//------------------------------Find_const-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
// Like Find above, but no path compress, so bad asymptotic behavior
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
uint UnionFind::Find_const( uint idx ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  if( idx == 0 ) return idx;    // Ignore the zero idx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  // Off the end?  This can happen during debugging dumps
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  // when data structures have not finished being updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  if( idx >= _max ) return idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  uint next = lookup(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  while( next != idx ) {        // Scan chain of equivalences
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
    idx = next;                 // until find a fixed-point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
    next = lookup(idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  return next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
//------------------------------Union------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
// union 2 sets together.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
void UnionFind::Union( uint idx1, uint idx2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  uint src = Find(idx1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  uint dst = Find(idx2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  assert( src, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  assert( dst, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  assert( src < _max, "oob" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  assert( dst < _max, "oob" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  assert( src < dst, "always union smaller" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  map(dst,src);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
}
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1029
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1030
#ifndef PRODUCT
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1031
void Trace::dump( ) const {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1032
  tty->print_cr("Trace (freq %f)", first_block()->_freq);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1033
  for (Block *b = first_block(); b != NULL; b = next(b)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1034
    tty->print("  B%d", b->_pre_order);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1035
    if (b->head()->is_Loop()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1036
      tty->print(" (L%d)", b->compute_loop_alignment());
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1037
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1038
    if (b->has_loop_alignment()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1039
      tty->print(" (T%d)", b->code_alignment());
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1040
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1041
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1042
  tty->cr();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1043
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1044
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1045
void CFGEdge::dump( ) const {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1046
  tty->print(" B%d  -->  B%d  Freq: %f  out:%3d%%  in:%3d%%  State: ",
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1047
             from()->_pre_order, to()->_pre_order, freq(), _from_pct, _to_pct);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1048
  switch(state()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1049
  case connected:
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1050
    tty->print("connected");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1051
    break;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1052
  case open:
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1053
    tty->print("open");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1054
    break;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1055
  case interior:
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1056
    tty->print("interior");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1057
    break;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1058
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1059
  if (infrequent()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1060
    tty->print("  infrequent");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1061
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1062
  tty->cr();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1063
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1064
#endif
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1065
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1066
//=============================================================================
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1067
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1068
//------------------------------edge_order-------------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1069
// Comparison function for edges
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1070
static int edge_order(CFGEdge **e0, CFGEdge **e1) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1071
  float freq0 = (*e0)->freq();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1072
  float freq1 = (*e1)->freq();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1073
  if (freq0 != freq1) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1074
    return freq0 > freq1 ? -1 : 1;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1075
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1076
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1077
  int dist0 = (*e0)->to()->_rpo - (*e0)->from()->_rpo;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1078
  int dist1 = (*e1)->to()->_rpo - (*e1)->from()->_rpo;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1079
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1080
  return dist1 - dist0;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1081
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1082
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1083
//------------------------------trace_frequency_order--------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1084
// Comparison function for edges
10537
23539f11e110 7090259: Fix hotspot sources to build with old compilers
kvn
parents: 10266
diff changeset
  1085
extern "C" int trace_frequency_order(const void *p0, const void *p1) {
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1086
  Trace *tr0 = *(Trace **) p0;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1087
  Trace *tr1 = *(Trace **) p1;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1088
  Block *b0 = tr0->first_block();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1089
  Block *b1 = tr1->first_block();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1090
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1091
  // The trace of connector blocks goes at the end;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1092
  // we only expect one such trace
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1093
  if (b0->is_connector() != b1->is_connector()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1094
    return b1->is_connector() ? -1 : 1;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1095
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1096
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1097
  // Pull more frequently executed blocks to the beginning
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1098
  float freq0 = b0->_freq;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1099
  float freq1 = b1->_freq;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1100
  if (freq0 != freq1) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1101
    return freq0 > freq1 ? -1 : 1;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1102
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1103
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1104
  int diff = tr0->first_block()->_rpo - tr1->first_block()->_rpo;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1105
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1106
  return diff;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1107
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1108
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1109
//------------------------------find_edges-------------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1110
// Find edges of interest, i.e, those which can fall through. Presumes that
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1111
// edges which don't fall through are of low frequency and can be generally
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1112
// ignored.  Initialize the list of traces.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1113
void PhaseBlockLayout::find_edges()
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1114
{
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1115
  // Walk the blocks, creating edges and Traces
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1116
  uint i;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1117
  Trace *tr = NULL;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1118
  for (i = 0; i < _cfg._num_blocks; i++) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1119
    Block *b = _cfg._blocks[i];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1120
    tr = new Trace(b, next, prev);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1121
    traces[tr->id()] = tr;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1122
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1123
    // All connector blocks should be at the end of the list
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1124
    if (b->is_connector()) break;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1125
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1126
    // If this block and the next one have a one-to-one successor
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1127
    // predecessor relationship, simply append the next block
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1128
    int nfallthru = b->num_fall_throughs();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1129
    while (nfallthru == 1 &&
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1130
           b->succ_fall_through(0)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1131
      Block *n = b->_succs[0];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1132
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1133
      // Skip over single-entry connector blocks, we don't want to
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1134
      // add them to the trace.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1135
      while (n->is_connector() && n->num_preds() == 1) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1136
        n = n->_succs[0];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1137
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1138
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1139
      // We see a merge point, so stop search for the next block
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1140
      if (n->num_preds() != 1) break;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1141
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1142
      i++;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1143
      assert(n = _cfg._blocks[i], "expecting next block");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1144
      tr->append(n);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1145
      uf->map(n->_pre_order, tr->id());
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1146
      traces[n->_pre_order] = NULL;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1147
      nfallthru = b->num_fall_throughs();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1148
      b = n;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1149
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1150
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1151
    if (nfallthru > 0) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1152
      // Create a CFGEdge for each outgoing
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1153
      // edge that could be a fall-through.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1154
      for (uint j = 0; j < b->_num_succs; j++ ) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1155
        if (b->succ_fall_through(j)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1156
          Block *target = b->non_connector_successor(j);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1157
          float freq = b->_freq * b->succ_prob(j);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1158
          int from_pct = (int) ((100 * freq) / b->_freq);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1159
          int to_pct = (int) ((100 * freq) / target->_freq);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1160
          edges->append(new CFGEdge(b, target, freq, from_pct, to_pct));
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1161
        }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1162
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1163
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1164
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1165
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1166
  // Group connector blocks into one trace
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1167
  for (i++; i < _cfg._num_blocks; i++) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1168
    Block *b = _cfg._blocks[i];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1169
    assert(b->is_connector(), "connector blocks at the end");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1170
    tr->append(b);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1171
    uf->map(b->_pre_order, tr->id());
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1172
    traces[b->_pre_order] = NULL;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1173
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1174
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1175
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1176
//------------------------------union_traces----------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1177
// Union two traces together in uf, and null out the trace in the list
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1178
void PhaseBlockLayout::union_traces(Trace* updated_trace, Trace* old_trace)
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1179
{
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1180
  uint old_id = old_trace->id();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1181
  uint updated_id = updated_trace->id();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1182
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1183
  uint lo_id = updated_id;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1184
  uint hi_id = old_id;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1185
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1186
  // If from is greater than to, swap values to meet
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1187
  // UnionFind guarantee.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1188
  if (updated_id > old_id) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1189
    lo_id = old_id;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1190
    hi_id = updated_id;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1191
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1192
    // Fix up the trace ids
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1193
    traces[lo_id] = traces[updated_id];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1194
    updated_trace->set_id(lo_id);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1195
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1196
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1197
  // Union the lower with the higher and remove the pointer
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1198
  // to the higher.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1199
  uf->Union(lo_id, hi_id);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1200
  traces[hi_id] = NULL;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1201
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1202
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1203
//------------------------------grow_traces-------------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1204
// Append traces together via the most frequently executed edges
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1205
void PhaseBlockLayout::grow_traces()
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1206
{
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1207
  // Order the edges, and drive the growth of Traces via the most
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1208
  // frequently executed edges.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1209
  edges->sort(edge_order);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1210
  for (int i = 0; i < edges->length(); i++) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1211
    CFGEdge *e = edges->at(i);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1212
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1213
    if (e->state() != CFGEdge::open) continue;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1214
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1215
    Block *src_block = e->from();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1216
    Block *targ_block = e->to();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1217
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1218
    // Don't grow traces along backedges?
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1219
    if (!BlockLayoutRotateLoops) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1220
      if (targ_block->_rpo <= src_block->_rpo) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1221
        targ_block->set_loop_alignment(targ_block);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1222
        continue;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1223
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1224
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1225
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1226
    Trace *src_trace = trace(src_block);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1227
    Trace *targ_trace = trace(targ_block);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1228
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1229
    // If the edge in question can join two traces at their ends,
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1230
    // append one trace to the other.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1231
   if (src_trace->last_block() == src_block) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1232
      if (src_trace == targ_trace) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1233
        e->set_state(CFGEdge::interior);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1234
        if (targ_trace->backedge(e)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1235
          // Reset i to catch any newly eligible edge
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1236
          // (Or we could remember the first "open" edge, and reset there)
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1237
          i = 0;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1238
        }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1239
      } else if (targ_trace->first_block() == targ_block) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1240
        e->set_state(CFGEdge::connected);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1241
        src_trace->append(targ_trace);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1242
        union_traces(src_trace, targ_trace);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1243
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1244
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1245
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1246
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1247
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1248
//------------------------------merge_traces-----------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1249
// Embed one trace into another, if the fork or join points are sufficiently
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1250
// balanced.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1251
void PhaseBlockLayout::merge_traces(bool fall_thru_only)
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1252
{
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1253
  // Walk the edge list a another time, looking at unprocessed edges.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1254
  // Fold in diamonds
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1255
  for (int i = 0; i < edges->length(); i++) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1256
    CFGEdge *e = edges->at(i);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1257
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1258
    if (e->state() != CFGEdge::open) continue;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1259
    if (fall_thru_only) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1260
      if (e->infrequent()) continue;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1261
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1262
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1263
    Block *src_block = e->from();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1264
    Trace *src_trace = trace(src_block);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1265
    bool src_at_tail = src_trace->last_block() == src_block;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1266
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1267
    Block *targ_block  = e->to();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1268
    Trace *targ_trace  = trace(targ_block);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1269
    bool targ_at_start = targ_trace->first_block() == targ_block;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1270
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1271
    if (src_trace == targ_trace) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1272
      // This may be a loop, but we can't do much about it.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1273
      e->set_state(CFGEdge::interior);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1274
      continue;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1275
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1276
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1277
    if (fall_thru_only) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1278
      // If the edge links the middle of two traces, we can't do anything.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1279
      // Mark the edge and continue.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1280
      if (!src_at_tail & !targ_at_start) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1281
        continue;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1282
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1283
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1284
      // Don't grow traces along backedges?
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1285
      if (!BlockLayoutRotateLoops && (targ_block->_rpo <= src_block->_rpo)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1286
          continue;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1287
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1288
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1289
      // If both ends of the edge are available, why didn't we handle it earlier?
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1290
      assert(src_at_tail ^ targ_at_start, "Should have caught this edge earlier.");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1291
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1292
      if (targ_at_start) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1293
        // Insert the "targ" trace in the "src" trace if the insertion point
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1294
        // is a two way branch.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1295
        // Better profitability check possible, but may not be worth it.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1296
        // Someday, see if the this "fork" has an associated "join";
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1297
        // then make a policy on merging this trace at the fork or join.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1298
        // For example, other things being equal, it may be better to place this
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1299
        // trace at the join point if the "src" trace ends in a two-way, but
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1300
        // the insertion point is one-way.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1301
        assert(src_block->num_fall_throughs() == 2, "unexpected diamond");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1302
        e->set_state(CFGEdge::connected);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1303
        src_trace->insert_after(src_block, targ_trace);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1304
        union_traces(src_trace, targ_trace);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1305
      } else if (src_at_tail) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1306
        if (src_trace != trace(_cfg._broot)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1307
          e->set_state(CFGEdge::connected);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1308
          targ_trace->insert_before(targ_block, src_trace);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1309
          union_traces(targ_trace, src_trace);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1310
        }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1311
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1312
    } else if (e->state() == CFGEdge::open) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1313
      // Append traces, even without a fall-thru connection.
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
  1314
      // But leave root entry at the beginning of the block list.
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1315
      if (targ_trace != trace(_cfg._broot)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1316
        e->set_state(CFGEdge::connected);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1317
        src_trace->append(targ_trace);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1318
        union_traces(src_trace, targ_trace);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1319
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1320
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1321
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1322
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1323
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1324
//----------------------------reorder_traces-----------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1325
// Order the sequence of the traces in some desirable way, and fixup the
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1326
// jumps at the end of each block.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1327
void PhaseBlockLayout::reorder_traces(int count)
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1328
{
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1329
  ResourceArea *area = Thread::current()->resource_area();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1330
  Trace ** new_traces = NEW_ARENA_ARRAY(area, Trace *, count);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1331
  Block_List worklist;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1332
  int new_count = 0;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1333
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1334
  // Compact the traces.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1335
  for (int i = 0; i < count; i++) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1336
    Trace *tr = traces[i];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1337
    if (tr != NULL) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1338
      new_traces[new_count++] = tr;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1339
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1340
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1341
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1342
  // The entry block should be first on the new trace list.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1343
  Trace *tr = trace(_cfg._broot);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1344
  assert(tr == new_traces[0], "entry trace misplaced");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1345
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1346
  // Sort the new trace list by frequency
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1347
  qsort(new_traces + 1, new_count - 1, sizeof(new_traces[0]), trace_frequency_order);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1348
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1349
  // Patch up the successor blocks
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1350
  _cfg._blocks.reset();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1351
  _cfg._num_blocks = 0;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1352
  for (int i = 0; i < new_count; i++) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1353
    Trace *tr = new_traces[i];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1354
    if (tr != NULL) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1355
      tr->fixup_blocks(_cfg);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1356
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1357
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1358
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1359
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1360
//------------------------------PhaseBlockLayout-------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1361
// Order basic blocks based on frequency
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1362
PhaseBlockLayout::PhaseBlockLayout(PhaseCFG &cfg) :
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1363
  Phase(BlockLayout),
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1364
  _cfg(cfg)
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1365
{
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1366
  ResourceMark rm;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1367
  ResourceArea *area = Thread::current()->resource_area();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1368
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1369
  // List of traces
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1370
  int size = _cfg._num_blocks + 1;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1371
  traces = NEW_ARENA_ARRAY(area, Trace *, size);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1372
  memset(traces, 0, size*sizeof(Trace*));
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1373
  next = NEW_ARENA_ARRAY(area, Block *, size);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1374
  memset(next,   0, size*sizeof(Block *));
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1375
  prev = NEW_ARENA_ARRAY(area, Block *, size);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1376
  memset(prev  , 0, size*sizeof(Block *));
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1377
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1378
  // List of edges
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1379
  edges = new GrowableArray<CFGEdge*>;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1380
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1381
  // Mapping block index --> block_trace
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1382
  uf = new UnionFind(size);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1383
  uf->reset(size);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1384
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1385
  // Find edges and create traces.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1386
  find_edges();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1387
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1388
  // Grow traces at their ends via most frequent edges.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1389
  grow_traces();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1390
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1391
  // Merge one trace into another, but only at fall-through points.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1392
  // This may make diamonds and other related shapes in a trace.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1393
  merge_traces(true);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1394
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1395
  // Run merge again, allowing two traces to be catenated, even if
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1396
  // one does not fall through into the other. This appends loosely
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1397
  // related traces to be near each other.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1398
  merge_traces(false);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1399
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1400
  // Re-order all the remaining traces by frequency
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1401
  reorder_traces(size);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1402
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1403
  assert(_cfg._num_blocks >= (uint) (size - 1), "number of blocks can not shrink");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1404
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1405
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1406
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1407
//------------------------------backedge---------------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1408
// Edge e completes a loop in a trace. If the target block is head of the
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1409
// loop, rotate the loop block so that the loop ends in a conditional branch.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1410
bool Trace::backedge(CFGEdge *e) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1411
  bool loop_rotated = false;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1412
  Block *src_block  = e->from();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1413
  Block *targ_block    = e->to();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1414
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1415
  assert(last_block() == src_block, "loop discovery at back branch");
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1416
  if (first_block() == targ_block) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1417
    if (BlockLayoutRotateLoops && last_block()->num_fall_throughs() < 2) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1418
      // Find the last block in the trace that has a conditional
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1419
      // branch.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1420
      Block *b;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1421
      for (b = last_block(); b != NULL; b = prev(b)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1422
        if (b->num_fall_throughs() == 2) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1423
          break;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1424
        }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1425
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1426
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1427
      if (b != last_block() && b != NULL) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1428
        loop_rotated = true;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1429
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1430
        // Rotate the loop by doing two-part linked-list surgery.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1431
        append(first_block());
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1432
        break_loop_after(b);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1433
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1434
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1435
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1436
    // Backbranch to the top of a trace
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2127
diff changeset
  1437
    // Scroll forward through the trace from the targ_block. If we find
1498
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1438
    // a loop head before another loop top, use the the loop head alignment.
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1439
    for (Block *b = targ_block; b != NULL; b = next(b)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1440
      if (b->has_loop_alignment()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1441
        break;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1442
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1443
      if (b->head()->is_Loop()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1444
        targ_block = b;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1445
        break;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1446
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1447
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1448
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1449
    first_block()->set_loop_alignment(targ_block);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1450
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1451
  } else {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1452
    // Backbranch into the middle of a trace
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1453
    targ_block->set_loop_alignment(targ_block);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1454
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1455
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1456
  return loop_rotated;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1457
}
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1458
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1459
//------------------------------fixup_blocks-----------------------------------
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1460
// push blocks onto the CFG list
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1461
// ensure that blocks have the correct two-way branch sense
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1462
void Trace::fixup_blocks(PhaseCFG &cfg) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1463
  Block *last = last_block();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1464
  for (Block *b = first_block(); b != NULL; b = next(b)) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1465
    cfg._blocks.push(b);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1466
    cfg._num_blocks++;
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1467
    if (!b->is_connector()) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1468
      int nfallthru = b->num_fall_throughs();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1469
      if (b != last) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1470
        if (nfallthru == 2) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1471
          // Ensure that the sense of the branch is correct
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1472
          Block *bnext = next(b);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1473
          Block *bs0 = b->non_connector_successor(0);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1474
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1475
          MachNode *iff = b->_nodes[b->_nodes.size()-3]->as_Mach();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1476
          ProjNode *proj0 = b->_nodes[b->_nodes.size()-2]->as_Proj();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1477
          ProjNode *proj1 = b->_nodes[b->_nodes.size()-1]->as_Proj();
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1478
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1479
          if (bnext == bs0) {
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1480
            // Fall-thru case in succs[0], should be in succs[1]
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1481
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1482
            // Flip targets in _succs map
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1483
            Block *tbs0 = b->_succs[0];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1484
            Block *tbs1 = b->_succs[1];
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1485
            b->_succs.map( 0, tbs1 );
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1486
            b->_succs.map( 1, tbs0 );
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1487
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1488
            // Flip projections to match targets
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1489
            b->_nodes.map(b->_nodes.size()-2, proj1);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1490
            b->_nodes.map(b->_nodes.size()-1, proj0);
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1491
          }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1492
        }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1493
      }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1494
    }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1495
  }
346bf226078e 6743900: frequency based block layout
rasbold
parents: 1217
diff changeset
  1496
}