comparison src/share/vm/oops/oop.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 f08d439fab8c
children da91efe96a93
comparison
equal deleted inserted replaced
6007:5c86f8211d1e 6008:b632e80fc9dc
1 /* 1 /*
2 * Copyright (c) 1997, 2010, 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.
105 105
106 void oopDesc::verify() { 106 void oopDesc::verify() {
107 verify_on(tty); 107 verify_on(tty);
108 } 108 }
109 109
110
111 // XXX verify_old_oop doesn't do anything (should we remove?)
112 void oopDesc::verify_old_oop(oop* p, bool allow_dirty) {
113 blueprint()->oop_verify_old_oop(this, p, allow_dirty);
114 }
115
116 void oopDesc::verify_old_oop(narrowOop* p, bool allow_dirty) {
117 blueprint()->oop_verify_old_oop(this, p, allow_dirty);
118 }
119
120 bool oopDesc::partially_loaded() { 110 bool oopDesc::partially_loaded() {
121 return blueprint()->oop_partially_loaded(this); 111 return blueprint()->oop_partially_loaded(this);
122 } 112 }
123 113
124 114