Handbook
Glossary
annotate-node ( node -- )
Vocabulary
compiler
.
tree
.
propagation
.
nodes
Inputs
node
a
node
Outputs
None
Word description
Initializes the info slot for SSA tree nodes that have it.
Definition
IN:
compiler.tree.propagation.nodes
GENERIC:
annotate-node
( node -- )
Methods
USING:
accessors
compiler.tree
compiler.tree.propagation.nodes
kernel
sequences
;
M:
#call-recursive
annotate-node
dup
[
in-d>>
]
[
out-d>>
]
bi
append
(annotate-node)
;
USING:
accessors
compiler.tree
compiler.tree.propagation.nodes
kernel
sequences
;
M:
#call
annotate-node
dup
[
in-d>>
]
[
out-d>>
]
bi
append
(annotate-node)
;
USING:
accessors
compiler.tree
compiler.tree.propagation.nodes
kernel
;
M:
#enter-recursive
annotate-node
dup
out-d>>
(annotate-node)
;
USING:
accessors
compiler.tree
compiler.tree.propagation.nodes
kernel
;
M:
#return-recursive
annotate-node
dup
in-d>>
(annotate-node)
;
USING:
accessors
compiler.tree
compiler.tree.propagation.nodes
kernel
;
M:
#return
annotate-node
dup
in-d>>
(annotate-node)
;
USING:
compiler.tree
compiler.tree.propagation.nodes
kernel
;
M:
node
annotate-node
drop
;