Packages

case class Compare[+V <: Var[V]](pc: PC, left: Expr[V], condition: RelationalOperator, right: Expr[V]) extends Expr[V] with Product with Serializable

A comparison of two values.

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

Instance Constructors

  1. new Compare(pc: PC, left: Expr[V], condition: RelationalOperator, right: 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. def asArrayLength: ArrayLength[V]
    Definition Classes
    Expr
  5. def asArrayLoad: ArrayLoad[V]
    Definition Classes
    Expr
  6. def asBinaryExpr: BinaryExpr[V]
    Definition Classes
    Expr
  7. def asClassConst: ClassConst
    Definition Classes
    Expr
  8. final def asCompare: Compare.this.type
    Definition Classes
    CompareExpr
  9. def asDoubleConst: DoubleConst
    Definition Classes
    Expr
  10. def asDynamicConst: DynamicConst
    Definition Classes
    Expr
  11. def asFieldRead: FieldRead[V]
    Definition Classes
    Expr
  12. def asFloatConst: FloatConst
    Definition Classes
    Expr
  13. def asFunctionCall: FunctionCall[V]
    Definition Classes
    Expr
  14. def asGetField: GetField[V]
    Definition Classes
    Expr
  15. def asGetStatic: GetStatic
    Definition Classes
    Expr
  16. def asInstanceFunctionCall: InstanceFunctionCall[V]
    Definition Classes
    Expr
  17. def asInstanceOf: InstanceOf[V]
    Definition Classes
    Expr
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. def asIntConst: IntConst
    Definition Classes
    Expr
  20. def asInvokedynamicFunctionCall: InvokedynamicFunctionCall[V]
    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[V]
    Definition Classes
    Expr
  26. def asNonVirtualFunctionCall: NonVirtualFunctionCall[V]
    Definition Classes
    Expr
  27. def asNullExpr: NullExpr
    Definition Classes
    Expr
  28. def asParam: Param
    Definition Classes
    Expr
  29. def asPrefixExpr: PrefixExpr[V]
    Definition Classes
    Expr
  30. def asPrimitiveTypeCastExpr: PrimitiveTypecastExpr[V]
    Definition Classes
    Expr
  31. def asStaticFunctionCall: StaticFunctionCall[V]
    Definition Classes
    Expr
  32. def asStringConst: StringConst
    Definition Classes
    Expr
  33. def asVar: V
    Definition Classes
    Expr
  34. def asVirtualFunctionCall: VirtualFunctionCall[V]
    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
    CompareASTNode
  36. 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
    CompareExpr
  37. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  38. val condition: RelationalOperator
  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
    CompareExpr
  41. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  42. def isArrayLoad: Boolean
    Definition Classes
    Expr
  43. def isClassConst: Boolean
    Definition Classes
    Expr
  44. final def isCompare: Boolean
    Definition Classes
    CompareExpr
  45. def isConst: Boolean
    Definition Classes
    Expr
  46. def isDoubleConst: Boolean
    Definition Classes
    Expr
  47. def isDynamicConst: Boolean
    Definition Classes
    Expr
  48. def isFieldRead: Boolean
    Definition Classes
    Expr
  49. def isFloatConst: Boolean
    Definition Classes
    Expr
  50. def isFunctionCall: Boolean
    Definition Classes
    Expr
  51. def isGetField: Boolean
    Definition Classes
    Expr
  52. def isGetStatic: Boolean
    Definition Classes
    Expr
  53. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  54. def isIntConst: Boolean
    Definition Classes
    Expr
  55. def isLongConst: Boolean
    Definition Classes
    Expr
  56. def isMethodHandleConst: Boolean
    Definition Classes
    Expr
  57. def isMethodTypeConst: Boolean
    Definition Classes
    Expr
  58. def isNew: Boolean
    Definition Classes
    Expr
  59. def isNewArray: Boolean
    Definition Classes
    Expr
  60. def isNullExpr: Boolean
    Definition Classes
    Expr
  61. 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
    CompareASTNode
    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.

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

    true if this expression is a Var.

    true if this expression is a Var.

    Definition Classes
    CompareExpr
  65. final def isVar: Boolean
    Definition Classes
    CompareExpr
  66. def isVirtualFunctionCall: Boolean
    Definition Classes
    Expr
  67. val left: Expr[V]
  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. val right: Expr[V]
  74. 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
    CompareExpr
  75. 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
    CompareExpr
    Note

    Transitive dependencies are not counted.

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

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

    Definition Classes
    CompareExprASTNode
  78. def toString(): String
    Definition Classes
    Compare → AnyRef → Any
  79. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  80. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  81. 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 Expr[V]

Inherited from ASTNode[V]

Inherited from AnyRef

Inherited from Any

Ungrouped