annotate agent/src/share/classes/sun/jvm/hotspot/code/CodeCache.java @ 749:81a249214991

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