annotate src/share/vm/memory/genOopClosures.inline.hpp @ 65:99269dbf4ba8

6674588: (Escape Analysis) Improve Escape Analysis code Summary: Current EA code has several problems which have to be fixed. Reviewed-by: jrose, sgoldman
author kvn
date Fri, 14 Mar 2008 15:26:33 -0700
parents a61af66fc99e
children ba764ed4b6f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 inline OopsInGenClosure::OopsInGenClosure(Generation* gen) :
a61af66fc99e Initial load
duke
parents:
diff changeset
26 OopClosure(gen->ref_processor()), _orig_gen(gen), _rs(NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
27 set_generation(gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
28 }
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 inline void OopsInGenClosure::set_generation(Generation* gen) {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 _gen = gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 _gen_boundary = _gen->reserved().start();
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // Barrier set for the heap, must be set after heap is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
34 if (_rs == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 GenRemSet* rs = SharedHeap::heap()->rem_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
36 assert(rs->rs_kind() == GenRemSet::CardTable, "Wrong rem set kind");
a61af66fc99e Initial load
duke
parents:
diff changeset
37 _rs = (CardTableRS*)rs;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 }
a61af66fc99e Initial load
duke
parents:
diff changeset
39 }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 inline void OopsInGenClosure::do_barrier(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 assert(generation()->is_in_reserved(p), "expected ref in generation");
a61af66fc99e Initial load
duke
parents:
diff changeset
43 oop obj = *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 assert(obj != NULL, "expected non-null object");
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // If p points to a younger generation, mark the card.
a61af66fc99e Initial load
duke
parents:
diff changeset
46 if ((HeapWord*)obj < _gen_boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 _rs->inline_write_ref_field_gc(p, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // NOTE! Any changes made here should also be made
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // in FastScanClosure::do_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
53 inline void ScanClosure::do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 oop obj = *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Should we copy the obj?
a61af66fc99e Initial load
duke
parents:
diff changeset
56 if (obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 if ((HeapWord*)obj < _boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
a61af66fc99e Initial load
duke
parents:
diff changeset
59 if (obj->is_forwarded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 *p = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
61 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 *p = _g->copy_to_survivor_space(obj, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 if (_gc_barrier) {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Now call parent closure
a61af66fc99e Initial load
duke
parents:
diff changeset
67 do_barrier(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 inline void ScanClosure::do_oop_nv(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 ScanClosure::do_oop(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // NOTE! Any changes made here should also be made
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // in ScanClosure::do_oop();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 inline void FastScanClosure::do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 oop obj = *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Should we copy the obj?
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if (obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if ((HeapWord*)obj < _boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
a61af66fc99e Initial load
duke
parents:
diff changeset
84 if (obj->is_forwarded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 *p = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
86 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 *p = _g->copy_to_survivor_space(obj, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (_gc_barrier) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // Now call parent closure
a61af66fc99e Initial load
duke
parents:
diff changeset
91 do_barrier(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 inline void FastScanClosure::do_oop_nv(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 FastScanClosure::do_oop(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Note similarity to ScanClosure; the difference is that
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // the barrier set is taken care of outside this closure.
a61af66fc99e Initial load
duke
parents:
diff changeset
103 inline void ScanWeakRefClosure::do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 oop obj = *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 assert (obj != NULL, "null weak reference?");
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // weak references are sometimes scanned twice; must check
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // that to-space doesn't already contain this object
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if ((HeapWord*)obj < _boundary && !_g->to()->is_in_reserved(obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 if (obj->is_forwarded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 *p = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
111 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 *p = _g->copy_to_survivor_space(obj, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 inline void ScanWeakRefClosure::do_oop_nv(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 ScanWeakRefClosure::do_oop(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }