comparison agent/src/share/classes/sun/jvm/hotspot/code/CodeCache.java @ 3388:a80577f854f9

7045513: JSR 292 inlining causes crashes in methodHandleWalk.cpp Reviewed-by: jrose
author never
date Tue, 17 May 2011 19:11:51 -0700
parents c18cbe5936b8
children 7588156f5cf9
comparison
equal deleted inserted replaced
3385:33ae33516634 3388:a80577f854f9
1 /* 1 /*
2 * Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2000, 2011, 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.
55 virtualConstructor = new VirtualConstructor(db); 55 virtualConstructor = new VirtualConstructor(db);
56 // Add mappings for all possible CodeBlob subclasses 56 // Add mappings for all possible CodeBlob subclasses
57 virtualConstructor.addMapping("BufferBlob", BufferBlob.class); 57 virtualConstructor.addMapping("BufferBlob", BufferBlob.class);
58 virtualConstructor.addMapping("nmethod", NMethod.class); 58 virtualConstructor.addMapping("nmethod", NMethod.class);
59 virtualConstructor.addMapping("RuntimeStub", RuntimeStub.class); 59 virtualConstructor.addMapping("RuntimeStub", RuntimeStub.class);
60 virtualConstructor.addMapping("RicochetBlob", RicochetBlob.class);
61 virtualConstructor.addMapping("AdapterBlob", AdapterBlob.class);
60 virtualConstructor.addMapping("SafepointBlob", SafepointBlob.class); 62 virtualConstructor.addMapping("SafepointBlob", SafepointBlob.class);
61 virtualConstructor.addMapping("DeoptimizationBlob", DeoptimizationBlob.class); 63 virtualConstructor.addMapping("DeoptimizationBlob", DeoptimizationBlob.class);
62 if (VM.getVM().isServerCompiler()) { 64 if (VM.getVM().isServerCompiler()) {
63 virtualConstructor.addMapping("ExceptionBlob", ExceptionBlob.class); 65 virtualConstructor.addMapping("ExceptionBlob", ExceptionBlob.class);
64 virtualConstructor.addMapping("UncommonTrapBlob", UncommonTrapBlob.class); 66 virtualConstructor.addMapping("UncommonTrapBlob", UncommonTrapBlob.class);