comparison src/share/vm/gc_implementation/parallelScavenge/psOldGen.hpp @ 3251:eda9eb483d29

6841742: par compact - remove unused/unsupported options Summary: ignore UseParallel{OldGCDensePrefix,OldGCCompacting,DensePrefixUpdate} Reviewed-by: jwilhelm, brutisso
author jcoomes
date Thu, 07 Apr 2011 17:16:20 -0700
parents f95d63e2154a
children c9ca3f51cf41
comparison
equal deleted inserted replaced
3250:9c4f56ff88e9 3251:eda9eb483d29
1 /* 1 /*
2 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2001, 2011, 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.
141 // MarkSweep methods 141 // MarkSweep methods
142 virtual void precompact(); 142 virtual void precompact();
143 void adjust_pointers(); 143 void adjust_pointers();
144 void compact(); 144 void compact();
145 145
146 // Parallel old
147 virtual void move_and_update(ParCompactionManager* cm);
148
149 // Size info 146 // Size info
150 size_t capacity_in_bytes() const { return object_space()->capacity_in_bytes(); } 147 size_t capacity_in_bytes() const { return object_space()->capacity_in_bytes(); }
151 size_t used_in_bytes() const { return object_space()->used_in_bytes(); } 148 size_t used_in_bytes() const { return object_space()->used_in_bytes(); }
152 size_t free_in_bytes() const { return object_space()->free_in_bytes(); } 149 size_t free_in_bytes() const { return object_space()->free_in_bytes(); }
153 150