diff graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/ri/HotSpotConstantPool.java @ 5541:b4c406861c33

More renamings to drop Ri* prefix completely. Deleted graph.BitMap class and replaced with java.util.BitSet.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 09 Jun 2012 16:52:12 +0200
parents e0f7a49129f2
children
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/ri/HotSpotConstantPool.java	Fri Jun 08 23:47:42 2012 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/ri/HotSpotConstantPool.java	Sat Jun 09 16:52:12 2012 +0200
@@ -28,7 +28,7 @@
 /**
  * Implementation of RiConstantPool for HotSpot.
  */
-public class HotSpotConstantPool extends CompilerObject implements RiConstantPool {
+public class HotSpotConstantPool extends CompilerObject implements ConstantPool {
 
     private static final long serialVersionUID = -5443206401485234850L;
 
@@ -45,22 +45,22 @@
     }
 
     @Override
-    public RiSignature lookupSignature(int cpi) {
+    public Signature lookupSignature(int cpi) {
         throw new UnsupportedOperationException();
     }
 
     @Override
-    public RiMethod lookupMethod(int cpi, int byteCode) {
+    public JavaMethod lookupMethod(int cpi, int byteCode) {
         return HotSpotGraalRuntime.getInstance().getCompilerToVM().RiConstantPool_lookupMethod(type, cpi, (byte) byteCode);
     }
 
     @Override
-    public RiType lookupType(int cpi, int opcode) {
+    public JavaType lookupType(int cpi, int opcode) {
         return HotSpotGraalRuntime.getInstance().getCompilerToVM().RiConstantPool_lookupType(type, cpi);
     }
 
     @Override
-    public RiField lookupField(int cpi, int opcode) {
+    public JavaField lookupField(int cpi, int opcode) {
         return HotSpotGraalRuntime.getInstance().getCompilerToVM().RiConstantPool_lookupField(type, cpi, (byte) opcode);
     }