src/share/vm/opto/compile.hpp

Tue, 17 Oct 2017 12:58:25 +0800

author
aoqi
date
Tue, 17 Oct 2017 12:58:25 +0800
changeset 7994
04ff2f6cd0eb
parent 7792
99edc344d77c
parent 7535
7ae4e26cb1e0
child 8604
04d83ba48607
permissions
-rw-r--r--

merge

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

mercurial