comparison graal/com.oracle.graal.graphbuilderconf/src/com/oracle/graal/graphbuilderconf/InvocationPlugins.java @ 20162:ba0f264a71cf

added support for inlining graphs derived from InvocationPlugins
author Doug Simon <doug.simon@oracle.com>
date Sat, 04 Apr 2015 19:47:04 +0200
parents 7815c4d4a07f
children 5bf195ce816a
comparison
equal deleted inserted replaced
20161:6adad2a0a24d 20162:ba0f264a71cf
56 ValueNode get(); 56 ValueNode get();
57 57
58 /** 58 /**
59 * Determines if the receiver is constant. 59 * Determines if the receiver is constant.
60 */ 60 */
61 boolean isConstant(); 61 default boolean isConstant() {
62 return false;
63 }
62 } 64 }
63 65
64 /** 66 /**
65 * Utility for 67 * Utility for
66 * {@linkplain InvocationPlugins#register(InvocationPlugin, Class, String, Class...) 68 * {@linkplain InvocationPlugins#register(InvocationPlugin, Class, String, Class...)