Packages

abstract class Store[Addr, Abs] extends MemoHashCode

Linear Supertypes
MemoHashCode, Product, Equals, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Store
  2. MemoHashCode
  3. Product
  4. Equals
  5. AnyRef
  6. 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 Store()(implicit arg0: Address[Addr], arg1: JoinLattice[Abs])

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean
    Definition Classes
    Equals
  2. abstract def diff(that: Store[Addr, Abs]): Store[Addr, Abs]

    Returns a store containing items that differ between the two stores

  3. abstract def extend(a: Addr, v: Abs): Store[Addr, Abs]

    Add a new entry in the store

  4. abstract def forall(p: ((Addr, Abs)) ⇒ Boolean): Boolean

    Checks if a predicate is true for all elements of the store

  5. abstract def join(that: Store[Addr, Abs]): Store[Addr, Abs]

    Joins two stores together

  6. abstract def keys: Iterable[Addr]

    Gets all the keys of the store

  7. abstract def lookup(a: Addr): Option[Abs]

    Looks up a value in the store

  8. abstract def lookupBot(a: Addr): Abs

    Looks up a value in the store, or return bottom if it's not there

  9. abstract def productArity: Int
    Definition Classes
    Product
  10. abstract def productElement(n: Int): Any
    Definition Classes
    Product
  11. abstract def subsumes(that: Store[Addr, Abs]): Boolean

    Checks whether this store subsumes another store

  12. abstract def update(a: Addr, v: Abs): Store[Addr, Abs]

    Update an entry in the store

  13. abstract def updateOrExtend(a: Addr, v: Abs): Store[Addr, Abs]

    Tries to update an address if it's already mapped into the store.

    Tries to update an address if it's already mapped into the store. Otherwise, extend the store

Concrete 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 Store[Addr, Abs] to any2stringadd[Store[Addr, Abs]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Store[Addr, Abs], B)
    Implicit
    This member is added by an implicit conversion from Store[Addr, Abs] to ArrowAssoc[Store[Addr, Abs]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def addDelta(delta: Map[Addr, Abs]): Store[Addr, Abs]

    Add a delta to the store.

    Add a delta to the store. This clears the current delta

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def cardinalities(withPrimitives: Boolean = false): Map[Addr, Cardinality]

    Returns the cardinality of each lattice element of this store

  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  10. def delta: Option[Map[Addr, Abs]]

    Returns a delta of the changes made on this store.

    Returns a delta of the changes made on this store. None if the store doesn't support store deltas

  11. def ensuring(cond: (Store[Addr, Abs]) ⇒ Boolean, msg: ⇒ Any): Store[Addr, Abs]
    Implicit
    This member is added by an implicit conversion from Store[Addr, Abs] to Ensuring[Store[Addr, Abs]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (Store[Addr, Abs]) ⇒ Boolean): Store[Addr, Abs]
    Implicit
    This member is added by an implicit conversion from Store[Addr, Abs] to Ensuring[Store[Addr, Abs]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): Store[Addr, Abs]
    Implicit
    This member is added by an implicit conversion from Store[Addr, Abs] to Ensuring[Store[Addr, Abs]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): Store[Addr, Abs]
    Implicit
    This member is added by an implicit conversion from Store[Addr, Abs] to Ensuring[Store[Addr, Abs]] 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 formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Store[Addr, Abs] to StringFormat[Store[Addr, Abs]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. def hashCode(): Int

    Memoized default hash code

    Memoized default hash code

    Definition Classes
    MemoHashCode → AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def lookupMF(a: Addr): MayFail[Abs]
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def productIterator: Iterator[Any]
    Definition Classes
    Product
  26. def productPrefix: String
    Definition Classes
    Product
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def [B](y: B): (Store[Addr, Abs], B)
    Implicit
    This member is added by an implicit conversion from Store[Addr, Abs] to ArrowAssoc[Store[Addr, Abs]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

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 MemoHashCode

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Store[Addr, Abs] to any2stringadd[Store[Addr, Abs]]

Inherited by implicit conversion StringFormat from Store[Addr, Abs] to StringFormat[Store[Addr, Abs]]

Inherited by implicit conversion Ensuring from Store[Addr, Abs] to Ensuring[Store[Addr, Abs]]

Inherited by implicit conversion ArrowAssoc from Store[Addr, Abs] to ArrowAssoc[Store[Addr, Abs]]

Ungrouped