Packages

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

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

Instance Constructors

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val arrayRef: Expr[V]
  5. def asArrayLength: ArrayLength[V]
    Definition Classes
    Expr
  6. final def asArrayLoad: ArrayLoad.this.type
    Definition Classes
    ArrayLoadExpr
  7. def asBinaryExpr: BinaryExpr[V]
    Definition Classes
    Expr
  8. def asClassConst: ClassConst
    Definition Classes
    Expr
  9. def asCompare: Compare[V]
    Definition Classes
    Expr
  10. def asDoubleConst: DoubleConst
    Definition Classes
    Expr
  11. def asDynamicConst: DynamicConst
    Definition Classes
    Expr
  12. def asFieldRead: FieldRead[V]
    Definition Classes
    Expr
  13. def asFloatConst: FloatConst
    Definition Classes
    Expr
  14. def asFunctionCall: FunctionCall[V]
    Definition Classes
    Expr
  15. def asGetField: GetField[V]
    Definition Classes
    Expr
  16. def asGetStatic: GetStatic
    Definition Classes
    Expr
  17. def asInstanceFunctionCall: InstanceFunctionCall[V]
    Definition Classes
    Expr
  18. def asInstanceOf: InstanceOf[V]
    Definition Classes
    Expr
  19. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  20. def asIntConst: IntConst
    Definition Classes
    Expr
  21. def asInvokedynamicFunctionCall: InvokedynamicFunctionCall[V]
    Definition Classes
    Expr
  22. def asLongConst: LongConst
    Definition Classes
    Expr
  23. def asMethodHandleConst: MethodHandleConst
    Definition Classes
    Expr
  24. def asMethodTypeConst: MethodTypeConst
    Definition Classes
    Expr
  25. def asNew: New
    Definition Classes
    Expr
  26. def asNewArray: NewArray[V]
    Definition Classes
    Expr
  27. def asNonVirtualFunctionCall: NonVirtualFunctionCall[V]
    Definition Classes
    Expr
  28. def asNullExpr: NullExpr
    Definition Classes
    Expr
  29. def asParam: Param
    Definition Classes
    Expr
  30. def asPrefixExpr: PrefixExpr[V]
    Definition Classes
    Expr
  31. def asPrimitiveTypeCastExpr: PrimitiveTypecastExpr[V]
    Definition Classes
    Expr
  32. def asStaticFunctionCall: StaticFunctionCall[V]
    Definition Classes
    Expr
  33. def asStringConst: StringConst
    Definition Classes
    Expr
  34. def asVar: V
    Definition Classes
    Expr
  35. def asVirtualFunctionCall: VirtualFunctionCall[V]
    Definition Classes
    Expr
  36. 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
    ArrayLoadASTNode
  37. final def cTpe: ComputationalType

    The computational type of the underlying value.

    The computational type of the underlying value.

    I.e., an approximation of the type of the underlying value. It is the best type information directly available. The precision of the type information depends on the number of pre-/post-processing steps that are done.

    Definition Classes
    ArrayLoadExpr
  38. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  39. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. final def forallSubExpressions[W >: V <: Var[W]](p: (Expr[W]) => Boolean): Boolean

    Returns true if the given predicate evaluates to true for all direct subexpressions of this expression; if the evaluation should perform a recursive decent then it needs to be done by the predicate!

    Returns true if the given predicate evaluates to true for all direct subexpressions of this expression; if the evaluation should perform a recursive decent then it needs to be done by the predicate!

    Definition Classes
    ArrayLoadExpr
  41. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  42. val index: Expr[V]
  43. final def isArrayLoad: Boolean
    Definition Classes
    ArrayLoadExpr
  44. def isClassConst: Boolean
    Definition Classes
    Expr
  45. def isCompare: Boolean
    Definition Classes
    Expr
  46. def isConst: Boolean
    Definition Classes
    Expr
  47. def isDoubleConst: Boolean
    Definition Classes
    Expr
  48. def isDynamicConst: Boolean
    Definition Classes
    Expr
  49. def isFieldRead: Boolean
    Definition Classes
    Expr
  50. def isFloatConst: Boolean
    Definition Classes
    Expr
  51. def isFunctionCall: Boolean
    Definition Classes
    Expr
  52. def isGetField: Boolean
    Definition Classes
    Expr
  53. def isGetStatic: Boolean
    Definition Classes
    Expr
  54. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  55. def isIntConst: Boolean
    Definition Classes
    Expr
  56. def isLongConst: Boolean
    Definition Classes
    Expr
  57. def isMethodHandleConst: Boolean
    Definition Classes
    Expr
  58. def isMethodTypeConst: Boolean
    Definition Classes
    Expr
  59. def isNew: Boolean
    Definition Classes
    Expr
  60. def isNewArray: Boolean
    Definition Classes
    Expr
  61. def isNullExpr: Boolean
    Definition Classes
    Expr
  62. 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
    ArrayLoadASTNode
    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.

  63. def isStaticFunctionCall: Boolean
    Definition Classes
    Expr
  64. def isStringConst: Boolean
    Definition Classes
    Expr
  65. final def isValueExpression: Boolean

    true if this expression is a Var.

    true if this expression is a Var.

    Definition Classes
    ArrayExprExpr
  66. final def isVar: Boolean
    Definition Classes
    ArrayExprExpr
  67. def isVirtualFunctionCall: Boolean
    Definition Classes
    Expr
  68. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  69. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  70. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  71. val pc: PC
  72. def productElementNames: Iterator[String]
    Definition Classes
    Product
  73. final def subExpr(index: Int): Expr[V]

    Returns the sub expression with the given index; if the index is wrong the result is undefined!

    Returns the sub expression with the given index; if the index is wrong the result is undefined!

    Definition Classes
    ArrayLoadExpr
  74. final def subExprCount: Int

    The number of sub expression directly referenced by this expression.

    The number of sub expression directly referenced by this expression. A unary expression has one sub expression (the operand), a binary expression has two and a method has as many as explicit and implicit (this) parameters exist.

    Definition Classes
    ArrayLoadExpr
    Note

    Transitive dependencies are not counted.

  75. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  76. def toCanonicalForm(implicit ev: <:<[V, DUVar[ValueInformation]]): Expr[DUVar[ValueInformation]]

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

  77. def toString(): String
    Definition Classes
    ArrayLoad → AnyRef → Any
  78. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  79. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  80. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ArrayExpr[V]

Inherited from Expr[V]

Inherited from ASTNode[V]

Inherited from AnyRef

Inherited from Any

Ungrouped