use of com.oracle.truffle.api.interop.ArityException in project sulong by graalvm.
the class LLVMTruffleExecute method doExecute.
@ExplodeLoop
private Object doExecute(VirtualFrame frame, TruffleObject value, LLVMContext context, LLVMGetStackNode getStack) {
Object[] evaluatedArgs = new Object[args.length];
for (int i = 0; i < args.length; i++) {
evaluatedArgs[i] = prepareValuesForEscape[i].executeWithTarget(args[i].executeGeneric(frame));
}
try {
LLVMStack stack = getStack.executeWithTarget(getThreadingStack(context), Thread.currentThread());
Object rawValue;
try (StackPointer save = stack.newFrame()) {
rawValue = ForeignAccess.sendExecute(foreignExecute, value, evaluatedArgs);
}
return toLLVM.executeWithTarget(rawValue);
} catch (UnsupportedMessageException | UnsupportedTypeException | ArityException e) {
CompilerDirectives.transferToInterpreter();
throw new IllegalStateException(e);
}
}
use of com.oracle.truffle.api.interop.ArityException in project graal by oracle.
the class TruffleExecuteNode method execute.
public Object execute(Object languageContext, TruffleObject function, Object functionArgsObject, Class<?> resultClass, Type resultType) {
Object[] argsArray;
if (functionArgsObject instanceof Object[]) {
argsArray = (Object[]) functionArgsObject;
} else {
if (functionArgsObject == null) {
argsArray = EMPTY;
} else {
argsArray = new Object[] { functionArgsObject };
}
}
Object[] functionArgs = toGuests.apply(languageContext, argsArray);
Object result;
boolean executable = condition.profile(sendIsExecutable(isExecutable, function));
try {
if (executable) {
result = sendExecute(execute, function, functionArgs);
} else if (sendIsInstantiable(isInstantiable, function)) {
result = sendNew(instantiate, function, functionArgs);
} else {
CompilerDirectives.transferToInterpreter();
throw JavaInteropErrors.executeUnsupported(languageContext, function);
}
} catch (UnsupportedTypeException e) {
CompilerDirectives.transferToInterpreter();
if (executable) {
throw JavaInteropErrors.invalidExecuteArgumentType(languageContext, function, functionArgs);
} else {
throw JavaInteropErrors.invalidInstantiateArgumentType(languageContext, function, functionArgs);
}
} catch (ArityException e) {
CompilerDirectives.transferToInterpreter();
if (executable) {
throw JavaInteropErrors.invalidExecuteArity(languageContext, function, functionArgs, e.getExpectedArity(), e.getActualArity());
} else {
throw JavaInteropErrors.invalidInstantiateArity(languageContext, function, functionArgs, e.getExpectedArity(), e.getActualArity());
}
} catch (UnsupportedMessageException e) {
CompilerDirectives.transferToInterpreter();
throw JavaInteropErrors.executeUnsupported(languageContext, function);
}
return toHost.execute(result, resultClass, resultType, languageContext);
}
use of com.oracle.truffle.api.interop.ArityException in project graal by oracle.
the class ContextAPITest method testExecute.
private static void testExecute(Context context) {
ContextAPITestLanguage.runinside = (env) -> new ProxyInteropObject() {
@Override
public boolean isExecutable() {
return true;
}
@Override
public Object execute(Object[] args) throws UnsupportedTypeException, ArityException, UnsupportedMessageException {
return 42;
}
};
Value executable = context.eval(ContextAPITestLanguage.ID, "");
assertEquals(42, executable.execute().asInt());
assertEquals(42, executable.execute(42).asInt());
executable.executeVoid();
executable.executeVoid(42);
}
use of com.oracle.truffle.api.interop.ArityException in project sulong by graalvm.
the class LLVMTruffleInvoke method doInvoke.
@ExplodeLoop
private Object doInvoke(VirtualFrame frame, TruffleObject value, String id, ContextReference<LLVMContext> contextReference, LLVMGetStackNode getStack) {
Object[] evaluatedArgs = new Object[args.length];
for (int i = 0; i < args.length; i++) {
evaluatedArgs[i] = prepareValuesForEscape[i].executeWithTarget(args[i].executeGeneric(frame));
}
try {
LLVMContext context = contextReference.get();
LLVMStack stack = getStack.executeWithTarget(getThreadingStack(context), Thread.currentThread());
Object rawValue;
try (StackPointer save = stack.newFrame()) {
rawValue = ForeignAccess.sendInvoke(foreignInvoke, value, id, evaluatedArgs);
}
return toLLVM.executeWithTarget(rawValue);
} catch (UnknownIdentifierException | UnsupportedMessageException | UnsupportedTypeException | ArityException e) {
CompilerDirectives.transferToInterpreter();
throw new IllegalStateException(e);
}
}
Aggregations