comparison src/share/vm/gc_implementation/parallelScavenge/psScavenge.inline.hpp @ 18009:f73af4455d7d

Merge
author asaha
date Thu, 29 May 2014 09:56:06 -0700
parents 78bbf4d43a14
children
comparison
equal deleted inserted replaced
18008:da65bbf6f89e 18009:f73af4455d7d
1 /* 1 /*
2 * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2002, 2014, 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(), (void *)o, (void *)new_obj, new_obj->size()); 84 new_obj->klass()->internal_name(), p2i((void *)o), p2i((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