PrettyPrinter Type
Exposes pretty printing functions for LowUIR and SSA statements.
Static members
| Static member |
Description
|
Full Usage:
PrettyPrinter.ToString(ssaExpr)
Parameters:
Expr
-
SSA expression.
Returns: string
Modifiers: inline |
Given an SSA expression, return a well-formated string.
|
Full Usage:
PrettyPrinter.ToString(ssaStmt)
Parameters:
Stmt
-
SSA statement.
Returns: string
Modifiers: inline |
Given an SSA statement, return a well-formated string.
|
Full Usage:
PrettyPrinter.ToString(ssaStmts)
Parameters:
Stmt[]
-
LowUIR statements.
Returns: string
|
Given a list of SSA statements, return a well-formated string.
|
Full Usage:
PrettyPrinter.ToString(lowuirExpr)
Parameters:
Expr
-
LowUIR expression.
Returns: string
Modifiers: inline |
Given a LowUIR expression, return a well-formated string.
|
Full Usage:
PrettyPrinter.ToString(lowuirStmt)
Parameters:
Stmt
-
LowUIR statement.
Returns: string
Modifiers: inline |
Given a LowUIR statement, return a well-formated string.
|
Full Usage:
PrettyPrinter.ToString(lowuirStmts)
Parameters:
Stmt[]
-
LowUIR statements.
Returns: string
|
Given a list of LowUIR statements, return a well-formated string.
|
B2R2