comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiResolvedMethod.java @ 4296:d089b71a5237

Add possibility to disable inlining for specific methods. Clear the HotSpotMethodResolvedImpl constructor, for it's never called.
author Andreas Woess <andreas.woess@jku.at>
date Wed, 18 Jan 2012 16:21:54 +0100
parents aaac4894175c
children dc6f6e2f1a00
comparison
equal deleted inserted replaced
4295:1e3ecb08767d 4296:d089b71a5237
223 * Returns a {@link Type} object that represents the formal return type of this method. 223 * Returns a {@link Type} object that represents the formal return type of this method.
224 * 224 *
225 * @see Method#getGenericReturnType() 225 * @see Method#getGenericReturnType()
226 */ 226 */
227 Type getGenericReturnType(); 227 Type getGenericReturnType();
228
229 /**
230 * @return {@code true} if this method can be inlined
231 */
232 boolean canBeInlined();
228 } 233 }