comparison src/share/vm/opto/parse.hpp @ 20468:1de115720e74

8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message Reviewed-by: roland, jrose
author vlivanov
date Mon, 14 Jul 2014 03:24:35 -0700
parents 42460b71ba70
children 7848fc12602b
comparison
equal deleted inserted replaced
20467:134f18d0174b 20468:1de115720e74
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 144
145 bool _forced_inline; // Inlining was forced by CompilerOracle or ciReplay 145 bool _forced_inline; // Inlining was forced by CompilerOracle, ciReplay or annotation
146 bool forced_inline() const { return _forced_inline; } 146 bool forced_inline() const { return _forced_inline; }
147 // Count number of nodes in this subtree 147 // Count number of nodes in this subtree
148 int count() const; 148 int count() const;
149 // Dump inlining replay data to the stream. 149 // Dump inlining replay data to the stream.
150 void dump_replay_data(outputStream* out); 150 void dump_replay_data(outputStream* out);