MimIR 0.1
MimIR is my Intermediate Representation
Loading...
Searching...
No Matches
lower_regex.h
Go to the documentation of this file.
1#pragma once
2
3#include <mim/pass.h>
4
5namespace mim::plug::regex {
6
7class LowerRegex : public RWPass<LowerRegex, Lam> {
8public:
11
12 const Def* rewrite(const Def*) override;
13};
14
15} // namespace mim::plug::regex
Base class for all Defs.
Definition def.h:251
RWPass(World &world, std::string name)
Definition pass.h:295
World & world()
Definition pass.h:64
flags_t annex() const
Definition pass.h:68
The World represents the whole program and manages creation of MimIR nodes (Defs).
Definition world.h:32
LowerRegex(World &world, flags_t annex)
Definition lower_regex.h:9
const Def * rewrite(const Def *) override
The regex Plugin
Definition lower_regex.h:5
u64 flags_t
Definition types.h:45