changeset 5289:6519cf82d390

remove on more vmExits instance
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 24 Apr 2012 18:13:14 +0200
parents d30314b667eb
children 82e606f9ba69
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerImpl.java
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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();