comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeResolved.java @ 2048:177398c6147d

Added unique concrete subtype assumption.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Mon, 10 Jan 2011 10:50:22 +0100
parents 79d04223b8a5
children 99ad52189524
comparison
equal deleted inserted replaced
2047:eb575e79136f 2048:177398c6147d
64 public RiType componentType() { 64 public RiType componentType() {
65 return Compiler.getVMEntries().RiType_componentType(this); 65 return Compiler.getVMEntries().RiType_componentType(this);
66 } 66 }
67 67
68 @Override 68 @Override
69 public RiType uniqueConcreteSubtype() {
70 return Compiler.getVMEntries().RiType_uniqueConcreteSubtype(this);
71 }
72
73 @Override
69 public RiType exactType() { 74 public RiType exactType() {
70 if (Modifier.isFinal(accessFlags)) { 75 if (Modifier.isFinal(accessFlags)) {
71 return this; 76 return this;
72 } 77 }
73 return null; 78 return null;