private static void RemoveFixedPrograms(FuzzlynOptions options, string dir) { string[] files = Directory.GetFiles(dir, "*.cs"); List <ulong> toRereduce = new List <ulong>(); for (int i = 0; i < files.Length; i++) { Console.Title = $"Processing {i + 1}/{files.Length}"; string contents = File.ReadAllText(files[i]); MatchCollection matches = Regex.Matches(contents, "// Seed: ([0-9]+)"); if (matches.Count != 1) { continue; } ulong seed = ulong.Parse(matches[0].Groups[1].Value); options.Seed = seed; var cg = new CodeGenerator(options); CompilationUnitSyntax original = cg.GenerateProgram(false); CompileResult debug = Compiler.Compile(original, Compiler.DebugOptions); CompileResult release = Compiler.Compile(original, Compiler.ReleaseOptions); if (debug.CompileErrors.Length > 0 || release.CompileErrors.Length > 0) { continue; } if (debug.RoslynException != null || release.RoslynException != null) { continue; } ProgramPairResults execResults = ProgramExecutor.RunPair(new ProgramPair(debug.Assembly, release.Assembly)); if (execResults.DebugResult.Checksum != execResults.ReleaseResult.Checksum || execResults.DebugResult.ExceptionType != execResults.ReleaseResult.ExceptionType) { // Execute the reduced form to see if we get interesting behavior. // Otherwise we may need to rereduce it. if (!IsReducedVersionInteresting(execResults, contents)) { toRereduce.Add(seed); Console.WriteLine("Marking {0} for rereduction", Path.GetFileName(files[i])); } continue; } Console.WriteLine("Removing {0}", Path.GetFileName(files[i])); File.Delete(files[i]); } const string rereduceFile = "Rereduce_required.txt"; File.WriteAllText(rereduceFile, string.Join(Environment.NewLine, toRereduce)); Console.WriteLine("Wrote {0} seeds to be rereduced to '{1}'", toRereduce.Count, Path.GetFullPath(rereduceFile)); }
private ProgramPairResults CompileAndRun(CompilationUnitSyntax prog) { CompileResult progDebug = Compiler.Compile(prog, Compiler.DebugOptions); CompileResult progRelease = Compiler.Compile(prog, Compiler.ReleaseOptions); if (progDebug.Assembly == null || progRelease.Assembly == null) { return(null); } ProgramPair pair = new ProgramPair(progDebug.Assembly, progRelease.Assembly); ProgramPairResults results = ProgramExecutor.RunPair(pair); return(results); }
public CompilationUnitSyntax Reduce() { CompileResult debug = Compiler.Compile(Original, Compiler.DebugOptions); CompileResult release = Compiler.Compile(Original, Compiler.ReleaseOptions); Func <CompilationUnitSyntax, bool> isInteresting; if (debug.RoslynException != null || release.RoslynException != null) { CSharpCompilationOptions opts = debug.RoslynException != null ? Compiler.DebugOptions : Compiler.ReleaseOptions; isInteresting = program => Compiler.Compile(program, opts).RoslynException != null; } else if (debug.CompileErrors.Length > 0 || release.CompileErrors.Length > 0) { CSharpCompilationOptions opts = debug.CompileErrors.Length > 0 ? Compiler.DebugOptions : Compiler.ReleaseOptions; isInteresting = program => { CompileResult recompiled = Compiler.Compile(program, opts); if (recompiled.CompileErrors.Length <= 0) { return(false); } return(recompiled.CompileErrors[0].Id == (debug.CompileErrors.Length > 0 ? debug.CompileErrors[0] : release.CompileErrors[0]).Id); }; } else { var origPair = new ProgramPair(debug.Assembly, release.Assembly); ProgramPairResults origResults = ProgramExecutor.RunPair(origPair); if (origResults.DebugResult.Checksum == origResults.ReleaseResult.Checksum && origResults.DebugResult.ExceptionType == origResults.ReleaseResult.ExceptionType) { throw new InvalidOperationException("Program has no errors"); } isInteresting = prog => { ProgramPairResults results = CompileAndRun(prog); if (results == null) { return(false); } // Do exceptions first because they will almost always change checksum if (origResults.DebugResult.ExceptionType != origResults.ReleaseResult.ExceptionType) { // Must throw same exceptions in debug and release to be bad. return(results.DebugResult.ExceptionType == origResults.DebugResult.ExceptionType && results.ReleaseResult.ExceptionType == origResults.ReleaseResult.ExceptionType); } else { if (results.DebugResult.ExceptionType != origResults.DebugResult.ExceptionType || results.ReleaseResult.ExceptionType != origResults.ReleaseResult.ExceptionType) { return(false); } } return(results.DebugResult.Checksum != results.ReleaseResult.Checksum); }; } // Save original comments as simplification may remove it by removing an unnecessary type. SyntaxTriviaList originalTrivia = Original.GetLeadingTrivia(); Reduced = Original.WithLeadingTrivia(); Reduced = CoarseSimplify(Reduced, isInteresting); List <SyntaxNode> simplifiedNodes = new List <SyntaxNode>(); bool first = true; bool any = true; while (any) { any = false; while (true) { if (!SimplifyOne("Statements", Reduced.DescendantNodes().Where(n => n is StatementSyntax).ToList())) { break; } any = true; } while (true) { if (!SimplifyOne("Expressions", Reduced.DescendantNodes().Where(n => n is ExpressionSyntax).ToList())) { break; } any = true; } while (true) { List <SyntaxNode> members = Reduced.DescendantNodesAndSelf().Where(n => n is MemberDeclarationSyntax || n is CompilationUnitSyntax).ToList(); if (!SimplifyOne("Members", members)) { break; } any = true; } first = false; bool SimplifyOne(string name, List <SyntaxNode> list) { for (int i = 0; i < 2000; i++) { Console.Title = $"Simplifying {name}. Iter: {i}"; SyntaxNode node = list[_rng.Next(list.Count)]; // Do not optimize checksum args and call itself. // We still want to remove these statements, however, so we focus on the expression only. InvocationExpressionSyntax invocParent = node.FirstAncestorOrSelf <InvocationExpressionSyntax>(); if (invocParent != null && IsChecksumCall(invocParent)) { continue; } // If we fail at creating a new bad example, then we want to be able to restore the state // so the reducer will not blow these up unnecessarily. int origVarCounter = _varCounter; simplifiedNodes.Clear(); SimplifyNode(node, !first, simplifiedNodes); foreach (SyntaxNode candidateNode in simplifiedNodes) { CompilationUnitSyntax candidate = Reduced.ReplaceNode(node, candidateNode); if (isInteresting(candidate)) { Reduced = candidate; return(true); } } _varCounter = origVarCounter; } return(false); } } List <SyntaxTrivia> outputComments = GetOutputComments(debug, release).Select(Comment).ToList(); SimplifyRuntime(); double oldSizeKiB = Original.NormalizeWhitespace().ToString().Length / 1024.0; double newSizeKiB = Reduced.NormalizeWhitespace().ToString().Length / 1024.0; SyntaxTriviaList newTrivia = originalTrivia.Add(Comment(FormattableString.Invariant($"// Reduced from {oldSizeKiB:F1} KiB to {newSizeKiB:F1} KiB"))) .AddRange(outputComments); Reduced = Reduced.WithLeadingTrivia(newTrivia); return(Reduced); }