comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/CompilerObject.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 b7f06f504206
children
comparison
equal deleted inserted replaced
2282:0309d394eb5f 2284:569d3fe7d65c
27 * Parent class for all HotSpot Ri... types. 27 * Parent class for all HotSpot Ri... types.
28 * 28 *
29 * @author Lukas Stadler 29 * @author Lukas Stadler
30 */ 30 */
31 public abstract class CompilerObject implements Serializable { 31 public abstract class CompilerObject implements Serializable {
32 protected final Compiler compiler;
33
34 protected CompilerObject(Compiler compiler) {
35 this.compiler = compiler;
36 }
37
32 } 38 }