Package pascal.taie.ir.stmt
Class AssignStmt<L extends LValue,R extends RValue>
java.lang.Object
pascal.taie.ir.stmt.DefinitionStmt<L,R>
pascal.taie.ir.stmt.AssignStmt<L,R>
- Type Parameters:
L
- type of lvalue.R
- type of rvalue.
- All Implemented Interfaces:
Serializable
,Stmt
,Indexable
- Direct Known Subclasses:
AssignLiteral
,Binary
,Cast
,Copy
,FieldStmt
,InstanceOf
,LoadArray
,New
,StoreArray
,Unary
Representation of assign statements.
- See Also:
-
Field Details
-
index
protected int index -
lineNumber
protected int lineNumber
-
-
Constructor Details
-
AssignStmt
-
-
Method Details
-
getLValue
-
getRValue
-
getDef
-
getUses
-
toString
-
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
-
canFallThrough
public boolean canFallThrough()- Specified by:
canFallThrough
in interfaceStmt
- Returns:
- true if execution after this statement could continue at the following statement, otherwise false.
-