Packages

object ToTxt

Converts a list of three-address instructions into a text-based representation for comprehension purposes only.

Source
ToTxt.scala
Note

This representation is primarily provided for debugging purposes and is not performance optimized.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ToTxt
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(method: Method, classHierarchy: ClassHierarchy = ClassHierarchy.PreInitializedClassHierarchy, aiResult: Option[AIResult { val domain: org.opalj.ai.Domain with org.opalj.ai.domain.RecordDefUse }] = None): String

    Creates a text based representation of the three address code generated for the given method.

  2. def apply[P <: AnyRef, V <: Var[V]](params: Parameters[P], stmts: Array[Stmt[V]], cfg: CFG[Stmt[V], TACStmts[V]], skipParams: Boolean, indented: Boolean, includePC: Boolean): Seq[String]

    Converts the statements to some human readable text.

    Converts the statements to some human readable text.

    includePC

    If true the original program counter is also shown in the output.

  3. def apply[P <: AnyRef, V <: Var[V]](tac: TACode[P, V]): Seq[String]
  4. def callToTxt[V <: Var[V]](name: String, params: Seq[Expr[V]]): String
  5. final def stmtsToTxtStmt[V <: Var[V]](stmts: Array[Stmt[V]], includePC: Boolean): String
  6. final def toTxtExpr[V <: Var[V]](expr: Expr[V]): String
    Annotations
    @inline()
  7. final def toTxtStmt[V <: Var[V]](stmt: Stmt[V], includePC: Boolean): String
    Annotations
    @inline()