src/share/vm/opto/compile.hpp

Thu, 24 May 2018 19:26:50 +0800

author
aoqi
date
Thu, 24 May 2018 19:26:50 +0800
changeset 8862
fd13a567f179
parent 8856
ac27a9c85bea
child 9463
5fa97182066f
permissions
-rw-r--r--

#7046 C2 supports long branch
Contributed-by: fujie

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #ifndef SHARE_VM_OPTO_COMPILE_HPP
aoqi@0 26 #define SHARE_VM_OPTO_COMPILE_HPP
aoqi@0 27
aoqi@0 28 #include "asm/codeBuffer.hpp"
aoqi@0 29 #include "ci/compilerInterface.hpp"
aoqi@0 30 #include "code/debugInfoRec.hpp"
aoqi@0 31 #include "code/exceptionHandlerTable.hpp"
aoqi@0 32 #include "compiler/compilerOracle.hpp"
aoqi@0 33 #include "compiler/compileBroker.hpp"
aoqi@0 34 #include "libadt/dict.hpp"
aoqi@0 35 #include "libadt/port.hpp"
aoqi@0 36 #include "libadt/vectset.hpp"
aoqi@0 37 #include "memory/resourceArea.hpp"
aoqi@0 38 #include "opto/idealGraphPrinter.hpp"
aoqi@0 39 #include "opto/phasetype.hpp"
aoqi@0 40 #include "opto/phase.hpp"
aoqi@0 41 #include "opto/regmask.hpp"
aoqi@0 42 #include "runtime/deoptimization.hpp"
aoqi@0 43 #include "runtime/vmThread.hpp"
aoqi@0 44 #include "trace/tracing.hpp"
aoqi@0 45 #include "utilities/ticks.hpp"
aoqi@0 46
aoqi@0 47 class Block;
aoqi@0 48 class Bundle;
aoqi@0 49 class C2Compiler;
aoqi@0 50 class CallGenerator;
aoqi@0 51 class ConnectionGraph;
aoqi@0 52 class InlineTree;
aoqi@0 53 class Int_Array;
aoqi@0 54 class Matcher;
aoqi@0 55 class MachConstantNode;
aoqi@0 56 class MachConstantBaseNode;
aoqi@0 57 class MachNode;
aoqi@0 58 class MachOper;
aoqi@0 59 class MachSafePointNode;
aoqi@0 60 class Node;
aoqi@0 61 class Node_Array;
aoqi@0 62 class Node_Notes;
aoqi@0 63 class OptoReg;
aoqi@0 64 class PhaseCFG;
aoqi@0 65 class PhaseGVN;
aoqi@0 66 class PhaseIterGVN;
aoqi@0 67 class PhaseRegAlloc;
aoqi@0 68 class PhaseCCP;
aoqi@0 69 class PhaseCCP_DCE;
aoqi@0 70 class RootNode;
aoqi@0 71 class relocInfo;
aoqi@0 72 class Scope;
aoqi@0 73 class StartNode;
aoqi@0 74 class SafePointNode;
aoqi@0 75 class JVMState;
aoqi@0 76 class Type;
aoqi@0 77 class TypeData;
thartmann@8285 78 class TypeInt;
aoqi@0 79 class TypePtr;
aoqi@0 80 class TypeOopPtr;
aoqi@0 81 class TypeFunc;
aoqi@0 82 class Unique_Node_List;
aoqi@0 83 class nmethod;
aoqi@0 84 class WarmCallInfo;
aoqi@0 85 class Node_Stack;
aoqi@0 86 struct Final_Reshape_Counts;
aoqi@0 87
aoqi@0 88 //------------------------------Compile----------------------------------------
aoqi@0 89 // This class defines a top-level Compiler invocation.
aoqi@0 90
aoqi@0 91 class Compile : public Phase {
aoqi@0 92 friend class VMStructs;
aoqi@0 93
aoqi@0 94 public:
aoqi@0 95 // Fixed alias indexes. (See also MergeMemNode.)
aoqi@0 96 enum {
aoqi@0 97 AliasIdxTop = 1, // pseudo-index, aliases to nothing (used as sentinel value)
aoqi@0 98 AliasIdxBot = 2, // pseudo-index, aliases to everything
aoqi@0 99 AliasIdxRaw = 3 // hard-wired index for TypeRawPtr::BOTTOM
aoqi@0 100 };
aoqi@0 101
aoqi@0 102 // Variant of TraceTime(NULL, &_t_accumulator, TimeCompiler);
aoqi@0 103 // Integrated with logging. If logging is turned on, and dolog is true,
aoqi@0 104 // then brackets are put into the log, with time stamps and node counts.
aoqi@0 105 // (The time collection itself is always conditionalized on TimeCompiler.)
aoqi@0 106 class TracePhase : public TraceTime {
aoqi@0 107 private:
aoqi@0 108 Compile* C;
aoqi@0 109 CompileLog* _log;
aoqi@0 110 const char* _phase_name;
aoqi@0 111 bool _dolog;
aoqi@0 112 public:
aoqi@0 113 TracePhase(const char* name, elapsedTimer* accumulator, bool dolog);
aoqi@0 114 ~TracePhase();
aoqi@0 115 };
aoqi@0 116
aoqi@0 117 // Information per category of alias (memory slice)
aoqi@0 118 class AliasType {
aoqi@0 119 private:
aoqi@0 120 friend class Compile;
aoqi@0 121
aoqi@0 122 int _index; // unique index, used with MergeMemNode
aoqi@0 123 const TypePtr* _adr_type; // normalized address type
aoqi@0 124 ciField* _field; // relevant instance field, or null if none
aoqi@0 125 const Type* _element; // relevant array element type, or null if none
aoqi@0 126 bool _is_rewritable; // false if the memory is write-once only
aoqi@0 127 int _general_index; // if this is type is an instance, the general
aoqi@0 128 // type that this is an instance of
aoqi@0 129
aoqi@0 130 void Init(int i, const TypePtr* at);
aoqi@0 131
aoqi@0 132 public:
aoqi@0 133 int index() const { return _index; }
aoqi@0 134 const TypePtr* adr_type() const { return _adr_type; }
aoqi@0 135 ciField* field() const { return _field; }
aoqi@0 136 const Type* element() const { return _element; }
aoqi@0 137 bool is_rewritable() const { return _is_rewritable; }
aoqi@0 138 bool is_volatile() const { return (_field ? _field->is_volatile() : false); }
aoqi@0 139 int general_index() const { return (_general_index != 0) ? _general_index : _index; }
aoqi@0 140
aoqi@0 141 void set_rewritable(bool z) { _is_rewritable = z; }
aoqi@0 142 void set_field(ciField* f) {
aoqi@0 143 assert(!_field,"");
aoqi@0 144 _field = f;
aoqi@0 145 if (f->is_final() || f->is_stable()) {
aoqi@0 146 // In the case of @Stable, multiple writes are possible but may be assumed to be no-ops.
aoqi@0 147 _is_rewritable = false;
aoqi@0 148 }
aoqi@0 149 }
aoqi@0 150 void set_element(const Type* e) {
aoqi@0 151 assert(_element == NULL, "");
aoqi@0 152 _element = e;
aoqi@0 153 }
aoqi@0 154
shshahma@8654 155 BasicType basic_type() const;
shshahma@8654 156
aoqi@0 157 void print_on(outputStream* st) PRODUCT_RETURN;
aoqi@0 158 };
aoqi@0 159
aoqi@0 160 enum {
aoqi@0 161 logAliasCacheSize = 6,
aoqi@0 162 AliasCacheSize = (1<<logAliasCacheSize)
aoqi@0 163 };
aoqi@0 164 struct AliasCacheEntry { const TypePtr* _adr_type; int _index; }; // simple duple type
aoqi@0 165 enum {
aoqi@0 166 trapHistLength = MethodData::_trap_hist_limit
aoqi@0 167 };
aoqi@0 168
aoqi@0 169 // Constant entry of the constant table.
aoqi@0 170 class Constant {
aoqi@0 171 private:
aoqi@0 172 BasicType _type;
aoqi@0 173 union {
aoqi@0 174 jvalue _value;
aoqi@0 175 Metadata* _metadata;
aoqi@0 176 } _v;
aoqi@0 177 int _offset; // offset of this constant (in bytes) relative to the constant table base.
aoqi@0 178 float _freq;
aoqi@0 179 bool _can_be_reused; // true (default) if the value can be shared with other users.
aoqi@0 180
aoqi@0 181 public:
aoqi@0 182 Constant() : _type(T_ILLEGAL), _offset(-1), _freq(0.0f), _can_be_reused(true) { _v._value.l = 0; }
aoqi@0 183 Constant(BasicType type, jvalue value, float freq = 0.0f, bool can_be_reused = true) :
aoqi@0 184 _type(type),
aoqi@0 185 _offset(-1),
aoqi@0 186 _freq(freq),
aoqi@0 187 _can_be_reused(can_be_reused)
aoqi@0 188 {
aoqi@0 189 assert(type != T_METADATA, "wrong constructor");
aoqi@0 190 _v._value = value;
aoqi@0 191 }
aoqi@0 192 Constant(Metadata* metadata, bool can_be_reused = true) :
aoqi@0 193 _type(T_METADATA),
aoqi@0 194 _offset(-1),
aoqi@0 195 _freq(0.0f),
aoqi@0 196 _can_be_reused(can_be_reused)
aoqi@0 197 {
aoqi@0 198 _v._metadata = metadata;
aoqi@0 199 }
aoqi@0 200
aoqi@0 201 bool operator==(const Constant& other);
aoqi@0 202
aoqi@0 203 BasicType type() const { return _type; }
aoqi@0 204
aoqi@0 205 jlong get_jlong() const { return _v._value.j; }
aoqi@0 206 jfloat get_jfloat() const { return _v._value.f; }
aoqi@0 207 jdouble get_jdouble() const { return _v._value.d; }
aoqi@0 208 jobject get_jobject() const { return _v._value.l; }
aoqi@0 209
aoqi@0 210 Metadata* get_metadata() const { return _v._metadata; }
aoqi@0 211
aoqi@0 212 int offset() const { return _offset; }
aoqi@0 213 void set_offset(int offset) { _offset = offset; }
aoqi@0 214
aoqi@0 215 float freq() const { return _freq; }
aoqi@0 216 void inc_freq(float freq) { _freq += freq; }
aoqi@0 217
aoqi@0 218 bool can_be_reused() const { return _can_be_reused; }
aoqi@0 219 };
aoqi@0 220
aoqi@0 221 // Constant table.
aoqi@0 222 class ConstantTable {
aoqi@0 223 private:
aoqi@0 224 GrowableArray<Constant> _constants; // Constants of this table.
aoqi@0 225 int _size; // Size in bytes the emitted constant table takes (including padding).
aoqi@0 226 int _table_base_offset; // Offset of the table base that gets added to the constant offsets.
aoqi@0 227 int _nof_jump_tables; // Number of jump-tables in this constant table.
aoqi@0 228
aoqi@0 229 static int qsort_comparator(Constant* a, Constant* b);
aoqi@0 230
aoqi@0 231 // We use negative frequencies to keep the order of the
aoqi@0 232 // jump-tables in which they were added. Otherwise we get into
aoqi@0 233 // trouble with relocation.
aoqi@0 234 float next_jump_table_freq() { return -1.0f * (++_nof_jump_tables); }
aoqi@0 235
aoqi@0 236 public:
aoqi@0 237 ConstantTable() :
aoqi@0 238 _size(-1),
aoqi@0 239 _table_base_offset(-1), // We can use -1 here since the constant table is always bigger than 2 bytes (-(size / 2), see MachConstantBaseNode::emit).
aoqi@0 240 _nof_jump_tables(0)
aoqi@0 241 {}
aoqi@0 242
aoqi@0 243 int size() const { assert(_size != -1, "not calculated yet"); return _size; }
aoqi@0 244
aoqi@0 245 int calculate_table_base_offset() const; // AD specific
aoqi@0 246 void set_table_base_offset(int x) { assert(_table_base_offset == -1 || x == _table_base_offset, "can't change"); _table_base_offset = x; }
aoqi@0 247 int table_base_offset() const { assert(_table_base_offset != -1, "not set yet"); return _table_base_offset; }
aoqi@0 248
aoqi@0 249 void emit(CodeBuffer& cb);
aoqi@0 250
aoqi@0 251 // Returns the offset of the last entry (the top) of the constant table.
aoqi@0 252 int top_offset() const { assert(_constants.top().offset() != -1, "not bound yet"); return _constants.top().offset(); }
aoqi@0 253
aoqi@0 254 void calculate_offsets_and_size();
aoqi@0 255 int find_offset(Constant& con) const;
aoqi@0 256
aoqi@0 257 void add(Constant& con);
aoqi@0 258 Constant add(MachConstantNode* n, BasicType type, jvalue value);
aoqi@0 259 Constant add(Metadata* metadata);
aoqi@0 260 Constant add(MachConstantNode* n, MachOper* oper);
aoqi@0 261 Constant add(MachConstantNode* n, jfloat f) {
aoqi@0 262 jvalue value; value.f = f;
aoqi@0 263 return add(n, T_FLOAT, value);
aoqi@0 264 }
aoqi@0 265 Constant add(MachConstantNode* n, jdouble d) {
aoqi@0 266 jvalue value; value.d = d;
aoqi@0 267 return add(n, T_DOUBLE, value);
aoqi@0 268 }
aoqi@0 269
aoqi@0 270 // Jump-table
aoqi@0 271 Constant add_jump_table(MachConstantNode* n);
aoqi@0 272 void fill_jump_table(CodeBuffer& cb, MachConstantNode* n, GrowableArray<Label*> labels) const;
aoqi@0 273 };
aoqi@0 274
aoqi@0 275 private:
aoqi@0 276 // Fixed parameters to this compilation.
aoqi@0 277 const int _compile_id;
aoqi@0 278 const bool _save_argument_registers; // save/restore arg regs for trampolines
aoqi@0 279 const bool _subsume_loads; // Load can be matched as part of a larger op.
aoqi@0 280 const bool _do_escape_analysis; // Do escape analysis.
aoqi@0 281 const bool _eliminate_boxing; // Do boxing elimination.
aoqi@0 282 ciMethod* _method; // The method being compiled.
aoqi@0 283 int _entry_bci; // entry bci for osr methods.
aoqi@0 284 const TypeFunc* _tf; // My kind of signature
aoqi@0 285 InlineTree* _ilt; // Ditto (temporary).
aoqi@0 286 address _stub_function; // VM entry for stub being compiled, or NULL
aoqi@0 287 const char* _stub_name; // Name of stub or adapter being compiled, or NULL
aoqi@0 288 address _stub_entry_point; // Compile code entry for generated stub, or NULL
aoqi@0 289
aoqi@0 290 // Control of this compilation.
aoqi@0 291 int _num_loop_opts; // Number of iterations for doing loop optimiztions
aoqi@0 292 int _max_inline_size; // Max inline size for this compilation
aoqi@0 293 int _freq_inline_size; // Max hot method inline size for this compilation
aoqi@0 294 int _fixed_slots; // count of frame slots not allocated by the register
aoqi@0 295 // allocator i.e. locks, original deopt pc, etc.
vlivanov@7385 296 uintx _max_node_limit; // Max unique node count during a single compilation.
aoqi@0 297 // For deopt
aoqi@0 298 int _orig_pc_slot;
aoqi@0 299 int _orig_pc_slot_offset_in_bytes;
aoqi@0 300
aoqi@0 301 int _major_progress; // Count of something big happening
aoqi@0 302 bool _inlining_progress; // progress doing incremental inlining?
aoqi@0 303 bool _inlining_incrementally;// Are we doing incremental inlining (post parse)
aoqi@0 304 bool _has_loops; // True if the method _may_ have some loops
aoqi@0 305 bool _has_split_ifs; // True if the method _may_ have some split-if
aoqi@0 306 bool _has_unsafe_access; // True if the method _may_ produce faults in unsafe loads or stores.
aoqi@0 307 bool _has_stringbuilder; // True StringBuffers or StringBuilders are allocated
aoqi@0 308 bool _has_boxed_value; // True if a boxed object is allocated
aoqi@0 309 int _max_vector_size; // Maximum size of generated vectors
aoqi@0 310 uint _trap_hist[trapHistLength]; // Cumulative traps
aoqi@0 311 bool _trap_can_recompile; // Have we emitted a recompiling trap?
aoqi@0 312 uint _decompile_count; // Cumulative decompilation counts.
aoqi@0 313 bool _do_inlining; // True if we intend to do inlining
aoqi@0 314 bool _do_scheduling; // True if we intend to do scheduling
aoqi@0 315 bool _do_freq_based_layout; // True if we intend to do frequency based block layout
aoqi@0 316 bool _do_count_invocations; // True if we generate code to count invocations
aoqi@0 317 bool _do_method_data_update; // True if we generate code to update MethodData*s
aoqi@0 318 int _AliasLevel; // Locally-adjusted version of AliasLevel flag.
aoqi@0 319 bool _print_assembly; // True if we should dump assembly code for this compilation
aoqi@0 320 bool _print_inlining; // True if we should print inlining for this compilation
aoqi@0 321 bool _print_intrinsics; // True if we should print intrinsics for this compilation
aoqi@0 322 #ifndef PRODUCT
aoqi@0 323 bool _trace_opto_output;
aoqi@0 324 bool _parsed_irreducible_loop; // True if ciTypeFlow detected irreducible loops during parsing
aoqi@0 325 #endif
aoqi@0 326 bool _has_irreducible_loop; // Found irreducible loops
aoqi@0 327 // JSR 292
aoqi@0 328 bool _has_method_handle_invokes; // True if this method has MethodHandle invokes.
aoqi@0 329 RTMState _rtm_state; // State of Restricted Transactional Memory usage
aoqi@0 330
aoqi@0 331 // Compilation environment.
aoqi@0 332 Arena _comp_arena; // Arena with lifetime equivalent to Compile
aoqi@0 333 ciEnv* _env; // CI interface
aoqi@0 334 CompileLog* _log; // from CompilerThread
aoqi@0 335 const char* _failure_reason; // for record_failure/failing pattern
aoqi@0 336 GrowableArray<CallGenerator*>* _intrinsics; // List of intrinsics.
aoqi@0 337 GrowableArray<Node*>* _macro_nodes; // List of nodes which need to be expanded before matching.
aoqi@0 338 GrowableArray<Node*>* _predicate_opaqs; // List of Opaque1 nodes for the loop predicates.
aoqi@0 339 GrowableArray<Node*>* _expensive_nodes; // List of nodes that are expensive to compute and that we'd better not let the GVN freely common
thartmann@8285 340 GrowableArray<Node*>* _range_check_casts; // List of CastII nodes with a range check dependency
aoqi@0 341 ConnectionGraph* _congraph;
aoqi@0 342 #ifndef PRODUCT
aoqi@0 343 IdealGraphPrinter* _printer;
aoqi@0 344 #endif
aoqi@0 345
aoqi@0 346
aoqi@0 347 // Node management
aoqi@0 348 uint _unique; // Counter for unique Node indices
aoqi@0 349 VectorSet _dead_node_list; // Set of dead nodes
aoqi@0 350 uint _dead_node_count; // Number of dead nodes; VectorSet::Size() is O(N).
aoqi@0 351 // So use this to keep count and make the call O(1).
aoqi@0 352 debug_only(static int _debug_idx;) // Monotonic counter (not reset), use -XX:BreakAtNode=<idx>
aoqi@0 353 Arena _node_arena; // Arena for new-space Nodes
aoqi@0 354 Arena _old_arena; // Arena for old-space Nodes, lifetime during xform
aoqi@0 355 RootNode* _root; // Unique root of compilation, or NULL after bail-out.
aoqi@0 356 Node* _top; // Unique top node. (Reset by various phases.)
aoqi@0 357
aoqi@0 358 Node* _immutable_memory; // Initial memory state
aoqi@0 359
aoqi@0 360 Node* _recent_alloc_obj;
aoqi@0 361 Node* _recent_alloc_ctl;
aoqi@0 362
aoqi@0 363 // Constant table
aoqi@0 364 ConstantTable _constant_table; // The constant table for this compile.
aoqi@0 365 MachConstantBaseNode* _mach_constant_base_node; // Constant table base node singleton.
aoqi@0 366
aoqi@0 367
aoqi@0 368 // Blocked array of debugging and profiling information,
aoqi@0 369 // tracked per node.
aoqi@0 370 enum { _log2_node_notes_block_size = 8,
aoqi@0 371 _node_notes_block_size = (1<<_log2_node_notes_block_size)
aoqi@0 372 };
aoqi@0 373 GrowableArray<Node_Notes*>* _node_note_array;
aoqi@0 374 Node_Notes* _default_node_notes; // default notes for new nodes
aoqi@0 375
aoqi@0 376 // After parsing and every bulk phase we hang onto the Root instruction.
aoqi@0 377 // The RootNode instruction is where the whole program begins. It produces
aoqi@0 378 // the initial Control and BOTTOM for everybody else.
aoqi@0 379
aoqi@0 380 // Type management
aoqi@0 381 Arena _Compile_types; // Arena for all types
aoqi@0 382 Arena* _type_arena; // Alias for _Compile_types except in Initialize_shared()
aoqi@0 383 Dict* _type_dict; // Intern table
aoqi@0 384 void* _type_hwm; // Last allocation (see Type::operator new/delete)
aoqi@0 385 size_t _type_last_size; // Last allocation size (see Type::operator new/delete)
aoqi@0 386 ciMethod* _last_tf_m; // Cache for
aoqi@0 387 const TypeFunc* _last_tf; // TypeFunc::make
aoqi@0 388 AliasType** _alias_types; // List of alias types seen so far.
aoqi@0 389 int _num_alias_types; // Logical length of _alias_types
aoqi@0 390 int _max_alias_types; // Physical length of _alias_types
aoqi@0 391 AliasCacheEntry _alias_cache[AliasCacheSize]; // Gets aliases w/o data structure walking
aoqi@0 392
aoqi@0 393 // Parsing, optimization
aoqi@0 394 PhaseGVN* _initial_gvn; // Results of parse-time PhaseGVN
aoqi@0 395 Unique_Node_List* _for_igvn; // Initial work-list for next round of Iterative GVN
aoqi@0 396 WarmCallInfo* _warm_calls; // Sorted work-list for heat-based inlining.
aoqi@0 397
aoqi@0 398 GrowableArray<CallGenerator*> _late_inlines; // List of CallGenerators to be revisited after
aoqi@0 399 // main parsing has finished.
aoqi@0 400 GrowableArray<CallGenerator*> _string_late_inlines; // same but for string operations
aoqi@0 401
aoqi@0 402 GrowableArray<CallGenerator*> _boxing_late_inlines; // same but for boxing operations
aoqi@0 403
aoqi@0 404 int _late_inlines_pos; // Where in the queue should the next late inlining candidate go (emulate depth first inlining)
aoqi@0 405 uint _number_of_mh_late_inlines; // number of method handle late inlining still pending
aoqi@0 406
aoqi@0 407
aoqi@0 408 // Inlining may not happen in parse order which would make
aoqi@0 409 // PrintInlining output confusing. Keep track of PrintInlining
aoqi@0 410 // pieces in order.
aoqi@0 411 class PrintInliningBuffer : public ResourceObj {
aoqi@0 412 private:
aoqi@0 413 CallGenerator* _cg;
aoqi@0 414 stringStream* _ss;
aoqi@0 415
aoqi@0 416 public:
aoqi@0 417 PrintInliningBuffer()
aoqi@0 418 : _cg(NULL) { _ss = new stringStream(); }
aoqi@0 419
aoqi@0 420 stringStream* ss() const { return _ss; }
aoqi@0 421 CallGenerator* cg() const { return _cg; }
aoqi@0 422 void set_cg(CallGenerator* cg) { _cg = cg; }
aoqi@0 423 };
aoqi@0 424
aoqi@0 425 GrowableArray<PrintInliningBuffer>* _print_inlining_list;
aoqi@0 426 int _print_inlining_idx;
aoqi@0 427
aoqi@0 428 // Only keep nodes in the expensive node list that need to be optimized
aoqi@0 429 void cleanup_expensive_nodes(PhaseIterGVN &igvn);
aoqi@0 430 // Use for sorting expensive nodes to bring similar nodes together
aoqi@0 431 static int cmp_expensive_nodes(Node** n1, Node** n2);
aoqi@0 432 // Expensive nodes list already sorted?
aoqi@0 433 bool expensive_nodes_sorted() const;
aoqi@0 434 // Remove the speculative part of types and clean up the graph
aoqi@0 435 void remove_speculative_types(PhaseIterGVN &igvn);
aoqi@0 436
aoqi@0 437 void* _replay_inline_data; // Pointer to data loaded from file
aoqi@0 438
aoqi@0 439 public:
aoqi@0 440
aoqi@0 441 outputStream* print_inlining_stream() const {
aoqi@0 442 return _print_inlining_list->adr_at(_print_inlining_idx)->ss();
aoqi@0 443 }
aoqi@0 444
aoqi@0 445 void print_inlining_skip(CallGenerator* cg) {
aoqi@0 446 if (_print_inlining) {
aoqi@0 447 _print_inlining_list->adr_at(_print_inlining_idx)->set_cg(cg);
aoqi@0 448 _print_inlining_idx++;
aoqi@0 449 _print_inlining_list->insert_before(_print_inlining_idx, PrintInliningBuffer());
aoqi@0 450 }
aoqi@0 451 }
aoqi@0 452
aoqi@0 453 void print_inlining_insert(CallGenerator* cg) {
aoqi@0 454 if (_print_inlining) {
aoqi@0 455 for (int i = 0; i < _print_inlining_list->length(); i++) {
aoqi@0 456 if (_print_inlining_list->adr_at(i)->cg() == cg) {
aoqi@0 457 _print_inlining_list->insert_before(i+1, PrintInliningBuffer());
aoqi@0 458 _print_inlining_idx = i+1;
aoqi@0 459 _print_inlining_list->adr_at(i)->set_cg(NULL);
aoqi@0 460 return;
aoqi@0 461 }
aoqi@0 462 }
aoqi@0 463 ShouldNotReachHere();
aoqi@0 464 }
aoqi@0 465 }
aoqi@0 466
aoqi@0 467 void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) {
aoqi@0 468 stringStream ss;
aoqi@0 469 CompileTask::print_inlining(&ss, method, inline_level, bci, msg);
aoqi@0 470 print_inlining_stream()->print("%s", ss.as_string());
aoqi@0 471 }
aoqi@0 472
aoqi@0 473 void* replay_inline_data() const { return _replay_inline_data; }
aoqi@0 474
aoqi@0 475 // Dump inlining replay data to the stream.
aoqi@0 476 void dump_inline_data(outputStream* out);
aoqi@0 477
aoqi@0 478 private:
aoqi@0 479 // Matching, CFG layout, allocation, code generation
aoqi@0 480 PhaseCFG* _cfg; // Results of CFG finding
aoqi@0 481 bool _select_24_bit_instr; // We selected an instruction with a 24-bit result
aoqi@0 482 bool _in_24_bit_fp_mode; // We are emitting instructions with 24-bit results
aoqi@0 483 int _java_calls; // Number of java calls in the method
aoqi@0 484 int _inner_loops; // Number of inner loops in the method
aoqi@0 485 Matcher* _matcher; // Engine to map ideal to machine instructions
aoqi@0 486 PhaseRegAlloc* _regalloc; // Results of register allocation.
aoqi@0 487 int _frame_slots; // Size of total frame in stack slots
aoqi@0 488 CodeOffsets _code_offsets; // Offsets into the code for various interesting entries
aoqi@0 489 RegMask _FIRST_STACK_mask; // All stack slots usable for spills (depends on frame layout)
aoqi@0 490 Arena* _indexSet_arena; // control IndexSet allocation within PhaseChaitin
aoqi@0 491 void* _indexSet_free_block_list; // free list of IndexSet bit blocks
aoqi@0 492 int _interpreter_frame_size;
aoqi@0 493
aoqi@0 494 uint _node_bundling_limit;
aoqi@0 495 Bundle* _node_bundling_base; // Information for instruction bundling
aoqi@0 496
aoqi@0 497 // Instruction bits passed off to the VM
aoqi@0 498 int _method_size; // Size of nmethod code segment in bytes
aoqi@0 499 CodeBuffer _code_buffer; // Where the code is assembled
aoqi@0 500 int _first_block_size; // Size of unvalidated entry point code / OSR poison code
aoqi@0 501 ExceptionHandlerTable _handler_table; // Table of native-code exception handlers
aoqi@0 502 ImplicitExceptionTable _inc_table; // Table of implicit null checks in native code
aoqi@0 503 OopMapSet* _oop_map_set; // Table of oop maps (one for each safepoint location)
aoqi@0 504 static int _CompiledZap_count; // counter compared against CompileZap[First/Last]
aoqi@0 505 BufferBlob* _scratch_buffer_blob; // For temporary code buffers.
aoqi@0 506 relocInfo* _scratch_locs_memory; // For temporary code buffers.
aoqi@0 507 int _scratch_const_size; // For temporary code buffers.
aoqi@0 508 bool _in_scratch_emit_size; // true when in scratch_emit_size.
aoqi@0 509
aoqi@0 510 public:
aoqi@0 511 // Accessors
aoqi@0 512
aoqi@0 513 // The Compile instance currently active in this (compiler) thread.
aoqi@0 514 static Compile* current() {
aoqi@0 515 return (Compile*) ciEnv::current()->compiler_data();
aoqi@0 516 }
aoqi@0 517
aoqi@0 518 // ID for this compilation. Useful for setting breakpoints in the debugger.
aoqi@0 519 int compile_id() const { return _compile_id; }
aoqi@0 520
aoqi@0 521 // Does this compilation allow instructions to subsume loads? User
aoqi@0 522 // instructions that subsume a load may result in an unschedulable
aoqi@0 523 // instruction sequence.
aoqi@0 524 bool subsume_loads() const { return _subsume_loads; }
aoqi@0 525 /** Do escape analysis. */
aoqi@0 526 bool do_escape_analysis() const { return _do_escape_analysis; }
aoqi@0 527 /** Do boxing elimination. */
aoqi@0 528 bool eliminate_boxing() const { return _eliminate_boxing; }
aoqi@0 529 /** Do aggressive boxing elimination. */
aoqi@0 530 bool aggressive_unboxing() const { return _eliminate_boxing && AggressiveUnboxing; }
aoqi@0 531 bool save_argument_registers() const { return _save_argument_registers; }
aoqi@0 532
aoqi@0 533
aoqi@0 534 // Other fixed compilation parameters.
aoqi@0 535 ciMethod* method() const { return _method; }
aoqi@0 536 int entry_bci() const { return _entry_bci; }
aoqi@0 537 bool is_osr_compilation() const { return _entry_bci != InvocationEntryBci; }
aoqi@0 538 bool is_method_compilation() const { return (_method != NULL && !_method->flags().is_native()); }
aoqi@0 539 const TypeFunc* tf() const { assert(_tf!=NULL, ""); return _tf; }
aoqi@0 540 void init_tf(const TypeFunc* tf) { assert(_tf==NULL, ""); _tf = tf; }
aoqi@0 541 InlineTree* ilt() const { return _ilt; }
aoqi@0 542 address stub_function() const { return _stub_function; }
aoqi@0 543 const char* stub_name() const { return _stub_name; }
aoqi@0 544 address stub_entry_point() const { return _stub_entry_point; }
aoqi@0 545
aoqi@0 546 // Control of this compilation.
aoqi@0 547 int fixed_slots() const { assert(_fixed_slots >= 0, ""); return _fixed_slots; }
aoqi@0 548 void set_fixed_slots(int n) { _fixed_slots = n; }
aoqi@0 549 int major_progress() const { return _major_progress; }
aoqi@0 550 void set_inlining_progress(bool z) { _inlining_progress = z; }
aoqi@0 551 int inlining_progress() const { return _inlining_progress; }
aoqi@0 552 void set_inlining_incrementally(bool z) { _inlining_incrementally = z; }
aoqi@0 553 int inlining_incrementally() const { return _inlining_incrementally; }
aoqi@0 554 void set_major_progress() { _major_progress++; }
aoqi@0 555 void clear_major_progress() { _major_progress = 0; }
aoqi@0 556 int num_loop_opts() const { return _num_loop_opts; }
aoqi@0 557 void set_num_loop_opts(int n) { _num_loop_opts = n; }
aoqi@0 558 int max_inline_size() const { return _max_inline_size; }
aoqi@0 559 void set_freq_inline_size(int n) { _freq_inline_size = n; }
aoqi@0 560 int freq_inline_size() const { return _freq_inline_size; }
aoqi@0 561 void set_max_inline_size(int n) { _max_inline_size = n; }
aoqi@0 562 bool has_loops() const { return _has_loops; }
aoqi@0 563 void set_has_loops(bool z) { _has_loops = z; }
aoqi@0 564 bool has_split_ifs() const { return _has_split_ifs; }
aoqi@0 565 void set_has_split_ifs(bool z) { _has_split_ifs = z; }
aoqi@0 566 bool has_unsafe_access() const { return _has_unsafe_access; }
aoqi@0 567 void set_has_unsafe_access(bool z) { _has_unsafe_access = z; }
aoqi@0 568 bool has_stringbuilder() const { return _has_stringbuilder; }
aoqi@0 569 void set_has_stringbuilder(bool z) { _has_stringbuilder = z; }
aoqi@0 570 bool has_boxed_value() const { return _has_boxed_value; }
aoqi@0 571 void set_has_boxed_value(bool z) { _has_boxed_value = z; }
aoqi@0 572 int max_vector_size() const { return _max_vector_size; }
aoqi@0 573 void set_max_vector_size(int s) { _max_vector_size = s; }
aoqi@0 574 void set_trap_count(uint r, uint c) { assert(r < trapHistLength, "oob"); _trap_hist[r] = c; }
aoqi@0 575 uint trap_count(uint r) const { assert(r < trapHistLength, "oob"); return _trap_hist[r]; }
aoqi@0 576 bool trap_can_recompile() const { return _trap_can_recompile; }
aoqi@0 577 void set_trap_can_recompile(bool z) { _trap_can_recompile = z; }
aoqi@0 578 uint decompile_count() const { return _decompile_count; }
aoqi@0 579 void set_decompile_count(uint c) { _decompile_count = c; }
aoqi@0 580 bool allow_range_check_smearing() const;
aoqi@0 581 bool do_inlining() const { return _do_inlining; }
aoqi@0 582 void set_do_inlining(bool z) { _do_inlining = z; }
aoqi@0 583 bool do_scheduling() const { return _do_scheduling; }
aoqi@0 584 void set_do_scheduling(bool z) { _do_scheduling = z; }
aoqi@0 585 bool do_freq_based_layout() const{ return _do_freq_based_layout; }
aoqi@0 586 void set_do_freq_based_layout(bool z){ _do_freq_based_layout = z; }
aoqi@0 587 bool do_count_invocations() const{ return _do_count_invocations; }
aoqi@0 588 void set_do_count_invocations(bool z){ _do_count_invocations = z; }
aoqi@0 589 bool do_method_data_update() const { return _do_method_data_update; }
aoqi@0 590 void set_do_method_data_update(bool z) { _do_method_data_update = z; }
aoqi@0 591 int AliasLevel() const { return _AliasLevel; }
aoqi@0 592 bool print_assembly() const { return _print_assembly; }
aoqi@0 593 void set_print_assembly(bool z) { _print_assembly = z; }
aoqi@0 594 bool print_inlining() const { return _print_inlining; }
aoqi@0 595 void set_print_inlining(bool z) { _print_inlining = z; }
aoqi@0 596 bool print_intrinsics() const { return _print_intrinsics; }
aoqi@0 597 void set_print_intrinsics(bool z) { _print_intrinsics = z; }
aoqi@0 598 RTMState rtm_state() const { return _rtm_state; }
aoqi@0 599 void set_rtm_state(RTMState s) { _rtm_state = s; }
aoqi@0 600 bool use_rtm() const { return (_rtm_state & NoRTM) == 0; }
aoqi@0 601 bool profile_rtm() const { return _rtm_state == ProfileRTM; }
vlivanov@7385 602 uint max_node_limit() const { return (uint)_max_node_limit; }
vlivanov@7385 603 void set_max_node_limit(uint n) { _max_node_limit = n; }
vlivanov@7385 604
aoqi@0 605 // check the CompilerOracle for special behaviours for this compile
aoqi@0 606 bool method_has_option(const char * option) {
aoqi@0 607 return method() != NULL && method()->has_option(option);
aoqi@0 608 }
kvn@7144 609 template<typename T>
kvn@7144 610 bool method_has_option_value(const char * option, T& value) {
kvn@7144 611 return method() != NULL && method()->has_option_value(option, value);
kvn@7144 612 }
aoqi@0 613 #ifndef PRODUCT
aoqi@0 614 bool trace_opto_output() const { return _trace_opto_output; }
aoqi@0 615 bool parsed_irreducible_loop() const { return _parsed_irreducible_loop; }
aoqi@0 616 void set_parsed_irreducible_loop(bool z) { _parsed_irreducible_loop = z; }
aoqi@0 617 int _in_dump_cnt; // Required for dumping ir nodes.
aoqi@0 618 #endif
aoqi@0 619 bool has_irreducible_loop() const { return _has_irreducible_loop; }
aoqi@0 620 void set_has_irreducible_loop(bool z) { _has_irreducible_loop = z; }
aoqi@0 621
aoqi@0 622 // JSR 292
aoqi@0 623 bool has_method_handle_invokes() const { return _has_method_handle_invokes; }
aoqi@0 624 void set_has_method_handle_invokes(bool z) { _has_method_handle_invokes = z; }
aoqi@0 625
aoqi@0 626 Ticks _latest_stage_start_counter;
aoqi@0 627
aoqi@0 628 void begin_method() {
aoqi@0 629 #ifndef PRODUCT
aoqi@0 630 if (_printer) _printer->begin_method(this);
aoqi@0 631 #endif
aoqi@0 632 C->_latest_stage_start_counter.stamp();
aoqi@0 633 }
aoqi@0 634
aoqi@0 635 void print_method(CompilerPhaseType cpt, int level = 1) {
aoqi@0 636 EventCompilerPhase event;
aoqi@0 637 if (event.should_commit()) {
aoqi@0 638 event.set_starttime(C->_latest_stage_start_counter);
aoqi@0 639 event.set_phase((u1) cpt);
aoqi@0 640 event.set_compileID(C->_compile_id);
aoqi@0 641 event.set_phaseLevel(level);
aoqi@0 642 event.commit();
aoqi@0 643 }
aoqi@0 644
aoqi@0 645
aoqi@0 646 #ifndef PRODUCT
aoqi@0 647 if (_printer) _printer->print_method(this, CompilerPhaseTypeHelper::to_string(cpt), level);
aoqi@0 648 #endif
aoqi@0 649 C->_latest_stage_start_counter.stamp();
aoqi@0 650 }
aoqi@0 651
aoqi@0 652 void end_method(int level = 1) {
aoqi@0 653 EventCompilerPhase event;
aoqi@0 654 if (event.should_commit()) {
aoqi@0 655 event.set_starttime(C->_latest_stage_start_counter);
aoqi@0 656 event.set_phase((u1) PHASE_END);
aoqi@0 657 event.set_compileID(C->_compile_id);
aoqi@0 658 event.set_phaseLevel(level);
aoqi@0 659 event.commit();
aoqi@0 660 }
aoqi@0 661 #ifndef PRODUCT
aoqi@0 662 if (_printer) _printer->end_method();
aoqi@0 663 #endif
aoqi@0 664 }
aoqi@0 665
aoqi@0 666 int macro_count() const { return _macro_nodes->length(); }
aoqi@0 667 int predicate_count() const { return _predicate_opaqs->length();}
aoqi@0 668 int expensive_count() const { return _expensive_nodes->length(); }
aoqi@0 669 Node* macro_node(int idx) const { return _macro_nodes->at(idx); }
aoqi@0 670 Node* predicate_opaque1_node(int idx) const { return _predicate_opaqs->at(idx);}
aoqi@0 671 Node* expensive_node(int idx) const { return _expensive_nodes->at(idx); }
aoqi@0 672 ConnectionGraph* congraph() { return _congraph;}
aoqi@0 673 void set_congraph(ConnectionGraph* congraph) { _congraph = congraph;}
aoqi@0 674 void add_macro_node(Node * n) {
aoqi@0 675 //assert(n->is_macro(), "must be a macro node");
thartmann@8285 676 assert(!_macro_nodes->contains(n), "duplicate entry in expand list");
aoqi@0 677 _macro_nodes->append(n);
aoqi@0 678 }
aoqi@0 679 void remove_macro_node(Node * n) {
aoqi@0 680 // this function may be called twice for a node so check
aoqi@0 681 // that the node is in the array before attempting to remove it
aoqi@0 682 if (_macro_nodes->contains(n))
aoqi@0 683 _macro_nodes->remove(n);
aoqi@0 684 // remove from _predicate_opaqs list also if it is there
aoqi@0 685 if (predicate_count() > 0 && _predicate_opaqs->contains(n)){
aoqi@0 686 _predicate_opaqs->remove(n);
aoqi@0 687 }
aoqi@0 688 }
aoqi@0 689 void add_expensive_node(Node * n);
aoqi@0 690 void remove_expensive_node(Node * n) {
aoqi@0 691 if (_expensive_nodes->contains(n)) {
aoqi@0 692 _expensive_nodes->remove(n);
aoqi@0 693 }
aoqi@0 694 }
aoqi@0 695 void add_predicate_opaq(Node * n) {
thartmann@8285 696 assert(!_predicate_opaqs->contains(n), "duplicate entry in predicate opaque1");
aoqi@0 697 assert(_macro_nodes->contains(n), "should have already been in macro list");
aoqi@0 698 _predicate_opaqs->append(n);
aoqi@0 699 }
thartmann@8285 700
thartmann@8285 701 // Range check dependent CastII nodes that can be removed after loop optimizations
thartmann@8285 702 void add_range_check_cast(Node* n);
thartmann@8285 703 void remove_range_check_cast(Node* n) {
thartmann@8285 704 if (_range_check_casts->contains(n)) {
thartmann@8285 705 _range_check_casts->remove(n);
thartmann@8285 706 }
thartmann@8285 707 }
thartmann@8285 708 Node* range_check_cast_node(int idx) const { return _range_check_casts->at(idx); }
thartmann@8285 709 int range_check_cast_count() const { return _range_check_casts->length(); }
thartmann@8285 710 // Remove all range check dependent CastIINodes.
thartmann@8285 711 void remove_range_check_casts(PhaseIterGVN &igvn);
thartmann@8285 712
aoqi@0 713 // remove the opaque nodes that protect the predicates so that the unused checks and
aoqi@0 714 // uncommon traps will be eliminated from the graph.
aoqi@0 715 void cleanup_loop_predicates(PhaseIterGVN &igvn);
aoqi@0 716 bool is_predicate_opaq(Node * n) {
aoqi@0 717 return _predicate_opaqs->contains(n);
aoqi@0 718 }
aoqi@0 719
aoqi@0 720 // Are there candidate expensive nodes for optimization?
aoqi@0 721 bool should_optimize_expensive_nodes(PhaseIterGVN &igvn);
aoqi@0 722 // Check whether n1 and n2 are similar
aoqi@0 723 static int cmp_expensive_nodes(Node* n1, Node* n2);
aoqi@0 724 // Sort expensive nodes to locate similar expensive nodes
aoqi@0 725 void sort_expensive_nodes();
aoqi@0 726
aoqi@0 727 // Compilation environment.
aoqi@0 728 Arena* comp_arena() { return &_comp_arena; }
aoqi@0 729 ciEnv* env() const { return _env; }
aoqi@0 730 CompileLog* log() const { return _log; }
aoqi@0 731 bool failing() const { return _env->failing() || _failure_reason != NULL; }
aoqi@0 732 const char* failure_reason() { return _failure_reason; }
aoqi@0 733 bool failure_reason_is(const char* r) { return (r==_failure_reason) || (r!=NULL && _failure_reason!=NULL && strcmp(r, _failure_reason)==0); }
aoqi@0 734
aoqi@0 735 void record_failure(const char* reason);
aoqi@0 736 void record_method_not_compilable(const char* reason, bool all_tiers = false) {
aoqi@0 737 // All bailouts cover "all_tiers" when TieredCompilation is off.
aoqi@0 738 if (!TieredCompilation) all_tiers = true;
aoqi@0 739 env()->record_method_not_compilable(reason, all_tiers);
aoqi@0 740 // Record failure reason.
aoqi@0 741 record_failure(reason);
aoqi@0 742 }
aoqi@0 743 void record_method_not_compilable_all_tiers(const char* reason) {
aoqi@0 744 record_method_not_compilable(reason, true);
aoqi@0 745 }
aoqi@0 746 bool check_node_count(uint margin, const char* reason) {
vlivanov@7385 747 if (live_nodes() + margin > max_node_limit()) {
aoqi@0 748 record_method_not_compilable(reason);
aoqi@0 749 return true;
aoqi@0 750 } else {
aoqi@0 751 return false;
aoqi@0 752 }
aoqi@0 753 }
aoqi@0 754
aoqi@0 755 // Node management
aoqi@0 756 uint unique() const { return _unique; }
aoqi@0 757 uint next_unique() { return _unique++; }
aoqi@0 758 void set_unique(uint i) { _unique = i; }
aoqi@0 759 static int debug_idx() { return debug_only(_debug_idx)+0; }
aoqi@0 760 static void set_debug_idx(int i) { debug_only(_debug_idx = i); }
aoqi@0 761 Arena* node_arena() { return &_node_arena; }
aoqi@0 762 Arena* old_arena() { return &_old_arena; }
aoqi@0 763 RootNode* root() const { return _root; }
aoqi@0 764 void set_root(RootNode* r) { _root = r; }
aoqi@0 765 StartNode* start() const; // (Derived from root.)
aoqi@0 766 void init_start(StartNode* s);
aoqi@0 767 Node* immutable_memory();
aoqi@0 768
aoqi@0 769 Node* recent_alloc_ctl() const { return _recent_alloc_ctl; }
aoqi@0 770 Node* recent_alloc_obj() const { return _recent_alloc_obj; }
aoqi@0 771 void set_recent_alloc(Node* ctl, Node* obj) {
aoqi@0 772 _recent_alloc_ctl = ctl;
aoqi@0 773 _recent_alloc_obj = obj;
aoqi@0 774 }
aoqi@0 775 void record_dead_node(uint idx) { if (_dead_node_list.test_set(idx)) return;
aoqi@0 776 _dead_node_count++;
aoqi@0 777 }
aoqi@0 778 bool is_dead_node(uint idx) { return _dead_node_list.test(idx) != 0; }
aoqi@0 779 uint dead_node_count() { return _dead_node_count; }
aoqi@0 780 void reset_dead_node_list() { _dead_node_list.Reset();
aoqi@0 781 _dead_node_count = 0;
aoqi@0 782 }
aoqi@0 783 uint live_nodes() const {
aoqi@0 784 int val = _unique - _dead_node_count;
aoqi@0 785 assert (val >= 0, err_msg_res("number of tracked dead nodes %d more than created nodes %d", _unique, _dead_node_count));
aoqi@0 786 return (uint) val;
aoqi@0 787 }
aoqi@0 788 #ifdef ASSERT
aoqi@0 789 uint count_live_nodes_by_graph_walk();
aoqi@0 790 void print_missing_nodes();
aoqi@0 791 #endif
aoqi@0 792
aoqi@0 793 // Constant table
aoqi@0 794 ConstantTable& constant_table() { return _constant_table; }
aoqi@0 795
aoqi@0 796 MachConstantBaseNode* mach_constant_base_node();
aoqi@0 797 bool has_mach_constant_base_node() const { return _mach_constant_base_node != NULL; }
aoqi@0 798 // Generated by adlc, true if CallNode requires MachConstantBase.
aoqi@0 799 bool needs_clone_jvms();
aoqi@0 800
aoqi@0 801 // Handy undefined Node
aoqi@0 802 Node* top() const { return _top; }
aoqi@0 803
aoqi@0 804 // these are used by guys who need to know about creation and transformation of top:
aoqi@0 805 Node* cached_top_node() { return _top; }
aoqi@0 806 void set_cached_top_node(Node* tn);
aoqi@0 807
aoqi@0 808 GrowableArray<Node_Notes*>* node_note_array() const { return _node_note_array; }
aoqi@0 809 void set_node_note_array(GrowableArray<Node_Notes*>* arr) { _node_note_array = arr; }
aoqi@0 810 Node_Notes* default_node_notes() const { return _default_node_notes; }
aoqi@0 811 void set_default_node_notes(Node_Notes* n) { _default_node_notes = n; }
aoqi@0 812
aoqi@0 813 Node_Notes* node_notes_at(int idx) {
aoqi@0 814 return locate_node_notes(_node_note_array, idx, false);
aoqi@0 815 }
aoqi@0 816 inline bool set_node_notes_at(int idx, Node_Notes* value);
aoqi@0 817
aoqi@0 818 // Copy notes from source to dest, if they exist.
aoqi@0 819 // Overwrite dest only if source provides something.
aoqi@0 820 // Return true if information was moved.
aoqi@0 821 bool copy_node_notes_to(Node* dest, Node* source);
aoqi@0 822
aoqi@0 823 // Workhorse function to sort out the blocked Node_Notes array:
aoqi@0 824 inline Node_Notes* locate_node_notes(GrowableArray<Node_Notes*>* arr,
aoqi@0 825 int idx, bool can_grow = false);
aoqi@0 826
aoqi@0 827 void grow_node_notes(GrowableArray<Node_Notes*>* arr, int grow_by);
aoqi@0 828
aoqi@0 829 // Type management
aoqi@0 830 Arena* type_arena() { return _type_arena; }
aoqi@0 831 Dict* type_dict() { return _type_dict; }
aoqi@0 832 void* type_hwm() { return _type_hwm; }
aoqi@0 833 size_t type_last_size() { return _type_last_size; }
aoqi@0 834 int num_alias_types() { return _num_alias_types; }
aoqi@0 835
aoqi@0 836 void init_type_arena() { _type_arena = &_Compile_types; }
aoqi@0 837 void set_type_arena(Arena* a) { _type_arena = a; }
aoqi@0 838 void set_type_dict(Dict* d) { _type_dict = d; }
aoqi@0 839 void set_type_hwm(void* p) { _type_hwm = p; }
aoqi@0 840 void set_type_last_size(size_t sz) { _type_last_size = sz; }
aoqi@0 841
aoqi@0 842 const TypeFunc* last_tf(ciMethod* m) {
aoqi@0 843 return (m == _last_tf_m) ? _last_tf : NULL;
aoqi@0 844 }
aoqi@0 845 void set_last_tf(ciMethod* m, const TypeFunc* tf) {
aoqi@0 846 assert(m != NULL || tf == NULL, "");
aoqi@0 847 _last_tf_m = m;
aoqi@0 848 _last_tf = tf;
aoqi@0 849 }
aoqi@0 850
aoqi@0 851 AliasType* alias_type(int idx) { assert(idx < num_alias_types(), "oob"); return _alias_types[idx]; }
aoqi@0 852 AliasType* alias_type(const TypePtr* adr_type, ciField* field = NULL) { return find_alias_type(adr_type, false, field); }
aoqi@0 853 bool have_alias_type(const TypePtr* adr_type);
aoqi@0 854 AliasType* alias_type(ciField* field);
aoqi@0 855
aoqi@0 856 int get_alias_index(const TypePtr* at) { return alias_type(at)->index(); }
aoqi@0 857 const TypePtr* get_adr_type(uint aidx) { return alias_type(aidx)->adr_type(); }
aoqi@0 858 int get_general_index(uint aidx) { return alias_type(aidx)->general_index(); }
aoqi@0 859
aoqi@0 860 // Building nodes
aoqi@0 861 void rethrow_exceptions(JVMState* jvms);
aoqi@0 862 void return_values(JVMState* jvms);
aoqi@0 863 JVMState* build_start_state(StartNode* start, const TypeFunc* tf);
aoqi@0 864
aoqi@0 865 // Decide how to build a call.
aoqi@0 866 // The profile factor is a discount to apply to this site's interp. profile.
aoqi@0 867 CallGenerator* call_generator(ciMethod* call_method, int vtable_index, bool call_does_dispatch,
aoqi@0 868 JVMState* jvms, bool allow_inline, float profile_factor, ciKlass* speculative_receiver_type = NULL,
aoqi@0 869 bool allow_intrinsics = true, bool delayed_forbidden = false);
aoqi@0 870 bool should_delay_inlining(ciMethod* call_method, JVMState* jvms) {
aoqi@0 871 return should_delay_string_inlining(call_method, jvms) ||
aoqi@0 872 should_delay_boxing_inlining(call_method, jvms);
aoqi@0 873 }
aoqi@0 874 bool should_delay_string_inlining(ciMethod* call_method, JVMState* jvms);
aoqi@0 875 bool should_delay_boxing_inlining(ciMethod* call_method, JVMState* jvms);
aoqi@0 876
aoqi@0 877 // Helper functions to identify inlining potential at call-site
aoqi@0 878 ciMethod* optimize_virtual_call(ciMethod* caller, int bci, ciInstanceKlass* klass,
aoqi@0 879 ciKlass* holder, ciMethod* callee,
aoqi@0 880 const TypeOopPtr* receiver_type, bool is_virtual,
vlivanov@7792 881 bool &call_does_dispatch, int &vtable_index,
vlivanov@7792 882 bool check_access = true);
aoqi@0 883 ciMethod* optimize_inlining(ciMethod* caller, int bci, ciInstanceKlass* klass,
vlivanov@7792 884 ciMethod* callee, const TypeOopPtr* receiver_type,
vlivanov@7792 885 bool check_access = true);
aoqi@0 886
aoqi@0 887 // Report if there were too many traps at a current method and bci.
aoqi@0 888 // Report if a trap was recorded, and/or PerMethodTrapLimit was exceeded.
aoqi@0 889 // If there is no MDO at all, report no trap unless told to assume it.
aoqi@0 890 bool too_many_traps(ciMethod* method, int bci, Deoptimization::DeoptReason reason);
aoqi@0 891 // This version, unspecific to a particular bci, asks if
aoqi@0 892 // PerMethodTrapLimit was exceeded for all inlined methods seen so far.
aoqi@0 893 bool too_many_traps(Deoptimization::DeoptReason reason,
aoqi@0 894 // Privately used parameter for logging:
aoqi@0 895 ciMethodData* logmd = NULL);
aoqi@0 896 // Report if there were too many recompiles at a method and bci.
aoqi@0 897 bool too_many_recompiles(ciMethod* method, int bci, Deoptimization::DeoptReason reason);
aoqi@0 898 // Return a bitset with the reasons where deoptimization is allowed,
aoqi@0 899 // i.e., where there were not too many uncommon traps.
aoqi@0 900 int _allowed_reasons;
aoqi@0 901 int allowed_deopt_reasons() { return _allowed_reasons; }
aoqi@0 902 void set_allowed_deopt_reasons();
aoqi@0 903
aoqi@0 904 // Parsing, optimization
aoqi@0 905 PhaseGVN* initial_gvn() { return _initial_gvn; }
aoqi@0 906 Unique_Node_List* for_igvn() { return _for_igvn; }
aoqi@0 907 inline void record_for_igvn(Node* n); // Body is after class Unique_Node_List.
aoqi@0 908 void set_initial_gvn(PhaseGVN *gvn) { _initial_gvn = gvn; }
aoqi@0 909 void set_for_igvn(Unique_Node_List *for_igvn) { _for_igvn = for_igvn; }
aoqi@0 910
aoqi@0 911 // Replace n by nn using initial_gvn, calling hash_delete and
aoqi@0 912 // record_for_igvn as needed.
aoqi@0 913 void gvn_replace_by(Node* n, Node* nn);
aoqi@0 914
aoqi@0 915
aoqi@0 916 void identify_useful_nodes(Unique_Node_List &useful);
aoqi@0 917 void update_dead_node_list(Unique_Node_List &useful);
aoqi@0 918 void remove_useless_nodes (Unique_Node_List &useful);
aoqi@0 919
aoqi@0 920 WarmCallInfo* warm_calls() const { return _warm_calls; }
aoqi@0 921 void set_warm_calls(WarmCallInfo* l) { _warm_calls = l; }
aoqi@0 922 WarmCallInfo* pop_warm_call();
aoqi@0 923
aoqi@0 924 // Record this CallGenerator for inlining at the end of parsing.
aoqi@0 925 void add_late_inline(CallGenerator* cg) {
aoqi@0 926 _late_inlines.insert_before(_late_inlines_pos, cg);
aoqi@0 927 _late_inlines_pos++;
aoqi@0 928 }
aoqi@0 929
aoqi@0 930 void prepend_late_inline(CallGenerator* cg) {
aoqi@0 931 _late_inlines.insert_before(0, cg);
aoqi@0 932 }
aoqi@0 933
aoqi@0 934 void add_string_late_inline(CallGenerator* cg) {
aoqi@0 935 _string_late_inlines.push(cg);
aoqi@0 936 }
aoqi@0 937
aoqi@0 938 void add_boxing_late_inline(CallGenerator* cg) {
aoqi@0 939 _boxing_late_inlines.push(cg);
aoqi@0 940 }
aoqi@0 941
aoqi@0 942 void remove_useless_late_inlines(GrowableArray<CallGenerator*>* inlines, Unique_Node_List &useful);
aoqi@0 943
aoqi@0 944 void dump_inlining();
aoqi@0 945
aoqi@0 946 bool over_inlining_cutoff() const {
aoqi@0 947 if (!inlining_incrementally()) {
aoqi@0 948 return unique() > (uint)NodeCountInliningCutoff;
aoqi@0 949 } else {
aoqi@0 950 return live_nodes() > (uint)LiveNodeCountInliningCutoff;
aoqi@0 951 }
aoqi@0 952 }
aoqi@0 953
aoqi@0 954 void inc_number_of_mh_late_inlines() { _number_of_mh_late_inlines++; }
aoqi@0 955 void dec_number_of_mh_late_inlines() { assert(_number_of_mh_late_inlines > 0, "_number_of_mh_late_inlines < 0 !"); _number_of_mh_late_inlines--; }
aoqi@0 956 bool has_mh_late_inlines() const { return _number_of_mh_late_inlines > 0; }
aoqi@0 957
aoqi@0 958 void inline_incrementally_one(PhaseIterGVN& igvn);
aoqi@0 959 void inline_incrementally(PhaseIterGVN& igvn);
aoqi@0 960 void inline_string_calls(bool parse_time);
aoqi@0 961 void inline_boxing_calls(PhaseIterGVN& igvn);
aoqi@0 962
aoqi@0 963 // Matching, CFG layout, allocation, code generation
aoqi@0 964 PhaseCFG* cfg() { return _cfg; }
aoqi@0 965 bool select_24_bit_instr() const { return _select_24_bit_instr; }
aoqi@0 966 bool in_24_bit_fp_mode() const { return _in_24_bit_fp_mode; }
aoqi@0 967 bool has_java_calls() const { return _java_calls > 0; }
aoqi@0 968 int java_calls() const { return _java_calls; }
aoqi@0 969 int inner_loops() const { return _inner_loops; }
aoqi@0 970 Matcher* matcher() { return _matcher; }
aoqi@0 971 PhaseRegAlloc* regalloc() { return _regalloc; }
aoqi@0 972 int frame_slots() const { return _frame_slots; }
aoqi@0 973 int frame_size_in_words() const; // frame_slots in units of the polymorphic 'words'
aoqi@0 974 int frame_size_in_bytes() const { return _frame_slots << LogBytesPerInt; }
aoqi@0 975 RegMask& FIRST_STACK_mask() { return _FIRST_STACK_mask; }
aoqi@0 976 Arena* indexSet_arena() { return _indexSet_arena; }
aoqi@0 977 void* indexSet_free_block_list() { return _indexSet_free_block_list; }
aoqi@0 978 uint node_bundling_limit() { return _node_bundling_limit; }
aoqi@0 979 Bundle* node_bundling_base() { return _node_bundling_base; }
aoqi@0 980 void set_node_bundling_limit(uint n) { _node_bundling_limit = n; }
aoqi@0 981 void set_node_bundling_base(Bundle* b) { _node_bundling_base = b; }
aoqi@0 982 bool starts_bundle(const Node *n) const;
aoqi@0 983 bool need_stack_bang(int frame_size_in_bytes) const;
aoqi@0 984 bool need_register_stack_bang() const;
aoqi@0 985
aoqi@0 986 void update_interpreter_frame_size(int size) {
aoqi@0 987 if (_interpreter_frame_size < size) {
aoqi@0 988 _interpreter_frame_size = size;
aoqi@0 989 }
aoqi@0 990 }
aoqi@0 991 int bang_size_in_bytes() const;
aoqi@0 992
aoqi@0 993 void set_matcher(Matcher* m) { _matcher = m; }
aoqi@0 994 //void set_regalloc(PhaseRegAlloc* ra) { _regalloc = ra; }
aoqi@0 995 void set_indexSet_arena(Arena* a) { _indexSet_arena = a; }
aoqi@0 996 void set_indexSet_free_block_list(void* p) { _indexSet_free_block_list = p; }
aoqi@0 997
aoqi@0 998 // Remember if this compilation changes hardware mode to 24-bit precision
aoqi@0 999 void set_24_bit_selection_and_mode(bool selection, bool mode) {
aoqi@0 1000 _select_24_bit_instr = selection;
aoqi@0 1001 _in_24_bit_fp_mode = mode;
aoqi@0 1002 }
aoqi@0 1003
aoqi@0 1004 void set_java_calls(int z) { _java_calls = z; }
aoqi@0 1005 void set_inner_loops(int z) { _inner_loops = z; }
aoqi@0 1006
aoqi@0 1007 // Instruction bits passed off to the VM
aoqi@0 1008 int code_size() { return _method_size; }
aoqi@0 1009 CodeBuffer* code_buffer() { return &_code_buffer; }
aoqi@0 1010 int first_block_size() { return _first_block_size; }
aoqi@0 1011 void set_frame_complete(int off) { _code_offsets.set_value(CodeOffsets::Frame_Complete, off); }
aoqi@0 1012 ExceptionHandlerTable* handler_table() { return &_handler_table; }
aoqi@0 1013 ImplicitExceptionTable* inc_table() { return &_inc_table; }
aoqi@0 1014 OopMapSet* oop_map_set() { return _oop_map_set; }
aoqi@0 1015 DebugInformationRecorder* debug_info() { return env()->debug_info(); }
aoqi@0 1016 Dependencies* dependencies() { return env()->dependencies(); }
aoqi@0 1017 static int CompiledZap_count() { return _CompiledZap_count; }
aoqi@0 1018 BufferBlob* scratch_buffer_blob() { return _scratch_buffer_blob; }
aoqi@0 1019 void init_scratch_buffer_blob(int const_size);
aoqi@0 1020 void clear_scratch_buffer_blob();
aoqi@0 1021 void set_scratch_buffer_blob(BufferBlob* b) { _scratch_buffer_blob = b; }
aoqi@0 1022 relocInfo* scratch_locs_memory() { return _scratch_locs_memory; }
aoqi@0 1023 void set_scratch_locs_memory(relocInfo* b) { _scratch_locs_memory = b; }
aoqi@0 1024
aoqi@0 1025 // emit to scratch blob, report resulting size
aoqi@0 1026 uint scratch_emit_size(const Node* n);
aoqi@0 1027 void set_in_scratch_emit_size(bool x) { _in_scratch_emit_size = x; }
aoqi@0 1028 bool in_scratch_emit_size() const { return _in_scratch_emit_size; }
aoqi@0 1029
aoqi@0 1030 enum ScratchBufferBlob {
aoqi@0 1031 MAX_inst_size = 1024,
aoqi@0 1032 MAX_locs_size = 128, // number of relocInfo elements
aoqi@0 1033 MAX_const_size = 128,
aoqi@0 1034 MAX_stubs_size = 128
aoqi@0 1035 };
aoqi@0 1036
aoqi@0 1037 // Major entry point. Given a Scope, compile the associated method.
aoqi@0 1038 // For normal compilations, entry_bci is InvocationEntryBci. For on stack
aoqi@0 1039 // replacement, entry_bci indicates the bytecode for which to compile a
aoqi@0 1040 // continuation.
aoqi@0 1041 Compile(ciEnv* ci_env, C2Compiler* compiler, ciMethod* target,
aoqi@0 1042 int entry_bci, bool subsume_loads, bool do_escape_analysis,
aoqi@0 1043 bool eliminate_boxing);
aoqi@0 1044
aoqi@0 1045 // Second major entry point. From the TypeFunc signature, generate code
aoqi@0 1046 // to pass arguments from the Java calling convention to the C calling
aoqi@0 1047 // convention.
aoqi@0 1048 Compile(ciEnv* ci_env, const TypeFunc *(*gen)(),
aoqi@0 1049 address stub_function, const char *stub_name,
aoqi@0 1050 int is_fancy_jump, bool pass_tls,
aoqi@0 1051 bool save_arg_registers, bool return_pc);
aoqi@0 1052
aoqi@0 1053 // From the TypeFunc signature, generate code to pass arguments
aoqi@0 1054 // from Compiled calling convention to Interpreter's calling convention
aoqi@0 1055 void Generate_Compiled_To_Interpreter_Graph(const TypeFunc *tf, address interpreter_entry);
aoqi@0 1056
aoqi@0 1057 // From the TypeFunc signature, generate code to pass arguments
aoqi@0 1058 // from Interpreter's calling convention to Compiler's calling convention
aoqi@0 1059 void Generate_Interpreter_To_Compiled_Graph(const TypeFunc *tf);
aoqi@0 1060
aoqi@0 1061 // Are we compiling a method?
aoqi@0 1062 bool has_method() { return method() != NULL; }
aoqi@0 1063
aoqi@0 1064 // Maybe print some information about this compile.
aoqi@0 1065 void print_compile_messages();
aoqi@0 1066
aoqi@0 1067 // Final graph reshaping, a post-pass after the regular optimizer is done.
aoqi@0 1068 bool final_graph_reshaping();
aoqi@0 1069
aoqi@0 1070 // returns true if adr is completely contained in the given alias category
aoqi@0 1071 bool must_alias(const TypePtr* adr, int alias_idx);
aoqi@0 1072
aoqi@0 1073 // returns true if adr overlaps with the given alias category
aoqi@0 1074 bool can_alias(const TypePtr* adr, int alias_idx);
aoqi@0 1075
aoqi@0 1076 // Driver for converting compiler's IR into machine code bits
aoqi@0 1077 void Output();
aoqi@0 1078
aoqi@0 1079 // Accessors for node bundling info.
aoqi@0 1080 Bundle* node_bundling(const Node *n);
aoqi@0 1081 bool valid_bundle_info(const Node *n);
aoqi@0 1082
aoqi@0 1083 // Schedule and Bundle the instructions
aoqi@0 1084 void ScheduleAndBundle();
aoqi@0 1085
aoqi@0 1086 // Build OopMaps for each GC point
aoqi@0 1087 void BuildOopMaps();
aoqi@0 1088
aoqi@0 1089 // Append debug info for the node "local" at safepoint node "sfpt" to the
aoqi@0 1090 // "array", May also consult and add to "objs", which describes the
aoqi@0 1091 // scalar-replaced objects.
aoqi@0 1092 void FillLocArray( int idx, MachSafePointNode* sfpt,
aoqi@0 1093 Node *local, GrowableArray<ScopeValue*> *array,
aoqi@0 1094 GrowableArray<ScopeValue*> *objs );
aoqi@0 1095
aoqi@0 1096 // If "objs" contains an ObjectValue whose id is "id", returns it, else NULL.
aoqi@0 1097 static ObjectValue* sv_for_node_id(GrowableArray<ScopeValue*> *objs, int id);
aoqi@0 1098 // Requres that "objs" does not contains an ObjectValue whose id matches
aoqi@0 1099 // that of "sv. Appends "sv".
aoqi@0 1100 static void set_sv_for_object_node(GrowableArray<ScopeValue*> *objs,
aoqi@0 1101 ObjectValue* sv );
aoqi@0 1102
aoqi@0 1103 // Process an OopMap Element while emitting nodes
aoqi@0 1104 void Process_OopMap_Node(MachNode *mach, int code_offset);
aoqi@0 1105
aoqi@0 1106 // Initialize code buffer
aoqi@0 1107 CodeBuffer* init_buffer(uint* blk_starts);
aoqi@0 1108
aoqi@0 1109 // Write out basic block data to code buffer
aoqi@0 1110 void fill_buffer(CodeBuffer* cb, uint* blk_starts);
aoqi@0 1111
aoqi@0 1112 // Determine which variable sized branches can be shortened
aoqi@0 1113 void shorten_branches(uint* blk_starts, int& code_size, int& reloc_size, int& stub_size);
aoqi@0 1114
aoqi@0 1115 // Compute the size of first NumberOfLoopInstrToAlign instructions
aoqi@0 1116 // at the head of a loop.
aoqi@0 1117 void compute_loop_first_inst_sizes();
aoqi@0 1118
aoqi@0 1119 // Compute the information for the exception tables
aoqi@0 1120 void FillExceptionTables(uint cnt, uint *call_returns, uint *inct_starts, Label *blk_labels);
aoqi@0 1121
aoqi@0 1122 // Stack slots that may be unused by the calling convention but must
aoqi@0 1123 // otherwise be preserved. On Intel this includes the return address.
aoqi@0 1124 // On PowerPC it includes the 4 words holding the old TOC & LR glue.
aoqi@0 1125 uint in_preserve_stack_slots();
aoqi@0 1126
aoqi@0 1127 // "Top of Stack" slots that may be unused by the calling convention but must
aoqi@0 1128 // otherwise be preserved.
aoqi@0 1129 // On Intel these are not necessary and the value can be zero.
aoqi@0 1130 // On Sparc this describes the words reserved for storing a register window
aoqi@0 1131 // when an interrupt occurs.
aoqi@0 1132 static uint out_preserve_stack_slots();
aoqi@0 1133
aoqi@0 1134 // Number of outgoing stack slots killed above the out_preserve_stack_slots
aoqi@0 1135 // for calls to C. Supports the var-args backing area for register parms.
aoqi@0 1136 uint varargs_C_out_slots_killed() const;
aoqi@0 1137
aoqi@0 1138 // Number of Stack Slots consumed by a synchronization entry
aoqi@0 1139 int sync_stack_slots() const;
aoqi@0 1140
aoqi@0 1141 // Compute the name of old_SP. See <arch>.ad for frame layout.
aoqi@0 1142 OptoReg::Name compute_old_SP();
aoqi@0 1143
aoqi@0 1144 #ifdef ENABLE_ZAP_DEAD_LOCALS
aoqi@0 1145 static bool is_node_getting_a_safepoint(Node*);
aoqi@0 1146 void Insert_zap_nodes();
aoqi@0 1147 Node* call_zap_node(MachSafePointNode* n, int block_no);
aoqi@0 1148 #endif
aoqi@0 1149
aoqi@0 1150 private:
aoqi@0 1151 // Phase control:
aoqi@0 1152 void Init(int aliaslevel); // Prepare for a single compilation
aoqi@0 1153 int Inline_Warm(); // Find more inlining work.
aoqi@0 1154 void Finish_Warm(); // Give up on further inlines.
aoqi@0 1155 void Optimize(); // Given a graph, optimize it
aoqi@0 1156 void Code_Gen(); // Generate code from a graph
aoqi@0 1157
aoqi@0 1158 // Management of the AliasType table.
aoqi@0 1159 void grow_alias_types();
aoqi@0 1160 AliasCacheEntry* probe_alias_cache(const TypePtr* adr_type);
aoqi@0 1161 const TypePtr *flatten_alias_type(const TypePtr* adr_type) const;
aoqi@0 1162 AliasType* find_alias_type(const TypePtr* adr_type, bool no_create, ciField* field);
aoqi@0 1163
aoqi@0 1164 void verify_top(Node*) const PRODUCT_RETURN;
aoqi@0 1165
aoqi@0 1166 // Intrinsic setup.
aoqi@0 1167 void register_library_intrinsics(); // initializer
aoqi@0 1168 CallGenerator* make_vm_intrinsic(ciMethod* m, bool is_virtual); // constructor
aoqi@0 1169 int intrinsic_insertion_index(ciMethod* m, bool is_virtual); // helper
aoqi@0 1170 CallGenerator* find_intrinsic(ciMethod* m, bool is_virtual); // query fn
aoqi@0 1171 void register_intrinsic(CallGenerator* cg); // update fn
aoqi@0 1172
aoqi@0 1173 #ifndef PRODUCT
aoqi@0 1174 static juint _intrinsic_hist_count[vmIntrinsics::ID_LIMIT];
aoqi@0 1175 static jubyte _intrinsic_hist_flags[vmIntrinsics::ID_LIMIT];
aoqi@0 1176 #endif
aoqi@0 1177 // Function calls made by the public function final_graph_reshaping.
aoqi@0 1178 // No need to be made public as they are not called elsewhere.
aoqi@0 1179 void final_graph_reshaping_impl( Node *n, Final_Reshape_Counts &frc);
aoqi@0 1180 void final_graph_reshaping_walk( Node_Stack &nstack, Node *root, Final_Reshape_Counts &frc );
aoqi@0 1181 void eliminate_redundant_card_marks(Node* n);
aoqi@0 1182
aoqi@0 1183 public:
aoqi@0 1184
aoqi@0 1185 // Note: Histogram array size is about 1 Kb.
aoqi@0 1186 enum { // flag bits:
aoqi@0 1187 _intrinsic_worked = 1, // succeeded at least once
aoqi@0 1188 _intrinsic_failed = 2, // tried it but it failed
aoqi@0 1189 _intrinsic_disabled = 4, // was requested but disabled (e.g., -XX:-InlineUnsafeOps)
aoqi@0 1190 _intrinsic_virtual = 8, // was seen in the virtual form (rare)
aoqi@0 1191 _intrinsic_both = 16 // was seen in the non-virtual form (usual)
aoqi@0 1192 };
aoqi@0 1193 // Update histogram. Return boolean if this is a first-time occurrence.
aoqi@0 1194 static bool gather_intrinsic_statistics(vmIntrinsics::ID id,
aoqi@0 1195 bool is_virtual, int flags) PRODUCT_RETURN0;
aoqi@0 1196 static void print_intrinsic_statistics() PRODUCT_RETURN;
aoqi@0 1197
aoqi@0 1198 // Graph verification code
aoqi@0 1199 // Walk the node list, verifying that there is a one-to-one
aoqi@0 1200 // correspondence between Use-Def edges and Def-Use edges
aoqi@0 1201 // The option no_dead_code enables stronger checks that the
aoqi@0 1202 // graph is strongly connected from root in both directions.
aoqi@0 1203 void verify_graph_edges(bool no_dead_code = false) PRODUCT_RETURN;
aoqi@0 1204
aoqi@0 1205 // Verify GC barrier patterns
aoqi@0 1206 void verify_barriers() PRODUCT_RETURN;
aoqi@0 1207
aoqi@0 1208 // End-of-run dumps.
aoqi@0 1209 static void print_statistics() PRODUCT_RETURN;
aoqi@0 1210
aoqi@0 1211 // Dump formatted assembly
aoqi@0 1212 void dump_asm(int *pcs = NULL, uint pc_limit = 0) PRODUCT_RETURN;
aoqi@0 1213 void dump_pc(int *pcs, int pc_limit, Node *n);
aoqi@0 1214
aoqi@0 1215 // Verify ADLC assumptions during startup
aoqi@0 1216 static void adlc_verification() PRODUCT_RETURN;
aoqi@0 1217
aoqi@0 1218 // Definitions of pd methods
aoqi@0 1219 static void pd_compiler2_init();
aoqi@0 1220
thartmann@8285 1221 // Convert integer value to a narrowed long type dependent on ctrl (for example, a range check)
thartmann@8285 1222 static Node* constrained_convI2L(PhaseGVN* phase, Node* value, const TypeInt* itype, Node* ctrl);
thartmann@8285 1223
aoqi@0 1224 // Auxiliary method for randomized fuzzing/stressing
aoqi@0 1225 static bool randomized_select(int count);
aoqi@0 1226 };
aoqi@0 1227
aoqi@0 1228 #endif // SHARE_VM_OPTO_COMPILE_HPP

mercurial