Go to the first, previous, next, last section, table of contents.


compiledFunctionDisassembly

Function: compiledFunctionDisassembly { cfn -> text }
file: job.t
package: muf
status: tentative

This function accepts a compiledFunction and returns a symbolic disassembly of the bytecodes in that function.

Note that the Muq bytecode instruction set is not frozen, and should not be depended on to be the same in future releases. You have been warned!

This is a low-level function intended for use by debuggers rather than for direct human use.

stack:
: x234 2 3.4 * ;
stack:
#'x234 compiledFunctionDisassembly ,
000:      33 02       GETi   2
002:      34 00       GETk   0
004:      0e          MUL    
005:      2e          RETURN 
stack:


Go to the first, previous, next, last section, table of contents.