sbomer / jitutils

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dotnet JIT code gen utilities - jitutils

This repo holds a collection of utilities used by RyuJIT developers to automate tasks when working on CoreCLR.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Summary

Current tools include:

  1. Assembly diffs: jit-diff, jit-dasm, jit-analyze.
  2. CI jobs information: cijobs.
  3. JIT source code formatting: jit-format.

Getting started

  1. Clone the jitutils repo:
    git clone https://github.com/dotnet/jitutils
  1. Install the .NET Core SDK (including the dotnet command-line interface, or CLI) from here.

  2. Build the tools:

    cd jitutils
    bootstrap.cmd

(on non-Windows, run bootstrap.sh. NOTE: On Mac, you need to first use ulimit -n 2048 or the dotnet restore part of the build will fail.)

  1. Optionally, add the built tools directory to your path, e.g.:
    set PATH=%PATH%;<root>\jitutils\bin

About

License:MIT License


Languages

Language:C# 91.2%Language:Shell 4.6%Language:Batchfile 3.4%Language:C++ 0.8%