All Projects β†’ kkokosa β†’ Tune

kkokosa / Tune

Licence: gpl-3.0
The Ultimate .NET Experiment

Projects that are alternatives of or similar to Tune

Kubectl Flame
Kubectl plugin for effortless profiling on kubernetes
Stars: ✭ 297 (-8.33%)
Mutual labels:  performance
Wipe Modules
πŸ—‘οΈ Easily remove the node_modules folder of non-active projects
Stars: ✭ 304 (-6.17%)
Mutual labels:  performance
Viperhtml
Isomorphic hyperHTML
Stars: ✭ 318 (-1.85%)
Mutual labels:  performance
Hint
πŸ’‘ A hinting engine for the web
Stars: ✭ 3,280 (+912.35%)
Mutual labels:  performance
Waterdrop
πŸ’§Waterdrop is a high performance micro service framework. Waterdrop comes from (The Three Body Problem).
Stars: ✭ 305 (-5.86%)
Mutual labels:  performance
Stringformatter
Zero-allocation string formatting for .NET.
Stars: ✭ 310 (-4.32%)
Mutual labels:  performance
Perfolizer
Performance analysis toolkit
Stars: ✭ 298 (-8.02%)
Mutual labels:  performance
Webapp Checklist
Technical details that a programmer of a web application should consider before making the site public.
Stars: ✭ 320 (-1.23%)
Mutual labels:  performance
Memoize State
The magic memoization for the State management. ✨🧠
Stars: ✭ 305 (-5.86%)
Mutual labels:  performance
Fperf
Framework of performance testing
Stars: ✭ 316 (-2.47%)
Mutual labels:  performance
Imageoptim Cli
Make optimisation of images part of your automated build process
Stars: ✭ 3,215 (+892.28%)
Mutual labels:  performance
Three Mesh Bvh
A BVH implementation to speed up raycasting against three.js meshes.
Stars: ✭ 302 (-6.79%)
Mutual labels:  performance
Performance
πŸ’ͺ Models' quality and performance metrics (R2, ICC, LOO, AIC, BF, ...)
Stars: ✭ 311 (-4.01%)
Mutual labels:  performance
React Native Performance
Monitor and measure React Native performance
Stars: ✭ 269 (-16.98%)
Mutual labels:  performance
Laravel S
LaravelS is an out-of-the-box adapter between Swoole and Laravel/Lumen.
Stars: ✭ 3,479 (+973.77%)
Mutual labels:  performance
Web Report Sdk
A complet sound web performance report plug-in.
Stars: ✭ 295 (-8.95%)
Mutual labels:  performance
Cpptrader
High performance components for building Trading Platform such as ultra fast matching engine, order book processor
Stars: ✭ 308 (-4.94%)
Mutual labels:  performance
React Shrine
"Shrine" Progressive Web App sample built with React
Stars: ✭ 322 (-0.62%)
Mutual labels:  performance
Sqlbench
sqlbench measures and compares the execution time of one or more SQL queries.
Stars: ✭ 319 (-1.54%)
Mutual labels:  performance
Async Techniques Python Course
Async Techniques and Examples in Python Course
Stars: ✭ 314 (-3.09%)
Mutual labels:  performance

Build Status

Tune

The Ultimate .NET Experiment

Example Tune screenshot

The Ultimate .NET Experiment (Tune) as its purpose is to learn .NET internals and performance tuning by experiments with C# code. The main way of working with this tool is as follows:

  • write a sample, valid C# script which contains at least one class with public method taking a single string parameter. It will be executed by hitting Run button. This script can contain as many additional methods and classes as you wish. Just remember that first public method from the first public class will be executed (with single parameter taken from the input box below the script). You may also choose whether you want to build in Debug or Release mode (note: currently it is only x64 bit compilation). There are three predefined examples under File menu.
  • after clicking Run button, the script will be compiled and executed. Additionally, it will be decompiled both to IL (Intermediate Language) and assembly code in the corresponding tabs.
  • all the time Tune is running (including time during script execution) a graph with GC data is being drawn. It shows information about generation sizes and GC occurrences (illustrated as vertical lines with the number below indicating which generation has been triggered).

Note: As it is currently in very early 0.3 version, it can be treated as Proof Of Concept with many, many features still missing. But it is usable enough to have some fun with it already.

Overall architecture

Tune is built from a few very interesting pieces, which will be probably much more clearer to show on the following diagram than to describe in words:

Tune architecture

As you can see, it is using parts of SharpDevelop (ICSharpCode) and Mono.Cecil libraries to decompile IL. To decompile into ASM it is using ClrMd to find method address location in the memory and then use SharpDisasm (which is a libudis86 C library port). It additionally uses dbghelp.dll to resolve native symbols. ETW data are being processed by the TraceEvent library.

Building

Requirements:

  • Visual Studio 2017

Additional info and examples:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].