comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotType.java @ 2055:99ad52189524

Refactorings to get towards less CRI overhead.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Thu, 13 Jan 2011 17:45:17 +0100
parents 3c0a889a176b
children 569d3fe7d65c
comparison
equal deleted inserted replaced
2054:3c0a889a176b 2055:99ad52189524
25 /** 25 /**
26 * Common interface for all HotSpot RiType-implementations. 26 * Common interface for all HotSpot RiType-implementations.
27 * 27 *
28 * @author Lukas Stadler 28 * @author Lukas Stadler
29 */ 29 */
30 public interface HotSpotType extends RiType { 30 public abstract class HotSpotType extends CompilerObject implements RiType {
31 protected String name;
31 32
32 String simpleName(); 33 @Override
33 34 public final String name() {
35 return name;
36 }
34 } 37 }