comparison src/share/vm/memory/generation.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 92da084fefc9
children da91efe96a93
comparison
equal deleted inserted replaced
6007:5c86f8211d1e 6008:b632e80fc9dc
1 /* 1 /*
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 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.
694 void OneContigSpaceCardGeneration::record_spaces_top() { 694 void OneContigSpaceCardGeneration::record_spaces_top() {
695 assert(ZapUnusedHeapArea, "Not mangling unused space"); 695 assert(ZapUnusedHeapArea, "Not mangling unused space");
696 the_space()->set_top_for_allocations(); 696 the_space()->set_top_for_allocations();
697 } 697 }
698 698
699 void OneContigSpaceCardGeneration::verify(bool allow_dirty) { 699 void OneContigSpaceCardGeneration::verify() {
700 the_space()->verify(allow_dirty); 700 the_space()->verify();
701 } 701 }
702 702
703 void OneContigSpaceCardGeneration::print_on(outputStream* st) const { 703 void OneContigSpaceCardGeneration::print_on(outputStream* st) const {
704 Generation::print_on(st); 704 Generation::print_on(st);
705 st->print(" the"); 705 st->print(" the");