diff c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotVMConfig.java @ 1422:3483ec571caf

* using reflected objects instead of oops * removed scratch from allocatable registers * instanceof xir snippet * arraylength xir snippet * exceptionobject xir snippet * VMEntries and VMExits as interfaces * calls to VMEntries and VMExits are routet through logging proxies
author Lukas Stadler <lukas.stadler@oracle.com>
date Mon, 02 Aug 2010 15:44:38 -0700
parents 6223633ce7dd
children 760213a60e8b
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotVMConfig.java	Fri Jul 23 15:53:02 2010 -0700
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotVMConfig.java	Mon Aug 02 15:44:38 2010 -0700
@@ -32,6 +32,7 @@
     public int vmPageSize;
     public int stackShadowPages;
     public int hubOffset;
+    public int arrayLengthOffset;
 
     // runtime stubs
     public long instanceofStub;
@@ -44,6 +45,7 @@
         assert instanceofStub != 0;
         assert debugStub != 0;
         System.out.println("Config::debugStub = " + Long.toHexString(debugStub));
+        System.out.println("Config::instanceofStub = " + Long.toHexString(instanceofStub));
     }
 
 }