diff src/share/vm/opto/compile.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents abec000618bf
children 52b4284cb496
line wrap: on
line diff
--- a/src/share/vm/opto/compile.hpp	Tue Apr 01 14:09:03 2014 +0200
+++ b/src/share/vm/opto/compile.hpp	Tue Apr 01 13:57:07 2014 +0200
@@ -431,8 +431,6 @@
   // 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 {
@@ -467,11 +465,6 @@
     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
@@ -599,7 +592,6 @@
   bool          trace_opto_output() const       { return _trace_opto_output; }
   bool              parsed_irreducible_loop() const { return _parsed_irreducible_loop; }
   void          set_parsed_irreducible_loop(bool z) { _parsed_irreducible_loop = z; }
-  int _in_dump_cnt;  // Required for dumping ir nodes.
 #endif
 
   // JSR 292
@@ -765,8 +757,6 @@
 
   MachConstantBaseNode*     mach_constant_base_node();
   bool                  has_mach_constant_base_node() const { return _mach_constant_base_node != NULL; }
-  // Generated by adlc, true if CallNode requires MachConstantBase.
-  bool                      needs_clone_jvms();
 
   // Handy undefined Node
   Node*             top() const                 { return _top; }
@@ -863,11 +853,6 @@
                       ciMethodData* logmd = NULL);
   // Report if there were too many recompiles at a method and bci.
   bool too_many_recompiles(ciMethod* method, int bci, Deoptimization::DeoptReason reason);
-  // Return a bitset with the reasons where deoptimization is allowed,
-  // i.e., where there were not too many uncommon traps.
-  int _allowed_reasons;
-  int      allowed_deopt_reasons() { return _allowed_reasons; }
-  void set_allowed_deopt_reasons();
 
   // Parsing, optimization
   PhaseGVN*         initial_gvn()               { return _initial_gvn; }