changeset 7343:62554b96c682

bug isolation: completely disabled arraycopy intrinsification for Object arrays
author Doug Simon <doug.simon@oracle.com>
date Sat, 12 Jan 2013 00:49:20 +0100
parents c10ee98124e3
children 11a9f50f34e4
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java
diffstat 1 files changed, 0 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:11:23 2013 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/snippets/IntrinsifyArrayCopyPhase.java	Sat Jan 12 00:49:20 2013 +0100
@@ -110,10 +110,6 @@
                                 snippetMethod = doubleArrayCopy;
                             }
                         }
-                    } else if (destType.getComponentType() == srcType.getComponentType() || destType.getComponentType().isAssignableFrom(srcType.getComponentType())) {
-                        if (destStamp.isExactType()) {
-                            snippetMethod = objectArrayCopy;
-                        }
                     }
                 }
             }