Thorin 1.9.0
The Higher ORder INtermediate representation
Loading...
Searching...
No Matches
thorin::plug::matrix::LowerMatrixLowLevel Class Reference

In this phase, we lower all matrix operations and types to the low-level representation using pointers. More...

#include <thorin/plug/matrix/pass/lower_matrix_lowlevel.h>

Inheritance diagram for thorin::plug::matrix::LowerMatrixLowLevel:
[legend]

Public Member Functions

 LowerMatrixLowLevel (World &world)
 
Ref rewrite_imm (Ref) override
 
- Public Member Functions inherited from thorin::RWPhase
 RWPhase (World &world, std::string_view name)
 
Worldworld ()
 
void start () override
 Actual entry.
 
- Public Member Functions inherited from thorin::Phase
 Phase (World &world, std::string_view name, bool dirty)
 
virtual ~Phase ()=default
 
Worldworld ()
 
std::string_view name () const
 
bool is_dirty () const
 
virtual void run ()
 Entry point and generates some debug output; invokes Phase::start.
 
- Public Member Functions inherited from thorin::Rewriter
 Rewriter (World &world)
 
Worldworld ()
 
Ref map (Ref old_def, Ref new_def)
 Map old_def to new_def and returns new_def;.
 
virtual Ref rewrite (Ref)
 
virtual Ref rewrite_mut (Def *)
 

Additional Inherited Members

- Static Public Member Functions inherited from thorin::Phase
template<class P , class... Args>
static void run (Args &&... args)
 Runs a single Phase.
 
- Protected Attributes inherited from thorin::Phase
Worldworld_
 
std::string name_
 
bool dirty_
 

Detailed Description

In this phase, we lower all matrix operations and types to the low-level representation using pointers.

The matrix type is replaced by a pointer to n nested arrays.

  • init is replaced with alloc
  • read becomes lea+load
  • insert becomes lea+store
  • constMat becomes alloc+pack+store

Definition at line 17 of file lower_matrix_lowlevel.h.

Constructor & Destructor Documentation

◆ LowerMatrixLowLevel()

thorin::plug::matrix::LowerMatrixLowLevel::LowerMatrixLowLevel ( World world)
inline

Definition at line 19 of file lower_matrix_lowlevel.h.

Member Function Documentation

◆ rewrite_imm()


The documentation for this class was generated from the following files: