comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethod.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
21 package com.sun.hotspot.c1x; 21 package com.sun.hotspot.c1x;
22 22
23 import com.sun.cri.ri.*; 23 import com.sun.cri.ri.*;
24 24
25 25
26 public interface HotSpotMethod extends RiMethod { 26 public abstract class HotSpotMethod extends CompilerObject implements RiMethod {
27 27
28 protected RiType holder;
29 protected String name;
30
31 @Override
32 public final RiType holder() {
33 return holder;
34 }
35
36 @Override
37 public final String name() {
38 return name;
39 }
28 } 40 }