diff graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotBytecodeLIRBuilder.java @ 15556:6cc1c153e5f1

BytecodeLIRBuilder: add getArrayLengthOffset().
author Josef Eisl <josef.eisl@jku.at>
date Tue, 06 May 2014 20:09:37 +0200
parents 06ecedffb109
children 0fc035104370
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotBytecodeLIRBuilder.java	Thu May 08 11:52:20 2014 +0200
+++ b/graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotBytecodeLIRBuilder.java	Tue May 06 20:09:37 2014 +0200
@@ -79,4 +79,9 @@
         }
     }
 
+    @Override
+    public int getArrayLengthOffset() {
+        return getGen().config.arrayLengthOffset;
+    }
+
 }