< prev index next >

src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotResolvedJavaMethodImpl.java

Print this page

        

*** 316,329 **** public boolean hasReservedStackAccess() { return (getFlags() & config().methodFlagsReservedStackAccess) != 0; } /** ! * Manually adds a DontInline annotation to this method. */ ! public void setNotInlineable() { ! compilerToVM().doNotInlineOrCompile(this); } /** * Returns true if this method is one of the special methods that is ignored by security stack * walks. --- 316,329 ---- public boolean hasReservedStackAccess() { return (getFlags() & config().methodFlagsReservedStackAccess) != 0; } /** ! * Determines if {@code method} should not be inlined or compiled. */ ! public void setNotInlineableOrCompileable() { ! compilerToVM().setNotInlineableOrCompileable(this); } /** * Returns true if this method is one of the special methods that is ignored by security stack * walks.
< prev index next >