comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotField.java @ 2284:569d3fe7d65c

non-static VMEntries and VMExits, CompilationServer simplifications
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 07 Apr 2011 15:32:25 +0200
parents 89bf01e6b049
children 6190d20bd6d6
comparison
equal deleted inserted replaced
2282:0309d394eb5f 2284:569d3fe7d65c
40 private final String name; 40 private final String name;
41 private final RiType type; 41 private final RiType type;
42 private final int offset; 42 private final int offset;
43 private CiConstant constant; 43 private CiConstant constant;
44 44
45 public HotSpotField(RiType holder, String name, RiType type, int offset) { 45 public HotSpotField(Compiler compiler, RiType holder, String name, RiType type, int offset) {
46 super(compiler);
46 this.holder = holder; 47 this.holder = holder;
47 this.name = name; 48 this.name = name;
48 this.type = type; 49 this.type = type;
49 this.offset = offset; 50 this.offset = offset;
50 } 51 }