src/share/vm/opto/compile.hpp

Sat, 09 Feb 2013 12:55:09 -0800

author
drchase
date
Sat, 09 Feb 2013 12:55:09 -0800
changeset 4585
2c673161698a
parent 4414
5698813d45eb
child 4589
8b3da8d14c93
permissions
-rw-r--r--

8007402: Code cleanup to remove Parfait false positive
Summary: add array access range check
Reviewed-by: kvn

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

mercurial