6 Dumping Contents of an Assembly

6.1 Dump Command Syntax

cminor dump [dump-options] ASSEMBLY.cminora [output-file]

Dumps information in ASSEMBLY.cminor to standard output, or to the given file.

6.2 Dumping All

To dump the whole contents of assembly hello.cminora, give the dump command without options, or give the following command:

cminor dump --all assembly/debug/hello.cminora

To dump just the header of assembly hello.cminora, give the following command:

cminor dump --header assembly/debug/hello.cminora

6.4 Dumping the Constant Pool

To dump just the constant pool of assembly hello.cminora, give the following command:

cminor dump --constants assembly/debug/hello.cminora

6.5 Dumping the Function Table

To dump just the function table of assembly hello.cminora, give the following command:

cminor dump --functions assembly/debug/hello.cminora

6.6 Dumping the Symbol Table

To dump just the hierarchical symbol table of assembly hello.cminora, give the following command:

cminor dump --symbols assembly/debug/hello.cminora

6.7 Dumping the Assembly Mappings

To dump just the mappings of assembly hello.cminora, give the following command:

cminor dump --mappings assembly/debug/hello.cminora