|
Jlm
|
#include <MemoryStateOperations.hpp>


Public Member Functions | |
| ~CallExitMemoryStateSplitOperation () noexcept override | |
| CallExitMemoryStateSplitOperation (const std::vector< MemoryNodeId > &memoryNodeIds) | |
| bool | operator== (const Operation &other) const noexcept override |
| std::string | debug_string () const override |
| std::unique_ptr< Operation > | copy () const override |
| std::vector< MemoryNodeId > | getMemoryNodeIds () const noexcept |
Public Member Functions inherited from jlm::rvsdg::SimpleOperation | |
| ~SimpleOperation () noexcept override | |
| SimpleOperation (std::vector< std::shared_ptr< const jlm::rvsdg::Type >> operands, std::vector< std::shared_ptr< const jlm::rvsdg::Type >> results) | |
| size_t | narguments () const noexcept |
| const std::shared_ptr< const rvsdg::Type > & | argument (size_t index) const noexcept |
| size_t | nresults () const noexcept |
| const std::shared_ptr< const rvsdg::Type > & | result (size_t index) const noexcept |
Public Member Functions inherited from jlm::rvsdg::Operation | |
| virtual | ~Operation () noexcept |
| virtual bool | operator== (const Operation &other) const noexcept=0 |
| bool | operator!= (const Operation &other) const noexcept |
Static Public Member Functions | |
| static rvsdg::Output * | tryMapMemoryNodeIdToOutput (const rvsdg::SimpleNode &node, MemoryNodeId memoryNodeId) |
| static MemoryNodeId | mapOutputToMemoryNodeId (const rvsdg::Output &output) |
| static rvsdg::SimpleNode & | CreateNode (rvsdg::Output &operand, std::vector< MemoryNodeId > memoryNodeIds) |
Private Attributes | |
| util::BijectiveMap< MemoryNodeId, size_t > | memoryNodeIdToIndexMap_ {} |
Additional Inherited Members | |
Protected Member Functions inherited from jlm::llvm::MemoryStateOperation | |
| MemoryStateOperation (size_t numOperands, size_t numResults) | |
A call exit memory state split operation takes a single input state and splits it into multiple output states. In contrast to the MemoryStateSplitOperation, this operation is allowed to have zero output states. The operation's input is required to be connected to the memory state result of a call.
The operation has no equivalent LLVM instruction.
Definition at line 563 of file MemoryStateOperations.hpp.
|
overridedefaultnoexcept |
|
explicit |
Definition at line 607 of file MemoryStateOperations.cpp.
|
overridevirtual |
Implements jlm::rvsdg::Operation.
Definition at line 632 of file MemoryStateOperations.cpp.
|
inlinestatic |
Definition at line 619 of file MemoryStateOperations.hpp.
|
overridevirtual |
Implements jlm::rvsdg::Operation.
Definition at line 626 of file MemoryStateOperations.cpp.
|
inlinenoexcept |
Definition at line 583 of file MemoryStateOperations.hpp.
|
static |
Maps the output of a CallExitMemoryStateSplitOperation node to the respective MemoryNodeId.
| output | an output of a CallExitMemoryStateSplitOperation node. |
Definition at line 660 of file MemoryStateOperations.cpp.
|
overridenoexcept |
Definition at line 619 of file MemoryStateOperations.cpp.
|
static |
Maps a memory node identifier to the respective output of a CallExitMemoryStateSplitOperation node.
| node | A CallExitMemoryStateSplitOperation node. |
| memoryNodeId | A memory node identifier. |
Definition at line 638 of file MemoryStateOperations.cpp.
|
private |
Definition at line 627 of file MemoryStateOperations.hpp.