--- a/hotspot/src/share/vm/opto/parse.hpp Wed Jan 08 12:05:19 2014 +0100
+++ b/hotspot/src/share/vm/opto/parse.hpp Wed Jan 08 10:25:50 2014 -0800
@@ -141,6 +141,13 @@
GrowableArray<InlineTree*> subtrees() { return _subtrees; }
void print_value_on(outputStream* st) const PRODUCT_RETURN;
+
+ bool _forced_inline; // Inlining was forced by CompilerOracle or ciReplay
+ bool forced_inline() const { return _forced_inline; }
+ // Count number of nodes in this subtree
+ int count() const;
+ // Dump inlining replay data to the stream.
+ void dump_replay_data(outputStream* out);
};