diff c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/VMEntries.java @ 1429:abc670a709dc

* -XX:TraceC1X=0...5 controls the native c1x tracing * -Dc1x.debug=true turns on the logging proxies and lots of log output on the java side * provide more information about types to the compiler (type hierarchy, etc) * provide exception handler tables to the compiler * add exception handlers to the nmethod * correct implementation of ExceptionObject * exception handling/unwinding entry points * modified versions of handle/unwind exception stubs using standard calling conventions * exception throwing * implicit null pointer exception, implicit div by 0 exception * arraystore/classcast/arrayindex exceptions * checkcast implementation * newarray, anewarray, multinewarray implementation * correct new instance initialization * access to java class mirrors (for ldc) * unresolved methods * class resolving - class patching (asssembly prototype copying)
author Lukas Stadler <lukas.stadler@oracle.com>
date Tue, 31 Aug 2010 22:13:30 -0700
parents 98fffb304868
children efba53f86c4f
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/VMEntries.java	Thu Aug 19 14:34:52 2010 -0700
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/VMEntries.java	Tue Aug 31 22:13:30 2010 -0700
@@ -42,7 +42,7 @@
 
     public RiType RiSignature_lookupType(String returnType, long accessingClassVmId);
 
-    public CiConstant RiConstantPool_lookupConstant(long vmId, int cpi);
+    public Object RiConstantPool_lookupConstant(long vmId, int cpi);
 
     public RiMethod RiConstantPool_lookupMethod(long vmId, int cpi, byte byteCode);
 
@@ -52,14 +52,6 @@
 
     public RiField RiConstantPool_lookupField(long vmId, int cpi);
 
-    public boolean RiType_isArrayClass(long vmId);
-
-    public boolean RiType_isInstanceClass(long vmId);
-
-    public boolean RiType_isInterface(long vmId);
-
-    public long RiType_instanceSize(long vmId);
-
     public RiConstantPool RiType_constantPool(long vmId);
 
     public void installMethod(HotSpotTargetMethod targetMethod);
@@ -68,4 +60,12 @@
 
     public HotSpotVMConfig getConfiguration();
 
+    public RiExceptionHandler[] RiMethod_exceptionHandlers(long vmId);
+
+    public RiMethod RiType_resolveMethodImpl(long vmId, String name, String signature);
+
+    public boolean RiType_isSubtypeOf(long vmId, RiType other);
+
+    public RiType getPrimitiveArrayType(CiKind kind);
+
 }
\ No newline at end of file