Interface Value

All Known Implementing Classes:
ConstantValue, PhiValue

public interface Value
Representation of a particular value which appears in an SSA IR.

Clients probably shouldn't use this; it's only public (for now) due to Java's package-based weak module system.

  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    boolean
    Is this value a null constant?
    boolean
    Is this value a string constant?
  • Method Details Link icon

    • isStringConstant Link icon

      boolean isStringConstant()
      Is this value a string constant?
    • isNullConstant Link icon

      boolean isNullConstant()
      Is this value a null constant?