changeset 7341:d947dd27a763

bug isolation: completely disabled arraycopy intrinsification for Object arrays
author Doug Simon <doug.simon@oracle.com>
date Sat, 12 Jan 2013 00:10:17 +0100
parents b314440029ea
children c10ee98124e3
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java	Sat Jan 12 00:09:42 2013 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java	Sat Jan 12 00:10:17 2013 +0100
@@ -110,11 +110,11 @@
                                 snippetMethod = doubleArrayCopy;
                             }
                         }
-                    } else if (destType.getComponentType().isAssignableFrom(srcType.getComponentType())) {
-                        if (destStamp.isExactType()) {
+//                    } else if (destType.getComponentType().isAssignableFrom(srcType.getComponentType())) {
+//                        if (destStamp.isExactType()) {
 //                            snippetMethod = objectArrayCopy;
-                        }
-                    }
+//                        }
+//                    }
                 }
             }