comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiCompiledMethod.java @ 5246:8bf2c37c46c4

added RiCompiledMethod.executeVarargs(Object...) to support compiling and calling arbitrary Java methods
author Doug Simon <doug.simon@oracle.com>
date Tue, 17 Apr 2012 13:52:38 +0200
parents 897b7d18bebc
children
comparison
equal deleted inserted replaced
5245:71ac4221b1b0 5246:8bf2c37c46c4
42 * @return true if the code represented by this object is still valid, false otherwise (may happen due to deopt, etc.) 42 * @return true if the code represented by this object is still valid, false otherwise (may happen due to deopt, etc.)
43 */ 43 */
44 boolean isValid(); 44 boolean isValid();
45 45
46 Object execute(Object arg1, Object arg2, Object arg3); 46 Object execute(Object arg1, Object arg2, Object arg3);
47
48 Object executeVarargs(Object... args);
47 } 49 }