Package pascal.taie.ir.stmt
Class JumpStmt
java.lang.Object
pascal.taie.ir.stmt.JumpStmt
- All Implemented Interfaces:
Serializable
,Stmt
,Indexable
- Direct Known Subclasses:
Goto
,If
,SwitchStmt
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
getDef()
int
getIndex()
int
getUses()
void
setIndex
(int index) void
setLineNumber
(int lineNumber) Convert a target statement to its String representation.
-
Field Details
-
index
protected int index -
lineNumber
protected int lineNumber
-
-
Constructor Details
-
JumpStmt
public JumpStmt()
-
-
Method Details
-
getTargets
- Returns:
- possible jump targets of this statement.
-
toString
Convert a target statement to its String representation. -
getIndex
public int getIndex() -
setIndex
public void setIndex(int index) -
getLineNumber
public int getLineNumber()- Specified by:
getLineNumber
in interfaceStmt
- Returns:
- the line number of this Stmt in the original source file. If the line number is unavailable, return -1.
-
setLineNumber
public void setLineNumber(int lineNumber) - Specified by:
setLineNumber
in interfaceStmt
-
getDef
-
getUses
-
canFallThrough
public boolean canFallThrough()- Specified by:
canFallThrough
in interfaceStmt
- Returns:
- true if execution after this statement could continue at the following statement, otherwise false.
-