# HG changeset patch # User Thomas Wuerthinger # Date 1327791958 -3600 # Node ID aa4347c728876a7ec9532b9a030becfabeec3a4d # Parent 48bc781395ae7da8971e4f55cd8d1f3382d27d72 Remove TraceLIRVisit diff -r 48bc781395ae -r aa4347c72887 graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/GraalOptions.java --- a/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/GraalOptions.java Sun Jan 29 00:04:36 2012 +0100 +++ b/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/GraalOptions.java Sun Jan 29 00:05:58 2012 +0100 @@ -111,7 +111,6 @@ public static boolean TraceRegisterAllocation = false; public static int TraceLIRGeneratorLevel = 0; public static boolean TraceRelocation = ____; - public static boolean TraceLIRVisit = ____; public static boolean TraceEscapeAnalysis = ____; public static int TraceBytecodeParserLevel = 0; public static boolean ExitVMOnBailout = ____; diff -r 48bc781395ae -r aa4347c72887 graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/gen/LIRGenerator.java --- a/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/gen/LIRGenerator.java Sun Jan 29 00:04:36 2012 +0100 +++ b/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/gen/LIRGenerator.java Sun Jan 29 00:05:58 2012 +0100 @@ -416,15 +416,9 @@ } currentInstruction = instr; - if (GraalOptions.TraceLIRVisit) { - TTY.println("Visiting " + instr); - } - + Debug.log("Visiting %s", instr); emitNode(instr); - - if (GraalOptions.TraceLIRVisit) { - TTY.println("Operand for " + instr + " = " + operand(instr)); - } + Debug.log("Operand for %s = %s", instr, operand(instr)); } protected void emitNode(ValueNode node) {