public class LogicMatching
extends java.lang.Object
| Constructor and Description |
|---|
LogicMatching() |
| Modifier and Type | Method and Description |
|---|---|
static @Nullable LogicAnd |
matchLogicAnd(@Nullable Instruction insn)
Matches the given instruction against a Logical and expression.
|
static @Nullable LogicNot |
matchLogicNot(@Nullable Instruction insn)
Matches the given instruction against a Logical not expression.
|
static @Nullable LogicOr |
matchLogicOr(@Nullable Instruction insn)
Matches the given instruction against a Logical or expression.
|
@Nullable public static @Nullable LogicNot matchLogicNot(@Nullable @Nullable Instruction insn)
insn - The Instruction to match.LogicNot or null.@Nullable public static @Nullable LogicAnd matchLogicAnd(@Nullable @Nullable Instruction insn)
insn - The Instruction to match.LogicAnd or null.@Nullable public static @Nullable LogicOr matchLogicOr(@Nullable @Nullable Instruction insn)
insn - The Instruction to match.LogicOr or null.