Packages

case class ArrayStore[+V <: Var[V]](pc: PC, arrayRef: Expr[V], index: Expr[V], value: Expr[V]) extends Stmt[V] with Product with Serializable

Source
Stmt.scala
Linear Supertypes
Serializable, Product, Equals, Stmt[V], ASTNode[V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ArrayStore
  2. Serializable
  3. Product
  4. Equals
  5. Stmt
  6. ASTNode
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ArrayStore(pc: PC, arrayRef: Expr[V], index: Expr[V], value: Expr[V])

Value Members

  1. val arrayRef: Expr[V]
  2. final def asArrayStore: ArrayStore.this.type
    Definition Classes
    ArrayStoreStmt
  3. def asAssignment: Assignment[V]
    Definition Classes
    Stmt
  4. def asAssignmentLike: AssignmentLikeStmt[V]
    Definition Classes
    Stmt
  5. def asCaughtException: CaughtException[V]
    Definition Classes
    Stmt
  6. def asCheckcast: Checkcast[V]
    Definition Classes
    Stmt
  7. def asExprStmt: ExprStmt[V]
    Definition Classes
    Stmt
  8. def asFieldWriteAccessStmt: FieldWriteAccessStmt[V]
    Definition Classes
    Stmt
  9. def asGoto: Goto
    Definition Classes
    Stmt
  10. def asIf: If[V]
    Definition Classes
    Stmt
  11. def asInstanceMethodCall: InstanceMethodCall[V]
    Definition Classes
    Stmt
  12. def asInvokedynamicMethodCall: InvokedynamicMethodCall[V]
    Definition Classes
    Stmt
  13. def asJSR: JSR
    Definition Classes
    Stmt
  14. def asMethodCall: MethodCall[V]
    Definition Classes
    Stmt
  15. def asMonitorEnter: MonitorEnter[V]
    Definition Classes
    Stmt
  16. def asMonitorExit: MonitorExit[V]
    Definition Classes
    Stmt
  17. def asNonVirtualMethodCall: NonVirtualMethodCall[V]
    Definition Classes
    Stmt
  18. def asNop: Nop
    Definition Classes
    Stmt
  19. def asPutField: PutField[V]
    Definition Classes
    Stmt
  20. def asPutStatic: PutStatic[V]
    Definition Classes
    Stmt
  21. def asRet: Ret
    Definition Classes
    Stmt
  22. def asReturn: Return
    Definition Classes
    Stmt
  23. def asReturnValue: ReturnValue[V]
    Definition Classes
    Stmt
  24. def asStaticMethodCall: StaticMethodCall[V]
    Definition Classes
    Stmt
  25. def asSwitch: Switch[V]
    Definition Classes
    Stmt
  26. def asSynchronizationStmt: SynchronizationStmt[V]
    Definition Classes
    Stmt
  27. def asThrow: Throw[V]
    Definition Classes
    Stmt
  28. def asVirtualMethodCall: VirtualMethodCall[V]
    Definition Classes
    Stmt
  29. final def astID: Int

    Each type of node is assigned a different id to make it easily possible to do a switch over all nodes.

    Each type of node is assigned a different id to make it easily possible to do a switch over all nodes.

    Definition Classes
    ArrayStoreASTNode
  30. final def forallSubExpressions[W >: V <: Var[W]](p: (Expr[W]) => Boolean): Boolean
    Definition Classes
    ArrayStoreStmt
  31. val index: Expr[V]
  32. final def isArrayStore: Boolean
    Definition Classes
    ArrayStoreStmt
  33. def isAssignment: Boolean
    Definition Classes
    Stmt
  34. def isCaughtException: Boolean
    Definition Classes
    Stmt
  35. def isCheckcast: Boolean
    Definition Classes
    Stmt
  36. def isExprStmt: Boolean
    Definition Classes
    Stmt
  37. def isIf: Boolean
    Definition Classes
    Stmt
  38. def isMethodCall: Boolean
    Definition Classes
    Stmt
  39. def isMonitorEnter: Boolean
    Definition Classes
    Stmt
  40. def isMonitorExit: Boolean
    Definition Classes
    Stmt
  41. def isNonVirtualMethodCall: Boolean
    Definition Classes
    Stmt
  42. def isNop: Boolean
    Definition Classes
    Stmt
  43. def isPutField: Boolean
    Definition Classes
    Stmt
  44. def isPutStatic: Boolean
    Definition Classes
    Stmt
  45. def isReturnValue: Boolean
    Definition Classes
    Stmt
  46. final def isSideEffectFree: Boolean

    true if the statement/expression is GUARANTEED to have no externally observable effect if it is not executed.

    true if the statement/expression is GUARANTEED to have no externally observable effect if it is not executed. Sideeffect free instructions can be removed if the result of the evaluation of the expression/statement is not used. For those instructions, which may result in an exception, it has to be guaranteed that the exception is NEVER thrown. For example, a div instruction is sideeffect free if it is (statically) known that the divisor is always not equal to zero; otherwise, even if the result value is not used, the expression is not (potentially) side effect free. An array load is only side effect free if the array reference is non-null and if the index is valid.

    returns

    true if the expression is GUARENTEED to have no side effect other than wasting some CPU cycles if it is not executed.

    Definition Classes
    ArrayStoreASTNode
    Note

    Deeply nested expressions are not supported; i.e. an expression's sub-expressions have to be Var or Const expressions. Generally, a statements expressions have to to simple expressions too - except of the Assignment statement; in the latter case the right-expression can have references to simple expressions. Hence, in case of Assignment statements the side-effect freenes is determined by the referenced expression; in all other cases the side-effect freeness is determined directly by the statement/expression.

  47. def isStaticMethodCall: Boolean
    Definition Classes
    Stmt
  48. def isThrow: Boolean
    Definition Classes
    Stmt
  49. def isVirtualMethodCall: Boolean
    Definition Classes
    Stmt
  50. val pc: PC

    The program counter of the original underyling bytecode instruction.

    The program counter of the original underyling bytecode instruction.

    This pc is independent of the (implicit) index of the statement in the generated statements array! This pc is, e.g., useful for getting line number information.

    Definition Classes
    ArrayStoreStmt
  51. def productElementNames: Iterator[String]
    Definition Classes
    Product
  52. final def toCanonicalForm(implicit ev: <:<[V, DUVar[ValueInformation]]): Stmt[DUVar[ValueInformation]]

    See org.opalj.value.ValueInformation.toCanonicalForm for detail.

  53. def toString(): String
    Definition Classes
    ArrayStore → AnyRef → Any
  54. val value: Expr[V]