Packages

  • package root
    Definition Classes
    root
  • class BaseSchemeSemantics[V, Addr, Time] extends Semantics[SchemeExp, V, Addr, Time]

    Basic Scheme semantics, without any optimization

    Basic Scheme semantics, without any optimization

    Definition Classes
    root
c

BaseSchemeSemantics

class BaseSchemeSemantics[V, Addr, Time] extends Semantics[SchemeExp, V, Addr, Time]

Basic Scheme semantics, without any optimization

Linear Supertypes
Semantics[SchemeExp, V, Addr, Time], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BaseSchemeSemantics
  2. Semantics
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BaseSchemeSemantics(primitives: Primitives[Addr, V])(implicit arg0: IsSchemeLattice[V], arg1: Address[Addr], arg2: Timestamp[Time])

Type Members

  1. type Actions = Set[Action[SchemeExp, V, Addr]]
  2. type Env = Environment[Addr]
  3. case class FrameAnd(rest: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  4. case class FrameBegin(rest: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  5. case class FrameCase(clauses: List[(List[SchemeValue], List[SchemeExp])], default: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  6. case class FrameCond(cons: List[SchemeExp], clauses: List[(SchemeExp, List[SchemeExp])], env: Env) extends SchemeFrame with Product with Serializable
  7. case class FrameDefine(variable: Identifier, env: Env) extends SchemeFrame with Product with Serializable
  8. case class FrameDoBody(toeval: List[SchemeExp], vars: List[(Identifier, V, Option[SchemeExp])], test: SchemeExp, finals: List[SchemeExp], commands: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  9. case class FrameDoInit(vars: List[(Identifier, V, Option[SchemeExp])], variable: Identifier, step: Option[SchemeExp], toeval: List[(Identifier, SchemeExp, Option[SchemeExp])], test: SchemeExp, finals: List[SchemeExp], commands: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  10. case class FrameDoStep(vars: List[(Identifier, V, Option[SchemeExp])], variable: Identifier, step: Option[SchemeExp], toeval: List[(Identifier, V, Option[SchemeExp])], test: SchemeExp, finals: List[SchemeExp], commands: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  11. case class FrameDoTest(vars: List[(Identifier, V, Option[SchemeExp])], test: SchemeExp, finals: List[SchemeExp], commands: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  12. case class FrameFuncallOperands(f: V, fexp: SchemeExp, cur: SchemeExp, args: List[(SchemeExp, V)], toeval: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  13. case class FrameFuncallOperator(fexp: SchemeExp, args: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  14. case class FrameIf(cons: SchemeExp, alt: SchemeExp, env: Env) extends SchemeFrame with Product with Serializable
  15. case class FrameLet(variable: Identifier, bindings: List[(Identifier, V)], toeval: List[(Identifier, SchemeExp)], body: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  16. case class FrameLetStar(variable: Identifier, bindings: List[(Identifier, SchemeExp)], body: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  17. case class FrameLetrec(addr: Addr, bindings: List[(Addr, SchemeExp)], body: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  18. case class FrameOr(rest: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable
  19. case class FrameSet(variable: Identifier, env: Env) extends SchemeFrame with Product with Serializable
  20. trait SchemeFrame extends Frame
  21. type Sto = Store[Addr, V]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from BaseSchemeSemantics[V, Addr, Time] to any2stringadd[BaseSchemeSemantics[V, Addr, Time]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BaseSchemeSemantics[V, Addr, Time], B)
    Implicit
    This member is added by an implicit conversion from BaseSchemeSemantics[V, Addr, Time] to ArrowAssoc[BaseSchemeSemantics[V, Addr, Time]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. implicit def actionToSet(action: Action[SchemeExp, V, Addr]): Set[Action[SchemeExp, V, Addr]]
    Definition Classes
    Semantics
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def bindArgs(l: List[(Identifier, V)], env: Environment[Addr], store: Store[Addr, V], t: Time): (Environment[Addr], Store[Addr, V])

    Binds arguments in the environment and store.

    Binds arguments in the environment and store. Arguments are given as a list of triple, where each triple is made of:

    • the name of the argument
    • the position of the argument
    • the value of the argument
    Attributes
    protected
    Definition Classes
    Semantics
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  10. def conditional(v: V, t: ⇒ Actions, f: ⇒ Actions): Actions
  11. def ensuring(cond: (BaseSchemeSemantics[V, Addr, Time]) ⇒ Boolean, msg: ⇒ Any): BaseSchemeSemantics[V, Addr, Time]
    Implicit
    This member is added by an implicit conversion from BaseSchemeSemantics[V, Addr, Time] to Ensuring[BaseSchemeSemantics[V, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (BaseSchemeSemantics[V, Addr, Time]) ⇒ Boolean): BaseSchemeSemantics[V, Addr, Time]
    Implicit
    This member is added by an implicit conversion from BaseSchemeSemantics[V, Addr, Time] to Ensuring[BaseSchemeSemantics[V, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): BaseSchemeSemantics[V, Addr, Time]
    Implicit
    This member is added by an implicit conversion from BaseSchemeSemantics[V, Addr, Time] to Ensuring[BaseSchemeSemantics[V, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): BaseSchemeSemantics[V, Addr, Time]
    Implicit
    This member is added by an implicit conversion from BaseSchemeSemantics[V, Addr, Time] to Ensuring[BaseSchemeSemantics[V, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def evalBody(body: List[SchemeExp], env: Env, store: Sto): Actions
    Attributes
    protected
  18. def evalCall(function: V, fexp: SchemeExp, argsv: List[(SchemeExp, V)], store: Sto, t: Time): Actions
  19. def evalDoBody(toeval: List[SchemeExp], vars: List[(Identifier, V, Option[SchemeExp])], test: SchemeExp, finals: List[SchemeExp], commands: List[SchemeExp], t: Time, env: Env, store: Sto): Actions
  20. def evalDoStep(vars: List[(Identifier, V, Option[SchemeExp])], toeval: List[(Identifier, V, Option[SchemeExp])], test: SchemeExp, finals: List[SchemeExp], commands: List[SchemeExp], t: Time, env: Env, store: Sto): Actions
  21. def evalQuoted(exp: SExp, store: Sto, t: Time): (V, Sto)
    Attributes
    protected
  22. def evalValue(v: Value): Option[V]
    Attributes
    protected
  23. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from BaseSchemeSemantics[V, Addr, Time] to StringFormat[BaseSchemeSemantics[V, Addr, Time]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  24. def funcallArgs(f: V, fexp: SchemeExp, args: List[SchemeExp], env: Env, store: Sto, t: Time): Actions
    Attributes
    protected
  25. def funcallArgs(f: V, fexp: SchemeExp, args: List[(SchemeExp, V)], toeval: List[SchemeExp], env: Env, store: Sto, t: Time): Actions
    Attributes
    protected
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. def initialBindings: List[(String, Addr, V)]

    Defines the elements in the initial environment/store

    Defines the elements in the initial environment/store

    Definition Classes
    BaseSchemeSemanticsSemantics
  29. def initialEnv: Iterable[(String, Addr)]
    Definition Classes
    Semantics
  30. def initialStore: Iterable[(Addr, V)]
    Definition Classes
    Semantics
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. implicit def mfActionToActions(mf: MayFail[Action[SchemeExp, V, Addr]]): Set[Action[SchemeExp, V, Addr]]
    Definition Classes
    Semantics
  33. implicit def mfToActions(mf: MayFail[Set[Action[SchemeExp, V, Addr]]]): Set[Action[SchemeExp, V, Addr]]
    Definition Classes
    Semantics
  34. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  37. def parse(program: String): SchemeExp

    Defines how to parse a program

    Defines how to parse a program

    Definition Classes
    BaseSchemeSemanticsSemantics
  38. def stepEval(e: SchemeExp, env: Env, store: Sto, t: Time): Set[Action[SchemeExp, V, 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
    BaseSchemeSemanticsSemantics
  39. def stepKont(v: V, frame: Frame, store: Sto, t: Time): Set[Action[SchemeExp, V, 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
    BaseSchemeSemanticsSemantics
  40. def stepReceive(self: Any, mname: String, margsv: List[V], d: SchemeExp, env: Environment[Addr], store: Store[Addr, V], t: Time): Set[Action[SchemeExp, V, Addr]]

    WIP

    WIP

    Definition Classes
    Semantics
  41. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  42. def toString(): String
    Definition Classes
    AnyRef → Any
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. def [B](y: B): (BaseSchemeSemantics[V, Addr, Time], B)
    Implicit
    This member is added by an implicit conversion from BaseSchemeSemantics[V, Addr, Time] to ArrowAssoc[BaseSchemeSemantics[V, Addr, Time]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
  47. object Action extends ActionHelpers[Exp, Abs, Addr]
    Definition Classes
    Semantics

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Semantics[SchemeExp, V, Addr, Time]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BaseSchemeSemantics[V, Addr, Time] to any2stringadd[BaseSchemeSemantics[V, Addr, Time]]

Inherited by implicit conversion StringFormat from BaseSchemeSemantics[V, Addr, Time] to StringFormat[BaseSchemeSemantics[V, Addr, Time]]

Inherited by implicit conversion Ensuring from BaseSchemeSemantics[V, Addr, Time] to Ensuring[BaseSchemeSemantics[V, Addr, Time]]

Inherited by implicit conversion ArrowAssoc from BaseSchemeSemantics[V, Addr, Time] to ArrowAssoc[BaseSchemeSemantics[V, Addr, Time]]

Ungrouped