MimIR
MimIR is my Intermediate Representation
Loading...
Searching...
No Matches
mem_checks.h
Go to the documentation of this file.
1#pragma once
2
3#include "mim/phase.h"
4
5#include "mim/plug/gpu/gpu.h"
6
8
9class MemChecks : public Analysis {
10public:
11 using Super = Analysis;
12
15
16private:
17 const Def* rewrite_imm_App(const App*) final;
18 void rewrite_external(Def*) final;
19};
20
21} // namespace mim::plug::gpu::phase
Analysis(World &world, std::string name)
Definition phase.h:153
World & world()
Definition phase.h:77
Base class for all Defs.
Definition def.h:261
flags_t annex() const
Definition phase.h:81
The World represents the whole program and manages creation of MimIR nodes (Defs).
Definition world.h:36
const Def * rewrite_imm_App(const App *) final
MemChecks(World &world, flags_t annex)
Definition mem_checks.h:13
void rewrite_external(Def *) final
u64 flags_t
Definition types.h:39