From 319a03c7c7ad0fc2a27bf50a7e43beadc07de49c Mon Sep 17 00:00:00 2001 From: Kunal Pathak Date: Thu, 10 Sep 2020 10:16:14 -0700 Subject: [PATCH] Rename protononjit.dll to lrjit_win_arm64_x64.dll --- doc/diffs.md | 4 ++-- src/jit-dasm-pmi/jit-dasm-pmi.cs | 2 +- src/jit-dasm/jit-dasm.cs | 2 +- src/jit-diff/jit-diff.cs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/diffs.md b/doc/diffs.md index 15ccb953..a2b7a026 100644 --- a/doc/diffs.md +++ b/doc/diffs.md @@ -193,7 +193,7 @@ The "jit-diff diff" command has this help message: --diff_root Path to root of diff dotnet/coreclr repo. --arch Architecture to diff (x86, x64). --build Build flavor to diff (Checked, Debug). - --altjit If set, the name of the altjit to use (e.g., protononjit.dll). + --altjit If set, the name of the altjit to use (e.g., clrjit_win_arm64_x64.dll). --pmi Generate diffs via jitting instead of running crossgen --assembly Look at diffs for methods in the specified assembly @@ -505,7 +505,7 @@ Sample help command line: ... --altjit If set, the name of the altjit to use - (e.g., protononjit.dll). + (e.g., clrjit_win_arm64_x64.dll). -c, --crossgen The crossgen or crossgen2 compiler exe. -j, --jit The full path to the jit library. -o, --output The output path. diff --git a/src/jit-dasm-pmi/jit-dasm-pmi.cs b/src/jit-dasm-pmi/jit-dasm-pmi.cs index e0fd3fd6..4cce9853 100644 --- a/src/jit-dasm-pmi/jit-dasm-pmi.cs +++ b/src/jit-dasm-pmi/jit-dasm-pmi.cs @@ -52,7 +52,7 @@ public Config(string[] args) { _syntaxResult = ArgumentSyntax.Parse(args, syntax => { - syntax.DefineOption("altjit", ref _altjit, "If set, the name of the altjit to use (e.g., protononjit.dll)."); + syntax.DefineOption("altjit", ref _altjit, "If set, the name of the altjit to use (e.g., clrjit_win_arm64_x64.dll)."); syntax.DefineOption("c|corerun", ref _corerunExe, "The corerun compiler exe."); syntax.DefineOption("j|jit", ref _jitPath, "The full path to the jit library."); syntax.DefineOption("o|output", ref _rootPath, "The output path."); diff --git a/src/jit-dasm/jit-dasm.cs b/src/jit-dasm/jit-dasm.cs index d33a9d13..83c5b705 100644 --- a/src/jit-dasm/jit-dasm.cs +++ b/src/jit-dasm/jit-dasm.cs @@ -62,7 +62,7 @@ public Config(string[] args) { _syntaxResult = ArgumentSyntax.Parse(args, syntax => { - syntax.DefineOption("altjit", ref _altjit, "If set, the name of the altjit to use (e.g., protononjit.dll)."); + syntax.DefineOption("altjit", ref _altjit, "If set, the name of the altjit to use (e.g., clrjit_win_arm64_x64.dll)."); syntax.DefineOption("c|crossgen", ref _crossgenExe, "The crossgen or crossgen2 compiler exe."); syntax.DefineOption("j|jit", ref _jitPath, "The full path to the jit library."); syntax.DefineOption("o|output", ref _rootPath, "The output path."); diff --git a/src/jit-diff/jit-diff.cs b/src/jit-diff/jit-diff.cs index 080d83cd..e6caa94d 100755 --- a/src/jit-diff/jit-diff.cs +++ b/src/jit-diff/jit-diff.cs @@ -190,7 +190,7 @@ public Config(string[] args) syntax.DefineOption("diff_root", ref _diffRoot, "Path to root of diff dotnet/runtime repo."); syntax.DefineOption("arch", ref _arch, "Architecture to diff (x86, x64)."); syntax.DefineOption("build", ref _build, "Build flavor to diff (Checked, Debug)."); - syntax.DefineOption("altjit", ref _altjit, "If set, the name of the altjit to use (e.g., protononjit.dll)."); + syntax.DefineOption("altjit", ref _altjit, "If set, the name of the altjit to use (e.g., clrjit_win_arm64_x64.dll)."); var pmiOption = syntax.DefineOption("pmi", ref _pmi, "Run asm diffs via pmi."); syntax.DefineOption("cctors", ref _cctors, "With --pmi, jit and run cctors before jitting other methods"); syntax.DefineOptionList("assembly", ref _assemblyList, "Run asm diffs on a given set of assemblies. An individual item can be an assembly or a directory tree containing assemblies.");