MimIR
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:246
RWPass(World &world, std::string name)
Definition pass.h:308
World & world()
Definition pass.h:77
flags_t annex() const
Definition pass.h:81
The World represents the whole program and manages creation of MimIR nodes (Defs).
Definition world.h:36
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:39