You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/articles/features/disassembler.md
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,13 @@ Can be enabled by using `[DisassemblyDiagnoser]` or command line args: `-d` or `
9
9
10
10
The configuration options available from code level are:
11
11
12
-
*`printIL`: IL will be printed. False by default.
13
-
*`printAsm`: ASM will be printed. True by default.
14
-
*`printSource`: C# source code will be printed. False by default.
15
-
*`printPrologAndEpilog`: ASM for prolog and epilog will be printed. False by default.
16
-
*`recursiveDepth`: Includes called methods to given level. 1 by default, indexed from 1. To print just benchmark set to 0. This option is also available from the console arguments level `--disasmDepth`.
12
+
*`maxDepth`: Includes called methods to given level. 1 by default, indexed from 1. To print just the benchmark set it to 0. This option is also available from the console arguments level `--disasmDepth`.
13
+
*`printSource`: C#|F#|VB source code will be printed. False by default.
14
+
*`printInstructionAddresses`: Print instruction addresses. False by default.
15
+
*`exportGithubMarkdown`: Exports to GitHub markdown. True by default.
16
+
*`exportHtml`: Exports to HTML with clickable links. False by default.
17
+
*`exportCombinedDisassemblyReport`: Exports all benchmarks to a single HTML report. Makes it easy to compare different runtimes or methods (each becomes a column in HTML table).
0 commit comments