< prev index next >

src/hotspot/share/gc/cms/vmCMSOperations.hpp

Print this page
rev 52821 : [mq]: 8214850-rename-vm_operations


  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_CMS_VMCMSOPERATIONS_HPP
  26 #define SHARE_VM_GC_CMS_VMCMSOPERATIONS_HPP
  27 
  28 #include "gc/cms/concurrentMarkSweepGeneration.hpp"
  29 #include "gc/shared/gcCause.hpp"
  30 #include "gc/shared/gcId.hpp"
  31 #include "gc/shared/vmGCOperations.hpp"
  32 #include "runtime/vm_operations.hpp"
  33 
  34 // The VM_CMS_Operation is slightly different from
  35 // a VM_GC_Operation -- and would not have subclassed easily
  36 // to VM_GC_Operation without several changes to VM_GC_Operation.
  37 // To minimize the changes, we have replicated some of the VM_GC_Operation
  38 // functionality here. We will consolidate that back by doing subclassing
  39 // as appropriate in Dolphin.
  40 //
  41 //  VM_Operation
  42 //    VM_CMS_Operation
  43 //    - implements the common portion of work done in support
  44 //      of CMS' stop-world phases (initial mark and remark).
  45 //
  46 //      VM_CMS_Initial_Mark
  47 //      VM_CMS_Final_Mark
  48 //
  49 
  50 // Forward decl.
  51 class CMSCollector;
  52 




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_CMS_VMCMSOPERATIONS_HPP
  26 #define SHARE_VM_GC_CMS_VMCMSOPERATIONS_HPP
  27 
  28 #include "gc/cms/concurrentMarkSweepGeneration.hpp"
  29 #include "gc/shared/gcCause.hpp"
  30 #include "gc/shared/gcId.hpp"
  31 #include "gc/shared/vmGCOperations.hpp"
  32 #include "runtime/vmOperations.hpp"
  33 
  34 // The VM_CMS_Operation is slightly different from
  35 // a VM_GC_Operation -- and would not have subclassed easily
  36 // to VM_GC_Operation without several changes to VM_GC_Operation.
  37 // To minimize the changes, we have replicated some of the VM_GC_Operation
  38 // functionality here. We will consolidate that back by doing subclassing
  39 // as appropriate in Dolphin.
  40 //
  41 //  VM_Operation
  42 //    VM_CMS_Operation
  43 //    - implements the common portion of work done in support
  44 //      of CMS' stop-world phases (initial mark and remark).
  45 //
  46 //      VM_CMS_Initial_Mark
  47 //      VM_CMS_Final_Mark
  48 //
  49 
  50 // Forward decl.
  51 class CMSCollector;
  52 


< prev index next >