diff c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/VMExits.java @ 1465:2c754f3a2722

Inlining of static final field values. Java mirror instead of VmID. Support for PrintMetrics option.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Thu, 18 Nov 2010 17:27:43 +0100
parents a7b84a5e16c6
children ef7761803480
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/VMExits.java	Mon Nov 15 11:06:38 2010 +0100
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/VMExits.java	Thu Nov 18 17:27:43 2010 +0100
@@ -51,14 +51,12 @@
 
     RiConstantPool createRiConstantPool(long vmId);
 
-    CiConstant createCiConstantInt(int value);
-
     CiConstant createCiConstantLong(long value);
 
     CiConstant createCiConstantFloat(float value);
 
     CiConstant createCiConstantDouble(double value);
 
-    CiConstant createCiConstantObject(long vmId);
+    CiConstant createCiConstantObject(Object object);
 
 }