hotspot/src/share/vm/runtime/vm_operations.hpp
changeset 37289 9989add27bf4
parent 36322 218528915a61
child 37466 287c4ebd11b0
--- a/hotspot/src/share/vm/runtime/vm_operations.hpp	Sun Apr 03 21:44:54 2016 -0700
+++ b/hotspot/src/share/vm/runtime/vm_operations.hpp	Tue Apr 05 01:46:40 2016 -0700
@@ -231,9 +231,11 @@
 };
 
 class VM_ClearICs: public VM_Operation {
+ private:
+  bool _preserve_static_stubs;
  public:
-  VM_ClearICs() {}
-  void doit()         { CodeCache::clear_inline_caches(); }
+  VM_ClearICs(bool preserve_static_stubs) { _preserve_static_stubs = preserve_static_stubs; }
+  void doit();
   VMOp_Type type() const { return VMOp_ClearICs; }
 };