comparison src/share/vm/oops/oop.hpp @ 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 b0efc7ee3b31
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.
291 char* print_value_string(); 291 char* print_value_string();
292 292
293 // verification operations 293 // verification operations
294 void verify_on(outputStream* st); 294 void verify_on(outputStream* st);
295 void verify(); 295 void verify();
296 void verify_old_oop(oop* p, bool allow_dirty);
297 void verify_old_oop(narrowOop* p, bool allow_dirty);
298 296
299 // tells whether this oop is partially constructed (gc during class loading) 297 // tells whether this oop is partially constructed (gc during class loading)
300 bool partially_loaded(); 298 bool partially_loaded();
301 void set_partially_loaded(); 299 void set_partially_loaded();
302 300