| Class | Description |
|---|---|
| Relooper |
Implementation of the Relooper Algorithm as described in Alon Zakai's Emscripten Paper.
|
| Relooper.Block | |
| Relooper.IFThenElseBlock |
Block for high level if/then/else language constructs.
|
| Relooper.LoopBlock |
Loop: A block that represents a basic loop, comprised of
two internal sub-blocks:
Inner: A block that will appear inside the loop, i.e.,
when execution reaches the end of that block, flow
will return to the beginning.
|
| Relooper.MultipleBlock |
Multiple: A block that represents a divergence into several possible branches,
that eventually rejoin.
|
| Relooper.SimpleBlock |
Simple block: A block with
One Internal label, and
a Next block, which the internal label branches to.
|
| Relooper.TryBlock |
A Try block guards its inner block for exceptions.
|
| Relooper.TryBlock.CatchBlock |
Copyright © 2020 Systemprogrammierung Mirko Sertic. All rights reserved.