annotate agent/src/share/classes/sun/jvm/hotspot/code/CodeCache.java @ 1040:873ec3787992

6892186: SA does not dump debug info for scalar replaced objects Summary: Implement scalar replaced objects debug info dump in SA. Reviewed-by: twisti
author kvn
date Wed, 21 Oct 2009 09:15:33 -0700
parents 148e5441d916
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 2000-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 package sun.jvm.hotspot.code;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 import java.util.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 import sun.jvm.hotspot.debugger.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 import sun.jvm.hotspot.memory.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 import sun.jvm.hotspot.runtime.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 import sun.jvm.hotspot.types.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 import sun.jvm.hotspot.utilities.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 public class CodeCache {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 private static AddressField heapField;
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
36 private static AddressField scavengeRootNMethodsField;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37 private static VirtualConstructor virtualConstructor;
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 private CodeHeap heap;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 VM.registerVMInitializedObserver(new Observer() {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 public void update(Observable o, Object data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 initialize(VM.getVM().getTypeDataBase());
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 });
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 private static synchronized void initialize(TypeDataBase db) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 Type type = db.lookupType("CodeCache");
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 heapField = type.getAddressField("_heap");
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
53 scavengeRootNMethodsField = type.getAddressField("_scavenge_root_nmethods");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 virtualConstructor = new VirtualConstructor(db);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Add mappings for all possible CodeBlob subclasses
a61af66fc99e Initial load
duke
parents:
diff changeset
57 virtualConstructor.addMapping("BufferBlob", BufferBlob.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
58 virtualConstructor.addMapping("nmethod", NMethod.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 virtualConstructor.addMapping("RuntimeStub", RuntimeStub.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 virtualConstructor.addMapping("SafepointBlob", SafepointBlob.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 virtualConstructor.addMapping("DeoptimizationBlob", DeoptimizationBlob.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 if (VM.getVM().isServerCompiler()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 virtualConstructor.addMapping("ExceptionBlob", ExceptionBlob.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
64 virtualConstructor.addMapping("UncommonTrapBlob", UncommonTrapBlob.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 public CodeCache() {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 heap = (CodeHeap) VMObjectFactory.newObject(CodeHeap.class, heapField.getValue());
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
72 public NMethod scavengeRootMethods() {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
73 return (NMethod) VMObjectFactory.newObject(NMethod.class, scavengeRootNMethodsField.getValue());
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
74 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
75
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76 public boolean contains(Address p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return getHeap().contains(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 /** When VM.getVM().isDebugging() returns true, this behaves like
a61af66fc99e Initial load
duke
parents:
diff changeset
81 findBlobUnsafe */
a61af66fc99e Initial load
duke
parents:
diff changeset
82 public CodeBlob findBlob(Address start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 CodeBlob result = findBlobUnsafe(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 if (result == null) return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (VM.getVM().isDebugging()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // We could potientially look up non_entrant methods
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // NOTE: this is effectively a "guarantee", and is slightly different from the one in the VM
a61af66fc99e Initial load
duke
parents:
diff changeset
90 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 Assert.that(!(result.isZombie() || result.isLockedByVM()), "unsafe access to zombie method");
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 public CodeBlob findBlobUnsafe(Address start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 CodeBlob result = null;
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 try {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 result = (CodeBlob) virtualConstructor.instantiateWrapperFor(getHeap().findStart(start));
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 catch (WrongTypeException wte) {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 Address cbAddr = null;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 try {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 cbAddr = getHeap().findStart(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 catch (Exception findEx) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 findEx.printStackTrace();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 String message = "Couldn't deduce type of CodeBlob ";
a61af66fc99e Initial load
duke
parents:
diff changeset
112 if (cbAddr != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 message = message + "@" + cbAddr + " ";
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 message = message + "for PC=" + start;
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 throw new RuntimeException(message, wte);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 if (result == null) return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // The HeapBlock that contains this blob is outside of the blob
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // but it shouldn't be an error to find a blob based on the
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // pointer to the HeapBlock.
a61af66fc99e Initial load
duke
parents:
diff changeset
124 Assert.that(result.blobContains(start) || result.blobContains(start.addOffsetTo(8)),
a61af66fc99e Initial load
duke
parents:
diff changeset
125 "found wrong CodeBlob");
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 public NMethod findNMethod(Address start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 CodeBlob cb = findBlob(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 Assert.that(cb == null || cb.isNMethod(), "did not find an nmethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135 return (NMethod) cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 public NMethod findNMethodUnsafe(Address start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 CodeBlob cb = findBlobUnsafe(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 if (Assert.ASSERTS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 Assert.that(cb == null || cb.isNMethod(), "did not find an nmethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return (NMethod) cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 /** Routine for instantiating appropriately-typed wrapper for a
a61af66fc99e Initial load
duke
parents:
diff changeset
147 CodeBlob. Used by CodeCache, Runtime1, etc. */
a61af66fc99e Initial load
duke
parents:
diff changeset
148 public CodeBlob createCodeBlobWrapper(Address codeBlobAddr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 try {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 return (CodeBlob) virtualConstructor.instantiateWrapperFor(codeBlobAddr);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 catch (Exception e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 String message = "Unable to deduce type of CodeBlob from address " + codeBlobAddr +
a61af66fc99e Initial load
duke
parents:
diff changeset
154 " (expected type nmethod, RuntimeStub, ";
a61af66fc99e Initial load
duke
parents:
diff changeset
155 if (VM.getVM().isClientCompiler()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 message = message + " or ";
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 message = message + "SafepointBlob";
a61af66fc99e Initial load
duke
parents:
diff changeset
159 if (VM.getVM().isServerCompiler()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 message = message + ", DeoptimizationBlob, or ExceptionBlob";
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 message = message + ")";
a61af66fc99e Initial load
duke
parents:
diff changeset
163 throw new RuntimeException(message);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 public void iterate(CodeCacheVisitor visitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
168 CodeHeap heap = getHeap();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 Address ptr = heap.begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 Address end = heap.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 visitor.prologue(ptr, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 CodeBlob lastBlob = null;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 while (ptr != null && ptr.lessThan(end)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 try {
1040
873ec3787992 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 989
diff changeset
176 // Use findStart to get a pointer inside blob other findBlob asserts
873ec3787992 6892186: SA does not dump debug info for scalar replaced objects
kvn
parents: 989
diff changeset
177 CodeBlob blob = findBlobUnsafe(heap.findStart(ptr));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
178 if (blob != null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 visitor.visit(blob);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 if (blob == lastBlob) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 throw new InternalError("saw same blob twice");
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183 lastBlob = blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 } catch (RuntimeException e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 e.printStackTrace();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188 Address next = heap.nextBlock(ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 if (next != null && next.lessThan(ptr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 throw new InternalError("pointer moved backwards");
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192 ptr = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194 visitor.epilogue();
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 //--------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Internals only below this point
a61af66fc99e Initial load
duke
parents:
diff changeset
199 //
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 private CodeHeap getHeap() {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 return heap;
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }