com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation |
C operation with 1, 2 or 3 operands.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract boolean | checkOperatorType(COperatorType optype) | ||||||||||
abstract ICOperation |
duplicate()
Deep duplication of the element.
| ||||||||||
abstract int | getCountOfOperands() | ||||||||||
abstract ICExpression |
getFirstOperand()
Get the first operand, never null.
| ||||||||||
abstract ICOperator | getOperator() | ||||||||||
abstract COperatorType | getOperatorType() | ||||||||||
abstract ICExpression |
getSecondOperand()
Get the second operand, might be null.
| ||||||||||
abstract ICExpression |
getThirdOperand()
Get the third operand, might be null.
| ||||||||||
abstract boolean |
mirror(ICOperatorFactory of)
Mirror the operation order, whenever possible.
| ||||||||||
abstract boolean |
reverse(ICOperatorFactory of)
Logical negation of the operation, whenever possible.
| ||||||||||
abstract void |
setOperator(ICOperator operator)
Set the operator for the expression.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Deep duplication of the element. Sub-elements are duplicated.
Note: ICClass
, ICMethod
, ICField
, ICIdentifier
,
ICConstant
, ICType
and ICLabel
are not duplicated.
Mirror the operation order, whenever possible. The object is modified.
Logical negation of the operation, whenever possible. The object is modified.
Set the operator for the expression. Dangerous method! the operator type is not checked, it is the caller's responsibility to do so.
operator | operator, cannot be null |
---|