src/share/vm/gc_implementation/parallelScavenge/psScavenge.inline.hpp

changeset 5784
190899198332
parent 5202
47bdfb3d010f
child 6680
78bbf4d43a14
equal deleted inserted replaced
5783:c1fbf21c7397 5784:190899198332
1 /* 1 /*
2 * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2002, 2013, 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.
79 // This code must come after the CAS test, or it will print incorrect 79 // This code must come after the CAS test, or it will print incorrect
80 // information. 80 // information.
81 if (TraceScavenge && o->is_forwarded()) { 81 if (TraceScavenge && o->is_forwarded()) {
82 gclog_or_tty->print_cr("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}", 82 gclog_or_tty->print_cr("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}",
83 "forwarding", 83 "forwarding",
84 new_obj->klass()->internal_name(), o, new_obj, new_obj->size()); 84 new_obj->klass()->internal_name(), (void *)o, (void *)new_obj, new_obj->size());
85 } 85 }
86 #endif 86 #endif
87 87
88 oopDesc::encode_store_heap_oop_not_null(p, new_obj); 88 oopDesc::encode_store_heap_oop_not_null(p, new_obj);
89 89

mercurial