Fabio Niephaus
Fabio Niephaus
It seems the image has been damanged somehow. I believe the first positional argument is the image and all following are considered image arguments. So to avoid confusion, I'd either...
Good find, that is indeed interesting! And enjoy your vacation! I'm currently occupied with some other things anyway until the end of next week, but it'd be great to fix...
TruffleSqueak's image and test image are based on a fixed Squeak trunk image that we haven't updated in a while. So maybe worth doing these experiments in a Squeak 6.0...
>Yes, that is a good idea. Actually, I was wondering how to create new truffleSqueak images and a bit about how one would go about to write the Smalltalk parts...
Same error occurs in Graal.js: ``` $ polyglot --jvm --shell GraalVM MultiLanguage Shell 19.2.1 JavaScript version 19.2.1 js> Java.type('java.util.Arrays').toString([1,2,3,4]) TypeError: invokeMember (toString) on JavaClass[java.util.Arrays] failed due to: Multiple applicable overloads...
Javascript does support typed arrays (e.g. `Uint8Array`). However, it looks like interop only checks if an [array has elements](https://github.com/oracle/graal/blob/690e6e543901fa7a319a85c1b357059692577a74/truffle/src/com.oracle.truffle.polyglot/src/com/oracle/truffle/polyglot/ToHostNode.java#L278) and does not consider it's type at all. I'll file a...
I've opened https://github.com/oracle/graal/issues/1759.
Maybe this could be helpful: > Added support for explicitly selecting a host method overload using the signature in the form of comma-separated fully qualified parameter type names enclosed by...
It seems that guest languages are not allowed to see stack frames of host Java. In the meantime, I've pushed support for interop exceptions in the PolyglotInspector via https://github.com/hpi-swa/trufflesqueak/commit/95f81e76b842b1548095889d93b3354cccf63f47.
Thanks, this needs to be monitored and reported to the GraalVM team. As the warning suggests, the cache size can be increased, for example via: ```bash trufflesqueak --vm.XX:ReservedCodeCacheSize=256M ... ```...