Packages

  • package root
    Definition Classes
    root
  • case class CombinedStore[Addr, Abs](ro: Store[Addr, Abs], w: Store[Addr, Abs])(implicit evidence$5: Address[Addr], evidence$6: JoinLattice[Abs]) extends Store[Addr, Abs] with Product with Serializable

    Store that combines a default read-only store with a writable store

    Store that combines a default read-only store with a writable store

    Definition Classes
    root
c

CombinedStore

case class CombinedStore[Addr, Abs](ro: Store[Addr, Abs], w: Store[Addr, Abs])(implicit evidence$5: Address[Addr], evidence$6: JoinLattice[Abs]) extends Store[Addr, Abs] with Product with Serializable

Store that combines a default read-only store with a writable store

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

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 CombinedStore[Addr, Abs] to any2stringadd[CombinedStore[Addr, Abs]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (CombinedStore[Addr, Abs], B)
    Implicit
    This member is added by an implicit conversion from CombinedStore[Addr, Abs] to ArrowAssoc[CombinedStore[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

    Definition Classes
    Store
  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

    Returns the cardinality of each lattice element of this store

    Definition Classes
    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

    Definition Classes
    Store
  11. def diff(that: Store[Addr, Abs]): Nothing

    Returns a store containing items that differ between the two stores

    Returns a store containing items that differ between the two stores

    Definition Classes
    CombinedStoreStore
  12. def ensuring(cond: (CombinedStore[Addr, Abs]) ⇒ Boolean, msg: ⇒ Any): CombinedStore[Addr, Abs]
    Implicit
    This member is added by an implicit conversion from CombinedStore[Addr, Abs] to Ensuring[CombinedStore[Addr, Abs]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (CombinedStore[Addr, Abs]) ⇒ Boolean): CombinedStore[Addr, Abs]
    Implicit
    This member is added by an implicit conversion from CombinedStore[Addr, Abs] to Ensuring[CombinedStore[Addr, Abs]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): CombinedStore[Addr, Abs]
    Implicit
    This member is added by an implicit conversion from CombinedStore[Addr, Abs] to Ensuring[CombinedStore[Addr, Abs]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): CombinedStore[Addr, Abs]
    Implicit
    This member is added by an implicit conversion from CombinedStore[Addr, Abs] to Ensuring[CombinedStore[Addr, Abs]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def extend(a: Addr, v: Abs): CombinedStore[Addr, Abs]

    Add a new entry in the store

    Add a new entry in the store

    Definition Classes
    CombinedStoreStore
  18. def forall(p: ((Addr, Abs)) ⇒ Boolean): Boolean

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

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

    Definition Classes
    CombinedStoreStore
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from CombinedStore[Addr, Abs] to StringFormat[CombinedStore[Addr, Abs]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def join(that: Store[Addr, Abs]): Nothing

    Joins two stores together

    Joins two stores together

    Definition Classes
    CombinedStoreStore
  23. def keys: Set[Addr]

    Gets all the keys of the store

    Gets all the keys of the store

    Definition Classes
    CombinedStoreStore
  24. def lookup(a: Addr): Option[Abs]

    Looks up a value in the store

    Looks up a value in the store

    Definition Classes
    CombinedStoreStore
  25. def lookupBot(a: Addr): Abs

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

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

    Definition Classes
    CombinedStoreStore
  26. def lookupMF(a: Addr): MayFail[Abs]
    Definition Classes
    Store
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. val ro: Store[Addr, Abs]
  31. def subsumes(that: Store[Addr, Abs]): Boolean

    Checks whether this store subsumes another store

    Checks whether this store subsumes another store

    Definition Classes
    CombinedStoreStore
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def update(a: Addr, v: Abs): CombinedStore[Addr, Abs]

    Update an entry in the store

    Update an entry in the store

    Definition Classes
    CombinedStoreStore
  34. def updateOrExtend(a: Addr, v: Abs): CombinedStore[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

    Definition Classes
    CombinedStoreStore
  35. val w: Store[Addr, Abs]
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def [B](y: B): (CombinedStore[Addr, Abs], B)
    Implicit
    This member is added by an implicit conversion from CombinedStore[Addr, Abs] to ArrowAssoc[CombinedStore[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 Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Store[Addr, Abs]

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped