src/hotspot/share/c1/c1_LinearScan.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 47216 71c04702a3d5
child 54056 17a6681a5118
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
     2
 * Copyright (c) 2005, 2019, 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: 1217
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1217
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: 1217
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    25
#ifndef SHARE_C1_C1_LINEARSCAN_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    26
#define SHARE_C1_C1_LINEARSCAN_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
    28
#include "c1/c1_FpuStackSim.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
    29
#include "c1/c1_FrameMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
    30
#include "c1/c1_IR.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
    31
#include "c1/c1_Instruction.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
    32
#include "c1/c1_LIR.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
    33
#include "c1/c1_LIRGenerator.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46620
diff changeset
    34
#include "utilities/align.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38177
diff changeset
    35
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class DebugInfoCache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class FpuStackAllocator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class IRScopeDebugInfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class Interval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class IntervalWalker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class LIRGenerator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class LinearScan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class MoveResolver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class Range;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
36302
23a79c43ba92 8067014: LinearScan::is_sorted significantly slows down fastdebug builds' performance
vlivanov
parents: 29180
diff changeset
    47
typedef GrowableArray<Interval*> IntervalArray;
23a79c43ba92 8067014: LinearScan::is_sorted significantly slows down fastdebug builds' performance
vlivanov
parents: 29180
diff changeset
    48
typedef GrowableArray<Interval*> IntervalList;
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36302
diff changeset
    49
typedef GrowableArray<IntervalList*> IntervalsList;
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36302
diff changeset
    50
typedef GrowableArray<ScopeValue*> ScopeValueArray;
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36302
diff changeset
    51
typedef GrowableArray<LIR_OpList*> LIR_OpListStack;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
enum IntervalUseKind {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // priority of use kinds must be ascending
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  noUse = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  loopEndMarker = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  shouldHaveRegister = 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  mustHaveRegister = 3,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  firstValidKind = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  lastValidKind = 3
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
enum IntervalKind {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  fixedKind = 0,  // interval pre-colored by LIR_Generator
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  anyKind   = 1,  // no register/memory allocated by LIR_Generator
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  nofKinds,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  firstKind = fixedKind
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// during linear scan an interval is in one of four states in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
enum IntervalState {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  unhandledState = 0, // unhandled state (not processed yet)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  activeState   = 1,  // life and is in a physical register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  inactiveState = 2,  // in a life time hole and is in a physical register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  handledState  = 3,  // spilled or not life again
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  invalidState = -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
enum IntervalSpillState {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  noDefinitionFound,  // starting state of calculation: no definition found yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  oneDefinitionFound, // one definition has already been found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                      // Note: two consecutive definitions are treated as one (e.g. consecutive move and add because of two-operand LIR form)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                      // the position of this definition is stored in _definition_pos
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  oneMoveInserted,    // one spill move has already been inserted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  storeAtDefinition,  // the interval should be stored immediately after its definition because otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                      // there would be multiple redundant stores
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  startInMemory,      // the interval starts in memory (e.g. method parameter), so a store is never necessary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  noOptimization      // the interval has more then one definition (e.g. resulting from phi moves), so stores to memory are not optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
#define for_each_interval_kind(kind) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  for (IntervalKind kind = firstKind; kind < nofKinds; kind = (IntervalKind)(kind + 1))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
#define for_each_visitor_mode(mode) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  for (LIR_OpVisitState::OprMode mode = LIR_OpVisitState::firstMode; mode < LIR_OpVisitState::numModes; mode = (LIR_OpVisitState::OprMode)(mode + 1))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
class LinearScan : public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // declare classes used by LinearScan as friends because they
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // need a wide variety of functions declared here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Only the small interface to the rest of the compiler is public
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  friend class Interval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  friend class IntervalWalker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  friend class LinearScanWalker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  friend class FpuStackAllocator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  friend class MoveResolver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  friend class LinearScanStatistic;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  friend class LinearScanTimers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  friend class RegisterVerifier;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    any_reg = -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    nof_cpu_regs = pd_nof_cpu_regs_linearscan,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    nof_fpu_regs = pd_nof_fpu_regs_linearscan,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    nof_xmm_regs = pd_nof_xmm_regs_linearscan,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    nof_regs = nof_cpu_regs + nof_fpu_regs + nof_xmm_regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  Compilation*              _compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  IR*                       _ir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  LIRGenerator*             _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  FrameMap*                 _frame_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  BlockList                 _cached_blocks;     // cached list with all blocks in linear-scan order (only correct if original list keeps unchanged)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  int                       _num_virtual_regs;  // number of virtual registers (without new registers introduced because of splitting intervals)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  bool                      _has_fpu_registers; // true if this method uses any floating point registers (and so fpu stack allocation is necessary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  int                       _num_calls;         // total number of calls in this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  int                       _max_spills;        // number of stack slots used for intervals allocated to memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  int                       _unused_spill_slot; // unused spill slot for a single-word value because of alignment of a double-word value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  IntervalList              _intervals;         // mapping from register number to interval
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  IntervalList*             _new_intervals_from_allocation; // list with all intervals created during allocation when an existing interval is split
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  IntervalArray*            _sorted_intervals;  // intervals sorted by Interval::from()
7705
50fdff25b18d 6579789: Internal error "c1_LinearScan.cpp:1429 Error: assert(false,"")" in debuggee with fastdebug VM
never
parents: 7397
diff changeset
   141
  bool                      _needs_full_resort; // set to true if an Interval::from() is changed and _sorted_intervals must be resorted
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  LIR_OpArray               _lir_ops;           // mapping from LIR_Op id to LIR_Op node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  BlockBeginArray           _block_of_op;       // mapping from LIR_Op id to the BlockBegin containing this instruction
38177
b0c9cb06506b 8141501: Problems with BitMap buffer management
stefank
parents: 38031
diff changeset
   145
  ResourceBitMap            _has_info;          // bit set for each LIR_Op id that has a CodeEmitInfo
b0c9cb06506b 8141501: Problems with BitMap buffer management
stefank
parents: 38031
diff changeset
   146
  ResourceBitMap            _has_call;          // bit set for each LIR_Op id that destroys all caller save registers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  BitMap2D                  _interval_in_loop;  // bit set for each virtual register that is contained in each loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // cached debug info to prevent multiple creation of same object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // TODO: cached scope values for registers could be static
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  ScopeValueArray           _scope_value_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
11792
fd885d66cb86 7143038: SIGSEGV in assert_equal / LinearScan::assign_reg_num
roland
parents: 10517
diff changeset
   153
  static ConstantOopWriteValue* _oop_null_scope_value;
fd885d66cb86 7143038: SIGSEGV in assert_equal / LinearScan::assign_reg_num
roland
parents: 10517
diff changeset
   154
  static ConstantIntValue*    _int_m1_scope_value;
fd885d66cb86 7143038: SIGSEGV in assert_equal / LinearScan::assign_reg_num
roland
parents: 10517
diff changeset
   155
  static ConstantIntValue*    _int_0_scope_value;
fd885d66cb86 7143038: SIGSEGV in assert_equal / LinearScan::assign_reg_num
roland
parents: 10517
diff changeset
   156
  static ConstantIntValue*    _int_1_scope_value;
fd885d66cb86 7143038: SIGSEGV in assert_equal / LinearScan::assign_reg_num
roland
parents: 10517
diff changeset
   157
  static ConstantIntValue*    _int_2_scope_value;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  IR*           ir() const                       { return _ir; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  Compilation*  compilation() const              { return _compilation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  LIRGenerator* gen() const                      { return _gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  FrameMap*     frame_map() const                { return _frame_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // unified bailout support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  void          bailout(const char* msg) const   { compilation()->bailout(msg); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  bool          bailed_out() const               { return compilation()->bailed_out(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // access to block list (sorted in linear scan order)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  int           block_count() const              { assert(_cached_blocks.length() == ir()->linear_scan_order()->length(), "invalid cached block list"); return _cached_blocks.length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  BlockBegin*   block_at(int idx) const          { assert(_cached_blocks.at(idx) == ir()->linear_scan_order()->at(idx), "invalid cached block list");   return _cached_blocks.at(idx); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  int           num_virtual_regs() const         { return _num_virtual_regs; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // size of live_in and live_out sets of BasicBlocks (BitMap needs rounded size for iteration)
46620
750c6edff33b 8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents: 40010
diff changeset
   175
  int           live_set_size() const            { return align_up(_num_virtual_regs, BitsPerWord); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  bool          has_fpu_registers() const        { return _has_fpu_registers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  int           num_loops() const                { return ir()->num_loops(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  bool          is_interval_in_loop(int interval, int loop) const { return _interval_in_loop.at(interval, loop); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // handling of fpu stack allocation (platform dependent, needed for debug information generation)
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   181
#ifdef X86
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  FpuStackAllocator* _fpu_stack_allocator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  bool use_fpu_stack_allocation() const          { return UseSSE < 2 && has_fpu_registers(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  bool use_fpu_stack_allocation() const          { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // access to interval list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  int           interval_count() const           { return _intervals.length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  Interval*     interval_at(int reg_num) const   { return _intervals.at(reg_num); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  IntervalList* new_intervals_from_allocation() const { return _new_intervals_from_allocation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // access to LIR_Ops and Blocks indexed by op_id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  int          max_lir_op_id() const                { assert(_lir_ops.length() > 0, "no operations"); return (_lir_ops.length() - 1) << 1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  LIR_Op*      lir_op_with_id(int op_id) const      { assert(op_id >= 0 && op_id <= max_lir_op_id() && op_id % 2 == 0, "op_id out of range or not even"); return _lir_ops.at(op_id >> 1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  BlockBegin*  block_of_op_with_id(int op_id) const { assert(_block_of_op.length() > 0 && op_id >= 0 && op_id <= max_lir_op_id() + 1, "op_id out of range"); return _block_of_op.at(op_id >> 1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  bool is_block_begin(int op_id)                    { return op_id == 0 || block_of_op_with_id(op_id) != block_of_op_with_id(op_id - 1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  bool covers_block_begin(int op_id_1, int op_id_2) { return block_of_op_with_id(op_id_1) != block_of_op_with_id(op_id_2); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  bool has_call(int op_id)                          { assert(op_id % 2 == 0, "must be even"); return _has_call.at(op_id >> 1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  bool has_info(int op_id)                          { assert(op_id % 2 == 0, "must be even"); return _has_info.at(op_id >> 1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // functions for converting LIR-Operands to register numbers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  static bool is_valid_reg_num(int reg_num)         { return reg_num >= 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  static int  reg_num(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  static int  reg_numHi(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // functions for classification of intervals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  static bool is_precolored_interval(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  static bool is_virtual_interval(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  static bool is_precolored_cpu_interval(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  static bool is_virtual_cpu_interval(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  static bool is_precolored_fpu_interval(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  static bool is_virtual_fpu_interval(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  static bool is_in_fpu_register(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  static bool is_oop_interval(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // General helper functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  int         allocate_spill_slot(bool double_word);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  void        assign_spill_slot(Interval* it);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  void        propagate_spill_slots();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  Interval*   create_interval(int reg_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  void        append_interval(Interval* it);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void        copy_register_flags(Interval* from, Interval* to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // platform dependent functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  static bool is_processed_reg_num(int reg_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  static int  num_physical_regs(BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  static bool requires_adjacent_regs(BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  static bool is_caller_save(int assigned_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // spill move optimization: eliminate moves from register to stack if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // stack slot is known to be correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void        change_spill_definition_pos(Interval* interval, int def_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void        change_spill_state(Interval* interval, int spill_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  static bool must_store_at_definition(const Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  void        eliminate_spill_moves();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // Phase 1: number all instructions in all blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  void number_instructions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // Phase 2: compute local live sets separately for each block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // (sets live_gen and live_kill for each block)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // helper methods used by compute_local_live_sets()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  void set_live_gen_kill(Value value, LIR_Op* op, BitMap& live_gen, BitMap& live_kill);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  void compute_local_live_sets();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // Phase 3: perform a backward dataflow analysis to compute global live sets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // (sets live_in and live_out for each block)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  void compute_global_live_sets();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // Phase 4: build intervals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // (fills the list _intervals)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // helper methods used by build_intervals()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  void add_use (Value value, int from, int to, IntervalUseKind use_kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  void add_def (LIR_Opr opr, int def_pos,      IntervalUseKind use_kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  void add_use (LIR_Opr opr, int from, int to, IntervalUseKind use_kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void add_temp(LIR_Opr opr, int temp_pos,     IntervalUseKind use_kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  void add_def (int reg_num, int def_pos,      IntervalUseKind use_kind, BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  void add_use (int reg_num, int from, int to, IntervalUseKind use_kind, BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  void add_temp(int reg_num, int temp_pos,     IntervalUseKind use_kind, BasicType type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // Add platform dependent kills for particular LIR ops.  Can be used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // to add platform dependent behaviour for some operations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  void pd_add_temps(LIR_Op* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  IntervalUseKind use_kind_of_output_operand(LIR_Op* op, LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  IntervalUseKind use_kind_of_input_operand(LIR_Op* op, LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  void handle_method_arguments(LIR_Op* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  void handle_doubleword_moves(LIR_Op* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  void add_register_hints(LIR_Op* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  void build_intervals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // Phase 5: actual register allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // (Uses LinearScanWalker)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // helper functions for building a sorted list of intervals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  NOT_PRODUCT(bool is_sorted(IntervalArray* intervals);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  static int interval_cmp(Interval** a, Interval** b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  void add_to_list(Interval** first, Interval** prev, Interval* interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  void create_unhandled_lists(Interval** list1, Interval** list2, bool (is_list1)(const Interval* i), bool (is_list2)(const Interval* i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  void sort_intervals_before_allocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void sort_intervals_after_allocation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  void allocate_registers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // Phase 6: resolve data flow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // (insert moves at edges between blocks if intervals have been split)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // helper functions for resolve_data_flow()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  Interval* split_child_at_op_id(Interval* interval, int op_id, LIR_OpVisitState::OprMode mode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  Interval* interval_at_block_begin(BlockBegin* block, int reg_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  Interval* interval_at_block_end(BlockBegin* block, int reg_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  Interval* interval_at_op_id(int reg_num, int op_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  void resolve_collect_mappings(BlockBegin* from_block, BlockBegin* to_block, MoveResolver &move_resolver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  void resolve_find_insert_pos(BlockBegin* from_block, BlockBegin* to_block, MoveResolver &move_resolver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  void resolve_data_flow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  void resolve_exception_entry(BlockBegin* block, int reg_num, MoveResolver &move_resolver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  void resolve_exception_entry(BlockBegin* block, MoveResolver &move_resolver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  void resolve_exception_edge(XHandler* handler, int throwing_op_id, int reg_num, Phi* phi, MoveResolver &move_resolver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  void resolve_exception_edge(XHandler* handler, int throwing_op_id, MoveResolver &move_resolver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  void resolve_exception_handlers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // Phase 7: assign register numbers back to LIR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // (includes computation of debug information and oop maps)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // helper functions for assign_reg_num()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  VMReg vm_reg_for_interval(Interval* interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  VMReg vm_reg_for_operand(LIR_Opr opr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  static LIR_Opr operand_for_interval(Interval* interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  static LIR_Opr calc_operand_for_interval(const Interval* interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  LIR_Opr       canonical_spill_opr(Interval* interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  LIR_Opr color_lir_opr(LIR_Opr opr, int id, LIR_OpVisitState::OprMode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // methods used for oop map computation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  IntervalWalker* init_compute_oop_maps();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  OopMap*         compute_oop_map(IntervalWalker* iw, LIR_Op* op, CodeEmitInfo* info, bool is_call_site);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  void            compute_oop_map(IntervalWalker* iw, const LIR_OpVisitState &visitor, LIR_Op* op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // methods used for debug information computation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  void init_compute_debug_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  MonitorValue*  location_for_monitor_index(int monitor_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  LocationValue* location_for_name(int name, Location::Type loc_type);
10517
f92c9ff3a15f 7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents: 8921
diff changeset
   345
  void set_oop(OopMap* map, VMReg name) {
f92c9ff3a15f 7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents: 8921
diff changeset
   346
    if (map->legal_vm_reg_name(name)) {
f92c9ff3a15f 7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents: 8921
diff changeset
   347
      map->set_oop(name);
f92c9ff3a15f 7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents: 8921
diff changeset
   348
    } else {
f92c9ff3a15f 7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents: 8921
diff changeset
   349
      bailout("illegal oopMap register name");
f92c9ff3a15f 7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents: 8921
diff changeset
   350
    }
f92c9ff3a15f 7051798: SA-JDI: NPE in Frame.addressOfStackSlot(Frame.java:244)
never
parents: 8921
diff changeset
   351
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  int append_scope_value_for_constant(LIR_Opr opr, GrowableArray<ScopeValue*>* scope_values);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  int append_scope_value_for_operand(LIR_Opr opr, GrowableArray<ScopeValue*>* scope_values);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  int append_scope_value(int op_id, Value value, GrowableArray<ScopeValue*>* scope_values);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
6745
a34ef8968a84 6986046: C1 valuestack cleanup
roland
parents: 5707
diff changeset
   357
  IRScopeDebugInfo* compute_debug_info_for_scope(int op_id, IRScope* cur_scope, ValueStack* cur_state, ValueStack* innermost_state);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  void compute_debug_info(CodeEmitInfo* info, int op_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  void assign_reg_num(LIR_OpList* instructions, IntervalWalker* iw);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  void assign_reg_num();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // Phase 8: fpu stack allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // (Used only on x86 when fpu operands are present)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  void allocate_fpu_stack();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // helper functions for printing state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  static void print_bitmap(BitMap& bitmap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  void        print_intervals(const char* label);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  void        print_lir(int level, const char* label, bool hir_valid = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // verification functions for allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // (check that all intervals have a correct register and that no registers are overwritten)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  void verify_intervals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  void verify_no_oops_in_fixed_intervals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  void verify_constants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  void verify_registers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  LinearScan(IR* ir, LIRGenerator* gen, FrameMap* frame_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // main entry function: perform linear scan register allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  void             do_linear_scan();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // accessors used by Compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  int         max_spills()  const { return _max_spills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  int         num_calls() const   { assert(_num_calls >= 0, "not set"); return _num_calls; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // entry functions for printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  static void print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  static void print_timers(double total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
// Helper class for ordering moves that are inserted at the same position in the LIR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
// When moves between registers are inserted, it is important that the moves are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
// ordered such that no register is overwritten. So moves from register to stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
// are processed prior to moves from stack to register. When moves have circular
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
// dependencies, a temporary stack slot is used to break the circle.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
// The same logic is used in the LinearScanWalker and in LinearScan during resolve_data_flow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
// and therefore factored out in a separate class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
class MoveResolver: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  LinearScan*      _allocator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  LIR_List*        _insert_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  int              _insert_idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  LIR_InsertionBuffer _insertion_buffer; // buffer where moves are inserted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  IntervalList     _mapping_from;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  LIR_OprList      _mapping_from_opr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  IntervalList     _mapping_to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  bool             _multiple_reads_allowed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  int              _register_blocked[LinearScan::nof_regs];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  int  register_blocked(int reg)                    { assert(reg >= 0 && reg < LinearScan::nof_regs, "out of bounds"); return _register_blocked[reg]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  void set_register_blocked(int reg, int direction) { assert(reg >= 0 && reg < LinearScan::nof_regs, "out of bounds"); assert(direction == 1 || direction == -1, "out of bounds"); _register_blocked[reg] += direction; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  void block_registers(Interval* it);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  void unblock_registers(Interval* it);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  bool save_to_process_move(Interval* from, Interval* to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  void create_insertion_buffer(LIR_List* list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  void append_insertion_buffer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  void insert_move(Interval* from_interval, Interval* to_interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  void insert_move(LIR_Opr from_opr, Interval* to_interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  DEBUG_ONLY(void verify_before_resolve();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  void resolve_mappings();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  MoveResolver(LinearScan* allocator);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  DEBUG_ONLY(void check_empty();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  void set_multiple_reads_allowed() { _multiple_reads_allowed = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  void set_insert_position(LIR_List* insert_list, int insert_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  void move_insert_position(LIR_List* insert_list, int insert_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  void add_mapping(Interval* from, Interval* to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  void add_mapping(LIR_Opr from, Interval* to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  void resolve_and_append_moves();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  LinearScan* allocator()   { return _allocator; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  bool has_mappings()       { return _mapping_from.length() > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
class Range : public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  friend class Interval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  static Range*    _end;       // sentinel (from == to == max_jint)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  int              _from;      // from (inclusive)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  int              _to;        // to (exclusive)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  Range*           _next;      // linear list of Ranges
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  // used only by class Interval, so hide them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  bool             intersects(Range* r) const    { return intersects_at(r) != -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  int              intersects_at(Range* r) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  Range(int from, int to, Range* next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   473
  static void      initialize(Arena* arena);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  static Range*    end()                         { return _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  int              from() const                  { return _from; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  int              to()   const                  { return _to; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  Range*           next() const                  { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  void             set_from(int from)            { _from = from; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  void             set_to(int to)                { _to = to; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  void             set_next(Range* next)         { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  // for testing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  void             print(outputStream* out = tty) const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
// Interval is an ordered list of disjoint ranges.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
// For pre-colored double word LIR_Oprs, one interval is created for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
// the low word register and one is created for the hi word register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
// On Intel for FPU double registers only one interval is created.  At
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
// all times assigned_reg contains the reg. number of the physical
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
// register.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
// For LIR_Opr in virtual registers a single interval can represent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
// single and double word values.  When a physical register is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
// assigned to the interval, assigned_reg contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
// phys. reg. number and for double word values assigned_regHi the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
// phys. reg. number of the hi word if there is any.  For spilled
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// intervals assigned_reg contains the stack index.  assigned_regHi is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
// always -1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
class Interval : public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  static Interval* _end;          // sentinel (interval with only range Range::end())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  int              _reg_num;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  BasicType        _type;         // valid only for virtual registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  Range*           _first;        // sorted list of Ranges
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  intStack         _use_pos_and_kinds; // sorted list of use-positions and their according use-kinds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  Range*           _current;      // interval iteration: the current Range
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  Interval*        _next;         // interval iteration: sorted list of Intervals (ends with sentinel)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  IntervalState    _state;        // interval iteration: to which set belongs this interval
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  int              _assigned_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  int              _assigned_regHi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  int              _cached_to;    // cached value: to of last range (-1: not cached)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  LIR_Opr          _cached_opr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  VMReg            _cached_vm_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  Interval*        _split_parent;           // the original interval where this interval is derived from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  IntervalList     _split_children;         // list of all intervals that are split off from this interval (only available for split parents)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  Interval*        _current_split_child;    // the current split child that has been active or inactive last (always stored in split parents)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  int              _canonical_spill_slot;   // the stack slot where all split parts of this interval are spilled to (always stored in split parents)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  bool             _insert_move_when_activated; // true if move is inserted between _current_split_child and this interval when interval gets active the first time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  IntervalSpillState _spill_state;          // for spill move optimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  int              _spill_definition_pos;   // position where the interval is defined (if defined only once)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  Interval*        _register_hint;          // this interval should be in the same register as the hint interval
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  int              calc_to();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  Interval*        new_split_child();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  Interval(int reg_num);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   540
  static void      initialize(Arena* arena);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  static Interval* end()                         { return _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  int              reg_num() const               { return _reg_num; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  void             set_reg_num(int r)            { assert(_reg_num == -1, "cannot change reg_num"); _reg_num = r; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  BasicType        type() const                  { assert(_reg_num == -1 || _reg_num >= LIR_OprDesc::vreg_base, "cannot access type for fixed interval"); return _type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  void             set_type(BasicType type)      { assert(_reg_num < LIR_OprDesc::vreg_base || _type == T_ILLEGAL || _type == type, "overwriting existing type"); _type = type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  Range*           first() const                 { return _first; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  int              from() const                  { return _first->from(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  int              to()                          { if (_cached_to == -1) _cached_to = calc_to(); assert(_cached_to == calc_to(), "invalid cached value"); return _cached_to; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  int              num_use_positions() const     { return _use_pos_and_kinds.length() / 2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  Interval*        next() const                  { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  Interval**       next_addr()                   { return &_next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  void             set_next(Interval* next)      { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  int              assigned_reg() const          { return _assigned_reg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  int              assigned_regHi() const        { return _assigned_regHi; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  void             assign_reg(int reg)           { _assigned_reg = reg; _assigned_regHi = LinearScan::any_reg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  void             assign_reg(int reg,int regHi) { _assigned_reg = reg; _assigned_regHi = regHi; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  Interval*        register_hint(bool search_split_child = true) const; // calculation needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  void             set_register_hint(Interval* i) { _register_hint = i; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  int              state() const                 { return _state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  void             set_state(IntervalState s)    { _state = s; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // access to split parent and split children
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  bool             is_split_parent() const       { return _split_parent == this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  bool             is_split_child() const        { return _split_parent != this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  Interval*        split_parent() const          { assert(_split_parent->is_split_parent(), "must be"); return _split_parent; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  Interval*        split_child_at_op_id(int op_id, LIR_OpVisitState::OprMode mode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  Interval*        split_child_before_op_id(int op_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  bool             split_child_covers(int op_id, LIR_OpVisitState::OprMode mode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  DEBUG_ONLY(void  check_split_children();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  // information stored in split parent, but available for all children
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  int              canonical_spill_slot() const            { return split_parent()->_canonical_spill_slot; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  void             set_canonical_spill_slot(int slot)      { assert(split_parent()->_canonical_spill_slot == -1, "overwriting existing value"); split_parent()->_canonical_spill_slot = slot; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  Interval*        current_split_child() const             { return split_parent()->_current_split_child; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  void             make_current_split_child()              { split_parent()->_current_split_child = this; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  bool             insert_move_when_activated() const      { return _insert_move_when_activated; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  void             set_insert_move_when_activated(bool b)  { _insert_move_when_activated = b; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  // for spill optimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  IntervalSpillState spill_state() const         { return split_parent()->_spill_state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  int              spill_definition_pos() const  { return split_parent()->_spill_definition_pos; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  void             set_spill_state(IntervalSpillState state) {  assert(state >= spill_state(), "state cannot decrease"); split_parent()->_spill_state = state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  void             set_spill_definition_pos(int pos) { assert(spill_definition_pos() == -1, "cannot set the position twice"); split_parent()->_spill_definition_pos = pos; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // returns true if this interval has a shadow copy on the stack that is always correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  bool             always_in_memory() const      { return split_parent()->_spill_state == storeAtDefinition || split_parent()->_spill_state == startInMemory; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // caching of values that take time to compute and are used multiple times
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  LIR_Opr          cached_opr() const            { return _cached_opr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  VMReg            cached_vm_reg() const         { return _cached_vm_reg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  void             set_cached_opr(LIR_Opr opr)   { _cached_opr = opr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  void             set_cached_vm_reg(VMReg reg)  { _cached_vm_reg = reg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  // access to use positions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  int    first_usage(IntervalUseKind min_use_kind) const;           // id of the first operation requiring this interval in a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  int    next_usage(IntervalUseKind min_use_kind, int from) const;  // id of next usage seen from the given position
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  int    next_usage_exact(IntervalUseKind exact_use_kind, int from) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  int    previous_usage(IntervalUseKind min_use_kind, int from) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  // manipulating intervals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  void   add_use_pos(int pos, IntervalUseKind use_kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  void   add_range(int from, int to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  Interval* split(int split_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  Interval* split_from_start(int split_pos);
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36302
diff changeset
   612
  void remove_first_use_pos()                    { _use_pos_and_kinds.trunc_to(_use_pos_and_kinds.length() - 2); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  // test intersection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  bool   covers(int op_id, LIR_OpVisitState::OprMode mode) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  bool   has_hole_between(int from, int to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  bool   intersects(Interval* i) const           { return _first->intersects(i->_first); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  int    intersects_at(Interval* i) const        { return _first->intersects_at(i->_first); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  // range iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  void   rewind_range()                          { _current = _first; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  void   next_range()                            { assert(this != _end, "not allowed on sentinel"); _current = _current->next(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  int    current_from() const                    { return _current->from(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  int    current_to() const                      { return _current->to(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  bool   current_at_end() const                  { return _current == Range::end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  bool   current_intersects(Interval* it)        { return _current->intersects(it->_current); };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  int    current_intersects_at(Interval* it)     { return _current->intersects_at(it->_current); };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  // printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  void print(outputStream* out = tty) const      PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
class IntervalWalker : public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  Compilation*     _compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  LinearScan*      _allocator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  Interval*        _unhandled_first[nofKinds];  // sorted list of intervals, not life before the current position
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  Interval*        _active_first   [nofKinds];  // sorted list of intervals, life at the current position
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  Interval*        _inactive_first [nofKinds];  // sorted list of intervals, intervals in a life time hole at the current position
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  Interval*        _current;                     // the current interval coming from unhandled list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  int              _current_position;            // the current position (intercept point through the intervals)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  IntervalKind     _current_kind;                // and whether it is fixed_kind or any_kind.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  Compilation*     compilation() const               { return _compilation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  LinearScan*      allocator() const                 { return _allocator; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  // unified bailout support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  void             bailout(const char* msg) const    { compilation()->bailout(msg); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  bool             bailed_out() const                { return compilation()->bailed_out(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  void check_bounds(IntervalKind kind) { assert(kind >= fixedKind && kind <= anyKind, "invalid interval_kind"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  Interval** unhandled_first_addr(IntervalKind kind) { check_bounds(kind); return &_unhandled_first[kind]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  Interval** active_first_addr(IntervalKind kind)    { check_bounds(kind); return &_active_first[kind]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  Interval** inactive_first_addr(IntervalKind kind)  { check_bounds(kind); return &_inactive_first[kind]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  void append_unsorted(Interval** first, Interval* interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  void append_sorted(Interval** first, Interval* interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  void append_to_unhandled(Interval** list, Interval* interval);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  bool remove_from_list(Interval** list, Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  void remove_from_list(Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  void next_interval();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  Interval*        current() const               { return _current; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  IntervalKind     current_kind() const          { return _current_kind; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  void walk_to(IntervalState state, int from);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  // activate_current() is called when an unhandled interval becomes active (in current(), current_kind()).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  // Return false if current() should not be moved the the active interval list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  // It is safe to append current to any interval list but the unhandled list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  virtual bool activate_current() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  // interval_moved() is called whenever an interval moves from one interval list to another.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // In the implementation of this method it is prohibited to move the interval to any list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  virtual void interval_moved(Interval* interval, IntervalKind kind, IntervalState from, IntervalState to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  IntervalWalker(LinearScan* allocator, Interval* unhandled_fixed_first, Interval* unhandled_any_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  Interval* unhandled_first(IntervalKind kind)   { check_bounds(kind); return _unhandled_first[kind]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  Interval* active_first(IntervalKind kind)      { check_bounds(kind); return _active_first[kind]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  Interval* inactive_first(IntervalKind kind)    { check_bounds(kind); return _inactive_first[kind]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  // active contains the intervals that are live after the lir_op
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  void walk_to(int lir_op_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  // active contains the intervals that are live before the lir_op
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  void walk_before(int lir_op_id)  { walk_to(lir_op_id-1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  // walk through all intervals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  void walk()                      { walk_to(max_jint); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  int current_position()           { return _current_position; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
// The actual linear scan register allocator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
class LinearScanWalker : public IntervalWalker {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    any_reg = LinearScan::any_reg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  int              _first_reg;       // the reg. number of the first phys. register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  int              _last_reg;        // the reg. nmber of the last phys. register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  int              _num_phys_regs;   // required by current interval
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  bool             _adjacent_regs;   // have lo/hi words of phys. regs be adjacent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  int              _use_pos[LinearScan::nof_regs];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  int              _block_pos[LinearScan::nof_regs];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  IntervalList*    _spill_intervals[LinearScan::nof_regs];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  MoveResolver     _move_resolver;   // for ordering spill moves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  // accessors mapped to same functions in class LinearScan
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  int         block_count() const      { return allocator()->block_count(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  BlockBegin* block_at(int idx) const  { return allocator()->block_at(idx); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  BlockBegin* block_of_op_with_id(int op_id) const { return allocator()->block_of_op_with_id(op_id); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  void init_use_lists(bool only_process_use_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  void exclude_from_use(int reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  void exclude_from_use(Interval* i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  void set_use_pos(int reg, Interval* i, int use_pos, bool only_process_use_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  void set_use_pos(Interval* i, int use_pos, bool only_process_use_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  void set_block_pos(int reg, Interval* i, int block_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  void set_block_pos(Interval* i, int block_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  void free_exclude_active_fixed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  void free_exclude_active_any();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  void free_collect_inactive_fixed(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  void free_collect_inactive_any(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  void free_collect_unhandled(IntervalKind kind, Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  void spill_exclude_active_fixed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  void spill_block_unhandled_fixed(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  void spill_block_inactive_fixed(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  void spill_collect_active_any();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  void spill_collect_inactive_any(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  void insert_move(int op_id, Interval* src_it, Interval* dst_it);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  int  find_optimal_split_pos(BlockBegin* min_block, BlockBegin* max_block, int max_split_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  int  find_optimal_split_pos(Interval* it, int min_split_pos, int max_split_pos, bool do_loop_optimization);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  void split_before_usage(Interval* it, int min_split_pos, int max_split_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  void split_for_spilling(Interval* it);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  void split_stack_interval(Interval* it);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  void split_when_partial_register_available(Interval* it, int register_available_until);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  void split_and_spill_interval(Interval* it);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  int  find_free_reg(int reg_needed_until, int interval_to, int hint_reg, int ignore_reg, bool* need_split);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  int  find_free_double_reg(int reg_needed_until, int interval_to, int hint_reg, bool* need_split);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  bool alloc_free_reg(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  int  find_locked_reg(int reg_needed_until, int interval_to, int hint_reg, int ignore_reg, bool* need_split);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  int  find_locked_double_reg(int reg_needed_until, int interval_to, int hint_reg, bool* need_split);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  void split_and_spill_intersecting_intervals(int reg, int regHi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  void alloc_locked_reg(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  bool no_allocation_possible(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  void update_phys_reg_range(bool requires_cpu_register);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  void init_vars_for_alloc(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  bool pd_init_regs_for_alloc(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  void combine_spilled_intervals(Interval* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  bool is_move(LIR_Op* op, Interval* from, Interval* to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  bool activate_current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  LinearScanWalker(LinearScan* allocator, Interval* unhandled_fixed_first, Interval* unhandled_any_first);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  // must be called when all intervals are allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  void             finish_allocation()           { _move_resolver.resolve_and_append_moves(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
When a block has more than one predecessor, and all predecessors end with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
the same sequence of move-instructions, than this moves can be placed once
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
at the beginning of the block instead of multiple times in the predecessors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
Similarly, when a block has more than one successor, then equal sequences of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
moves at the beginning of the successors can be placed once at the end of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
the block. But because the moves must be inserted before all branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
instructions, this works only when there is exactly one conditional branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
at the end of the block (because the moves must be inserted before all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
branches, but after all compares).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
This optimization affects all kind of moves (reg->reg, reg->stack and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
stack->reg). Because this optimization works best when a block contains only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
few moves, it has a huge impact on the number of blocks that are totally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
class EdgeMoveOptimizer : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  // the class maintains a list with all lir-instruction-list of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  // successors (predecessors) and the current index into the lir-lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  LIR_OpListStack _edge_instructions;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  intStack        _edge_instructions_idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  void init_instructions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  void append_instructions(LIR_OpList* instructions, int instructions_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  LIR_Op* instruction_at(int edge);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  void remove_cur_instruction(int edge, bool decrement_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  bool operations_different(LIR_Op* op1, LIR_Op* op2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  void optimize_moves_at_block_end(BlockBegin* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  void optimize_moves_at_block_begin(BlockBegin* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  EdgeMoveOptimizer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  static void optimize(BlockList* code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
class ControlFlowOptimizer : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  BlockList _original_preds;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
    ShortLoopSize = 5
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  void reorder_short_loop(BlockList* code, BlockBegin* header_block, int header_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  void reorder_short_loops(BlockList* code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  bool can_delete_block(BlockBegin* cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  void substitute_branch_target(BlockBegin* cur, BlockBegin* target_from, BlockBegin* target_to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  void delete_empty_blocks(BlockList* code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  void delete_unnecessary_jumps(BlockList* code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  void delete_jumps_to_return(BlockList* code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  DEBUG_ONLY(void verify(BlockList* code);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  ControlFlowOptimizer();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  static void optimize(BlockList* code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
// Helper class for collecting statistics of LinearScan
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
class LinearScanStatistic : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  enum Counter {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    // general counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    counter_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    counter_fpu_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    counter_loop_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
    counter_exception_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
    counter_loop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    counter_block,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    counter_loop_block,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    counter_exception_block,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    counter_interval,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    counter_fixed_interval,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    counter_range,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    counter_fixed_range,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    counter_use_pos,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
    counter_fixed_use_pos,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
    counter_spill_slots,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
    blank_line_1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
    // counter for classes of lir instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    counter_instruction,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    counter_label,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    counter_entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    counter_return,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
    counter_call,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
    counter_move,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    counter_cmp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    counter_cond_branch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    counter_uncond_branch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    counter_stub_branch,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    counter_alu,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    counter_alloc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    counter_sync,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    counter_throw,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    counter_unwind,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    counter_typecheck,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    counter_fpu_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    counter_misc_inst,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    counter_other_inst,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    blank_line_2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    // counter for different types of moves
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    counter_move_total,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    counter_move_reg_reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    counter_move_reg_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    counter_move_stack_reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
    counter_move_stack_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    counter_move_reg_mem,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    counter_move_mem_reg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    counter_move_const_any,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    number_of_counters,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    invalid_counter = -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  int _counters_sum[number_of_counters];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  int _counters_max[number_of_counters];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  void inc_counter(Counter idx, int value = 1) { _counters_sum[idx] += value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  const char* counter_name(int counter_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  Counter base_counter(int counter_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  void sum_up(LinearScanStatistic &method_statistic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  void collect(LinearScan* allocator);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  LinearScanStatistic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  void print(const char* title);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  static void compute(LinearScan* allocator, LinearScanStatistic &global_statistic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
// Helper class for collecting compilation time of LinearScan
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
class LinearScanTimers : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  enum Timer {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    timer_do_nothing,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    timer_number_instructions,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    timer_compute_local_live_sets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    timer_compute_global_live_sets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    timer_build_intervals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    timer_sort_intervals_before,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    timer_allocate_registers,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
    timer_resolve_data_flow,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    timer_sort_intervals_after,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    timer_eliminate_spill_moves,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
    timer_assign_reg_num,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    timer_allocate_fpu_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    timer_optimize_lir,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    number_of_timers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  elapsedTimer _timers[number_of_timers];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  const char*  timer_name(int idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  LinearScanTimers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  void begin_method();                     // called for each method when register allocation starts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  void end_method(LinearScan* allocator);  // called for each method when register allocation completed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  void print(double total_time);           // called before termination of VM to print global summary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  elapsedTimer* timer(int idx) { return &(_timers[idx]); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
#endif // ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
// Pick up platform-dependent implementation details
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 38177
diff changeset
   965
#include CPU_HEADER(c1_LinearScan)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6745
diff changeset
   966
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
   967
#endif // SHARE_C1_C1_LINEARSCAN_HPP