Packages

c

be.opimedia.scala_par_am

AbstractMachine

abstract class AbstractMachine[Exp, Abs, Addr, Time] extends AnyRef

The interface of the abstract machine itself. Abstract class that should be implemented by an abstract machine. Abstract machines that implement that in Scala-Par-AM are AAM*.scala and ParAAM*.scala.

The abstract machine is parameterized by abstract values, addresses and expressions. Look into AAM.scala for an example of how to define these parameters.

Source https://bitbucket.org/OPiMedia/scala-par-am/src/master/scala-par-am/src/main/scala/machine/AbstractMachine.scala

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

Type Members

  1. trait Output extends AnyRef

    The output of the abstract machine.

Abstract Value Members

  1. abstract def eval(exp: Exp, sem: Semantics[Exp, Abs, Addr, Time], config: MachineConfig): Output

    Evaluates a program, given a semantics.

    Evaluates a program, given a semantics.

    exp

    The program to be evaluate

    config

    Specify some parameters of the machine

    returns

    An object implementing the Output trait, containing information about the evaluation.

  2. abstract def name: String

    The name of the abstract machine.

Concrete Value Members

  1. def isParallel: Boolean

    Returns true iff the machine is a parallel machine

  2. def minProcess: Int

    Returns the minimum processes possible for this machine.

    Returns the minimum processes possible for this machine. Must be >= 1 and must be 1 if !isParallel.

  3. def nbNotEvalProcess: Int

    Returns the number of processes that whose task is not to perform step evaluation.

    Returns the number of processes that whose task is not to perform step evaluation. Must be >= 0.