comparison agent/src/share/classes/sun/jvm/hotspot/code/CodeBlob.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 3e8fbc61cee8
children 7588156f5cf9
comparison
equal deleted inserted replaced
3385:33ae33516634 3388:a80577f854f9
1 /* 1 /*
2 * Copyright (c) 2000, 2010, 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.
91 public boolean isRuntimeStub() { return false; } 91 public boolean isRuntimeStub() { return false; }
92 public boolean isDeoptimizationStub() { return false; } 92 public boolean isDeoptimizationStub() { return false; }
93 public boolean isUncommonTrapStub() { return false; } 93 public boolean isUncommonTrapStub() { return false; }
94 public boolean isExceptionStub() { return false; } 94 public boolean isExceptionStub() { return false; }
95 public boolean isSafepointStub() { return false; } 95 public boolean isSafepointStub() { return false; }
96 public boolean isRicochetBlob() { return false; }
97 public boolean isAdapterBlob() { return false; }
96 98
97 // Fine grain nmethod support: isNmethod() == isJavaMethod() || isNativeMethod() || isOSRMethod() 99 // Fine grain nmethod support: isNmethod() == isJavaMethod() || isNativeMethod() || isOSRMethod()
98 public boolean isJavaMethod() { return false; } 100 public boolean isJavaMethod() { return false; }
99 public boolean isNativeMethod() { return false; } 101 public boolean isNativeMethod() { return false; }
100 /** On-Stack Replacement method */ 102 /** On-Stack Replacement method */