# HG changeset patch # User Lukas Stadler # Date 1335283994 -7200 # Node ID 6519cf82d39028776a1370ba5d065242b994921b # Parent d30314b667eba7e416cb0a7bb95b5fee3dbcf856 remove on more vmExits instance diff -r d30314b667eb -r 6519cf82d390 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerImpl.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerImpl.java Tue Apr 24 17:22:36 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerImpl.java Tue Apr 24 18:13:14 2012 +0200 @@ -109,22 +109,22 @@ toVM = new CompilerToVMImpl(); } - // initialize VMExits - VMToCompiler exits = new VMToCompilerImpl(this); + // initialize VmToCompiler + VMToCompiler toCompiler = new VMToCompilerImpl(this); // logging, etc. if (CountingProxy.ENABLED) { - exits = CountingProxy.getProxy(VMToCompiler.class, exits); + toCompiler = CountingProxy.getProxy(VMToCompiler.class, toCompiler); toVM = CountingProxy.getProxy(CompilerToVM.class, toVM); } if (Logger.ENABLED) { - exits = LoggingProxy.getProxy(VMToCompiler.class, exits); + toCompiler = LoggingProxy.getProxy(VMToCompiler.class, toCompiler); toVM = LoggingProxy.getProxy(CompilerToVM.class, toVM); } // set the final fields compilerToVm = toVM; - vmToCompiler = exits; + vmToCompiler = toCompiler; // initialize compiler config = compilerToVm.getConfiguration();