Class JRetStmt
java.lang.Object
sootup.core.jimple.common.stmt.AbstractStmt
sootup.core.jimple.javabytecode.stmt.JRetStmt
- All Implemented Interfaces:
EquivTo,FallsThroughStmt,Stmt,Acceptor<StmtVisitor>
Represents the deprecated JVM
ret statement (< java 1.6) - which is used in JSR
Context - which is deprecated as well.-
Field Summary
Fields inherited from class sootup.core.jimple.common.stmt.AbstractStmt
positionInfo -
Constructor Summary
ConstructorsConstructorDescriptionJRetStmt(@NonNull Value stmtAddress, @NonNull StmtPositionInfo positionInfo) -
Method Summary
Modifier and TypeMethodDescription<V extends StmtVisitor>
Vaccept(@NonNull V v) Called when this object is visited.booleanbranches()Returns true if execution after this statement does not necessarily continue at the following statement.intReturns a (not necessarily fixed) hash code for this object.booleanequivTo(@NonNull Object o, @NonNull JimpleComparator comparator) Returns true if this object is equivalent to o according to the given comparator.booleanReturns true if execution after this statement may continue at the following statement.@NonNull ValuegetUses()Returns a list of Values used in this Stmt.booleantoString()voidtoString(@NonNull StmtPrinter up) @NonNull JRetStmtwithPositionInfo(@NonNull StmtPositionInfo positionInfo) @NonNull JRetStmtwithStmtAddress(@NonNull Value stmtAddress) Methods inherited from class sootup.core.jimple.common.stmt.AbstractStmt
asInvokableStmt, containsArrayRef, containsFieldRef, getArrayRef, getDef, getExpectedSuccessorCount, getFieldRef, getPositionInfo, getUsesAndDefs, isInvokableStmt, withNewUseMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface sootup.core.jimple.common.stmt.Stmt
asInvokableStmt, asJAssignStmt, asJBreakpointStmt, asJEnterMonitorStmt, asJExitMonitorStmt, asJGotoStmt, asJIdentityStmt, asJIfStmt, asJInvokeStmt, asJNopStmt, asJReturnStmt, asJReturnVoidStmt, asJSwitchStmt, asJThrowStmt, containsArrayRef, containsFieldRef, getArrayRef, getDef, getExpectedSuccessorCount, getFieldRef, getPositionInfo, getUsesAndDefs, isInvokableStmt, isJAssignStmt, isJBreakpointStmt, isJEnterMonitorStmt, isJExitMonitorStmt, isJGotoStmt, isJIdentityStmt, isJIfStmt, isJInvokeStmt, isJNopStmt, isJReturnStmt, isJReturnVoidStmt, isJSwitchStmt, isJThrowStmt, toJAssignStmt, toJBreakpointStmt, toJEnterMonitorStmt, toJExitMonitorStmt, toJGotoStmt, toJIdentityStmt, toJIfStmt, toJInvokeStmt, toJNopStmt, toJReturnStmt, toJReturnVoidStmt, toJSwitchStmt, toJThrowStmt, withNewUse
-
Constructor Details
-
JRetStmt
-
-
Method Details
-
toString
-
toString
-
isJRetStmt
public boolean isJRetStmt()- Specified by:
isJRetStmtin interfaceStmt
-
asJRetStmt
- Specified by:
asJRetStmtin interfaceStmt
-
toJRetStmt
- Specified by:
toJRetStmtin interfaceStmt
-
getStmtAddress
-
getUses
Description copied from class:AbstractStmtReturns a list of Values used in this Stmt. Note that they are returned in usual evaluation order.- Specified by:
getUsesin interfaceStmt- Overrides:
getUsesin classAbstractStmt
-
accept
Description copied from interface:AcceptorCalled when this object is visited.- Specified by:
acceptin interfaceAcceptor<StmtVisitor>
-
fallsThrough
public boolean fallsThrough()Description copied from interface:StmtReturns true if execution after this statement may continue at the following statement. (e.g. GotoStmt will return false and e.g. IfStmt will return true).- Specified by:
fallsThroughin interfaceFallsThroughStmt- Specified by:
fallsThroughin interfaceStmt
-
branches
public boolean branches()Description copied from interface:StmtReturns true if execution after this statement does not necessarily continue at the following statement. TheBranchingStmt's GotoStmt, JSwitchStmt and IfStmt will return true. -
equivTo
Description copied from interface:EquivToReturns true if this object is equivalent to o according to the given comparator. -
equivHashCode
public int equivHashCode()Description copied from interface:EquivToReturns a (not necessarily fixed) hash code for this object. This hash code coincides with equivTo; it is undefined in the presence of mutable objects. The contract is defined inJimpleComparator.- Specified by:
equivHashCodein interfaceEquivTo
-
withStmtAddress
-
withPositionInfo
-