src/hotspot/share/opto/phase.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 34503 hotspot/src/share/vm/opto/phase.hpp@57d1a0e76091
child 52711 f480ad035c73
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
22234
da823d78ad65 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 17383
diff changeset
     2
 * Copyright (c) 1997, 2013, 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: 4450
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4450
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: 4450
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_OPTO_PHASE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_OPTO_PHASE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "runtime/timer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
26166
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
    30
class IfNode;
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
    31
class MergeMemNode;
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
    32
class Node;
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
    33
class PhaseGVN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//------------------------------Phase------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// Most optimizations are done in Phases.  Creating a phase does any long
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// running analysis required, and caches the analysis in internal data
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// structures.  Later the analysis is queried using transform() calls to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// guide transforming the program.  When the Phase is deleted, so is any
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// cached analysis info.  This basic Phase class mostly contains timing and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// memory management code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class Phase : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  enum PhaseNumber {
34503
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    45
    Compiler,                         // Top-level compiler phase
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    46
    Parser,                           // Parse bytecodes
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    47
    Remove_Useless,                   // Remove useless nodes
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    48
    Remove_Useless_And_Renumber_Live, // First, remove useless nodes from the graph. Then, renumber live nodes.
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    49
    Optimistic,                       // Optimistic analysis phase
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    50
    GVN,                              // Pessimistic global value numbering phase
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    51
    Ins_Select,                       // Instruction selection phase
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    52
    CFG,                              // Build a CFG
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    53
    BlockLayout,                      // Linear ordering of blocks
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    54
    Register_Allocation,              // Register allocation, duh
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    55
    LIVE,                             // Dragon-book LIVE range problem
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    56
    StringOpts,                       // StringBuilder related optimizations
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    57
    Interference_Graph,               // Building the IFG
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    58
    Coalesce,                         // Coalescing copies
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    59
    Ideal_Loop,                       // Find idealized trip-counted loops
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    60
    Macro_Expand,                     // Expand macro nodes
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    61
    Peephole,                         // Apply peephole optimizations
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    last_phase
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  };
26913
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    64
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    65
  enum PhaseTraceId {
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    66
    _t_parser,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    67
    _t_optimizer,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    68
      _t_escapeAnalysis,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    69
        _t_connectionGraph,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    70
        _t_macroEliminate,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    71
      _t_iterGVN,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    72
      _t_incrInline,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    73
        _t_incrInline_ideal,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    74
        _t_incrInline_igvn,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    75
        _t_incrInline_pru,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    76
        _t_incrInline_inline,
34503
57d1a0e76091 8129847: Compiling methods generated by Nashorn triggers high memory usage in C2
zmajo
parents: 28648
diff changeset
    77
      _t_renumberLive,
26913
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    78
      _t_idealLoop,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    79
      _t_idealLoopVerify,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    80
      _t_ccp,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    81
      _t_iterGVN2,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    82
      _t_macroExpand,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    83
      _t_graphReshaping,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    84
    _t_matcher,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    85
    _t_scheduler,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    86
    _t_registerAllocation,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    87
      _t_ctorChaitin,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    88
      _t_buildIFGvirtual,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    89
      _t_buildIFGphysical,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    90
      _t_computeLive,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    91
      _t_regAllocSplit,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    92
      _t_postAllocCopyRemoval,
28648
102bdbb42723 8068881: SIGBUS in C2 compiled method weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory$SimulatedWsdlDefinitions.<init>
iveresov
parents: 26913
diff changeset
    93
      _t_mergeMultidefs,
26913
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    94
      _t_fixupSpills,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    95
      _t_chaitinCompact,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    96
      _t_chaitinCoalesce1,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    97
      _t_chaitinCoalesce2,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    98
      _t_chaitinCoalesce3,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
    99
      _t_chaitinCacheLRG,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   100
      _t_chaitinSimplify,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   101
      _t_chaitinSelect,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   102
    _t_blockOrdering,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   103
    _t_peephole,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   104
    _t_postalloc_expand,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   105
    _t_output,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   106
       _t_instrSched,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   107
       _t_buildOopMaps,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   108
    _t_registerMethod,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   109
    _t_temporaryTimer1,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   110
    _t_temporaryTimer2,
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   111
    max_phase_timers
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   112
   };
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   113
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   114
  static elapsedTimer timers[max_phase_timers];
9ad70cd32368 8058968: Compiler time traces should be improved
shade
parents: 26166
diff changeset
   115
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  enum PhaseNumber _pnum;       // Phase number (for stat gathering)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  static int _total_bytes_compiled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // accumulated timers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static elapsedTimer _t_totalCompilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static elapsedTimer _t_methodCompilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  static elapsedTimer _t_stubCompilation;
26166
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   125
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   126
  // Generate a subtyping check.  Takes as input the subtype and supertype.
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   127
  // Returns 2 values: sets the default control() to the true path and
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   128
  // returns the false path.  Only reads from constant memory taken from the
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   129
  // default memory; does not write anything.  It also doesn't take in an
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   130
  // Object; if you wish to check an Object you need to load the Object's
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   131
  // class prior to coming here.
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   132
  // Used in GraphKit and PhaseMacroExpand
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   133
  static Node* gen_subtype_check(Node* subklass, Node* superklass, Node** ctrl, MergeMemNode* mem, PhaseGVN* gvn);
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   134
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  Compile * C;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  Phase( PhaseNumber pnum );
26166
4b49fd58bbd9 7173584: Implement arraycopy as a macro node
roland
parents: 24425
diff changeset
   138
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  static void print_timers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   141
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   142
#endif // SHARE_VM_OPTO_PHASE_HPP