comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotResolvedJavaMethod.java @ 12532:9b1cc2628961

Extend the CompilerToVM interface to explicitly avoid compilation and inlining of methods
author Matthias Grimmer <grimmer@ssw.jku.at>
date Wed, 23 Oct 2013 12:48:06 +0200
parents 59ce8d220e11
children e5c23a8f3dd8
comparison
equal deleted inserted replaced
12531:7d5c3ffbee64 12532:9b1cc2628961
188 public boolean isDontInline() { 188 public boolean isDontInline() {
189 return dontInline; 189 return dontInline;
190 } 190 }
191 191
192 /** 192 /**
193 * Manually adds a DontInline annotation to this method.
194 */
195 public void setDontInline() {
196 dontInline = true;
197 runtime().getCompilerToVM().dontInline(metaspaceMethod, this);
198 }
199
200 /**
193 * Returns true if this method is one of the special methods that is ignored by security stack 201 * Returns true if this method is one of the special methods that is ignored by security stack
194 * walks. 202 * walks.
195 * 203 *
196 * @return true if special method ignored by security stack walks, false otherwise 204 * @return true if special method ignored by security stack walks, false otherwise
197 */ 205 */