public void PopulatePerformance(PerformanceMetrics p) { int index = 0; foreach (float metric in p.Metrics) { cx.Emit(Tuples.compilation_time(this, -1, index++, metric)); } cx.Emit(Tuples.compilation_finished(this, (float)p.Total.Cpu.TotalSeconds, (float)p.Total.Elapsed.TotalSeconds)); }
public void PopulatePerformance(PerformanceMetrics p) { var trapFile = cx.TrapWriter.Writer; var index = 0; foreach (var metric in p.Metrics) { trapFile.compilation_time(this, -1, index++, metric); } trapFile.compilation_finished(this, (float)p.Total.Cpu.TotalSeconds, (float)p.Total.Elapsed.TotalSeconds); }
public void LogPerformance(Entities.PerformanceMetrics p) => compilationEntity.PopulatePerformance(p);
/// <summary> /// Command-line driver for the extractor. /// </summary> /// /// <remarks> /// The extractor can be invoked in one of two ways: Either as an "analyser" passed in via the /a /// option to csc.exe, or as a stand-alone executable. In this case, we need to faithfully /// drive Roslyn in the way that csc.exe would. /// </remarks> /// /// <param name="args">Command line arguments as passed to csc.exe</param> /// <returns><see cref="ExitCode"/></returns> public static ExitCode Run(string[] args) { var stopwatch = new Stopwatch(); stopwatch.Start(); var commandLineArguments = Options.CreateWithEnvironment(args); var fileLogger = new FileLogger(commandLineArguments.Verbosity, GetCSharpLogPath()); using var logger = commandLineArguments.Console ? new CombinedLogger(new ConsoleLogger(commandLineArguments.Verbosity), fileLogger) : (ILogger)fileLogger; if (Environment.GetEnvironmentVariable("SEMMLE_CLRTRACER") == "1" && !commandLineArguments.ClrTracer) { logger.Log(Severity.Info, "Skipping extraction since already extracted from the CLR tracer"); return(ExitCode.Ok); } var canonicalPathCache = CanonicalPathCache.Create(logger, 1000); var pathTransformer = new PathTransformer(canonicalPathCache); using var analyser = new Analyser(new LogProgressMonitor(logger), logger, commandLineArguments.AssemblySensitiveTrap, pathTransformer); using var references = new BlockingCollection <MetadataReference>(); try { var compilerVersion = new CompilerVersion(commandLineArguments); if (compilerVersion.SkipExtraction) { logger.Log(Severity.Warning, " Unrecognized compiler '{0}' because {1}", compilerVersion.SpecifiedCompiler, compilerVersion.SkipReason); return(ExitCode.Ok); } var cwd = Directory.GetCurrentDirectory(); var compilerArguments = CSharpCommandLineParser.Default.Parse( compilerVersion.ArgsWithResponse, cwd, compilerVersion.FrameworkPath, compilerVersion.AdditionalReferenceDirectories ); if (compilerArguments == null) { var sb = new StringBuilder(); sb.Append(" Failed to parse command line: ").AppendList(" ", args); logger.Log(Severity.Error, sb.ToString()); ++analyser.CompilationErrors; return(ExitCode.Failed); } if (!analyser.BeginInitialize(compilerVersion.ArgsWithResponse)) { logger.Log(Severity.Info, "Skipping extraction since files have already been extracted"); return(ExitCode.Ok); } var referenceTasks = ResolveReferences(compilerArguments, analyser, canonicalPathCache, references); var syntaxTrees = new List <SyntaxTree>(); var syntaxTreeTasks = ReadSyntaxTrees( compilerArguments.SourceFiles. Select(src => canonicalPathCache.GetCanonicalPath(src.Path)), analyser, compilerArguments.ParseOptions, compilerArguments.Encoding, syntaxTrees); var sw1 = new Stopwatch(); sw1.Start(); Parallel.Invoke( new ParallelOptions { MaxDegreeOfParallelism = commandLineArguments.Threads }, referenceTasks.Interleave(syntaxTreeTasks).ToArray()); if (syntaxTrees.Count == 0) { logger.Log(Severity.Error, " No source files"); ++analyser.CompilationErrors; return(ExitCode.Failed); } // csc.exe (CSharpCompiler.cs) also provides CompilationOptions // .WithMetadataReferenceResolver(), // .WithXmlReferenceResolver() and // .WithSourceReferenceResolver(). // These would be needed if we hadn't explicitly provided the source/references // already. var compilation = CSharpCompilation.Create( compilerArguments.CompilationName, syntaxTrees, references, compilerArguments.CompilationOptions. WithAssemblyIdentityComparer(DesktopAssemblyIdentityComparer.Default). WithStrongNameProvider(new DesktopStrongNameProvider(compilerArguments.KeyFileSearchPaths)) ); analyser.EndInitialize(compilerArguments, commandLineArguments, compilation); analyser.AnalyseCompilation(cwd, args); analyser.AnalyseReferences(); foreach (var tree in compilation.SyntaxTrees) { analyser.AnalyseTree(tree); } var currentProcess = Process.GetCurrentProcess(); var cpuTime1 = currentProcess.TotalProcessorTime; var userTime1 = currentProcess.UserProcessorTime; sw1.Stop(); logger.Log(Severity.Info, " Models constructed in {0}", sw1.Elapsed); var sw2 = new Stopwatch(); sw2.Start(); analyser.PerformExtraction(commandLineArguments.Threads); sw2.Stop(); var cpuTime2 = currentProcess.TotalProcessorTime; var userTime2 = currentProcess.UserProcessorTime; var performance = new Entities.PerformanceMetrics() { Frontend = new Entities.Timings() { Elapsed = sw1.Elapsed, Cpu = cpuTime1, User = userTime1 }, Extractor = new Entities.Timings() { Elapsed = sw2.Elapsed, Cpu = cpuTime2 - cpuTime1, User = userTime2 - userTime1 }, Total = new Entities.Timings() { Elapsed = stopwatch.Elapsed, Cpu = cpuTime2, User = userTime2 }, PeakWorkingSet = currentProcess.PeakWorkingSet64 }; analyser.LogPerformance(performance); logger.Log(Severity.Info, " Extraction took {0}", sw2.Elapsed); return(analyser.TotalErrors == 0 ? ExitCode.Ok : ExitCode.Errors); } catch (Exception ex) // lgtm[cs/catch-of-all-exceptions] { logger.Log(Severity.Error, " Unhandled exception: {0}", ex); return(ExitCode.Errors); } }
private static ExitCode Analyse(Stopwatch stopwatch, Analyser analyser, CommonOptions options, Func <BlockingCollection <MetadataReference>, IEnumerable <Action> > getResolvedReferenceTasks, Func <Analyser, List <SyntaxTree>, IEnumerable <Action> > getSyntaxTreeTasks, Func <IEnumerable <SyntaxTree>, IEnumerable <MetadataReference>, CSharpCompilation> getCompilation, Action <CSharpCompilation, CommonOptions> initializeAnalyser, Action analyseCompilation, Action <Entities.PerformanceMetrics> logPerformance, Action postProcess) { using var references = new BlockingCollection <MetadataReference>(); var referenceTasks = getResolvedReferenceTasks(references); var syntaxTrees = new List <SyntaxTree>(); var syntaxTreeTasks = getSyntaxTreeTasks(analyser, syntaxTrees); var sw = new Stopwatch(); sw.Start(); Parallel.Invoke( new ParallelOptions { MaxDegreeOfParallelism = options.Threads }, referenceTasks.Interleave(syntaxTreeTasks).ToArray()); if (syntaxTrees.Count == 0) { analyser.Logger.Log(Severity.Error, " No source files"); ++analyser.CompilationErrors; if (analyser is TracingAnalyser) { return(ExitCode.Failed); } } var compilation = getCompilation(syntaxTrees, references); initializeAnalyser(compilation, options); analyseCompilation(); analyser.AnalyseReferences(); foreach (var tree in compilation.SyntaxTrees) { analyser.AnalyseTree(tree); } sw.Stop(); analyser.Logger.Log(Severity.Info, " Models constructed in {0}", sw.Elapsed); var elapsed = sw.Elapsed; var currentProcess = Process.GetCurrentProcess(); var cpuTime1 = currentProcess.TotalProcessorTime; var userTime1 = currentProcess.UserProcessorTime; sw.Restart(); analyser.PerformExtraction(options.Threads); sw.Stop(); var cpuTime2 = currentProcess.TotalProcessorTime; var userTime2 = currentProcess.UserProcessorTime; var performance = new Entities.PerformanceMetrics() { Frontend = new Entities.Timings() { Elapsed = elapsed, Cpu = cpuTime1, User = userTime1 }, Extractor = new Entities.Timings() { Elapsed = sw.Elapsed, Cpu = cpuTime2 - cpuTime1, User = userTime2 - userTime1 }, Total = new Entities.Timings() { Elapsed = stopwatch.Elapsed, Cpu = cpuTime2, User = userTime2 }, PeakWorkingSet = currentProcess.PeakWorkingSet64 }; logPerformance(performance); analyser.Logger.Log(Severity.Info, " Extraction took {0}", sw.Elapsed); postProcess(); return(analyser.TotalErrors == 0 ? ExitCode.Ok : ExitCode.Errors); }