|
Jlm
|
#include <IntegerOperations.hpp>


Static Public Member Functions | |
| static rvsdg::Node & | createNode (const size_t numBits, rvsdg::Output &operand1, rvsdg::Output &operand2) |
| static std::optional< std::vector< rvsdg::Output * > > | normalizeAdditiveInverse (const IntegerSubOperation &operation, const std::vector< rvsdg::Output * > &operands) |
| static std::optional< std::vector< rvsdg::Output * > > | foldConstants (const IntegerSubOperation &operation, const std::vector< rvsdg::Output * > &operands) |
Additional Inherited Members | |
Public Types inherited from jlm::rvsdg::BinaryOperation | |
| enum class | flags { none = 0 , associative = 1 , commutative = 2 } |
This operation is equivalent to LLVM's 'sub' instruction for integer operands. See LLVM Language Reference Manual for more details.
Definition at line 149 of file IntegerOperations.hpp.
|
overridedefaultnoexcept |
|
inlineexplicit |
Definition at line 154 of file IntegerOperations.hpp.
|
overridevirtualnoexcept |
Implements jlm::rvsdg::BinaryOperation.
Definition at line 207 of file IntegerOperations.cpp.
|
overridevirtual |
Implements jlm::rvsdg::Operation.
Definition at line 201 of file IntegerOperations.cpp.
|
inlinestatic |
Definition at line 179 of file IntegerOperations.hpp.
|
overridevirtual |
Implements jlm::rvsdg::Operation.
Definition at line 195 of file IntegerOperations.cpp.
|
overridevirtualnoexcept |
Reimplemented from jlm::rvsdg::BinaryOperation.
Definition at line 223 of file IntegerOperations.cpp.
|
static |
Performs constant folding by statically evaluating the two constant operands and replacing the operation's result with the resulting constant.
| operation | The IntegerSubOperation on which the transformation is performed. |
| operands | The operands of the IntegerSubOperation node. |
Definition at line 248 of file IntegerOperations.cpp.
|
static |
Normalizes the additive inverse of a IntegerSubOperation node:
z = IntegerSubOperation x x => z = 0
| operation | The IntegerSubOperation on which the transformation is performed. |
| operands | The operands of the IntegerSubOperation node. |
Definition at line 229 of file IntegerOperations.cpp.
|
overridenoexcept |
Definition at line 188 of file IntegerOperations.cpp.
|
overridevirtual |
Implements jlm::rvsdg::BinaryOperation.
Definition at line 214 of file IntegerOperations.cpp.