class ANFSemantics[Abs, Addr, Time] extends Semantics[ANFExp, Abs, Addr, Time]
Semantics for ANF Scheme (abstract grammar defined in ANF.scala)
- Alphabetic
- By Inheritance
- ANFSemantics
- Semantics
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ANFSemantics(primitives: Primitives[Addr, Abs])(implicit arg0: IsSchemeLattice[Abs], arg1: Address[Addr], arg2: Timestamp[Time])
Type Members
-
trait
ANFFrame extends Frame
ANF Scheme only has three types of continuation frames: halt, let, and letrec
- type Actions = Set[Action[ANFExp, Abs, Addr]]
- case class FrameLet(v: Identifier, body: ANFExp, env: Environment[Addr]) extends ANFFrame with Product with Serializable
- case class FrameLetrec(v: Identifier, a: Addr, body: ANFExp, env: Environment[Addr]) extends ANFFrame with Product with Serializable
Value Members
-
implicit
def
actionToSet(action: Action[ANFExp, Abs, Addr]): Set[Action[ANFExp, Abs, Addr]]
- Definition Classes
- Semantics
-
def
atomicEval(e: ANFAtomicExp, env: Environment[Addr], store: Store[Addr, Abs]): MayFail[(Abs, Set[Effect[Addr]])]
Performs evaluation of an atomic expression, returning either an error or the produced value
-
def
initialBindings: List[(String, Addr, Abs)]
Defines the elements in the initial environment/store
Defines the elements in the initial environment/store
- Definition Classes
- ANFSemantics → Semantics
-
def
initialEnv: Iterable[(String, Addr)]
- Definition Classes
- Semantics
-
def
initialStore: Iterable[(Addr, Abs)]
- Definition Classes
- Semantics
-
implicit
def
mfActionToActions(mf: MayFail[Action[ANFExp, Abs, Addr]]): Set[Action[ANFExp, Abs, Addr]]
- Definition Classes
- Semantics
-
implicit
def
mfToActions(mf: MayFail[Set[Action[ANFExp, Abs, Addr]]]): Set[Action[ANFExp, Abs, Addr]]
- Definition Classes
- Semantics
-
def
parse(program: String): ANFExp
Defines how to parse a program
Defines how to parse a program
- Definition Classes
- ANFSemantics → Semantics
-
def
stepEval(e: ANFExp, env: Environment[Addr], store: Store[Addr, Abs], t: Time): Set[Action[ANFExp, Abs, Addr]]
Defines what actions should be taken when an expression e needs to be evaluated, in environment env with store store
Defines what actions should be taken when an expression e needs to be evaluated, in environment env with store store
- Definition Classes
- ANFSemantics → Semantics
-
def
stepKont(v: Abs, frame: Frame, store: Store[Addr, Abs], t: Time): Set[Action[ANFExp, Abs, Addr]]
Defines what actions should be taken when a value v has been reached, and the topmost frame is frame
Defines what actions should be taken when a value v has been reached, and the topmost frame is frame
- Definition Classes
- ANFSemantics → Semantics
-
def
stepReceive(self: Any, mname: String, margsv: List[Abs], d: ANFExp, env: Environment[Addr], store: Store[Addr, Abs], t: Time): Set[Action[ANFExp, Abs, Addr]]
WIP
WIP
- Definition Classes
- Semantics
-
object
Action extends ActionHelpers[Exp, Abs, Addr]
- Definition Classes
- Semantics