本文整理汇总了Java中soot.jimple.IdentityRef类的典型用法代码示例。如果您正苦于以下问题:Java IdentityRef类的具体用法?Java IdentityRef怎么用?Java IdentityRef使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IdentityRef类属于soot.jimple包,在下文中一共展示了IdentityRef类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: caseIdentityStmt
import soot.jimple.IdentityRef; //导入依赖的package包/类
public final void caseIdentityStmt(IdentityStmt s) {
statement = s;
Value lhs = s.getLeftOp();
Value rhs = s.getRightOp();
if( !( lhs.getType() instanceof RefType )
&& !(lhs.getType() instanceof ArrayType ) ) {
caseUninterestingStmt( s );
return;
}
Local llhs = (Local) lhs;
if( rhs instanceof CaughtExceptionRef ) {
caseCatchStmt( llhs, (CaughtExceptionRef) rhs );
} else {
IdentityRef rrhs = (IdentityRef) rhs;
caseIdentityStmt( llhs, rrhs );
}
}
示例2: identityRef
import soot.jimple.IdentityRef; //导入依赖的package包/类
public void identityRef( IdentityRef r ) {
handleIndent();
if( r instanceof ThisRef ) {
literal("this");
} else throw new RuntimeException();
}