Uses of Class
org.benf.cfr.reader.bytecode.analysis.parse.expression.CompOp
-
Packages that use CompOp Package Description org.benf.cfr.reader.bytecode.analysis.parse.expression -
-
Uses of CompOp in org.benf.cfr.reader.bytecode.analysis.parse.expression
Fields in org.benf.cfr.reader.bytecode.analysis.parse.expression declared as CompOp Modifier and Type Field Description private CompOp
ComparisonOperation. op
Methods in org.benf.cfr.reader.bytecode.analysis.parse.expression that return CompOp Modifier and Type Method Description CompOp
CompOp. getInverted()
CompOp
ComparisonOperation. getOp()
static CompOp
CompOp. getOpFor(JVMInstr instr)
private static CompOp
ArithmeticOperation. rewriteXCMPCompOp(CompOp from, int on)
static CompOp
CompOp. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CompOp[]
CompOp. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.benf.cfr.reader.bytecode.analysis.parse.expression with parameters of type CompOp Modifier and Type Method Description private static boolean
ArithmeticOperation. canNegateAroundNaN(CompOp from, int on)
private static ComparisonOperation.BooleanComparisonType
ComparisonOperation. isBooleanComparison(Expression a, Expression b, CompOp op)
private static boolean
ArithmeticOperation. returnsTrueForNaN(CompOp from, int on, boolean nanG)
private static CompOp
ArithmeticOperation. rewriteXCMPCompOp(CompOp from, int on)
Constructors in org.benf.cfr.reader.bytecode.analysis.parse.expression with parameters of type CompOp Constructor Description ComparisonOperation(BytecodeLoc loc, Expression lhs, Expression rhs, CompOp op)
ComparisonOperation(BytecodeLoc loc, Expression lhs, Expression rhs, CompOp op, boolean canNegate)
-