diff src/share/vm/ci/ciEnv.hpp @ 14232:183bd5c00828

8028468: Add inlining information into ciReplay Summary: Allow dump and replay inlining for specified method during a program execution. Reviewed-by: roland, twisti
author kvn
date Wed, 08 Jan 2014 10:25:50 -0800
parents de6a9e811145
children 96d2c94bbdd0 606acabe7b5c
line wrap: on
line diff
--- a/src/share/vm/ci/ciEnv.hpp	Wed Jan 08 12:05:19 2014 +0100
+++ b/src/share/vm/ci/ciEnv.hpp	Wed Jan 08 10:25:50 2014 -0800
@@ -451,8 +451,11 @@
   void metadata_do(void f(Metadata*)) { _factory->metadata_do(f); }
 
   // Dump the compilation replay data for the ciEnv to the stream.
+  void dump_replay_data(int compile_id);
+  void dump_inline_data(int compile_id);
   void dump_replay_data(outputStream* out);
   void dump_replay_data_unsafe(outputStream* out);
+  void dump_compile_data(outputStream* out);
 };
 
 #endif // SHARE_VM_CI_CIENV_HPP