hotspot/src/share/vm/runtime/vm_operations.hpp
changeset 46329 53ccc37bda19
parent 37466 287c4ebd11b0
child 46495 34f7d403039f
equal deleted inserted replaced
46328:6061df52d610 46329:53ccc37bda19
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   290 };
   290 };
   291 
   291 
   292 #ifndef PRODUCT
   292 #ifndef PRODUCT
   293 class VM_DeoptimizeAll: public VM_Operation {
   293 class VM_DeoptimizeAll: public VM_Operation {
   294  private:
   294  private:
   295   KlassHandle _dependee;
   295   Klass* _dependee;
   296  public:
   296  public:
   297   VM_DeoptimizeAll() {}
   297   VM_DeoptimizeAll() {}
   298   VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
   298   VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
   299   void doit();
   299   void doit();
   300   bool allow_nested_vm_operations() const        { return true; }
   300   bool allow_nested_vm_operations() const        { return true; }