word>gc-maps ( word -- gc-maps )


Vocabulary
tools.image-analyzer.gc-info

Inputs
worda word


Outputs
gc-mapsan assoc


Word description
Main word of the vocab. Decodes the gc maps for a word into an assoc with the following format:
Each key is the return addess of a gc callsite (as an offset relative to the blocks entry point).
Each value is a two-tuple where:
The first element contains the scrub patterns for the gc roots.
The second element is a sequence of derived roots for the callsite.


Examples
USING: effects prettyprint ; \ <effect> word>gc-maps .
{ { 155 { ?{ f t t t t } { } } } }


Definition