Skip to content

Commit bd1c934

Browse files
Updated Disassembler settings (#1463)
1 parent 9a34695 commit bd1c934

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

docs/articles/features/disassembler.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ Can be enabled by using `[DisassemblyDiagnoser]` or command line args: `-d` or `
99

1010
The configuration options available from code level are:
1111

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).
18+
* `exportDiff`: Exports a diff. False by default.
1719

1820
### Requirements
1921

0 commit comments

Comments
 (0)