parrotcode: Functions for manipulating vtables | |
Contents | Perl Modules |
Parrot::Vtable - Functions for manipulating vtables
use Parrot::Vtable;
Parrot::Vtable
provides a collection of functions for manipulating PMC vtables. It is used by build_tools/jit2h.pl, build_tools/pmc2c.pl, build_tools/vtable_h.pl, classes/genclass.pl, and classes/null.pl.
The following functions are exported:
parse_vtable($file)
[ return_type method_name parameters section ]
$file
. If $file
is unspecified it defaults to vtable.tbl.vtbl_defs($vtable)
typedef
definitions for the elements in the referenced vtable array.vtbl_struct($vtable)
struct
definitions for the elements in the referenced vtable array.vtbl_macros($vtable)
#define
definitions for the elements in the referenced vtable array.1;
|