Packages

t

org.opalj.tac

IdBasedVar

sealed trait IdBasedVar extends Var[IdBasedVar]

Id based variables are named based on the position of the corresponding stack/register value.

Source
IdBasedVar.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IdBasedVar
  2. Var
  3. ValueExpr
  4. Expr
  5. ASTNode
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract 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
    Expr
  2. abstract def id: Int

Concrete 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. def asArrayLength: ArrayLength[IdBasedVar]
    Definition Classes
    Expr
  5. def asArrayLoad: ArrayLoad[IdBasedVar]
    Definition Classes
    Expr
  6. def asBinaryExpr: BinaryExpr[IdBasedVar]
    Definition Classes
    Expr
  7. def asClassConst: ClassConst
    Definition Classes
    Expr
  8. def asCompare: Compare[IdBasedVar]
    Definition Classes
    Expr
  9. def asDoubleConst: DoubleConst
    Definition Classes
    Expr
  10. def asDynamicConst: DynamicConst
    Definition Classes
    Expr
  11. def asFieldRead: FieldRead[IdBasedVar]
    Definition Classes
    Expr
  12. def asFloatConst: FloatConst
    Definition Classes
    Expr
  13. def asFunctionCall: FunctionCall[IdBasedVar]
    Definition Classes
    Expr
  14. def asGetField: GetField[IdBasedVar]
    Definition Classes
    Expr
  15. def asGetStatic: GetStatic
    Definition Classes
    Expr
  16. def asInstanceFunctionCall: InstanceFunctionCall[IdBasedVar]
    Definition Classes
    Expr
  17. def asInstanceOf: InstanceOf[IdBasedVar]
    Definition Classes
    Expr
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. def asIntConst: IntConst
    Definition Classes
    Expr
  20. def asInvokedynamicFunctionCall: InvokedynamicFunctionCall[IdBasedVar]
    Definition Classes
    Expr
  21. def asLongConst: LongConst
    Definition Classes
    Expr
  22. def asMethodHandleConst: MethodHandleConst
    Definition Classes
    Expr
  23. def asMethodTypeConst: MethodTypeConst
    Definition Classes
    Expr
  24. def asNew: New
    Definition Classes
    Expr
  25. def asNewArray: NewArray[IdBasedVar]
    Definition Classes
    Expr
  26. def asNonVirtualFunctionCall: NonVirtualFunctionCall[IdBasedVar]
    Definition Classes
    Expr
  27. def asNullExpr: NullExpr
    Definition Classes
    Expr
  28. def asParam: Param
    Definition Classes
    Expr
  29. def asPrefixExpr: PrefixExpr[IdBasedVar]
    Definition Classes
    Expr
  30. def asPrimitiveTypeCastExpr: PrimitiveTypecastExpr[IdBasedVar]
    Definition Classes
    Expr
  31. def asStaticFunctionCall: StaticFunctionCall[IdBasedVar]
    Definition Classes
    Expr
  32. def asStringConst: StringConst
    Definition Classes
    Expr
  33. final def asVar: IdBasedVar
    Definition Classes
    VarExpr
  34. def asVirtualFunctionCall: VirtualFunctionCall[IdBasedVar]
    Definition Classes
    Expr
  35. 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
    VarASTNode
  36. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  37. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  39. final def forallSubExpressions[W >: IdBasedVar <: 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
    ValueExprExpr
  40. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  41. final def hasSameLocation(that: IdBasedVar): Boolean

    returns

    true if this variable and the given variable use the same location. Compared to equals this test does not consider the computational type.

  42. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  43. def isArrayLoad: Boolean
    Definition Classes
    Expr
  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
    IdBasedVarASTNode
    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
    ValueExprExpr
  66. final def isVar: Boolean
    Definition Classes
    VarExpr
  67. def isVirtualFunctionCall: Boolean
    Definition Classes
    Expr
  68. def name: String

    A human readable name of the local variable.

    A human readable name of the local variable.

    Definition Classes
    IdBasedVarVar
  69. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  70. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  71. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  72. final def subExpr(index: Int): Expr[IdBasedVar]

    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
    ValueExprExpr
  73. 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
    ValueExprExpr
    Note

    Transitive dependencies are not counted.

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

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

  76. def toString(): String
    Definition Classes
    AnyRef → Any
  77. def updated(cTpe: ComputationalType): SimpleVar

    Creates a new variable that has the same identifier etc.

    Creates a new variable that has the same identifier etc. but an updated computational type.

    This operation is not supported for local variables!

  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 Var[IdBasedVar]

Inherited from ValueExpr[IdBasedVar]

Inherited from Expr[IdBasedVar]

Inherited from ASTNode[IdBasedVar]

Inherited from AnyRef

Inherited from Any

Ungrouped