Packages

  • package root
    Definition Classes
    root
  • class AAMAACP4F[Exp, Abs, Addr, Time] extends EvalKontMachine[Exp, Abs, Addr, Time]

    AAM/AAC/P4F techniques combined in a single machine abstraction

    AAM/AAC/P4F techniques combined in a single machine abstraction

    Definition Classes
    root
c

AAMAACP4F

class AAMAACP4F[Exp, Abs, Addr, Time] extends EvalKontMachine[Exp, Abs, Addr, Time]

AAM/AAC/P4F techniques combined in a single machine abstraction

Linear Supertypes
EvalKontMachine[Exp, Abs, Addr, Time], AbstractMachine[Exp, Abs, Addr, Time], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AAMAACP4F
  2. EvalKontMachine
  3. AbstractMachine
  4. AnyRef
  5. 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 AAMAACP4F(strategy: KAllocStrategy)(implicit arg0: Expression[Exp], arg1: JoinLattice[Abs], arg2: Address[Addr], arg3: Timestamp[Time])

Type Members

  1. case class AACKontAddress(e2: Exp, env2: Environment[Addr], control: AAMAACP4F.Control, store: Store[Addr, Abs], t: Time) extends KontAddr with Product with Serializable
  2. case class AAMAACP4FOutput(halted: Set[State], store: Store[Addr, Abs], numberOfStates: Int, time: Double, graph: G, timedOut: Boolean) extends Output with Product with Serializable
  3. case class AAMKontAddress(e2: Exp, t: Time) extends KontAddr with Product with Serializable
  4. type G = Option[Graph[State, Unit, Context]]
  5. case class GlobalStore(store: DeltaStore[Addr, Abs], delta: Map[Addr, Abs]) extends Product with Serializable
  6. trait KontAddr extends AnyRef
  7. case class P4FKontAddress(e2: Exp, env2: Environment[Addr], t: Time) extends KontAddr with Product with Serializable
  8. case class State(control: AAMAACP4F.Control, a: KontAddr, t: Time) extends Product with Serializable
  9. trait Output extends AnyRef

    The output of the abstract machine

    The output of the abstract machine

    Definition Classes
    AbstractMachine
  10. trait Control extends AnyRef

    The control component of the machine

    The control component of the machine

    Definition Classes
    EvalKontMachine
  11. case class ControlError(err: SemanticError) extends Control with Product with Serializable

    Or an error component, in case an error is reached (e.g., incorrect number of arguments in a function call)

    Or an error component, in case an error is reached (e.g., incorrect number of arguments in a function call)

    Definition Classes
    EvalKontMachine
  12. case class ControlEval(exp: Exp, env: Environment[Addr]) extends Control with Product with Serializable

    It can either be an eval component, where an expression needs to be evaluated in an environment

    It can either be an eval component, where an expression needs to be evaluated in an environment

    Definition Classes
    EvalKontMachine
  13. case class ControlKont(v: Abs) extends Control with Product with Serializable

    Or it can be a continuation component, where a value has been reached and a continuation should be popped from the stack to continue the evaluation

    Or it can be a continuation component, where a value has been reached and a continuation should be popped from the stack to continue the evaluation

    Definition Classes
    EvalKontMachine

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 AAMAACP4F[Exp, Abs, Addr, Time] to any2stringadd[AAMAACP4F[Exp, Abs, Addr, Time]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (AAMAACP4F[Exp, Abs, Addr, Time], B)
    Implicit
    This member is added by an implicit conversion from AAMAACP4F[Exp, Abs, Addr, Time] to ArrowAssoc[AAMAACP4F[Exp, Abs, 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  8. def ensuring(cond: (AAMAACP4F[Exp, Abs, Addr, Time]) ⇒ Boolean, msg: ⇒ Any): AAMAACP4F[Exp, Abs, Addr, Time]
    Implicit
    This member is added by an implicit conversion from AAMAACP4F[Exp, Abs, Addr, Time] to Ensuring[AAMAACP4F[Exp, Abs, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (AAMAACP4F[Exp, Abs, Addr, Time]) ⇒ Boolean): AAMAACP4F[Exp, Abs, Addr, Time]
    Implicit
    This member is added by an implicit conversion from AAMAACP4F[Exp, Abs, Addr, Time] to Ensuring[AAMAACP4F[Exp, Abs, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): AAMAACP4F[Exp, Abs, Addr, Time]
    Implicit
    This member is added by an implicit conversion from AAMAACP4F[Exp, Abs, Addr, Time] to Ensuring[AAMAACP4F[Exp, Abs, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): AAMAACP4F[Exp, Abs, Addr, Time]
    Implicit
    This member is added by an implicit conversion from AAMAACP4F[Exp, Abs, Addr, Time] to Ensuring[AAMAACP4F[Exp, Abs, Addr, Time]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def eval(exp: Exp, sem: Semantics[Exp, Abs, Addr, Time], genGraph: Boolean, timeout: Timeout): Output

    Evaluate a program represented by an expression, under the given semantics.

    Evaluate a program represented by an expression, under the given semantics. A graph can be generated if @genGraph is true, and a timeout can be given.

    Definition Classes
    AAMAACP4FAbstractMachine
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from AAMAACP4F[Exp, Abs, Addr, Time] to StringFormat[AAMAACP4F[Exp, Abs, Addr, Time]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def kalloc(state: State, e: Exp, env: Environment[Addr], store: Store[Addr, Abs], t: Time): Product with Serializable with KontAddr
  20. def name: String

    The name of the abstract machine

    The name of the abstract machine

    Definition Classes
    AAMAACP4FAbstractMachine
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. implicit val stateWithKey: WithKey[State] { type K = AAMAACP4F.this.KontAddr }
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. def [B](y: B): (AAMAACP4F[Exp, Abs, Addr, Time], B)
    Implicit
    This member is added by an implicit conversion from AAMAACP4F[Exp, Abs, Addr, Time] to ArrowAssoc[AAMAACP4F[Exp, Abs, Addr, Time]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
  31. object HaltKontAddress extends KontAddr with Product with Serializable
  32. object KontAddr
  33. object State extends Serializable
  34. object Control
    Definition Classes
    EvalKontMachine

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 EvalKontMachine[Exp, Abs, Addr, Time]

Inherited from AbstractMachine[Exp, Abs, Addr, Time]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from AAMAACP4F[Exp, Abs, Addr, Time] to any2stringadd[AAMAACP4F[Exp, Abs, Addr, Time]]

Inherited by implicit conversion StringFormat from AAMAACP4F[Exp, Abs, Addr, Time] to StringFormat[AAMAACP4F[Exp, Abs, Addr, Time]]

Inherited by implicit conversion Ensuring from AAMAACP4F[Exp, Abs, Addr, Time] to Ensuring[AAMAACP4F[Exp, Abs, Addr, Time]]

Inherited by implicit conversion ArrowAssoc from AAMAACP4F[Exp, Abs, Addr, Time] to ArrowAssoc[AAMAACP4F[Exp, Abs, Addr, Time]]

Ungrouped