# HG changeset patch # User Arun Giridhar # Date 1696724506 14400 # Node ID d079a658d9d9bb59852921204b8f60b897328435 # Parent 315dbb07cdde57d85edf1948bb12868156ecfc04# Parent dd9b6f2ae43bb286c4b46b555545d10586f89f46 maint: Merge away extra head diff -r 315dbb07cdde -r d079a658d9d9 doc/interpreter/vectorize.txi --- a/doc/interpreter/vectorize.txi Sat Oct 07 16:24:02 2023 +0200 +++ b/doc/interpreter/vectorize.txi Sat Oct 07 20:21:46 2023 -0400 @@ -667,8 +667,12 @@ @DOCSTRING(__vm_clear_cache__) +@DOCSTRING(__vm_is_compiled__) + @DOCSTRING(__vm_is_executing__) +@DOCSTRING(__vm_print_bytecode__) + @DOCSTRING(__vm_print_trace__) @DOCSTRING(__vm_profile__) diff -r 315dbb07cdde -r d079a658d9d9 scripts/help/vm.m --- a/scripts/help/vm.m Sat Oct 07 16:24:02 2023 +0200 +++ b/scripts/help/vm.m Sat Oct 07 20:21:46 2023 -0400 @@ -30,20 +30,26 @@ ## For more information on each command and available options use ## @code{help CMD}. ## -## The VM commands available in Octave are +## The VM commands available in Octave are: ## ## @table @code ## @item __vm_enable__ -## The main VM user function. Switch on or off the VM as a whole. +## Main VM user function. Switch on or off the VM as a whole. ## ## @item __vm_compile__ -## Another VM user function. Compiles a specified function to bytecode. +## VM user function. Compile a specified function to bytecode. ## ## @item __vm_clear_cache__ -## Internal function. Clears the cache of already-processed code. +## Internal function. Clear the cache of already-processed code. +## +## @item __vm_is_compiled__ +## VM internal function. Return true if the specified function is compiled. ## ## @item __vm_is_executing__ -## Internal function. Returns true if the VM is executing. +## Internal function. Return true if the VM is executing. +## +## @item __vm_print_bytecode__ +## Internal function. Print bytecode of specified function. ## ## @item __vm_print_trace__ ## Internal function. Print a debug trace from the VM. @@ -56,7 +62,8 @@ ## @noindent ## ## @seealso{__vm_enable__, __vm_compile__, __vm_clear_cache__, -## __vm_is_executing__, __vm_print_trace__, __vm_profile__} +## __vm_is_compiled__, __vm_is_executing__, __vm_print_bytecode__, +## __vm_print_trace__, __vm_profile__} ## @end deftypefn function vm ()