comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotField.java @ 1421:6223633ce7dd

changed VMExit/VMEntries to non-static, added eclipse c++ project, CIR interface changes
author Lukas Stadler <lukas.stadler@oracle.com>
date Fri, 23 Jul 2010 15:53:02 -0700
parents 44efca8a02d6
children 3483ec571caf
comparison
equal deleted inserted replaced
1420:44efca8a02d6 1421:6223633ce7dd
52 return type().kind(); 52 return type().kind();
53 } 53 }
54 54
55 @Override 55 @Override
56 public String name() { 56 public String name() {
57 return VMEntries.RiSignature_symbolToString(nameSymbol); 57 return Compiler.getVMEntries().RiSignature_symbolToString(nameSymbol);
58 } 58 }
59 59
60 @Override 60 @Override
61 public RiType type() { 61 public RiType type() {
62 return type; 62 return type;
63 } 63 }
64 64
65 public int offset() {
66 return offset;
67 }
68
65 } 69 }