hotspot/src/share/vm/opto/parse.hpp
changeset 22243 91944eab7b92
parent 22234 da823d78ad65
child 22872 b6902ee5bc8d
equal deleted inserted replaced
22242:07e4f028ec7a 22243:91944eab7b92
   139   uint        count_inlines()     const { return _count_inlines; };
   139   uint        count_inlines()     const { return _count_inlines; };
   140 #endif
   140 #endif
   141   GrowableArray<InlineTree*> subtrees() { return _subtrees; }
   141   GrowableArray<InlineTree*> subtrees() { return _subtrees; }
   142 
   142 
   143   void print_value_on(outputStream* st) const PRODUCT_RETURN;
   143   void print_value_on(outputStream* st) const PRODUCT_RETURN;
       
   144 
       
   145   bool        _forced_inline;     // Inlining was forced by CompilerOracle or ciReplay
       
   146   bool        forced_inline()     const { return _forced_inline; }
       
   147   // Count number of nodes in this subtree
       
   148   int         count() const;
       
   149   // Dump inlining replay data to the stream.
       
   150   void dump_replay_data(outputStream* out);
   144 };
   151 };
   145 
   152 
   146 
   153 
   147 //-----------------------------------------------------------------------------
   154 //-----------------------------------------------------------------------------
   148 //------------------------------Parse------------------------------------------
   155 //------------------------------Parse------------------------------------------