annotate src/share/vm/gc_implementation/parallelScavenge/psMarkSweep.hpp @ 989:148e5441d916

6863023: need non-perm oops in code cache for JSR 292 Summary: Make a special root-list for those few nmethods which might contain non-perm oops. Reviewed-by: twisti, kvn, never, jmasa, ysr
author jrose
date Tue, 15 Sep 2009 21:53:47 -0700
parents a61af66fc99e
children c18cbe5936b8
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-2005 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 class PSAdaptiveSizePolicy;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class PSYoungGen;
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class PSOldGen;
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class PSMarkSweep : public MarkSweep {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
31 static elapsedTimer _accumulated_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 static unsigned int _total_invocations;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 static jlong _time_of_last_gc; // ms
a61af66fc99e Initial load
duke
parents:
diff changeset
34 static CollectorCounters* _counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Closure accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
37 static OopClosure* mark_and_push_closure() { return &MarkSweep::mark_and_push_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
38 static VoidClosure* follow_stack_closure() { return (VoidClosure*)&MarkSweep::follow_stack_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
39 static OopClosure* adjust_pointer_closure() { return (OopClosure*)&MarkSweep::adjust_pointer_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
40 static OopClosure* adjust_root_pointer_closure() { return (OopClosure*)&MarkSweep::adjust_root_pointer_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static BoolObjectClosure* is_alive_closure() { return (BoolObjectClosure*)&MarkSweep::is_alive; }
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 debug_only(public:) // Used for PSParallelCompact debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // Mark live objects
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static void mark_sweep_phase1(bool clear_all_softrefs);
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // Calculate new addresses
a61af66fc99e Initial load
duke
parents:
diff changeset
47 static void mark_sweep_phase2();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 debug_only(private:) // End used for PSParallelCompact debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // Update pointers
a61af66fc99e Initial load
duke
parents:
diff changeset
50 static void mark_sweep_phase3();
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // Move objects to new positions
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static void mark_sweep_phase4();
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 debug_only(public:) // Used for PSParallelCompact debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Temporary data structures for traversal and storing/restoring marks
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static void allocate_stacks();
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static void deallocate_stacks();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static void set_ref_processor(ReferenceProcessor* rp) { // delete this method
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _ref_processor = rp;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 debug_only(private:) // End used for PSParallelCompact debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // If objects are left in eden after a collection, try to move the boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // and absorb them into the old gen. Returns true if eden was emptied.
a61af66fc99e Initial load
duke
parents:
diff changeset
65 static bool absorb_live_data_from_eden(PSAdaptiveSizePolicy* size_policy,
a61af66fc99e Initial load
duke
parents:
diff changeset
66 PSYoungGen* young_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
67 PSOldGen* old_gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Reset time since last full gc
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static void reset_millis_since_last_gc();
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
73 static void invoke(bool clear_all_softrefs);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static void invoke_no_policy(bool clear_all_softrefs);
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Public accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
79 static elapsedTimer* accumulated_time() { return &_accumulated_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static unsigned int total_invocations() { return _total_invocations; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static CollectorCounters* counters() { return _counters; }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // Time since last full gc (in milliseconds)
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static jlong millis_since_last_gc();
a61af66fc99e Initial load
duke
parents:
diff changeset
85 };