Handbook
Glossary
invalid-allocation-temporary? ( object -- ? )
Vocabulary
compiler
.
cfg
.
register-allocation
.
verifier
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
invalid-allocation-temporary
class.
Definition
USING:
classes.tuple.private
kernel
slots.private
;
IN:
compiler.cfg.register-allocation.verifier
:
invalid-allocation-temporary?
( object -- ? )
dup
tuple?
[
layout-of
7
slot
\
invalid-allocation-temporary
eq?
]
[
drop
f
]
if
;