src/share/vm/opto/output.hpp

Tue, 24 Feb 2015 15:04:52 -0500

author
dlong
date
Tue, 24 Feb 2015 15:04:52 -0500
changeset 7598
ddce0b7cee93
parent 6503
a9becfeecd1b
child 7994
04ff2f6cd0eb
permissions
-rw-r--r--

8072383: resolve conflicts between open and closed ports
Summary: refactor close to remove references to closed ports
Reviewed-by: kvn, simonis, sgehwolf, dholmes

duke@435 1 /*
dlong@7598 2 * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_OPTO_OUTPUT_HPP
stefank@2314 26 #define SHARE_VM_OPTO_OUTPUT_HPP
stefank@2314 27
stefank@2314 28 #include "opto/block.hpp"
stefank@2314 29 #include "opto/node.hpp"
dlong@7598 30 #if defined AD_MD_HPP
dlong@7598 31 # include AD_MD_HPP
dlong@7598 32 #elif defined TARGET_ARCH_MODEL_x86_32
stefank@2314 33 # include "adfiles/ad_x86_32.hpp"
dlong@7598 34 #elif defined TARGET_ARCH_MODEL_x86_64
stefank@2314 35 # include "adfiles/ad_x86_64.hpp"
dlong@7598 36 #elif defined TARGET_ARCH_MODEL_sparc
stefank@2314 37 # include "adfiles/ad_sparc.hpp"
dlong@7598 38 #elif defined TARGET_ARCH_MODEL_zero
stefank@2314 39 # include "adfiles/ad_zero.hpp"
dlong@7598 40 #elif defined TARGET_ARCH_MODEL_ppc_64
goetz@6441 41 # include "adfiles/ad_ppc_64.hpp"
bobv@2508 42 #endif
stefank@2314 43
duke@435 44 class Arena;
duke@435 45 class Bundle;
duke@435 46 class Block;
duke@435 47 class Block_Array;
duke@435 48 class Node;
duke@435 49 class Node_Array;
duke@435 50 class Node_List;
duke@435 51 class PhaseCFG;
duke@435 52 class PhaseChaitin;
duke@435 53 class Pipeline_Use_Element;
duke@435 54 class Pipeline_Use;
duke@435 55
duke@435 56 #ifndef PRODUCT
duke@435 57 #define DEBUG_ARG(x) , x
duke@435 58 #else
duke@435 59 #define DEBUG_ARG(x)
duke@435 60 #endif
duke@435 61
duke@435 62 // Define the initial sizes for allocation of the resizable code buffer
duke@435 63 enum {
duke@435 64 initial_code_capacity = 16 * 1024,
duke@435 65 initial_stub_capacity = 4 * 1024,
duke@435 66 initial_const_capacity = 4 * 1024,
duke@435 67 initial_locs_capacity = 3 * 1024
duke@435 68 };
duke@435 69
duke@435 70 //------------------------------Scheduling----------------------------------
duke@435 71 // This class contains all the information necessary to implement instruction
duke@435 72 // scheduling and bundling.
duke@435 73 class Scheduling {
duke@435 74
duke@435 75 private:
duke@435 76 // Arena to use
duke@435 77 Arena *_arena;
duke@435 78
duke@435 79 // Control-Flow Graph info
duke@435 80 PhaseCFG *_cfg;
duke@435 81
duke@435 82 // Register Allocation info
duke@435 83 PhaseRegAlloc *_regalloc;
duke@435 84
duke@435 85 // Number of nodes in the method
duke@435 86 uint _node_bundling_limit;
duke@435 87
duke@435 88 // List of scheduled nodes. Generated in reverse order
duke@435 89 Node_List _scheduled;
duke@435 90
duke@435 91 // List of nodes currently available for choosing for scheduling
duke@435 92 Node_List _available;
duke@435 93
duke@435 94 // For each instruction beginning a bundle, the number of following
duke@435 95 // nodes to be bundled with it.
duke@435 96 Bundle *_node_bundling_base;
duke@435 97
duke@435 98 // Mapping from register to Node
duke@435 99 Node_List _reg_node;
duke@435 100
duke@435 101 // Free list for pinch nodes.
duke@435 102 Node_List _pinch_free_list;
duke@435 103
duke@435 104 // Latency from the beginning of the containing basic block (base 1)
duke@435 105 // for each node.
duke@435 106 unsigned short *_node_latency;
duke@435 107
duke@435 108 // Number of uses of this node within the containing basic block.
duke@435 109 short *_uses;
duke@435 110
duke@435 111 // Schedulable portion of current block. Skips Region/Phi/CreateEx up
duke@435 112 // front, branch+proj at end. Also skips Catch/CProj (same as
duke@435 113 // branch-at-end), plus just-prior exception-throwing call.
duke@435 114 uint _bb_start, _bb_end;
duke@435 115
duke@435 116 // Latency from the end of the basic block as scheduled
duke@435 117 unsigned short *_current_latency;
duke@435 118
duke@435 119 // Remember the next node
duke@435 120 Node *_next_node;
duke@435 121
duke@435 122 // Use this for an unconditional branch delay slot
duke@435 123 Node *_unconditional_delay_slot;
duke@435 124
duke@435 125 // Pointer to a Nop
duke@435 126 MachNopNode *_nop;
duke@435 127
duke@435 128 // Length of the current bundle, in instructions
duke@435 129 uint _bundle_instr_count;
duke@435 130
duke@435 131 // Current Cycle number, for computing latencies and bundling
duke@435 132 uint _bundle_cycle_number;
duke@435 133
duke@435 134 // Bundle information
duke@435 135 Pipeline_Use_Element _bundle_use_elements[resource_count];
duke@435 136 Pipeline_Use _bundle_use;
duke@435 137
duke@435 138 // Dump the available list
duke@435 139 void dump_available() const;
duke@435 140
duke@435 141 public:
duke@435 142 Scheduling(Arena *arena, Compile &compile);
duke@435 143
duke@435 144 // Destructor
duke@435 145 NOT_PRODUCT( ~Scheduling(); )
duke@435 146
duke@435 147 // Step ahead "i" cycles
duke@435 148 void step(uint i);
duke@435 149
duke@435 150 // Step ahead 1 cycle, and clear the bundle state (for example,
duke@435 151 // at a branch target)
duke@435 152 void step_and_clear();
duke@435 153
duke@435 154 Bundle* node_bundling(const Node *n) {
duke@435 155 assert(valid_bundle_info(n), "oob");
duke@435 156 return (&_node_bundling_base[n->_idx]);
duke@435 157 }
duke@435 158
duke@435 159 bool valid_bundle_info(const Node *n) const {
duke@435 160 return (_node_bundling_limit > n->_idx);
duke@435 161 }
duke@435 162
duke@435 163 bool starts_bundle(const Node *n) const {
duke@435 164 return (_node_bundling_limit > n->_idx && _node_bundling_base[n->_idx].starts_bundle());
duke@435 165 }
duke@435 166
duke@435 167 // Do the scheduling
duke@435 168 void DoScheduling();
duke@435 169
duke@435 170 // Compute the local latencies walking forward over the list of
duke@435 171 // nodes for a basic block
duke@435 172 void ComputeLocalLatenciesForward(const Block *bb);
duke@435 173
duke@435 174 // Compute the register antidependencies within a basic block
duke@435 175 void ComputeRegisterAntidependencies(Block *bb);
duke@435 176 void verify_do_def( Node *n, OptoReg::Name def, const char *msg );
duke@435 177 void verify_good_schedule( Block *b, const char *msg );
duke@435 178 void anti_do_def( Block *b, Node *def, OptoReg::Name def_reg, int is_def );
duke@435 179 void anti_do_use( Block *b, Node *use, OptoReg::Name use_reg );
duke@435 180
duke@435 181 // Add a node to the current bundle
duke@435 182 void AddNodeToBundle(Node *n, const Block *bb);
duke@435 183
duke@435 184 // Add a node to the list of available nodes
duke@435 185 void AddNodeToAvailableList(Node *n);
duke@435 186
duke@435 187 // Compute the local use count for the nodes in a block, and compute
duke@435 188 // the list of instructions with no uses in the block as available
duke@435 189 void ComputeUseCount(const Block *bb);
duke@435 190
duke@435 191 // Choose an instruction from the available list to add to the bundle
duke@435 192 Node * ChooseNodeToBundle();
duke@435 193
duke@435 194 // See if this Node fits into the currently accumulating bundle
duke@435 195 bool NodeFitsInBundle(Node *n);
duke@435 196
duke@435 197 // Decrement the use count for a node
duke@435 198 void DecrementUseCounts(Node *n, const Block *bb);
duke@435 199
duke@435 200 // Garbage collect pinch nodes for reuse by other blocks.
duke@435 201 void garbage_collect_pinch_nodes();
duke@435 202 // Clean up a pinch node for reuse (helper for above).
duke@435 203 void cleanup_pinch( Node *pinch );
duke@435 204
duke@435 205 // Information for statistics gathering
duke@435 206 #ifndef PRODUCT
duke@435 207 private:
duke@435 208 // Gather information on size of nops relative to total
duke@435 209 uint _branches, _unconditional_delays;
duke@435 210
duke@435 211 static uint _total_nop_size, _total_method_size;
duke@435 212 static uint _total_branches, _total_unconditional_delays;
duke@435 213 static uint _total_instructions_per_bundle[Pipeline::_max_instrs_per_cycle+1];
duke@435 214
duke@435 215 public:
duke@435 216 static void print_statistics();
duke@435 217
duke@435 218 static void increment_instructions_per_bundle(uint i) {
duke@435 219 _total_instructions_per_bundle[i]++;
duke@435 220 }
duke@435 221
duke@435 222 static void increment_nop_size(uint s) {
duke@435 223 _total_nop_size += s;
duke@435 224 }
duke@435 225
duke@435 226 static void increment_method_size(uint s) {
duke@435 227 _total_method_size += s;
duke@435 228 }
duke@435 229 #endif
duke@435 230
duke@435 231 };
stefank@2314 232
stefank@2314 233 #endif // SHARE_VM_OPTO_OUTPUT_HPP

mercurial