src/share/vm/runtime/vm_operations.hpp

changeset 5792
510fbd28919c
parent 5237
f2110083203d
child 6535
f42c10a3d4b1
     1.1 --- a/src/share/vm/runtime/vm_operations.hpp	Fri Sep 27 08:39:19 2013 +0200
     1.2 +++ b/src/share/vm/runtime/vm_operations.hpp	Fri Sep 27 10:50:55 2013 +0200
     1.3 @@ -51,7 +51,6 @@
     1.4    template(DeoptimizeAll)                         \
     1.5    template(ZombieAll)                             \
     1.6    template(UnlinkSymbols)                         \
     1.7 -  template(HandleFullCodeCache)                   \
     1.8    template(Verify)                                \
     1.9    template(PrintJNI)                              \
    1.10    template(HeapDumper)                            \
    1.11 @@ -261,16 +260,6 @@
    1.12    bool allow_nested_vm_operations() const        { return true;  }
    1.13  };
    1.14  
    1.15 -class VM_HandleFullCodeCache: public VM_Operation {
    1.16 - private:
    1.17 -  bool  _is_full;
    1.18 - public:
    1.19 -  VM_HandleFullCodeCache(bool is_full)           { _is_full = is_full; }
    1.20 -  VMOp_Type type() const                         { return VMOp_HandleFullCodeCache; }
    1.21 -  void doit();
    1.22 -  bool allow_nested_vm_operations() const        { return true; }
    1.23 -};
    1.24 -
    1.25  #ifndef PRODUCT
    1.26  class VM_DeoptimizeAll: public VM_Operation {
    1.27   private:

mercurial