comparison src/share/vm/gc_implementation/parallelScavenge/psYoungGen.cpp @ 6008:b632e80fc9dc

4988100: oop_verify_old_oop appears to be dead Summary: removed oop_verify_old_oop and allow_dirty. Also reviewed by: alexlamsl@gmail.com Reviewed-by: jmasa, jwilhelm
author brutisso
date Mon, 16 Apr 2012 08:57:18 +0200
parents eda9eb483d29
children 0b54ffe4c2d3
comparison
equal deleted inserted replaced
6007:5c86f8211d1e 6008:b632e80fc9dc
1 /* 1 /*
2 * Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2001, 2012, 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.
935 _to_counters->update_all(); 935 _to_counters->update_all();
936 _gen_counters->update_all(); 936 _gen_counters->update_all();
937 } 937 }
938 } 938 }
939 939
940 void PSYoungGen::verify(bool allow_dirty) { 940 void PSYoungGen::verify() {
941 eden_space()->verify(allow_dirty); 941 eden_space()->verify();
942 from_space()->verify(allow_dirty); 942 from_space()->verify();
943 to_space()->verify(allow_dirty); 943 to_space()->verify();
944 } 944 }
945 945
946 #ifndef PRODUCT 946 #ifndef PRODUCT
947 void PSYoungGen::record_spaces_top() { 947 void PSYoungGen::record_spaces_top() {
948 assert(ZapUnusedHeapArea, "Not mangling unused space"); 948 assert(ZapUnusedHeapArea, "Not mangling unused space");