|
Jlm
|
#include <Load.hpp>


Public Member Functions | |
| ~LoadVolatileOperation () noexcept override | |
| LoadVolatileOperation (std::shared_ptr< const rvsdg::Type > loadedType, size_t numMemoryStates, size_t alignment) | |
| bool | operator== (const Operation &other) const noexcept override |
| std::string | debug_string () const override |
| std::unique_ptr< Operation > | copy () const override |
Public Member Functions inherited from jlm::llvm::LoadOperation | |
| size_t | GetAlignment () const noexcept |
| std::shared_ptr< const rvsdg::Type > | GetLoadedType () const noexcept |
| size_t | NumMemoryStates () 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::Input & | IOStateInput (const rvsdg::Node &node) noexcept |
| static rvsdg::Output & | IOStateOutput (const rvsdg::Node &node) |
| static std::unique_ptr< llvm::ThreeAddressCode > | Create (const Variable *address, const Variable *iOState, const Variable *memoryState, std::shared_ptr< const rvsdg::Type > loadedType, size_t alignment) |
| static rvsdg::SimpleNode & | CreateNode (rvsdg::Region ®ion, std::unique_ptr< LoadVolatileOperation > loadOperation, const std::vector< rvsdg::Output * > &operands) |
| static rvsdg::SimpleNode & | CreateNode (rvsdg::Output &address, rvsdg::Output &iOState, const std::vector< rvsdg::Output * > &memoryStates, std::shared_ptr< const rvsdg::Type > loadedType, size_t alignment) |
Static Public Member Functions inherited from jlm::llvm::LoadOperation | |
| static rvsdg::Input & | AddressInput (const rvsdg::Node &node) noexcept |
| static rvsdg::Output & | LoadedValueOutput (const rvsdg::Node &node) |
| static rvsdg::Node::OutputIteratorRange | MemoryStateOutputs (const rvsdg::Node &node) noexcept |
| static rvsdg::Node::InputIteratorRange | MemoryStateInputs (const rvsdg::Node &node) noexcept |
| static rvsdg::Input & | MapMemoryStateOutputToInput (const rvsdg::Output &output) |
| static rvsdg::Output & | mapMemoryStateInputToOutput (const rvsdg::Input &input) |
Static Private Member Functions | |
| static std::vector< std::shared_ptr< const rvsdg::Type > > | CreateOperandTypes (size_t numMemoryStates) |
| static std::vector< std::shared_ptr< const rvsdg::Type > > | CreateResultTypes (std::shared_ptr< const rvsdg::Type > loadedType, size_t numMemoryStates) |
Additional Inherited Members | |
Protected Member Functions inherited from jlm::llvm::LoadOperation | |
| LoadOperation (const std::vector< std::shared_ptr< const rvsdg::Type >> &operandTypes, const std::vector< std::shared_ptr< const rvsdg::Type >> &resultTypes, const size_t numMemoryStates, const size_t alignment) | |
Represents a volatile LLVM load instruction.
In contrast to LLVM, a volatile load requires in an RVSDG setting an I/O state as it incorporates externally visible side-effects. This I/O state allows the volatile load operation to be sequentialized with respect to other volatile memory accesses and I/O operations. This additional I/O state is the main reason why volatile loads are modeled as its own operation and volatile is not just a flag at the normal LoadNonVolatileOperation.
|
overridedefaultnoexcept |
|
inline |
|
overridevirtual |
Implements jlm::rvsdg::Operation.
|
inlinestatic |
|
inlinestatic |
|
static |
|
inlinestaticprivate |
|
inlinestaticprivate |
|
overridevirtual |
Implements jlm::rvsdg::Operation.
|
inlinestaticnoexcept |
|
inlinestatic |
|
overridenoexcept |