comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeResolved.java @ 1434:72cfb36c6bb2

* enabled all jtt tests * added proxy that counts jni calls * honor hotspot stackshadowpages * constant pool caching * monitor enter/exit * arithmetic stubs (frem, drem, ...) * create stack values for debug info * some doc
author Lukas Stadler <lukas.stadler@oracle.com>
date Thu, 30 Sep 2010 17:19:48 -0700
parents efba53f86c4f
children 20a3896518ac
comparison
equal deleted inserted replaced
1433:efba53f86c4f 1434:72cfb36c6bb2
154 return true; 154 return true;
155 } 155 }
156 156
157 @Override 157 @Override
158 public boolean isSubtypeOf(RiType other) { 158 public boolean isSubtypeOf(RiType other) {
159 assert other instanceof HotSpotType : "unexpected 'other' type: " + other; 159 //assert other instanceof HotSpotType : "unexpected 'other' type: " + other;
160 if (other instanceof HotSpotTypeResolved) 160 if (other instanceof HotSpotTypeResolved)
161 return Compiler.getVMEntries().RiType_isSubtypeOf(vmId, other); 161 return Compiler.getVMEntries().RiType_isSubtypeOf(vmId, other);
162 // no resolved type is a subtype of an unresolved type 162 // no resolved type is a subtype of an unresolved type
163 return false; 163 return false;
164 } 164 }