Skip to content
Snippets Groups Projects
Commit 53244585 authored by stepan's avatar stepan
Browse files

Do not crash when TRACE_MIRROR_ALLOCATION_SITES and calling fromNative

parent e0277994
No related branches found
No related tags found
No related merge requests found
......@@ -231,7 +231,15 @@ public final class NativeDataAccess {
@TruffleBoundary
private static void registerAllocationSite(Object arg, NativeMirror mirror) {
nativeMirrorInfo.put(mirror.id, new RuntimeException(arg.getClass().getSimpleName() + " " + arg));
String argInfo;
if (arg instanceof RVector<?> && ((RVector) arg).hasNativeMemoryData()) {
// this must be vector created by fromNative factory method, it has data == null, but
// does not have its address assigned yet
argInfo = "[empty]";
} else {
argInfo = arg.toString();
}
nativeMirrorInfo.put(mirror.id, new RuntimeException(arg.getClass().getSimpleName() + " " + argInfo));
}
public static Object toNative(Object obj) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment