Class MinusExpressionSolver
java.lang.Object
ghidra.app.plugin.assembler.sleigh.expr.AbstractExpressionSolver<MinusExpression>
ghidra.app.plugin.assembler.sleigh.expr.AbstractUnaryExpressionSolver<MinusExpression>
ghidra.app.plugin.assembler.sleigh.expr.MinusExpressionSolver
Solves expressions of the form
-A
-
Field Summary
Fields inherited from class ghidra.app.plugin.assembler.sleigh.expr.AbstractExpressionSolver
dbg, solver
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncompute
(MaskedLong val) Compute the result of applying the operator to the given valueMethods inherited from class ghidra.app.plugin.assembler.sleigh.expr.AbstractUnaryExpressionSolver
computeInverse, getInstructionLength, getValue, solve, valueForResolution
Methods inherited from class ghidra.app.plugin.assembler.sleigh.expr.AbstractExpressionSolver
register
-
Constructor Details
-
MinusExpressionSolver
public MinusExpressionSolver()
-
-
Method Details
-
compute
Description copied from class:AbstractUnaryExpressionSolver
Compute the result of applying the operator to the given value- Specified by:
compute
in classAbstractUnaryExpressionSolver<MinusExpression>
- Parameters:
val
- the input value- Returns:
- the result
-