to_ssa: Convert Blocks to Static Single-Assignment Form

Description Usage Arguments Details Value

View source: R/to_ssa.R

Description

This function converts code blocks to static single-assignment form.

Usage

1
2
to_ssa(node, cfg = compute_cfg(node), dom_t = dominator_tree(cfg, 2),
  in_place = FALSE, ...)

Arguments

node

A Function or BlocksList object.

cfg

(igraph) The control flow graph for the code.

dom_t

(igraph) The dominator tree for the code.

in_place

(logical) Modify the node in-place? If FALSE, the node is copied.

...

Additional arguments to methods.

Details

This function modifies the blocks in place.

Value

NULL, because this function modifies the blocks in place.


nick-ulle/rstatic documentation built on Oct. 18, 2019, 4:38 a.m.