Handbook
Glossary
gc-op-string ( op -- string )
Vocabulary
tools
.
memory
.
private
Inputs
op
an
object
Outputs
string
an
object
Definition
USING:
combinators
vm
;
IN:
tools.memory.private
:
gc-op-string
( op -- string )
{
{
COLLECT-NURSERY-OP
[
"Copying from nursery"
]
}
{
COLLECT-AGING-OP
[
"Copying from aging"
]
}
{
COLLECT-TO-TENURED-OP
[
"Copying to tenured"
]
}
{
COLLECT-FULL-OP
[
"Mark and sweep"
]
}
{
COLLECT-COMPACT-OP
[
"Mark and compact"
]
}
{
COLLECT-GROWING-DATA-HEAP-OP
[
"Grow heap"
]
}
}
case
;