diff src/share/vm/opto/compile.hpp @ 17795:a9becfeecd1b

Merge
author kvn
date Wed, 22 Jan 2014 17:42:23 -0800
parents 849eb7bfceac ad3b94907eed
children 4ca6dc0799b6 62c54fcc0a35
line wrap: on
line diff
--- a/src/share/vm/opto/compile.hpp	Thu Jan 16 14:25:51 2014 +0100
+++ b/src/share/vm/opto/compile.hpp	Wed Jan 22 17:42:23 2014 -0800
@@ -431,6 +431,8 @@
   // Are we within a PreserveJVMState block?
   int _preserve_jvm_state;
 
+  void* _replay_inline_data; // Pointer to data loaded from file
+
  public:
 
   outputStream* print_inlining_stream() const {
@@ -465,6 +467,11 @@
     print_inlining_stream()->print(ss.as_string());
   }
 
+  void* replay_inline_data() const { return _replay_inline_data; }
+
+  // Dump inlining replay data to the stream.
+  void dump_inline_data(outputStream* out);
+
  private:
   // Matching, CFG layout, allocation, code generation
   PhaseCFG*             _cfg;                   // Results of CFG finding