changeset 14857:9c089e418bc9

Fix eclipse format.
author Josef Eisl <josef.eisl@jku.at>
date Thu, 27 Mar 2014 17:41:55 +0100
parents 0d158f22f14c
children 2372488fd33f
files graal/com.oracle.graal.baseline/src/com/oracle/graal/baseline/BaselineCompiler.java graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/NodeLIRGenerator.java graal/com.oracle.graal.java/src/com/oracle/graal/java/BciBlockMapping.java
diffstat 3 files changed, 8 insertions(+), 35 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.baseline/src/com/oracle/graal/baseline/BaselineCompiler.java	Thu Mar 27 17:31:20 2014 +0100
+++ b/graal/com.oracle.graal.baseline/src/com/oracle/graal/baseline/BaselineCompiler.java	Thu Mar 27 17:41:55 2014 +0100
@@ -782,14 +782,14 @@
     private void genReturn(Value x) {
         // frameState.setRethrowException(false);
         frameState.clearStack();
-// if (graphBuilderConfig.eagerInfopointMode()) {
-// append(new InfopointNode(InfopointReason.METHOD_END, frameState.create(bci())));
-// }
+        // if (graphBuilderConfig.eagerInfopointMode()) {
+        // append(new InfopointNode(InfopointReason.METHOD_END, frameState.create(bci())));
+        // }
 
-// synchronizedEpilogue(FrameState.AFTER_BCI, x);
-// if (frameState.lockDepth() != 0) {
-// throw new BailoutException("unbalanced monitors");
-// }
+        // synchronizedEpilogue(FrameState.AFTER_BCI, x);
+        // if (frameState.lockDepth() != 0) {
+        // throw new BailoutException("unbalanced monitors");
+        // }
 
         // lirGen.visitReturn(x);
         throw GraalInternalError.unimplemented();
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/NodeLIRGenerator.java	Thu Mar 27 17:31:20 2014 +0100
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/NodeLIRGenerator.java	Thu Mar 27 17:41:55 2014 +0100
@@ -58,15 +58,6 @@
  */
 public abstract class NodeLIRGenerator implements NodeLIRGeneratorTool {
 
-    public static class Options {
-        // @formatter:off
-//        @Option(help = "Print HIR along side LIR as the latter is generated")
-//        public static final OptionValue<Boolean> PrintIRWithLIR = new OptionValue<>(false);
-//        @Option(help = "The trace level for the LIR generator")
-//        public static final OptionValue<Integer> TraceLIRGeneratorLevel = new OptionValue<>(0);
-        // @formatter:on
-    }
-
     private final NodeMap<Value> nodeOperands;
     private final DebugInfoBuilder debugInfoBuilder;
 
@@ -641,24 +632,6 @@
         }
     }
 
-// public abstract void emitJump(LabelRef label);
-//
-// public abstract void emitCompareBranch(Value left, Value right, Condition cond, boolean
-// unorderedIsTrue, LabelRef trueDestination, LabelRef falseDestination, double
-// trueDestinationProbability);
-//
-// public abstract void emitOverflowCheckBranch(LabelRef overflow, LabelRef noOverflow, double
-// overflowProbability);
-//
-// public abstract void emitIntegerTestBranch(Value left, Value right, LabelRef trueDestination,
-// LabelRef falseDestination, double trueSuccessorProbability);
-//
-// public abstract Variable emitConditionalMove(Value leftVal, Value right, Condition cond, boolean
-// unorderedIsTrue, Value trueValue, Value falseValue);
-//
-// public abstract Variable emitIntegerTestMove(Value leftVal, Value right, Value trueValue, Value
-// falseValue);
-
     @Override
     public void emitInvoke(Invoke x) {
         LoweredCallTargetNode callTarget = (LoweredCallTargetNode) x.callTarget();
--- a/graal/com.oracle.graal.java/src/com/oracle/graal/java/BciBlockMapping.java	Thu Mar 27 17:31:20 2014 +0100
+++ b/graal/com.oracle.graal.java/src/com/oracle/graal/java/BciBlockMapping.java	Thu Mar 27 17:41:55 2014 +0100
@@ -87,7 +87,7 @@
 
         // public ArrayList<BciBlock> successors = new ArrayList<>(2);
         // public ArrayList<BciBlock> predecessors = new ArrayList<>(2); // only used in the
-// baseline
+        // baseline
 
         public long exits;